mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
939 B
31 lines
939 B
// Copyright 2022 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package mirror |
|
|
|
import ( |
|
"context" |
|
|
|
repo_model "code.gitea.io/gitea/models/repo" |
|
user_model "code.gitea.io/gitea/models/user" |
|
"code.gitea.io/gitea/modules/repository" |
|
notify_service "code.gitea.io/gitea/services/notify" |
|
) |
|
|
|
func init() { |
|
notify_service.RegisterNotifier(&mirrorNotifier{}) |
|
} |
|
|
|
type mirrorNotifier struct { |
|
notify_service.NullNotifier |
|
} |
|
|
|
var _ notify_service.Notifier = &mirrorNotifier{} |
|
|
|
func (m *mirrorNotifier) PushCommits(ctx context.Context, _ *user_model.User, repo *repo_model.Repository, _ *repository.PushUpdateOptions, _ *repository.PushCommits) { |
|
syncPushMirrorWithSyncOnCommit(ctx, repo.ID) |
|
} |
|
|
|
func (m *mirrorNotifier) SyncPushCommits(ctx context.Context, _ *user_model.User, repo *repo_model.Repository, _ *repository.PushUpdateOptions, _ *repository.PushCommits) { |
|
syncPushMirrorWithSyncOnCommit(ctx, repo.ID) |
|
}
|
|
|