mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 23:54:25 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			33 lines
		
	
	
		
			968 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			968 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// 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/notification"
 | 
						|
	"code.gitea.io/gitea/modules/notification/base"
 | 
						|
	"code.gitea.io/gitea/modules/repository"
 | 
						|
)
 | 
						|
 | 
						|
func init() {
 | 
						|
	notification.RegisterNotifier(&mirrorNotifier{})
 | 
						|
}
 | 
						|
 | 
						|
type mirrorNotifier struct {
 | 
						|
	base.NullNotifier
 | 
						|
}
 | 
						|
 | 
						|
var _ base.Notifier = &mirrorNotifier{}
 | 
						|
 | 
						|
func (m *mirrorNotifier) NotifyPushCommits(ctx context.Context, _ *user_model.User, repo *repo_model.Repository, _ *repository.PushUpdateOptions, _ *repository.PushCommits) {
 | 
						|
	syncPushMirrorWithSyncOnCommit(ctx, repo.ID)
 | 
						|
}
 | 
						|
 | 
						|
func (m *mirrorNotifier) NotifySyncPushCommits(ctx context.Context, _ *user_model.User, repo *repo_model.Repository, _ *repository.PushUpdateOptions, _ *repository.PushCommits) {
 | 
						|
	syncPushMirrorWithSyncOnCommit(ctx, repo.ID)
 | 
						|
}
 |