2022-07-09 01:15:12 +05:30
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2022-07-09 01:15:12 +05:30
|
|
|
|
|
|
|
package mirror
|
|
|
|
|
|
|
|
import (
|
2022-11-19 13:42:33 +05:30
|
|
|
"context"
|
|
|
|
|
2022-07-09 01:15:12 +05:30
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
|
|
|
"code.gitea.io/gitea/modules/repository"
|
2023-09-06 00:07:47 +05:30
|
|
|
notify_service "code.gitea.io/gitea/services/notify"
|
2022-07-09 01:15:12 +05:30
|
|
|
)
|
|
|
|
|
2023-08-27 07:54:45 +05:30
|
|
|
func init() {
|
2023-09-06 00:07:47 +05:30
|
|
|
notify_service.RegisterNotifier(&mirrorNotifier{})
|
2023-08-27 07:54:45 +05:30
|
|
|
}
|
|
|
|
|
2022-07-09 01:15:12 +05:30
|
|
|
type mirrorNotifier struct {
|
2023-09-06 00:07:47 +05:30
|
|
|
notify_service.NullNotifier
|
2022-07-09 01:15:12 +05:30
|
|
|
}
|
|
|
|
|
2023-09-06 00:07:47 +05:30
|
|
|
var _ notify_service.Notifier = &mirrorNotifier{}
|
2022-07-09 01:15:12 +05:30
|
|
|
|
2023-09-06 00:07:47 +05:30
|
|
|
func (m *mirrorNotifier) PushCommits(ctx context.Context, _ *user_model.User, repo *repo_model.Repository, _ *repository.PushUpdateOptions, _ *repository.PushCommits) {
|
2022-11-19 13:42:33 +05:30
|
|
|
syncPushMirrorWithSyncOnCommit(ctx, repo.ID)
|
2022-07-09 01:15:12 +05:30
|
|
|
}
|
|
|
|
|
2023-09-06 00:07:47 +05:30
|
|
|
func (m *mirrorNotifier) SyncPushCommits(ctx context.Context, _ *user_model.User, repo *repo_model.Repository, _ *repository.PushUpdateOptions, _ *repository.PushCommits) {
|
2022-11-19 13:42:33 +05:30
|
|
|
syncPushMirrorWithSyncOnCommit(ctx, repo.ID)
|
2022-07-09 01:15:12 +05:30
|
|
|
}
|