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>
62 lines
1.7 KiB
Go
62 lines
1.7 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package release
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/db"
|
|
repo_model "code.mokoconsulting.tech/MokoConsulting/MokoGitea/models/repo"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/graceful"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/log"
|
|
"code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/queue"
|
|
repo_module "code.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/repository"
|
|
|
|
"xorm.io/builder"
|
|
)
|
|
|
|
type TagSyncOptions struct {
|
|
RepoID int64
|
|
}
|
|
|
|
// tagSyncQueue represents a queue to handle tag sync jobs.
|
|
var tagSyncQueue *queue.WorkerPoolQueue[*TagSyncOptions]
|
|
|
|
func handlerTagSync(items ...*TagSyncOptions) []*TagSyncOptions {
|
|
for _, opts := range items {
|
|
err := repo_module.SyncRepoTags(graceful.GetManager().ShutdownContext(), opts.RepoID)
|
|
if err != nil {
|
|
log.Error("syncRepoTags [%d] failed: %v", opts.RepoID, err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func addRepoToTagSyncQueue(repoID int64) error {
|
|
return tagSyncQueue.Push(&TagSyncOptions{
|
|
RepoID: repoID,
|
|
})
|
|
}
|
|
|
|
func initTagSyncQueue(ctx context.Context) error {
|
|
tagSyncQueue = queue.CreateUniqueQueue(ctx, "tag_sync", handlerTagSync)
|
|
if tagSyncQueue == nil {
|
|
return errors.New("unable to create tag_sync queue")
|
|
}
|
|
go graceful.GetManager().RunWithCancel(tagSyncQueue)
|
|
|
|
return nil
|
|
}
|
|
|
|
func AddAllRepoTagsToSyncQueue(ctx context.Context) error {
|
|
if err := db.Iterate(ctx, builder.Eq{"is_empty": false}, func(ctx context.Context, repo *repo_model.Repository) error {
|
|
return addRepoToTagSyncQueue(repo.ID)
|
|
}); err != nil {
|
|
return fmt.Errorf("run sync all tags failed: %v", err)
|
|
}
|
|
return nil
|
|
}
|