2014-08-26 15:41:15 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-12-05 03:46:42 +05:30
|
|
|
package repo
|
2014-08-26 15:41:15 +05:30
|
|
|
|
|
|
|
import (
|
2017-08-17 07:01:34 +05:30
|
|
|
"fmt"
|
2017-02-11 09:30:01 +05:30
|
|
|
"strings"
|
2014-08-26 15:41:15 +05:30
|
|
|
|
2016-11-11 15:09:44 +05:30
|
|
|
api "code.gitea.io/sdk/gitea"
|
2014-11-15 03:41:30 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/auth"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/convert"
|
2014-08-26 15:41:15 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Search repositories via options
|
2016-03-14 04:19:16 +05:30
|
|
|
func Search(ctx *context.APIContext) {
|
2017-08-21 16:43:47 +05:30
|
|
|
// swagger:route GET /repos/search repository repoSearch
|
2017-05-02 19:05:59 +05:30
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: SearchResults
|
|
|
|
// 500: SearchError
|
|
|
|
|
2016-03-12 02:03:12 +05:30
|
|
|
opts := &models.SearchRepoOptions{
|
2017-02-11 09:30:01 +05:30
|
|
|
Keyword: strings.Trim(ctx.Query("q"), " "),
|
2016-07-04 14:57:06 +05:30
|
|
|
OwnerID: ctx.QueryInt64("uid"),
|
|
|
|
PageSize: convert.ToCorrectPageSize(ctx.QueryInt("limit")),
|
2014-08-26 15:41:15 +05:30
|
|
|
}
|
2017-05-18 23:05:06 +05:30
|
|
|
if ctx.User != nil && ctx.User.ID == opts.OwnerID {
|
2017-05-18 19:58:29 +05:30
|
|
|
opts.Searcher = ctx.User
|
2014-08-26 15:41:15 +05:30
|
|
|
}
|
|
|
|
|
2014-10-25 17:20:19 +05:30
|
|
|
// Check visibility.
|
2016-03-12 02:03:12 +05:30
|
|
|
if ctx.IsSigned && opts.OwnerID > 0 {
|
2016-07-23 22:38:22 +05:30
|
|
|
if ctx.User.ID == opts.OwnerID {
|
2016-03-12 02:03:12 +05:30
|
|
|
opts.Private = true
|
2017-08-23 07:00:54 +05:30
|
|
|
opts.Collaborate = true
|
2014-10-25 17:20:19 +05:30
|
|
|
} else {
|
2016-03-12 02:03:12 +05:30
|
|
|
u, err := models.GetUserByID(opts.OwnerID)
|
2014-10-25 17:20:19 +05:30
|
|
|
if err != nil {
|
2017-05-02 19:05:59 +05:30
|
|
|
ctx.JSON(500, api.SearchError{
|
|
|
|
OK: false,
|
|
|
|
Error: err.Error(),
|
2014-10-25 17:20:19 +05:30
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2016-07-23 22:38:22 +05:30
|
|
|
if u.IsOrganization() && u.IsOwnedBy(ctx.User.ID) {
|
2016-03-12 02:03:12 +05:30
|
|
|
opts.Private = true
|
2014-10-25 17:20:19 +05:30
|
|
|
}
|
2017-08-23 07:00:54 +05:30
|
|
|
|
|
|
|
if !u.IsOrganization() {
|
|
|
|
opts.Collaborate = true
|
|
|
|
}
|
2014-10-25 17:20:19 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-04 14:57:06 +05:30
|
|
|
repos, count, err := models.SearchRepositoryByName(opts)
|
2014-08-26 15:41:15 +05:30
|
|
|
if err != nil {
|
2017-05-02 19:05:59 +05:30
|
|
|
ctx.JSON(500, api.SearchError{
|
|
|
|
OK: false,
|
|
|
|
Error: err.Error(),
|
2014-08-26 15:41:15 +05:30
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-04-30 10:38:09 +05:30
|
|
|
var userID int64
|
|
|
|
if ctx.IsSigned {
|
|
|
|
userID = ctx.User.ID
|
|
|
|
}
|
|
|
|
|
2014-11-15 03:41:30 +05:30
|
|
|
results := make([]*api.Repository, len(repos))
|
2017-02-10 07:00:26 +05:30
|
|
|
for i, repo := range repos {
|
|
|
|
if err = repo.GetOwner(); err != nil {
|
2017-05-02 19:05:59 +05:30
|
|
|
ctx.JSON(500, api.SearchError{
|
|
|
|
OK: false,
|
|
|
|
Error: err.Error(),
|
2014-08-26 15:41:15 +05:30
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2017-04-30 10:38:09 +05:30
|
|
|
accessMode, err := models.AccessLevel(userID, repo)
|
2017-02-10 07:00:26 +05:30
|
|
|
if err != nil {
|
2017-05-02 19:05:59 +05:30
|
|
|
ctx.JSON(500, api.SearchError{
|
|
|
|
OK: false,
|
|
|
|
Error: err.Error(),
|
2017-02-10 07:00:26 +05:30
|
|
|
})
|
2014-08-26 15:41:15 +05:30
|
|
|
}
|
2017-02-10 07:00:26 +05:30
|
|
|
results[i] = repo.APIFormat(accessMode)
|
2014-08-26 15:41:15 +05:30
|
|
|
}
|
|
|
|
|
2016-07-04 14:57:06 +05:30
|
|
|
ctx.SetLinkHeader(int(count), setting.API.MaxResponseItems)
|
2017-08-17 07:01:34 +05:30
|
|
|
ctx.Header().Set("X-Total-Count", fmt.Sprintf("%d", count))
|
2017-05-02 19:05:59 +05:30
|
|
|
ctx.JSON(200, api.SearchResults{
|
|
|
|
OK: true,
|
|
|
|
Data: results,
|
2014-08-26 15:41:15 +05:30
|
|
|
})
|
|
|
|
}
|
2014-08-29 08:54:37 +05:30
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// CreateUserRepo create a repository for a user
|
2016-03-14 04:19:16 +05:30
|
|
|
func CreateUserRepo(ctx *context.APIContext, owner *models.User, opt api.CreateRepoOption) {
|
2017-09-03 13:50:24 +05:30
|
|
|
repo, err := models.CreateRepository(ctx.User, owner, models.CreateRepoOptions{
|
2015-08-28 16:03:09 +05:30
|
|
|
Name: opt.Name,
|
|
|
|
Description: opt.Description,
|
2015-08-28 16:36:18 +05:30
|
|
|
Gitignores: opt.Gitignores,
|
2015-08-28 16:03:09 +05:30
|
|
|
License: opt.License,
|
2015-08-28 16:36:18 +05:30
|
|
|
Readme: opt.Readme,
|
|
|
|
IsPrivate: opt.Private,
|
|
|
|
AutoInit: opt.AutoInit,
|
2015-08-28 16:03:09 +05:30
|
|
|
})
|
2014-12-13 07:00:32 +05:30
|
|
|
if err != nil {
|
2015-08-08 14:40:34 +05:30
|
|
|
if models.IsErrRepoAlreadyExist(err) ||
|
2015-03-27 02:41:47 +05:30
|
|
|
models.IsErrNameReserved(err) ||
|
|
|
|
models.IsErrNamePatternNotAllowed(err) {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", err)
|
2014-12-13 07:00:32 +05:30
|
|
|
} else {
|
|
|
|
if repo != nil {
|
2017-09-03 13:50:24 +05:30
|
|
|
if err = models.DeleteRepository(ctx.User, ctx.User.ID, repo.ID); err != nil {
|
2014-12-13 07:00:32 +05:30
|
|
|
log.Error(4, "DeleteRepository: %v", err)
|
|
|
|
}
|
|
|
|
}
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "CreateRepository", err)
|
2014-12-13 07:00:32 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-06 05:18:51 +05:30
|
|
|
ctx.JSON(201, repo.APIFormat(models.AccessModeOwner))
|
2014-12-13 07:00:32 +05:30
|
|
|
}
|
|
|
|
|
2016-10-07 22:47:27 +05:30
|
|
|
// Create one repository of mine
|
2016-03-14 04:19:16 +05:30
|
|
|
func Create(ctx *context.APIContext, opt api.CreateRepoOption) {
|
2017-08-21 16:43:47 +05:30
|
|
|
// swagger:route POST /user/repos repository user createCurrentUserRepo
|
|
|
|
//
|
|
|
|
// Consumes:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 201: Repository
|
|
|
|
// 403: forbidden
|
|
|
|
// 422: validationError
|
|
|
|
// 500: error
|
|
|
|
|
2014-12-13 07:00:32 +05:30
|
|
|
// Shouldn't reach this condition, but just in case.
|
|
|
|
if ctx.User.IsOrganization() {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", "not allowed creating repository for organization")
|
2014-12-13 07:00:32 +05:30
|
|
|
return
|
|
|
|
}
|
2015-12-18 09:27:41 +05:30
|
|
|
CreateUserRepo(ctx, ctx.User, opt)
|
2014-12-13 07:00:32 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// CreateOrgRepo create one repository of the organization
|
2016-03-14 04:19:16 +05:30
|
|
|
func CreateOrgRepo(ctx *context.APIContext, opt api.CreateRepoOption) {
|
2017-08-21 16:43:47 +05:30
|
|
|
// swagger:route POST /org/{org}/repos organization createOrgRepo
|
2017-05-02 19:05:59 +05:30
|
|
|
//
|
|
|
|
// Consumes:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 201: Repository
|
|
|
|
// 422: validationError
|
|
|
|
// 403: forbidden
|
|
|
|
// 500: error
|
|
|
|
|
2014-12-13 07:00:32 +05:30
|
|
|
org, err := models.GetOrgByName(ctx.Params(":org"))
|
|
|
|
if err != nil {
|
2017-07-06 19:00:19 +05:30
|
|
|
if models.IsErrOrgNotExist(err) {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", err)
|
2014-12-13 07:00:32 +05:30
|
|
|
} else {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "GetOrgByName", err)
|
2014-12-13 07:00:32 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-07-23 22:38:22 +05:30
|
|
|
if !org.IsOwnedBy(ctx.User.ID) {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(403, "", "Given user is not owner of organization.")
|
2014-12-13 07:00:32 +05:30
|
|
|
return
|
|
|
|
}
|
2015-12-18 09:27:41 +05:30
|
|
|
CreateUserRepo(ctx, org, opt)
|
2014-12-13 07:00:32 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Migrate migrate remote git repository to gitea
|
2016-03-14 04:19:16 +05:30
|
|
|
func Migrate(ctx *context.APIContext, form auth.MigrateRepoForm) {
|
2017-08-21 16:43:47 +05:30
|
|
|
// swagger:route POST /repos/migrate repository repoMigrate
|
2017-05-02 19:05:59 +05:30
|
|
|
//
|
|
|
|
// Consumes:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 201: Repository
|
|
|
|
// 422: validationError
|
|
|
|
// 500: error
|
|
|
|
|
2015-09-03 15:47:33 +05:30
|
|
|
ctxUser := ctx.User
|
2015-11-25 11:25:37 +05:30
|
|
|
// Not equal means context user is an organization,
|
|
|
|
// or is another user/organization if current user is admin.
|
2016-11-27 11:33:59 +05:30
|
|
|
if form.UID != ctxUser.ID {
|
|
|
|
org, err := models.GetUserByID(form.UID)
|
2014-08-29 15:01:53 +05:30
|
|
|
if err != nil {
|
2015-08-05 08:44:17 +05:30
|
|
|
if models.IsErrUserNotExist(err) {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", err)
|
2015-02-22 20:19:25 +05:30
|
|
|
} else {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "GetUserByID", err)
|
2015-02-22 20:19:25 +05:30
|
|
|
}
|
2014-08-29 08:54:37 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctxUser = org
|
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.HasError() {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", ctx.GetErrMsg())
|
2014-08-29 08:54:37 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-11-25 11:25:37 +05:30
|
|
|
if ctxUser.IsOrganization() && !ctx.User.IsAdmin {
|
2014-08-29 08:54:37 +05:30
|
|
|
// Check ownership of organization.
|
2016-07-23 22:38:22 +05:30
|
|
|
if !ctxUser.IsOwnedBy(ctx.User.ID) {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(403, "", "Given user is not owner of organization.")
|
2014-08-29 08:54:37 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-04 05:10:52 +05:30
|
|
|
remoteAddr, err := form.ParseRemoteAddr(ctx.User)
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrInvalidCloneAddr(err) {
|
|
|
|
addrErr := err.(models.ErrInvalidCloneAddr)
|
|
|
|
switch {
|
|
|
|
case addrErr.IsURLError:
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", err)
|
2015-11-04 05:10:52 +05:30
|
|
|
case addrErr.IsPermissionDenied:
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", "You are not allowed to import local repositories.")
|
2015-11-04 05:10:52 +05:30
|
|
|
case addrErr.IsInvalidPath:
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(422, "", "Invalid local path, it does not exist or not a directory.")
|
2015-11-04 05:10:52 +05:30
|
|
|
default:
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "ParseRemoteAddr", "Unknown error type (ErrInvalidCloneAddr): "+err.Error())
|
2015-11-04 05:10:52 +05:30
|
|
|
}
|
|
|
|
} else {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "ParseRemoteAddr", err)
|
2015-02-22 20:19:25 +05:30
|
|
|
}
|
2014-08-29 08:54:37 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-09-03 13:50:24 +05:30
|
|
|
repo, err := models.MigrateRepository(ctx.User, ctxUser, models.MigrateRepoOptions{
|
2015-10-25 13:56:26 +05:30
|
|
|
Name: form.RepoName,
|
|
|
|
Description: form.Description,
|
|
|
|
IsPrivate: form.Private || setting.Repository.ForcePrivate,
|
|
|
|
IsMirror: form.Mirror,
|
|
|
|
RemoteAddr: remoteAddr,
|
|
|
|
})
|
2015-02-22 20:19:25 +05:30
|
|
|
if err != nil {
|
|
|
|
if repo != nil {
|
2017-09-03 13:50:24 +05:30
|
|
|
if errDelete := models.DeleteRepository(ctx.User, ctxUser.ID, repo.ID); errDelete != nil {
|
2015-02-22 20:19:25 +05:30
|
|
|
log.Error(4, "DeleteRepository: %v", errDelete)
|
|
|
|
}
|
2014-08-29 08:54:37 +05:30
|
|
|
}
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "MigrateRepository", models.HandleCloneUserCredentials(err.Error(), true))
|
2015-02-22 20:19:25 +05:30
|
|
|
return
|
2014-08-29 08:54:37 +05:30
|
|
|
}
|
|
|
|
|
2015-02-22 20:19:25 +05:30
|
|
|
log.Trace("Repository migrated: %s/%s", ctxUser.Name, form.RepoName)
|
2016-12-06 05:18:51 +05:30
|
|
|
ctx.JSON(201, repo.APIFormat(models.AccessModeAdmin))
|
2014-08-29 08:54:37 +05:30
|
|
|
}
|
2015-10-04 20:39:16 +05:30
|
|
|
|
2016-10-07 22:47:27 +05:30
|
|
|
// Get one repository
|
2016-03-14 04:19:16 +05:30
|
|
|
func Get(ctx *context.APIContext) {
|
2017-08-21 16:43:47 +05:30
|
|
|
// swagger:route GET /repos/{username}/{reponame} repository repoGet
|
2017-05-02 19:05:59 +05:30
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: Repository
|
|
|
|
// 500: error
|
|
|
|
|
2017-07-12 06:53:41 +05:30
|
|
|
ctx.JSON(200, ctx.Repo.Repository.APIFormat(ctx.Repo.AccessMode))
|
2015-10-23 03:16:07 +05:30
|
|
|
}
|
|
|
|
|
2016-10-03 16:05:42 +05:30
|
|
|
// GetByID returns a single Repository
|
|
|
|
func GetByID(ctx *context.APIContext) {
|
2017-08-21 16:43:47 +05:30
|
|
|
// swagger:route GET /repositories/{id} repository repoGetByID
|
2017-05-02 19:05:59 +05:30
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: Repository
|
|
|
|
// 500: error
|
|
|
|
|
2016-10-03 16:05:42 +05:30
|
|
|
repo, err := models.GetRepositoryByID(ctx.ParamsInt64(":id"))
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrRepoNotExist(err) {
|
|
|
|
ctx.Status(404)
|
|
|
|
} else {
|
|
|
|
ctx.Error(500, "GetRepositoryByID", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-03-15 06:21:46 +05:30
|
|
|
access, err := models.AccessLevel(ctx.User.ID, repo)
|
2016-12-06 05:18:51 +05:30
|
|
|
if err != nil {
|
2017-07-30 06:43:33 +05:30
|
|
|
ctx.Error(500, "AccessLevel", err)
|
|
|
|
return
|
|
|
|
} else if access < models.AccessModeRead {
|
|
|
|
ctx.Status(404)
|
2016-12-06 05:18:51 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.JSON(200, repo.APIFormat(access))
|
2016-10-03 16:05:42 +05:30
|
|
|
}
|
|
|
|
|
2016-10-07 22:47:27 +05:30
|
|
|
// Delete one repository
|
2016-03-14 04:19:16 +05:30
|
|
|
func Delete(ctx *context.APIContext) {
|
2017-08-21 16:43:47 +05:30
|
|
|
// swagger:route DELETE /repos/{username}/{reponame} repository repoDelete
|
2017-05-02 19:05:59 +05:30
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 204: empty
|
|
|
|
// 403: forbidden
|
|
|
|
// 500: error
|
|
|
|
|
2016-12-29 18:47:32 +05:30
|
|
|
if !ctx.Repo.IsAdmin() {
|
|
|
|
ctx.Error(403, "", "Must have admin rights")
|
|
|
|
return
|
|
|
|
}
|
2016-11-15 04:03:58 +05:30
|
|
|
owner := ctx.Repo.Owner
|
|
|
|
repo := ctx.Repo.Repository
|
2015-10-04 20:39:16 +05:30
|
|
|
|
2016-07-23 22:38:22 +05:30
|
|
|
if owner.IsOrganization() && !owner.IsOwnedBy(ctx.User.ID) {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(403, "", "Given user is not owner of organization.")
|
2015-10-04 20:39:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-09-03 13:50:24 +05:30
|
|
|
if err := models.DeleteRepository(ctx.User, owner.ID, repo.ID); err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "DeleteRepository", err)
|
2015-10-04 20:39:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-10-23 03:16:07 +05:30
|
|
|
log.Trace("Repository deleted: %s/%s", owner.Name, repo.Name)
|
2015-10-04 20:39:16 +05:30
|
|
|
ctx.Status(204)
|
|
|
|
}
|
2017-04-19 16:39:49 +05:30
|
|
|
|
|
|
|
// MirrorSync adds a mirrored repository to the sync queue
|
|
|
|
func MirrorSync(ctx *context.APIContext) {
|
2017-08-21 16:43:47 +05:30
|
|
|
// swagger:route POST /repos/{username}/{reponame}/mirror-sync repository repoMirrorSync
|
2017-05-19 05:50:06 +05:30
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
//
|
|
|
|
// Responses:
|
|
|
|
// 200: empty
|
|
|
|
// 403: forbidden
|
|
|
|
|
2017-04-19 16:39:49 +05:30
|
|
|
repo := ctx.Repo.Repository
|
|
|
|
|
|
|
|
if !ctx.Repo.IsWriter() {
|
|
|
|
ctx.Error(403, "MirrorSync", "Must have write access")
|
|
|
|
}
|
|
|
|
|
|
|
|
go models.MirrorQueue.Add(repo.ID)
|
|
|
|
ctx.Status(200)
|
|
|
|
}
|