mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	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>
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2022 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package convert
 | |
| 
 | |
| import (
 | |
| 	repo_model "code.gitea.io/gitea/models/repo"
 | |
| 	"code.gitea.io/gitea/modules/git"
 | |
| 	api "code.gitea.io/gitea/modules/structs"
 | |
| )
 | |
| 
 | |
| // ToPushMirror convert from repo_model.PushMirror and remoteAddress to api.TopicResponse
 | |
| func ToPushMirror(pm *repo_model.PushMirror) (*api.PushMirror, error) {
 | |
| 	repo := pm.GetRepository()
 | |
| 	remoteAddress, err := getRemoteAddress(repo, pm.RemoteName)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return &api.PushMirror{
 | |
| 		RepoName:       repo.Name,
 | |
| 		RemoteName:     pm.RemoteName,
 | |
| 		RemoteAddress:  remoteAddress,
 | |
| 		CreatedUnix:    pm.CreatedUnix.FormatLong(),
 | |
| 		LastUpdateUnix: pm.LastUpdateUnix.FormatLong(),
 | |
| 		LastError:      pm.LastError,
 | |
| 		Interval:       pm.Interval.String(),
 | |
| 	}, nil
 | |
| }
 | |
| 
 | |
| func getRemoteAddress(repo *repo_model.Repository, remoteName string) (string, error) {
 | |
| 	url, err := git.GetRemoteURL(git.DefaultContext, repo.RepoPath(), remoteName)
 | |
| 	if err != nil {
 | |
| 		return "", err
 | |
| 	}
 | |
| 	// remove confidential information
 | |
| 	url.User = nil
 | |
| 	return url.String(), nil
 | |
| }
 |