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