mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:45:18 +01:00 
			
		
		
		
	Part of #27065 --------- Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: delvh <dev.lh@web.de>
		
			
				
	
	
		
			27 lines
		
	
	
		
			767 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			767 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2022 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package convert
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
 | 
						|
	repo_model "code.gitea.io/gitea/models/repo"
 | 
						|
	api "code.gitea.io/gitea/modules/structs"
 | 
						|
)
 | 
						|
 | 
						|
// ToPushMirror convert from repo_model.PushMirror and remoteAddress to api.TopicResponse
 | 
						|
func ToPushMirror(ctx context.Context, pm *repo_model.PushMirror) (*api.PushMirror, error) {
 | 
						|
	repo := pm.GetRepository(ctx)
 | 
						|
	return &api.PushMirror{
 | 
						|
		RepoName:       repo.Name,
 | 
						|
		RemoteName:     pm.RemoteName,
 | 
						|
		RemoteAddress:  pm.RemoteAddress,
 | 
						|
		CreatedUnix:    pm.CreatedUnix.AsTime(),
 | 
						|
		LastUpdateUnix: pm.LastUpdateUnix.AsTimePtr(),
 | 
						|
		LastError:      pm.LastError,
 | 
						|
		Interval:       pm.Interval.String(),
 | 
						|
		SyncOnCommit:   pm.SyncOnCommit,
 | 
						|
	}, nil
 | 
						|
}
 |