Change all license headers to comply with REUSE specification. Fix #16132 Co-authored-by: flynnnnnnnnnn <flynnnnnnnnnn@github> Co-authored-by: John Olheiser <john.olheiser@gmail.com>
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			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/log"
 | |
| 	mirror_module "code.gitea.io/gitea/modules/mirror"
 | |
| 	"code.gitea.io/gitea/modules/notification/base"
 | |
| 	"code.gitea.io/gitea/modules/repository"
 | |
| )
 | |
| 
 | |
| type mirrorNotifier struct {
 | |
| 	base.NullNotifier
 | |
| }
 | |
| 
 | |
| var _ base.Notifier = &mirrorNotifier{}
 | |
| 
 | |
| // NewNotifier create a new mirrorNotifier notifier
 | |
| func NewNotifier() base.Notifier {
 | |
| 	return &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)
 | |
| }
 | |
| 
 | |
| func syncPushMirrorWithSyncOnCommit(ctx context.Context, repoID int64) {
 | |
| 	pushMirrors, err := repo_model.GetPushMirrorsSyncedOnCommit(ctx, repoID)
 | |
| 	if err != nil {
 | |
| 		log.Error("repo_model.GetPushMirrorsSyncedOnCommit failed: %v", err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	for _, mirror := range pushMirrors {
 | |
| 		mirror_module.AddPushMirrorToQueue(mirror.ID)
 | |
| 	}
 | |
| }
 |