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.
|
|
|
|
|
|
|
|
package v1
|
|
|
|
|
|
|
|
import (
|
2015-02-22 20:19:25 +05:30
|
|
|
"net/url"
|
2014-08-26 15:41:15 +05:30
|
|
|
"path"
|
2014-08-29 08:54:37 +05:30
|
|
|
"strings"
|
2014-08-26 15:41:15 +05:30
|
|
|
|
|
|
|
"github.com/Unknwon/com"
|
|
|
|
|
2014-11-15 03:41:30 +05:30
|
|
|
api "github.com/gogits/go-gogs-client"
|
|
|
|
|
2014-08-26 15:41:15 +05:30
|
|
|
"github.com/gogits/gogs/models"
|
2014-08-29 08:54:37 +05:30
|
|
|
"github.com/gogits/gogs/modules/auth"
|
|
|
|
"github.com/gogits/gogs/modules/log"
|
2014-08-26 15:41:15 +05:30
|
|
|
"github.com/gogits/gogs/modules/middleware"
|
2014-11-13 13:02:18 +05:30
|
|
|
"github.com/gogits/gogs/modules/setting"
|
2014-08-26 15:41:15 +05:30
|
|
|
)
|
|
|
|
|
2014-12-13 07:00:32 +05:30
|
|
|
// ToApiRepository converts repository to API format.
|
|
|
|
func ToApiRepository(owner *models.User, repo *models.Repository, permission api.Permission) *api.Repository {
|
2014-12-14 03:16:00 +05:30
|
|
|
cl, err := repo.CloneLink()
|
|
|
|
if err != nil {
|
|
|
|
log.Error(4, "CloneLink: %v", err)
|
2014-12-13 07:00:32 +05:30
|
|
|
}
|
|
|
|
return &api.Repository{
|
2015-08-08 20:13:14 +05:30
|
|
|
Id: repo.ID,
|
2014-12-13 07:00:32 +05:30
|
|
|
Owner: *ToApiUser(owner),
|
|
|
|
FullName: owner.Name + "/" + repo.Name,
|
|
|
|
Private: repo.IsPrivate,
|
|
|
|
Fork: repo.IsFork,
|
2014-12-14 03:16:00 +05:30
|
|
|
HtmlUrl: setting.AppUrl + owner.Name + "/" + repo.Name,
|
|
|
|
CloneUrl: cl.HTTPS,
|
|
|
|
SshUrl: cl.SSH,
|
2014-12-13 07:00:32 +05:30
|
|
|
Permissions: permission,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-26 15:41:15 +05:30
|
|
|
func SearchRepos(ctx *middleware.Context) {
|
|
|
|
opt := models.SearchOption{
|
|
|
|
Keyword: path.Base(ctx.Query("q")),
|
|
|
|
Uid: com.StrTo(ctx.Query("uid")).MustInt64(),
|
|
|
|
Limit: com.StrTo(ctx.Query("limit")).MustInt(),
|
|
|
|
}
|
|
|
|
if opt.Limit == 0 {
|
|
|
|
opt.Limit = 10
|
|
|
|
}
|
|
|
|
|
2014-10-25 17:20:19 +05:30
|
|
|
// Check visibility.
|
|
|
|
if ctx.IsSigned && opt.Uid > 0 {
|
|
|
|
if ctx.User.Id == opt.Uid {
|
|
|
|
opt.Private = true
|
|
|
|
} else {
|
2015-08-08 20:13:14 +05:30
|
|
|
u, err := models.GetUserByID(opt.Uid)
|
2014-10-25 17:20:19 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.JSON(500, map[string]interface{}{
|
|
|
|
"ok": false,
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2014-12-13 07:00:32 +05:30
|
|
|
if u.IsOrganization() && u.IsOwnedBy(ctx.User.Id) {
|
2014-10-25 17:20:19 +05:30
|
|
|
opt.Private = true
|
|
|
|
}
|
|
|
|
// FIXME: how about collaborators?
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-26 15:41:15 +05:30
|
|
|
repos, err := models.SearchRepositoryByName(opt)
|
|
|
|
if err != nil {
|
|
|
|
ctx.JSON(500, map[string]interface{}{
|
|
|
|
"ok": false,
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-15 03:41:30 +05:30
|
|
|
results := make([]*api.Repository, len(repos))
|
2014-08-26 15:41:15 +05:30
|
|
|
for i := range repos {
|
|
|
|
if err = repos[i].GetOwner(); err != nil {
|
|
|
|
ctx.JSON(500, map[string]interface{}{
|
|
|
|
"ok": false,
|
|
|
|
"error": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2014-11-15 03:41:30 +05:30
|
|
|
results[i] = &api.Repository{
|
2015-08-08 20:13:14 +05:30
|
|
|
Id: repos[i].ID,
|
2014-11-13 13:02:18 +05:30
|
|
|
FullName: path.Join(repos[i].Owner.Name, repos[i].Name),
|
2014-08-26 15:41:15 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-13 07:00:32 +05:30
|
|
|
ctx.JSON(200, map[string]interface{}{
|
2014-08-26 15:41:15 +05:30
|
|
|
"ok": true,
|
|
|
|
"data": results,
|
|
|
|
})
|
|
|
|
}
|
2014-08-29 08:54:37 +05:30
|
|
|
|
2015-08-28 16:36:18 +05:30
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Repositories#list-your-repositories
|
|
|
|
func ListMyRepos(ctx *middleware.Context) {
|
|
|
|
ownRepos, err := models.GetRepositories(ctx.User.Id, true)
|
|
|
|
if err != nil {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(500, "GetRepositories", err)
|
2015-08-28 16:36:18 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
numOwnRepos := len(ownRepos)
|
|
|
|
|
|
|
|
accessibleRepos, err := ctx.User.GetAccessibleRepositories()
|
|
|
|
if err != nil {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(500, "GetAccessibleRepositories", err)
|
2015-08-28 16:36:18 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
repos := make([]*api.Repository, numOwnRepos+len(accessibleRepos))
|
|
|
|
for i := range ownRepos {
|
|
|
|
repos[i] = ToApiRepository(ctx.User, ownRepos[i], api.Permission{true, true, true})
|
|
|
|
}
|
|
|
|
i := numOwnRepos
|
|
|
|
|
|
|
|
for repo, access := range accessibleRepos {
|
|
|
|
repos[i] = ToApiRepository(repo.Owner, repo, api.Permission{
|
|
|
|
Admin: access >= models.ACCESS_MODE_ADMIN,
|
|
|
|
Push: access >= models.ACCESS_MODE_WRITE,
|
|
|
|
Pull: true,
|
|
|
|
})
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.JSON(200, &repos)
|
|
|
|
}
|
|
|
|
|
2014-12-13 07:00:32 +05:30
|
|
|
func createRepo(ctx *middleware.Context, owner *models.User, opt api.CreateRepoOption) {
|
2015-08-28 16:03:09 +05:30
|
|
|
repo, err := models.CreateRepository(owner, models.CreateRepoOptions{
|
|
|
|
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) {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(422, "", err)
|
2014-12-13 07:00:32 +05:30
|
|
|
} else {
|
|
|
|
if repo != nil {
|
2015-09-01 21:13:53 +05:30
|
|
|
if err = models.DeleteRepository(ctx.User.Id, repo.ID); err != nil {
|
2014-12-13 07:00:32 +05:30
|
|
|
log.Error(4, "DeleteRepository: %v", err)
|
|
|
|
}
|
|
|
|
}
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(500, "CreateRepository", err)
|
2014-12-13 07:00:32 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-08-19 17:38:57 +05:30
|
|
|
ctx.JSON(201, ToApiRepository(owner, repo, api.Permission{true, true, true}))
|
2014-12-13 07:00:32 +05:30
|
|
|
}
|
|
|
|
|
2015-08-28 16:36:18 +05:30
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Repositories#create
|
2014-12-13 07:00:32 +05:30
|
|
|
func CreateRepo(ctx *middleware.Context, opt api.CreateRepoOption) {
|
|
|
|
// Shouldn't reach this condition, but just in case.
|
|
|
|
if ctx.User.IsOrganization() {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(422, "", "not allowed creating repository for organization")
|
2014-12-13 07:00:32 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
createRepo(ctx, ctx.User, opt)
|
|
|
|
}
|
|
|
|
|
|
|
|
func CreateOrgRepo(ctx *middleware.Context, opt api.CreateRepoOption) {
|
|
|
|
org, err := models.GetOrgByName(ctx.Params(":org"))
|
|
|
|
if err != nil {
|
2015-08-05 08:44:17 +05:30
|
|
|
if models.IsErrUserNotExist(err) {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(422, "", err)
|
2014-12-13 07:00:32 +05:30
|
|
|
} else {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(500, "GetOrgByName", err)
|
2014-12-13 07:00:32 +05:30
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !org.IsOwnedBy(ctx.User.Id) {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(403, "", "Given user is not owner of organization.")
|
2014-12-13 07:00:32 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
createRepo(ctx, org, opt)
|
|
|
|
}
|
|
|
|
|
|
|
|
func MigrateRepo(ctx *middleware.Context, form auth.MigrateRepoForm) {
|
2015-09-03 15:47:33 +05:30
|
|
|
ctxUser := ctx.User
|
2014-08-29 08:54:37 +05:30
|
|
|
// Not equal means current user is an organization.
|
2015-09-03 15:47:33 +05:30
|
|
|
if form.Uid != ctxUser.Id {
|
2015-08-08 20:13:14 +05:30
|
|
|
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) {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(422, "", err)
|
2015-02-22 20:19:25 +05:30
|
|
|
} else {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(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() {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(422, "", ctx.GetErrMsg())
|
2014-08-29 08:54:37 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if ctxUser.IsOrganization() {
|
|
|
|
// Check ownership of organization.
|
2015-09-03 15:47:33 +05:30
|
|
|
if !ctxUser.IsOwnedBy(ctx.User.Id) {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(403, "", "Given user is not owner of organization.")
|
2014-08-29 08:54:37 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-25 18:13:07 +05:30
|
|
|
// Remote address can be HTTP/HTTPS/Git URL or local path.
|
2015-02-22 20:19:25 +05:30
|
|
|
remoteAddr := form.CloneAddr
|
2015-03-25 18:13:07 +05:30
|
|
|
if strings.HasPrefix(form.CloneAddr, "http://") ||
|
|
|
|
strings.HasPrefix(form.CloneAddr, "https://") ||
|
|
|
|
strings.HasPrefix(form.CloneAddr, "git://") {
|
2015-02-22 20:19:25 +05:30
|
|
|
u, err := url.Parse(form.CloneAddr)
|
|
|
|
if err != nil {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(422, "", err)
|
2015-02-22 20:19:25 +05:30
|
|
|
return
|
|
|
|
}
|
2015-03-11 18:51:05 +05:30
|
|
|
if len(form.AuthUsername) > 0 || len(form.AuthPassword) > 0 {
|
|
|
|
u.User = url.UserPassword(form.AuthUsername, form.AuthPassword)
|
2015-02-22 20:19:25 +05:30
|
|
|
}
|
|
|
|
remoteAddr = u.String()
|
|
|
|
} else if !com.IsDir(remoteAddr) {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(422, "", "Invalid local path, it does not exist or not a directory.")
|
2014-08-29 08:54:37 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-02-22 20:19:25 +05:30
|
|
|
repo, err := models.MigrateRepository(ctxUser, form.RepoName, form.Description, form.Private, form.Mirror, remoteAddr)
|
|
|
|
if err != nil {
|
|
|
|
if repo != nil {
|
2015-09-01 21:13:53 +05:30
|
|
|
if errDelete := models.DeleteRepository(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
|
|
|
}
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(500, "MigrateRepository", err)
|
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)
|
2015-09-03 16:18:52 +05:30
|
|
|
ctx.JSON(201, ToApiRepository(ctxUser, repo, api.Permission{true, true, true}))
|
2014-08-29 08:54:37 +05:30
|
|
|
}
|
2015-10-04 20:39:16 +05:30
|
|
|
|
2015-10-23 03:16:07 +05:30
|
|
|
func parseOwnerAndRepo(ctx *middleware.Context) (*models.User, *models.Repository) {
|
|
|
|
owner, err := models.GetUserByName(ctx.Params(":username"))
|
2015-10-04 20:39:16 +05:30
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(422, "", err)
|
2015-10-04 20:39:16 +05:30
|
|
|
} else {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(500, "GetUserByName", err)
|
2015-10-04 20:39:16 +05:30
|
|
|
}
|
2015-10-23 03:16:07 +05:30
|
|
|
return nil, nil
|
2015-10-04 20:39:16 +05:30
|
|
|
}
|
|
|
|
|
2015-10-23 03:16:07 +05:30
|
|
|
repo, err := models.GetRepositoryByName(owner.Id, ctx.Params(":reponame"))
|
2015-10-04 20:39:16 +05:30
|
|
|
if err != nil {
|
|
|
|
if models.IsErrRepoNotExist(err) {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.Error(404)
|
2015-10-04 20:39:16 +05:30
|
|
|
} else {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(500, "GetRepositoryByName", err)
|
2015-10-04 20:39:16 +05:30
|
|
|
}
|
2015-10-23 03:16:07 +05:30
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return owner, repo
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetRepo(ctx *middleware.Context) {
|
|
|
|
owner, repo := parseOwnerAndRepo(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.JSON(200, ToApiRepository(owner, repo, api.Permission{true, true, true}))
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeleteRepo(ctx *middleware.Context) {
|
|
|
|
owner, repo := parseOwnerAndRepo(ctx)
|
|
|
|
if ctx.Written() {
|
2015-10-04 20:39:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-10-23 03:16:07 +05:30
|
|
|
if owner.IsOrganization() && !owner.IsOwnedBy(ctx.User.Id) {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(403, "", "Given user is not owner of organization.")
|
2015-10-04 20:39:16 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-10-23 03:16:07 +05:30
|
|
|
if err := models.DeleteRepository(owner.Id, repo.ID); err != nil {
|
2015-10-09 06:06:07 +05:30
|
|
|
ctx.APIError(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)
|
|
|
|
}
|