forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new API endpoints for push mirrors management (go-gitea#19841)
- Add a new push mirror to specific repository - Sync now ( send all the changes to the configured push mirrors ) - Get list of all push mirrors of a repository - Get a push mirror by ID - Delete push mirror by ID Signed-off-by: Mohamed Sekour <[email protected]> Signed-off-by: Andrew Thornton <[email protected]> Co-authored-by: zeripath <[email protected]>
- Loading branch information
1 parent
d6f15bf
commit 524bfc4
Showing
14 changed files
with
787 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// Copyright 2022 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Copyright 2021 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package structs | ||
|
||
// CreatePushMirrorOption represents need information to create a push mirror of a repository. | ||
type CreatePushMirrorOption struct { | ||
RemoteAddress string `json:"remote_address"` | ||
RemoteUsername string `json:"remote_username"` | ||
RemotePassword string `json:"remote_password"` | ||
Interval string `json:"interval"` | ||
} | ||
|
||
// PushMirror represents information of a push mirror | ||
// swagger:model | ||
type PushMirror struct { | ||
RepoName string `json:"repo_name"` | ||
RemoteName string `json:"remote_name"` | ||
RemoteAddress string `json:"remote_address"` | ||
CreatedUnix string `json:"created"` | ||
LastUpdateUnix string `json:"last_update"` | ||
LastError string `json:"last_error"` | ||
Interval string `json:"interval"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.