2022-07-08 19:45:12 +00:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package mirror
|
|
|
|
|
|
|
|
import (
|
2022-11-19 08:12:33 +00:00
|
|
|
"context"
|
|
|
|
|
2022-07-08 19:45:12 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
mirror_module "code.gitea.io/gitea/modules/mirror"
|
|
|
|
"code.gitea.io/gitea/modules/notification/base"
|
|
|
|
"code.gitea.io/gitea/modules/repository"
|
|
|
|
)
|
|
|
|
|
|
|
|
type mirrorNotifier struct {
|
|
|
|
base.NullNotifier
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ base.Notifier = &mirrorNotifier{}
|
|
|
|
|
|
|
|
// NewNotifier create a new mirrorNotifier notifier
|
|
|
|
func NewNotifier() base.Notifier {
|
|
|
|
return &mirrorNotifier{}
|
|
|
|
}
|
|
|
|
|
2022-11-19 08:12:33 +00:00
|
|
|
func (m *mirrorNotifier) NotifyPushCommits(ctx context.Context, _ *user_model.User, repo *repo_model.Repository, _ *repository.PushUpdateOptions, _ *repository.PushCommits) {
|
|
|
|
syncPushMirrorWithSyncOnCommit(ctx, repo.ID)
|
2022-07-08 19:45:12 +00:00
|
|
|
}
|
|
|
|
|
2022-11-19 08:12:33 +00:00
|
|
|
func (m *mirrorNotifier) NotifySyncPushCommits(ctx context.Context, _ *user_model.User, repo *repo_model.Repository, _ *repository.PushUpdateOptions, _ *repository.PushCommits) {
|
|
|
|
syncPushMirrorWithSyncOnCommit(ctx, repo.ID)
|
2022-07-08 19:45:12 +00:00
|
|
|
}
|
|
|
|
|
2022-11-19 08:12:33 +00:00
|
|
|
func syncPushMirrorWithSyncOnCommit(ctx context.Context, repoID int64) {
|
|
|
|
pushMirrors, err := repo_model.GetPushMirrorsSyncedOnCommit(ctx, repoID)
|
2022-07-08 19:45:12 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Error("repo_model.GetPushMirrorsSyncedOnCommit failed: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, mirror := range pushMirrors {
|
|
|
|
mirror_module.AddPushMirrorToQueue(mirror.ID)
|
|
|
|
}
|
|
|
|
}
|