9a5720e8ad
Universal: PR Check / Branch Policy (pull_request) Successful in 1s
Branch Policy Check / Verify merge target (pull_request) Successful in 1s
PR RC Release / Build RC Release (pull_request) Successful in 3s
Universal: PR Check / Validate PR (pull_request) Failing after 6s
Branch Cleanup / Delete merged branch (pull_request) Successful in 1s
Universal: PR Check / Build RC Package (pull_request) Has been cancelled
Full namespace migration: update the Go module path and all import statements from git.mokoconsulting.tech to code.mokoconsulting.tech. Also updates all URL references in templates, workflows, configs, tests, and documentation. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
77 lines
2.2 KiB
Go
77 lines
2.2 KiB
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package packages
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
"time"
|
|
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/db"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/timeutil"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/util"
|
|
)
|
|
|
|
// ErrPackageBlobUploadNotExist indicates a package blob upload not exist error
|
|
var ErrPackageBlobUploadNotExist = util.NewNotExistErrorf("package blob upload does not exist")
|
|
|
|
func init() {
|
|
db.RegisterModel(new(PackageBlobUpload))
|
|
}
|
|
|
|
// PackageBlobUpload represents a package blob upload
|
|
type PackageBlobUpload struct {
|
|
ID string `xorm:"pk"`
|
|
BytesReceived int64 `xorm:"NOT NULL DEFAULT 0"`
|
|
HashStateBytes []byte `xorm:"BLOB"`
|
|
CreatedUnix timeutil.TimeStamp `xorm:"created NOT NULL"`
|
|
UpdatedUnix timeutil.TimeStamp `xorm:"updated INDEX NOT NULL"`
|
|
}
|
|
|
|
// CreateBlobUpload inserts a blob upload
|
|
func CreateBlobUpload(ctx context.Context) (*PackageBlobUpload, error) {
|
|
id, _ := util.CryptoRandomString(25)
|
|
|
|
pbu := &PackageBlobUpload{
|
|
ID: strings.ToLower(id),
|
|
}
|
|
|
|
_, err := db.GetEngine(ctx).Insert(pbu)
|
|
return pbu, err
|
|
}
|
|
|
|
// GetBlobUploadByID gets a blob upload by id
|
|
func GetBlobUploadByID(ctx context.Context, id string) (*PackageBlobUpload, error) {
|
|
pbu := &PackageBlobUpload{}
|
|
|
|
has, err := db.GetEngine(ctx).ID(id).Get(pbu)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if !has {
|
|
return nil, ErrPackageBlobUploadNotExist
|
|
}
|
|
return pbu, nil
|
|
}
|
|
|
|
// UpdateBlobUpload updates the blob upload
|
|
func UpdateBlobUpload(ctx context.Context, pbu *PackageBlobUpload) error {
|
|
_, err := db.GetEngine(ctx).ID(pbu.ID).Update(pbu)
|
|
return err
|
|
}
|
|
|
|
// DeleteBlobUploadByID deletes the blob upload
|
|
func DeleteBlobUploadByID(ctx context.Context, id string) error {
|
|
_, err := db.GetEngine(ctx).ID(id).Delete(&PackageBlobUpload{})
|
|
return err
|
|
}
|
|
|
|
// FindExpiredBlobUploads gets all expired blob uploads
|
|
func FindExpiredBlobUploads(ctx context.Context, olderThan time.Duration) ([]*PackageBlobUpload, error) {
|
|
pbus := make([]*PackageBlobUpload, 0, 10)
|
|
return pbus, db.GetEngine(ctx).
|
|
Where("updated_unix < ?", time.Now().Add(-olderThan).Unix()).
|
|
Find(&pbus)
|
|
}
|