2014-08-26 12:11:15 +02:00
|
|
|
// 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-04 23:16:42 +01:00
|
|
|
package repo
|
2014-08-26 12:11:15 +02:00
|
|
|
|
|
|
|
import (
|
2017-02-11 05:00:01 +01:00
|
|
|
"strings"
|
2014-08-26 12:11:15 +02:00
|
|
|
|
2016-11-11 10:39:44 +01:00
|
|
|
api "code.gitea.io/sdk/gitea"
|
2014-11-14 23:11:30 +01: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"
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/convert"
|
2014-08-26 12:11:15 +02:00
|
|
|
)
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// Search repositories via options
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories#search-repositories
|
2016-03-13 23:49:16 +01:00
|
|
|
func Search(ctx *context.APIContext) {
|
2016-03-11 21:33:12 +01:00
|
|
|
opts := &models.SearchRepoOptions{
|
2017-02-11 05:00:01 +01:00
|
|
|
Keyword: strings.Trim(ctx.Query("q"), " "),
|
2016-07-04 11:27:06 +02:00
|
|
|
OwnerID: ctx.QueryInt64("uid"),
|
|
|
|
PageSize: convert.ToCorrectPageSize(ctx.QueryInt("limit")),
|
2014-08-26 12:11:15 +02:00
|
|
|
}
|
|
|
|
|
2014-10-25 13:50:19 +02:00
|
|
|
// Check visibility.
|
2016-03-11 21:33:12 +01:00
|
|
|
if ctx.IsSigned && opts.OwnerID > 0 {
|
2016-07-23 19:08:22 +02:00
|
|
|
if ctx.User.ID == opts.OwnerID {
|
2016-03-11 21:33:12 +01:00
|
|
|
opts.Private = true
|
2014-10-25 13:50:19 +02:00
|
|
|
} else {
|
2016-03-11 21:33:12 +01:00
|
|
|
u, err := models.GetUserByID(opts.OwnerID)
|
2014-10-25 13:50:19 +02:00
|
|
|
if err != nil {
|
|
|
|
ctx.JSON(500, map[string]interface{}{
|
|
|
|
"ok": false,
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2016-07-23 19:08:22 +02:00
|
|
|
if u.IsOrganization() && u.IsOwnedBy(ctx.User.ID) {
|
2016-03-11 21:33:12 +01:00
|
|
|
opts.Private = true
|
2014-10-25 13:50:19 +02:00
|
|
|
}
|
|
|
|
// FIXME: how about collaborators?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
ctx.JSON(500, map[string]interface{}{
|
|
|
|
"ok": false,
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-04-30 07:08:09 +02:00
|
|
|
var userID int64
|
|
|
|
if ctx.IsSigned {
|
|
|
|
userID = ctx.User.ID
|
|
|
|
}
|
|
|
|
|
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 {
|
2014-08-26 12:11:15 +02:00
|
|
|
ctx.JSON(500, map[string]interface{}{
|
|
|
|
"ok": false,
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2017-04-30 07:08:09 +02:00
|
|
|
accessMode, err := models.AccessLevel(userID, repo)
|
2017-02-10 02:30:26 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.JSON(500, map[string]interface{}{
|
|
|
|
"ok": false,
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
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)
|
2014-12-13 02:30:32 +01:00
|
|
|
ctx.JSON(200, map[string]interface{}{
|
2014-08-26 12:11:15 +02:00
|
|
|
"ok": true,
|
|
|
|
"data": results,
|
|
|
|
})
|
|
|
|
}
|
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) {
|
2015-08-28 12:33:09 +02:00
|
|
|
repo, err := models.CreateRepository(owner, models.CreateRepoOptions{
|
|
|
|
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 {
|
2015-08-08 11:10:34 +02:00
|
|
|
if models.IsErrRepoAlreadyExist(err) ||
|
2015-03-26 22:11:47 +01:00
|
|
|
models.IsErrNameReserved(err) ||
|
|
|
|
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 {
|
2016-07-23 19:08:22 +02:00
|
|
|
if err = models.DeleteRepository(ctx.User.ID, repo.ID); err != nil {
|
2014-12-13 02:30:32 +01:00
|
|
|
log.Error(4, "DeleteRepository: %v", err)
|
|
|
|
}
|
|
|
|
}
|
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-11-24 08:04:31 +01:00
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories#create
|
2016-03-13 23:49:16 +01:00
|
|
|
func Create(ctx *context.APIContext, opt api.CreateRepoOption) {
|
2014-12-13 02:30:32 +01:00
|
|
|
// Shouldn't reach this condition, but just in case.
|
|
|
|
if ctx.User.IsOrganization() {
|
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) {
|
2014-12-13 02:30:32 +01:00
|
|
|
org, err := models.GetOrgByName(ctx.Params(":org"))
|
|
|
|
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)
|
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
|
|
|
|
}
|
|
|
|
|
2016-07-23 19:08:22 +02:00
|
|
|
if !org.IsOwnedBy(ctx.User.ID) {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(403, "", "Given user is not owner of organization.")
|
2014-12-13 02:30:32 +01:00
|
|
|
return
|
|
|
|
}
|
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
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories#migrate
|
2016-03-13 23:49:16 +01:00
|
|
|
func Migrate(ctx *context.APIContext, form auth.MigrateRepoForm) {
|
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
|
|
|
|
}
|
|
|
|
|
2015-11-25 06:55:37 +01:00
|
|
|
if ctxUser.IsOrganization() && !ctx.User.IsAdmin {
|
2014-08-29 05:24:37 +02:00
|
|
|
// Check ownership of organization.
|
2016-07-23 19:08:22 +02:00
|
|
|
if !ctxUser.IsOwnedBy(ctx.User.ID) {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(403, "", "Given user is not owner of organization.")
|
2014-08-29 05:24:37 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2015-10-25 09:26:26 +01:00
|
|
|
repo, err := models.MigrateRepository(ctxUser, models.MigrateRepoOptions{
|
|
|
|
Name: form.RepoName,
|
|
|
|
Description: form.Description,
|
|
|
|
IsPrivate: form.Private || setting.Repository.ForcePrivate,
|
|
|
|
IsMirror: form.Mirror,
|
|
|
|
RemoteAddr: remoteAddr,
|
|
|
|
})
|
2015-02-22 15:49:25 +01:00
|
|
|
if err != nil {
|
|
|
|
if repo != nil {
|
2016-07-23 19:08:22 +02:00
|
|
|
if errDelete := models.DeleteRepository(ctxUser.ID, repo.ID); errDelete != nil {
|
2015-02-22 15:49:25 +01:00
|
|
|
log.Error(4, "DeleteRepository: %v", errDelete)
|
|
|
|
}
|
2014-08-29 05:24:37 +02:00
|
|
|
}
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "MigrateRepository", models.HandleCloneUserCredentials(err.Error(), true))
|
2015-02-22 15:49:25 +01:00
|
|
|
return
|
2014-08-29 05:24:37 +02:00
|
|
|
}
|
|
|
|
|
2015-02-22 15:49:25 +01:00
|
|
|
log.Trace("Repository migrated: %s/%s", ctxUser.Name, form.RepoName)
|
2016-12-06 00:48:51 +01:00
|
|
|
ctx.JSON(201, repo.APIFormat(models.AccessModeAdmin))
|
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-11-24 08:04:31 +01:00
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories#get
|
2016-03-13 23:49:16 +01:00
|
|
|
func Get(ctx *context.APIContext) {
|
2016-11-14 23:33:58 +01:00
|
|
|
repo := ctx.Repo.Repository
|
2017-03-15 01:51:46 +01:00
|
|
|
access, err := models.AccessLevel(ctx.User.ID, repo)
|
2016-12-06 00:48:51 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.Error(500, "GetRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.JSON(200, repo.APIFormat(access))
|
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) {
|
|
|
|
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 01:51:46 +01:00
|
|
|
access, err := models.AccessLevel(ctx.User.ID, repo)
|
2016-12-06 00:48:51 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.Error(500, "GetRepositoryByID", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.JSON(200, repo.APIFormat(access))
|
2016-10-03 12:35:42 +02:00
|
|
|
}
|
|
|
|
|
2016-10-07 19:17:27 +02:00
|
|
|
// Delete one repository
|
2016-11-24 08:04:31 +01:00
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories#delete
|
2016-03-13 23:49:16 +01:00
|
|
|
func Delete(ctx *context.APIContext) {
|
2016-12-29 14:17:32 +01:00
|
|
|
if !ctx.Repo.IsAdmin() {
|
|
|
|
ctx.Error(403, "", "Must have admin rights")
|
|
|
|
return
|
|
|
|
}
|
2016-11-14 23:33:58 +01:00
|
|
|
owner := ctx.Repo.Owner
|
|
|
|
repo := ctx.Repo.Repository
|
2015-10-04 17:09:16 +02:00
|
|
|
|
2016-07-23 19:08:22 +02:00
|
|
|
if owner.IsOrganization() && !owner.IsOwnedBy(ctx.User.ID) {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(403, "", "Given user is not owner of organization.")
|
2015-10-04 17:09:16 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-07-23 19:08:22 +02:00
|
|
|
if err := models.DeleteRepository(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) {
|
|
|
|
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)
|
|
|
|
}
|