2014-08-26 12:11:15 +02:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2018-11-28 12:26:14 +01:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2014-08-26 12:11:15 +02:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-12-04 23:16:42 +01:00
|
|
|
package repo
|
2014-08-26 12:11:15 +02:00
|
|
|
|
|
|
|
import (
|
2017-08-17 03:31:34 +02:00
|
|
|
"fmt"
|
2017-10-26 23:16:13 +02:00
|
|
|
"net/http"
|
2017-02-11 05:00:01 +01:00
|
|
|
"strings"
|
2014-08-26 12:11:15 +02:00
|
|
|
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/auth"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
2019-05-07 03:12:51 +02:00
|
|
|
"code.gitea.io/gitea/modules/migrations"
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2017-10-26 23:16:13 +02:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/convert"
|
2018-03-29 15:32:40 +02:00
|
|
|
|
2019-05-11 12:21:34 +02:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2014-08-26 12:11:15 +02:00
|
|
|
)
|
|
|
|
|
2018-08-02 10:10:02 +02:00
|
|
|
var searchOrderByMap = map[string]map[string]models.SearchOrderBy{
|
|
|
|
"asc": {
|
|
|
|
"alpha": models.SearchOrderByAlphabetically,
|
|
|
|
"created": models.SearchOrderByOldest,
|
|
|
|
"updated": models.SearchOrderByLeastUpdated,
|
|
|
|
"size": models.SearchOrderBySize,
|
|
|
|
"id": models.SearchOrderByID,
|
|
|
|
},
|
|
|
|
"desc": {
|
|
|
|
"alpha": models.SearchOrderByAlphabeticallyReverse,
|
|
|
|
"created": models.SearchOrderByNewest,
|
|
|
|
"updated": models.SearchOrderByRecentUpdated,
|
|
|
|
"size": models.SearchOrderBySizeReverse,
|
|
|
|
"id": models.SearchOrderByIDReverse,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// Search repositories via options
|
2016-03-13 23:49:16 +01:00
|
|
|
func Search(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation GET /repos/search repository repoSearch
|
|
|
|
// ---
|
|
|
|
// summary: Search for repositories
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: q
|
|
|
|
// in: query
|
|
|
|
// description: keyword
|
|
|
|
// type: string
|
|
|
|
// - name: uid
|
|
|
|
// in: query
|
2017-11-15 09:10:26 +01:00
|
|
|
// description: search only for repos that the user with the given id owns or contributes to
|
|
|
|
// type: integer
|
2018-10-21 05:40:42 +02:00
|
|
|
// format: int64
|
2019-05-15 17:24:39 +02:00
|
|
|
// - name: starredBy
|
|
|
|
// in: query
|
|
|
|
// description: search only for repos that the user with the given id has starred
|
|
|
|
// type: integer
|
|
|
|
// format: int64
|
|
|
|
// - name: private
|
|
|
|
// in: query
|
|
|
|
// description: include private repositories this user has access to (defaults to true)
|
|
|
|
// type: boolean
|
2017-11-15 09:10:26 +01:00
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
2017-11-13 08:02:25 +01:00
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2017-11-15 09:10:26 +01:00
|
|
|
// description: page size of results, maximum page size is 50
|
2017-11-13 08:02:25 +01:00
|
|
|
// type: integer
|
|
|
|
// - name: mode
|
|
|
|
// in: query
|
|
|
|
// description: type of repository to search for. Supported values are
|
|
|
|
// "fork", "source", "mirror" and "collaborative"
|
|
|
|
// type: string
|
|
|
|
// - name: exclusive
|
|
|
|
// in: query
|
2017-11-15 09:10:26 +01:00
|
|
|
// description: if `uid` is given, search only for repos that the user owns
|
2017-11-13 08:02:25 +01:00
|
|
|
// type: boolean
|
2018-08-02 10:10:02 +02:00
|
|
|
// - name: sort
|
|
|
|
// in: query
|
|
|
|
// description: sort repos by attribute. Supported values are
|
|
|
|
// "alpha", "created", "updated", "size", and "id".
|
|
|
|
// Default is "alpha"
|
|
|
|
// type: string
|
|
|
|
// - name: order
|
|
|
|
// in: query
|
|
|
|
// description: sort order, either "asc" (ascending) or "desc" (descending).
|
|
|
|
// Default is "asc", ignored if "sort" is not specified.
|
|
|
|
// type: string
|
2017-11-13 08:02:25 +01:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/SearchResults"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2016-03-11 21:33:12 +01:00
|
|
|
opts := &models.SearchRepoOptions{
|
2017-10-26 23:16:13 +02:00
|
|
|
Keyword: strings.Trim(ctx.Query("q"), " "),
|
|
|
|
OwnerID: ctx.QueryInt64("uid"),
|
2017-11-15 09:10:26 +01:00
|
|
|
Page: ctx.QueryInt("page"),
|
2017-10-26 23:16:13 +02:00
|
|
|
PageSize: convert.ToCorrectPageSize(ctx.QueryInt("limit")),
|
2018-09-13 04:33:48 +02:00
|
|
|
TopicOnly: ctx.QueryBool("topic"),
|
2017-10-26 23:16:13 +02:00
|
|
|
Collaborate: util.OptionalBoolNone,
|
2019-05-15 17:24:39 +02:00
|
|
|
Private: ctx.IsSigned && (ctx.Query("private") == "" || ctx.QueryBool("private")),
|
|
|
|
UserIsAdmin: ctx.IsUserSiteAdmin(),
|
|
|
|
UserID: ctx.Data["SignedUserID"].(int64),
|
|
|
|
StarredByID: ctx.QueryInt64("starredBy"),
|
2017-10-26 23:16:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.QueryBool("exclusive") {
|
|
|
|
opts.Collaborate = util.OptionalBoolFalse
|
|
|
|
}
|
|
|
|
|
|
|
|
var mode = ctx.Query("mode")
|
|
|
|
switch mode {
|
|
|
|
case "source":
|
|
|
|
opts.Fork = util.OptionalBoolFalse
|
|
|
|
opts.Mirror = util.OptionalBoolFalse
|
|
|
|
case "fork":
|
|
|
|
opts.Fork = util.OptionalBoolTrue
|
|
|
|
case "mirror":
|
|
|
|
opts.Mirror = util.OptionalBoolTrue
|
|
|
|
case "collaborative":
|
|
|
|
opts.Mirror = util.OptionalBoolFalse
|
|
|
|
opts.Collaborate = util.OptionalBoolTrue
|
|
|
|
case "":
|
|
|
|
default:
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Errorf("Invalid search mode: \"%s\"", mode))
|
|
|
|
return
|
2014-08-26 12:11:15 +02:00
|
|
|
}
|
|
|
|
|
2018-08-02 10:10:02 +02:00
|
|
|
var sortMode = ctx.Query("sort")
|
|
|
|
if len(sortMode) > 0 {
|
|
|
|
var sortOrder = ctx.Query("order")
|
|
|
|
if len(sortOrder) == 0 {
|
|
|
|
sortOrder = "asc"
|
|
|
|
}
|
|
|
|
if searchModeMap, ok := searchOrderByMap[sortOrder]; ok {
|
|
|
|
if orderBy, ok := searchModeMap[sortMode]; ok {
|
|
|
|
opts.OrderBy = orderBy
|
|
|
|
} else {
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Errorf("Invalid sort mode: \"%s\"", sortMode))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Errorf("Invalid sort order: \"%s\"", sortOrder))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-26 23:16:13 +02:00
|
|
|
var err error
|
2016-07-04 11:27:06 +02:00
|
|
|
repos, count, err := models.SearchRepositoryByName(opts)
|
2014-08-26 12:11:15 +02:00
|
|
|
if err != nil {
|
2017-05-02 15:35:59 +02:00
|
|
|
ctx.JSON(500, api.SearchError{
|
|
|
|
OK: false,
|
|
|
|
Error: err.Error(),
|
2014-08-26 12:11:15 +02:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-14 23:11:30 +01:00
|
|
|
results := make([]*api.Repository, len(repos))
|
2017-02-10 02:30:26 +01:00
|
|
|
for i, repo := range repos {
|
|
|
|
if err = repo.GetOwner(); err != nil {
|
2017-05-02 15:35:59 +02:00
|
|
|
ctx.JSON(500, api.SearchError{
|
|
|
|
OK: false,
|
|
|
|
Error: err.Error(),
|
2014-08-26 12:11:15 +02:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2018-11-28 12:26:14 +01:00
|
|
|
accessMode, err := models.AccessLevel(ctx.User, repo)
|
2017-02-10 02:30:26 +01:00
|
|
|
if err != nil {
|
2017-05-02 15:35:59 +02:00
|
|
|
ctx.JSON(500, api.SearchError{
|
|
|
|
OK: false,
|
|
|
|
Error: err.Error(),
|
2017-02-10 02:30:26 +01:00
|
|
|
})
|
2014-08-26 12:11:15 +02:00
|
|
|
}
|
2017-02-10 02:30:26 +01:00
|
|
|
results[i] = repo.APIFormat(accessMode)
|
2014-08-26 12:11:15 +02:00
|
|
|
}
|
|
|
|
|
2016-07-04 11:27:06 +02:00
|
|
|
ctx.SetLinkHeader(int(count), setting.API.MaxResponseItems)
|
2017-08-17 03:31:34 +02:00
|
|
|
ctx.Header().Set("X-Total-Count", fmt.Sprintf("%d", count))
|
2017-05-02 15:35:59 +02:00
|
|
|
ctx.JSON(200, api.SearchResults{
|
|
|
|
OK: true,
|
|
|
|
Data: results,
|
2014-08-26 12:11:15 +02:00
|
|
|
})
|
|
|
|
}
|
2014-08-29 05:24:37 +02:00
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// CreateUserRepo create a repository for a user
|
2016-03-13 23:49:16 +01:00
|
|
|
func CreateUserRepo(ctx *context.APIContext, owner *models.User, opt api.CreateRepoOption) {
|
2019-02-21 23:07:58 +01:00
|
|
|
if opt.AutoInit && opt.Readme == "" {
|
|
|
|
opt.Readme = "Default"
|
|
|
|
}
|
2017-09-03 10:20:24 +02:00
|
|
|
repo, err := models.CreateRepository(ctx.User, owner, models.CreateRepoOptions{
|
2015-08-28 12:33:09 +02:00
|
|
|
Name: opt.Name,
|
|
|
|
Description: opt.Description,
|
2015-08-28 13:06:18 +02:00
|
|
|
Gitignores: opt.Gitignores,
|
2015-08-28 12:33:09 +02:00
|
|
|
License: opt.License,
|
2015-08-28 13:06:18 +02:00
|
|
|
Readme: opt.Readme,
|
|
|
|
IsPrivate: opt.Private,
|
|
|
|
AutoInit: opt.AutoInit,
|
2015-08-28 12:33:09 +02:00
|
|
|
})
|
2014-12-13 02:30:32 +01:00
|
|
|
if err != nil {
|
2019-03-15 15:19:09 +01:00
|
|
|
if models.IsErrRepoAlreadyExist(err) {
|
|
|
|
ctx.Error(409, "", "The repository with the same name already exists.")
|
|
|
|
} else if models.IsErrNameReserved(err) ||
|
2015-03-26 22:11:47 +01:00
|
|
|
models.IsErrNamePatternNotAllowed(err) {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(422, "", err)
|
2014-12-13 02:30:32 +01:00
|
|
|
} else {
|
|
|
|
if repo != nil {
|
2017-09-03 10:20:24 +02:00
|
|
|
if err = models.DeleteRepository(ctx.User, ctx.User.ID, repo.ID); err != nil {
|
2019-04-02 09:48:31 +02:00
|
|
|
log.Error("DeleteRepository: %v", err)
|
2014-12-13 02:30:32 +01:00
|
|
|
}
|
|
|
|
}
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "CreateRepository", err)
|
2014-12-13 02:30:32 +01:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-06 00:48:51 +01:00
|
|
|
ctx.JSON(201, repo.APIFormat(models.AccessModeOwner))
|
2014-12-13 02:30:32 +01:00
|
|
|
}
|
|
|
|
|
2016-10-07 19:17:27 +02:00
|
|
|
// Create one repository of mine
|
2016-03-13 23:49:16 +01:00
|
|
|
func Create(ctx *context.APIContext, opt api.CreateRepoOption) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation POST /user/repos repository user createCurrentUserRepo
|
|
|
|
// ---
|
|
|
|
// summary: Create a repository
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/CreateRepoOption"
|
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Repository"
|
2014-12-13 02:30:32 +01:00
|
|
|
if ctx.User.IsOrganization() {
|
2017-11-13 08:02:25 +01:00
|
|
|
// Shouldn't reach this condition, but just in case.
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(422, "", "not allowed creating repository for organization")
|
2014-12-13 02:30:32 +01:00
|
|
|
return
|
|
|
|
}
|
2015-12-18 04:57:41 +01:00
|
|
|
CreateUserRepo(ctx, ctx.User, opt)
|
2014-12-13 02:30:32 +01:00
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// CreateOrgRepo create one repository of the organization
|
2016-03-13 23:49:16 +01:00
|
|
|
func CreateOrgRepo(ctx *context.APIContext, opt api.CreateRepoOption) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation POST /org/{org}/repos organization createOrgRepo
|
|
|
|
// ---
|
|
|
|
// summary: Create a repository in an organization
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: org
|
|
|
|
// in: path
|
|
|
|
// description: name of organization
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/CreateRepoOption"
|
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Repository"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
2014-12-13 02:30:32 +01:00
|
|
|
org, err := models.GetOrgByName(ctx.Params(":org"))
|
|
|
|
if err != nil {
|
2017-07-06 15:30:19 +02:00
|
|
|
if models.IsErrOrgNotExist(err) {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(422, "", err)
|
2014-12-13 02:30:32 +01:00
|
|
|
} else {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "GetOrgByName", err)
|
2014-12-13 02:30:32 +01:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-02-18 17:00:27 +01:00
|
|
|
if !models.HasOrgVisible(org, ctx.User) {
|
|
|
|
ctx.NotFound("HasOrgVisible", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-07-05 01:51:02 +02:00
|
|
|
if !ctx.User.IsAdmin {
|
|
|
|
isOwner, err := org.IsOwnedBy(ctx.User.ID)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("IsOwnedBy", err)
|
|
|
|
return
|
|
|
|
} else if !isOwner {
|
|
|
|
ctx.Error(403, "", "Given user is not owner of organization.")
|
|
|
|
return
|
|
|
|
}
|
2014-12-13 02:30:32 +01:00
|
|
|
}
|
2015-12-18 04:57:41 +01:00
|
|
|
CreateUserRepo(ctx, org, opt)
|
2014-12-13 02:30:32 +01:00
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// Migrate migrate remote git repository to gitea
|
2016-03-13 23:49:16 +01:00
|
|
|
func Migrate(ctx *context.APIContext, form auth.MigrateRepoForm) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation POST /repos/migrate repository repoMigrate
|
|
|
|
// ---
|
|
|
|
// summary: Migrate a remote git repository
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/MigrateRepoForm"
|
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Repository"
|
2015-09-03 12:17:33 +02:00
|
|
|
ctxUser := ctx.User
|
2015-11-25 06:55:37 +01:00
|
|
|
// Not equal means context user is an organization,
|
|
|
|
// or is another user/organization if current user is admin.
|
2016-11-27 07:03:59 +01:00
|
|
|
if form.UID != ctxUser.ID {
|
|
|
|
org, err := models.GetUserByID(form.UID)
|
2014-08-29 11:31:53 +02:00
|
|
|
if err != nil {
|
2015-08-05 05:14:17 +02:00
|
|
|
if models.IsErrUserNotExist(err) {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(422, "", err)
|
2015-02-22 15:49:25 +01:00
|
|
|
} else {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "GetUserByID", err)
|
2015-02-22 15:49:25 +01:00
|
|
|
}
|
2014-08-29 05:24:37 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctxUser = org
|
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.HasError() {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(422, "", ctx.GetErrMsg())
|
2014-08-29 05:24:37 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-07-05 00:45:15 +02:00
|
|
|
if !ctx.User.IsAdmin {
|
|
|
|
if !ctxUser.IsOrganization() && ctx.User.ID != ctxUser.ID {
|
|
|
|
ctx.Error(403, "", "Given user is not an organization.")
|
2014-08-29 05:24:37 +02:00
|
|
|
return
|
|
|
|
}
|
2018-07-05 00:45:15 +02:00
|
|
|
|
|
|
|
if ctxUser.IsOrganization() {
|
|
|
|
// Check ownership of organization.
|
|
|
|
isOwner, err := ctxUser.IsOwnedBy(ctx.User.ID)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(500, "IsOwnedBy", err)
|
|
|
|
return
|
|
|
|
} else if !isOwner {
|
|
|
|
ctx.Error(403, "", "Given user is not owner of organization.")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2014-08-29 05:24:37 +02:00
|
|
|
}
|
|
|
|
|
2015-11-04 00:40:52 +01:00
|
|
|
remoteAddr, err := form.ParseRemoteAddr(ctx.User)
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrInvalidCloneAddr(err) {
|
|
|
|
addrErr := err.(models.ErrInvalidCloneAddr)
|
|
|
|
switch {
|
|
|
|
case addrErr.IsURLError:
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(422, "", err)
|
2015-11-04 00:40:52 +01:00
|
|
|
case addrErr.IsPermissionDenied:
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(422, "", "You are not allowed to import local repositories.")
|
2015-11-04 00:40:52 +01:00
|
|
|
case addrErr.IsInvalidPath:
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(422, "", "Invalid local path, it does not exist or not a directory.")
|
2015-11-04 00:40:52 +01:00
|
|
|
default:
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "ParseRemoteAddr", "Unknown error type (ErrInvalidCloneAddr): "+err.Error())
|
2015-11-04 00:40:52 +01:00
|
|
|
}
|
|
|
|
} else {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "ParseRemoteAddr", err)
|
2015-02-22 15:49:25 +01:00
|
|
|
}
|
2014-08-29 05:24:37 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-05-07 03:12:51 +02:00
|
|
|
var opts = migrations.MigrateOptions{
|
|
|
|
RemoteURL: remoteAddr,
|
|
|
|
Name: form.RepoName,
|
|
|
|
Description: form.Description,
|
|
|
|
Private: form.Private || setting.Repository.ForcePrivate,
|
|
|
|
Mirror: form.Mirror,
|
|
|
|
AuthUsername: form.AuthUsername,
|
|
|
|
AuthPassword: form.AuthPassword,
|
|
|
|
Wiki: form.Wiki,
|
|
|
|
Issues: form.Issues,
|
|
|
|
Milestones: form.Milestones,
|
|
|
|
Labels: form.Labels,
|
|
|
|
Comments: true,
|
|
|
|
PullRequests: form.PullRequests,
|
|
|
|
Releases: form.Releases,
|
|
|
|
}
|
|
|
|
if opts.Mirror {
|
|
|
|
opts.Issues = false
|
|
|
|
opts.Milestones = false
|
|
|
|
opts.Labels = false
|
|
|
|
opts.Comments = false
|
|
|
|
opts.PullRequests = false
|
|
|
|
opts.Releases = false
|
|
|
|
}
|
2019-02-26 15:28:56 +01:00
|
|
|
|
2019-05-07 03:12:51 +02:00
|
|
|
repo, err := migrations.MigrateRepository(ctx.User, ctxUser.Name, opts)
|
|
|
|
if err == nil {
|
|
|
|
log.Trace("Repository migrated: %s/%s", ctxUser.Name, form.RepoName)
|
|
|
|
ctx.JSON(201, repo.APIFormat(models.AccessModeAdmin))
|
2015-02-22 15:49:25 +01:00
|
|
|
return
|
2014-08-29 05:24:37 +02:00
|
|
|
}
|
|
|
|
|
2019-05-07 03:12:51 +02:00
|
|
|
switch {
|
|
|
|
case models.IsErrRepoAlreadyExist(err):
|
|
|
|
ctx.Error(409, "", "The repository with the same name already exists.")
|
|
|
|
case migrations.IsRateLimitError(err):
|
|
|
|
ctx.Error(422, "", "Remote visit addressed rate limitation.")
|
|
|
|
case migrations.IsTwoFactorAuthError(err):
|
|
|
|
ctx.Error(422, "", "Remote visit required two factors authentication.")
|
|
|
|
case models.IsErrReachLimitOfRepo(err):
|
|
|
|
ctx.Error(422, "", fmt.Sprintf("You have already reached your limit of %d repositories.", ctxUser.MaxCreationLimit()))
|
|
|
|
case models.IsErrNameReserved(err):
|
|
|
|
ctx.Error(422, "", fmt.Sprintf("The username '%s' is reserved.", err.(models.ErrNameReserved).Name))
|
|
|
|
case models.IsErrNamePatternNotAllowed(err):
|
|
|
|
ctx.Error(422, "", fmt.Sprintf("The pattern '%s' is not allowed in a username.", err.(models.ErrNamePatternNotAllowed).Pattern))
|
|
|
|
default:
|
|
|
|
err = util.URLSanitizedError(err, remoteAddr)
|
|
|
|
if strings.Contains(err.Error(), "Authentication failed") ||
|
|
|
|
strings.Contains(err.Error(), "Bad credentials") ||
|
|
|
|
strings.Contains(err.Error(), "could not read Username") {
|
|
|
|
ctx.Error(422, "", fmt.Sprintf("Authentication failed: %v.", err))
|
|
|
|
} else if strings.Contains(err.Error(), "fatal:") {
|
|
|
|
ctx.Error(422, "", fmt.Sprintf("Migration failed: %v.", err))
|
|
|
|
} else {
|
|
|
|
ctx.Error(500, "MigrateRepository", err)
|
|
|
|
}
|
|
|
|
}
|
2014-08-29 05:24:37 +02:00
|
|
|
}
|
2015-10-04 17:09:16 +02:00
|
|
|
|
2016-10-07 19:17:27 +02:00
|
|
|
// Get one repository
|
2016-03-13 23:49:16 +01:00
|
|
|
func Get(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation GET /repos/{owner}/{repo} repository repoGet
|
|
|
|
// ---
|
|
|
|
// summary: Get a repository
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Repository"
|
2017-07-12 03:23:41 +02:00
|
|
|
ctx.JSON(200, ctx.Repo.Repository.APIFormat(ctx.Repo.AccessMode))
|
2015-10-22 23:46:07 +02:00
|
|
|
}
|
|
|
|
|
2016-10-03 12:35:42 +02:00
|
|
|
// GetByID returns a single Repository
|
|
|
|
func GetByID(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation GET /repositories/{id} repository repoGetByID
|
|
|
|
// ---
|
|
|
|
// summary: Get a repository by id
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the repo to get
|
|
|
|
// type: integer
|
2018-10-21 05:40:42 +02:00
|
|
|
// format: int64
|
2017-11-13 08:02:25 +01:00
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Repository"
|
2016-10-03 12:35:42 +02:00
|
|
|
repo, err := models.GetRepositoryByID(ctx.ParamsInt64(":id"))
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrRepoNotExist(err) {
|
2019-03-19 03:29:43 +01:00
|
|
|
ctx.NotFound()
|
2016-10-03 12:35:42 +02:00
|
|
|
} else {
|
|
|
|
ctx.Error(500, "GetRepositoryByID", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-28 12:26:14 +01:00
|
|
|
perm, err := models.GetUserRepoPermission(repo, ctx.User)
|
2016-12-06 00:48:51 +01:00
|
|
|
if err != nil {
|
2017-07-30 03:13:33 +02:00
|
|
|
ctx.Error(500, "AccessLevel", err)
|
|
|
|
return
|
2018-11-28 12:26:14 +01:00
|
|
|
} else if !perm.HasAccess() {
|
2019-03-19 03:29:43 +01:00
|
|
|
ctx.NotFound()
|
2016-12-06 00:48:51 +01:00
|
|
|
return
|
|
|
|
}
|
2018-11-28 12:26:14 +01:00
|
|
|
ctx.JSON(200, repo.APIFormat(perm.AccessMode))
|
2016-10-03 12:35:42 +02:00
|
|
|
}
|
|
|
|
|
2016-10-07 19:17:27 +02:00
|
|
|
// Delete one repository
|
2016-03-13 23:49:16 +01:00
|
|
|
func Delete(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation DELETE /repos/{owner}/{repo} repository repoDelete
|
|
|
|
// ---
|
|
|
|
// summary: Delete a repository
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo to delete
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo to delete
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
2016-11-14 23:33:58 +01:00
|
|
|
owner := ctx.Repo.Owner
|
|
|
|
repo := ctx.Repo.Repository
|
2015-10-04 17:09:16 +02:00
|
|
|
|
2018-12-02 17:08:33 +01:00
|
|
|
if owner.IsOrganization() && !ctx.User.IsAdmin {
|
2017-12-21 08:43:26 +01:00
|
|
|
isOwner, err := owner.IsOwnedBy(ctx.User.ID)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(500, "IsOwnedBy", err)
|
|
|
|
return
|
|
|
|
} else if !isOwner {
|
|
|
|
ctx.Error(403, "", "Given user is not owner of organization.")
|
|
|
|
return
|
|
|
|
}
|
2015-10-04 17:09:16 +02:00
|
|
|
}
|
|
|
|
|
2017-09-03 10:20:24 +02:00
|
|
|
if err := models.DeleteRepository(ctx.User, owner.ID, repo.ID); err != nil {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "DeleteRepository", err)
|
2015-10-04 17:09:16 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-10-22 23:46:07 +02:00
|
|
|
log.Trace("Repository deleted: %s/%s", owner.Name, repo.Name)
|
2015-10-04 17:09:16 +02:00
|
|
|
ctx.Status(204)
|
|
|
|
}
|
2017-04-19 13:09:49 +02:00
|
|
|
|
|
|
|
// MirrorSync adds a mirrored repository to the sync queue
|
|
|
|
func MirrorSync(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation POST /repos/{owner}/{repo}/mirror-sync repository repoMirrorSync
|
|
|
|
// ---
|
|
|
|
// summary: Sync a mirrored repository
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo to sync
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo to sync
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/empty"
|
2017-04-19 13:09:49 +02:00
|
|
|
repo := ctx.Repo.Repository
|
|
|
|
|
2018-11-28 12:26:14 +01:00
|
|
|
if !ctx.Repo.CanWrite(models.UnitTypeCode) {
|
2017-04-19 13:09:49 +02:00
|
|
|
ctx.Error(403, "MirrorSync", "Must have write access")
|
|
|
|
}
|
|
|
|
|
|
|
|
go models.MirrorQueue.Add(repo.ID)
|
|
|
|
ctx.Status(200)
|
|
|
|
}
|
2018-04-11 04:51:44 +02:00
|
|
|
|
|
|
|
// TopicSearch search for creating topic
|
|
|
|
func TopicSearch(ctx *context.Context) {
|
|
|
|
// swagger:operation GET /topics/search repository topicSearch
|
|
|
|
// ---
|
|
|
|
// summary: search topics via keyword
|
|
|
|
// produces:
|
2018-06-12 16:59:22 +02:00
|
|
|
// - application/json
|
2018-04-11 04:51:44 +02:00
|
|
|
// parameters:
|
2018-06-12 16:59:22 +02:00
|
|
|
// - name: q
|
|
|
|
// in: query
|
|
|
|
// description: keywords to search
|
|
|
|
// required: true
|
|
|
|
// type: string
|
2018-04-11 04:51:44 +02:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Repository"
|
|
|
|
if ctx.User == nil {
|
|
|
|
ctx.JSON(403, map[string]interface{}{
|
|
|
|
"message": "Only owners could change the topics.",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
kw := ctx.Query("q")
|
|
|
|
|
|
|
|
topics, err := models.FindTopics(&models.FindTopicOptions{
|
|
|
|
Keyword: kw,
|
|
|
|
Limit: 10,
|
|
|
|
})
|
|
|
|
if err != nil {
|
2019-04-02 09:48:31 +02:00
|
|
|
log.Error("SearchTopics failed: %v", err)
|
2018-04-11 04:51:44 +02:00
|
|
|
ctx.JSON(500, map[string]interface{}{
|
|
|
|
"message": "Search topics failed.",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.JSON(200, map[string]interface{}{
|
|
|
|
"topics": topics,
|
|
|
|
})
|
|
|
|
}
|