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