2015-12-04 23:16:42 +01:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2018-11-28 12:26:14 +01:00
|
|
|
// Copyright 2016 The Gitea Authors. All rights reserved.
|
2015-12-04 23:16:42 +01:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2017-05-02 15:35:59 +02:00
|
|
|
// Package v1 Gitea API.
|
|
|
|
//
|
2017-11-13 08:02:25 +01:00
|
|
|
// This documentation describes the Gitea API.
|
2017-05-02 15:35:59 +02:00
|
|
|
//
|
|
|
|
// Schemes: http, https
|
|
|
|
// BasePath: /api/v1
|
|
|
|
// Version: 1.1.1
|
|
|
|
// License: MIT http://opensource.org/licenses/MIT
|
|
|
|
//
|
|
|
|
// Consumes:
|
|
|
|
// - application/json
|
|
|
|
// - text/plain
|
|
|
|
//
|
|
|
|
// Produces:
|
|
|
|
// - application/json
|
|
|
|
// - text/html
|
|
|
|
//
|
2017-08-21 13:13:47 +02:00
|
|
|
// Security:
|
2018-06-13 01:23:00 +02:00
|
|
|
// - BasicAuth :
|
|
|
|
// - Token :
|
|
|
|
// - AccessToken :
|
|
|
|
// - AuthorizationHeaderToken :
|
2018-09-07 05:31:29 +02:00
|
|
|
// - SudoParam :
|
|
|
|
// - SudoHeader :
|
2017-08-21 13:13:47 +02:00
|
|
|
//
|
|
|
|
// SecurityDefinitions:
|
|
|
|
// BasicAuth:
|
|
|
|
// type: basic
|
|
|
|
// Token:
|
|
|
|
// type: apiKey
|
|
|
|
// name: token
|
|
|
|
// in: query
|
|
|
|
// AccessToken:
|
|
|
|
// type: apiKey
|
|
|
|
// name: access_token
|
|
|
|
// in: query
|
|
|
|
// AuthorizationHeaderToken:
|
|
|
|
// type: apiKey
|
|
|
|
// name: Authorization
|
|
|
|
// in: header
|
2018-09-07 05:31:29 +02:00
|
|
|
// SudoParam:
|
|
|
|
// type: apiKey
|
|
|
|
// name: sudo
|
|
|
|
// in: query
|
|
|
|
// description: Sudo API request as the user provided as the key. Admin privileges are required.
|
|
|
|
// SudoHeader:
|
|
|
|
// type: apiKey
|
|
|
|
// name: Sudo
|
|
|
|
// in: header
|
|
|
|
// description: Sudo API request as the user provided as the key. Admin privileges are required.
|
2017-08-21 13:13:47 +02:00
|
|
|
//
|
2017-05-02 15:35:59 +02:00
|
|
|
// swagger:meta
|
2015-12-04 23:16:42 +01:00
|
|
|
package v1
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
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"
|
2018-09-07 05:31:29 +02:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2018-02-14 05:46:00 +01:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/admin"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/misc"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/org"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/repo"
|
2017-11-13 08:02:25 +01:00
|
|
|
_ "code.gitea.io/gitea/routers/api/v1/swagger" // for swagger generation
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/user"
|
2017-11-13 08:02:25 +01:00
|
|
|
api "code.gitea.io/sdk/gitea"
|
|
|
|
|
|
|
|
"github.com/go-macaron/binding"
|
2019-01-30 18:20:40 +01:00
|
|
|
macaron "gopkg.in/macaron.v1"
|
2015-12-04 23:16:42 +01:00
|
|
|
)
|
|
|
|
|
2018-09-07 05:31:29 +02:00
|
|
|
func sudo() macaron.Handler {
|
|
|
|
return func(ctx *context.APIContext) {
|
|
|
|
sudo := ctx.Query("sudo")
|
2018-10-20 23:25:14 +02:00
|
|
|
if len(sudo) == 0 {
|
2018-09-07 05:31:29 +02:00
|
|
|
sudo = ctx.Req.Header.Get("Sudo")
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(sudo) > 0 {
|
2019-01-28 15:13:59 +01:00
|
|
|
if ctx.IsSigned && ctx.User.IsAdmin {
|
2018-09-07 05:31:29 +02:00
|
|
|
user, err := models.GetUserByName(sudo)
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
|
|
|
ctx.Status(404)
|
|
|
|
} else {
|
|
|
|
ctx.Error(500, "GetUserByName", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("Sudo from (%s) to: %s", ctx.User.Name, user.Name)
|
|
|
|
ctx.User = user
|
|
|
|
} else {
|
|
|
|
ctx.JSON(403, map[string]string{
|
|
|
|
"message": "Only administrators allowed to sudo.",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-05 02:08:01 +02:00
|
|
|
func repoAssignment() macaron.Handler {
|
2016-03-13 23:49:16 +01:00
|
|
|
return func(ctx *context.APIContext) {
|
2015-12-04 23:16:42 +01:00
|
|
|
userName := ctx.Params(":username")
|
|
|
|
repoName := ctx.Params(":reponame")
|
|
|
|
|
|
|
|
var (
|
|
|
|
owner *models.User
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
// Check if the user is the same as the repository owner.
|
|
|
|
if ctx.IsSigned && ctx.User.LowerName == strings.ToLower(userName) {
|
|
|
|
owner = ctx.User
|
|
|
|
} else {
|
|
|
|
owner, err = models.GetUserByName(userName)
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Status(404)
|
2015-12-04 23:16:42 +01:00
|
|
|
} else {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "GetUserByName", err)
|
2015-12-04 23:16:42 +01:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Repo.Owner = owner
|
|
|
|
|
|
|
|
// Get repository.
|
2016-07-23 19:08:22 +02:00
|
|
|
repo, err := models.GetRepositoryByName(owner.ID, repoName)
|
2015-12-04 23:16:42 +01:00
|
|
|
if err != nil {
|
|
|
|
if models.IsErrRepoNotExist(err) {
|
2017-02-05 15:35:03 +01:00
|
|
|
redirectRepoID, err := models.LookupRepoRedirect(owner.ID, repoName)
|
|
|
|
if err == nil {
|
|
|
|
context.RedirectToRepo(ctx.Context, redirectRepoID)
|
|
|
|
} else if models.IsErrRepoRedirectNotExist(err) {
|
|
|
|
ctx.Status(404)
|
|
|
|
} else {
|
|
|
|
ctx.Error(500, "LookupRepoRedirect", err)
|
|
|
|
}
|
2015-12-04 23:16:42 +01:00
|
|
|
} else {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "GetRepositoryByName", err)
|
2015-12-04 23:16:42 +01:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2017-02-02 13:33:56 +01:00
|
|
|
repo.Owner = owner
|
2018-11-28 12:26:14 +01:00
|
|
|
ctx.Repo.Repository = repo
|
2015-12-04 23:16:42 +01:00
|
|
|
|
2018-11-28 12:26:14 +01:00
|
|
|
ctx.Repo.Permission, err = models.GetUserRepoPermission(repo, ctx.User)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(500, "GetUserRepoPermission", err)
|
|
|
|
return
|
2015-12-04 23:16:42 +01:00
|
|
|
}
|
|
|
|
|
2016-03-14 04:20:22 +01:00
|
|
|
if !ctx.Repo.HasAccess() {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Status(404)
|
2015-12-04 23:16:42 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Contexter middleware already checks token for user sign in process.
|
2016-08-05 02:08:01 +02:00
|
|
|
func reqToken() macaron.Handler {
|
2018-11-04 02:15:55 +01:00
|
|
|
return func(ctx *context.APIContext) {
|
|
|
|
if true == ctx.Data["IsApiToken"] {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if ctx.IsSigned {
|
|
|
|
ctx.RequireCSRF()
|
2015-12-04 23:16:42 +01:00
|
|
|
return
|
|
|
|
}
|
2018-11-04 02:15:55 +01:00
|
|
|
ctx.Context.Error(401)
|
2015-12-04 23:16:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-05 02:08:01 +02:00
|
|
|
func reqBasicAuth() macaron.Handler {
|
2016-03-11 17:56:52 +01:00
|
|
|
return func(ctx *context.Context) {
|
2015-12-04 23:16:42 +01:00
|
|
|
if !ctx.IsBasicAuth {
|
|
|
|
ctx.Error(401)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-28 12:26:14 +01:00
|
|
|
// reqSiteAdmin user should be the site admin
|
|
|
|
func reqSiteAdmin() macaron.Handler {
|
2016-03-11 17:56:52 +01:00
|
|
|
return func(ctx *context.Context) {
|
2016-07-23 11:56:37 +02:00
|
|
|
if !ctx.IsSigned || !ctx.User.IsAdmin {
|
2015-12-04 23:16:42 +01:00
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-28 12:26:14 +01:00
|
|
|
// reqOwner user should be the owner of the repo.
|
|
|
|
func reqOwner() macaron.Handler {
|
|
|
|
return func(ctx *context.Context) {
|
|
|
|
if !ctx.Repo.IsOwner() {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// reqAdmin user should be an owner or a collaborator with admin write of a repository
|
|
|
|
func reqAdmin() macaron.Handler {
|
|
|
|
return func(ctx *context.Context) {
|
|
|
|
if !ctx.Repo.IsAdmin() {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func reqRepoReader(unitType models.UnitType) macaron.Handler {
|
|
|
|
return func(ctx *context.Context) {
|
|
|
|
if !ctx.Repo.CanRead(unitType) {
|
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func reqAnyRepoReader() macaron.Handler {
|
2016-08-25 01:05:56 +02:00
|
|
|
return func(ctx *context.Context) {
|
2018-11-28 12:26:14 +01:00
|
|
|
if !ctx.Repo.HasAccess() {
|
2016-08-25 01:05:56 +02:00
|
|
|
ctx.Error(403)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-28 12:26:14 +01:00
|
|
|
func reqRepoWriter(unitTypes ...models.UnitType) macaron.Handler {
|
|
|
|
return func(ctx *context.Context) {
|
|
|
|
for _, unitType := range unitTypes {
|
|
|
|
if ctx.Repo.CanWrite(unitType) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Error(403)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-14 03:14:48 +01:00
|
|
|
func reqOrgMembership() macaron.Handler {
|
|
|
|
return func(ctx *context.APIContext) {
|
|
|
|
var orgID int64
|
|
|
|
if ctx.Org.Organization != nil {
|
|
|
|
orgID = ctx.Org.Organization.ID
|
|
|
|
} else if ctx.Org.Team != nil {
|
|
|
|
orgID = ctx.Org.Team.OrgID
|
|
|
|
} else {
|
|
|
|
ctx.Error(500, "", "reqOrgMembership: unprepared context")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-12-21 08:43:26 +01:00
|
|
|
if isMember, err := models.IsOrganizationMember(orgID, ctx.User.ID); err != nil {
|
|
|
|
ctx.Error(500, "IsOrganizationMember", err)
|
|
|
|
return
|
|
|
|
} else if !isMember {
|
2017-01-26 12:54:04 +01:00
|
|
|
if ctx.Org.Organization != nil {
|
|
|
|
ctx.Error(403, "", "Must be an organization member")
|
|
|
|
} else {
|
|
|
|
ctx.Status(404)
|
|
|
|
}
|
2017-01-14 03:14:48 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func reqOrgOwnership() macaron.Handler {
|
|
|
|
return func(ctx *context.APIContext) {
|
|
|
|
var orgID int64
|
|
|
|
if ctx.Org.Organization != nil {
|
|
|
|
orgID = ctx.Org.Organization.ID
|
|
|
|
} else if ctx.Org.Team != nil {
|
|
|
|
orgID = ctx.Org.Team.OrgID
|
|
|
|
} else {
|
|
|
|
ctx.Error(500, "", "reqOrgOwnership: unprepared context")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-12-21 08:43:26 +01:00
|
|
|
isOwner, err := models.IsOrganizationOwner(orgID, ctx.User.ID)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(500, "IsOrganizationOwner", err)
|
|
|
|
} else if !isOwner {
|
2017-01-26 12:54:04 +01:00
|
|
|
if ctx.Org.Organization != nil {
|
|
|
|
ctx.Error(403, "", "Must be an organization owner")
|
|
|
|
} else {
|
|
|
|
ctx.Status(404)
|
|
|
|
}
|
2017-01-14 03:14:48 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-05 02:08:01 +02:00
|
|
|
func orgAssignment(args ...bool) macaron.Handler {
|
2016-03-25 23:04:02 +01:00
|
|
|
var (
|
2016-04-05 01:41:34 +02:00
|
|
|
assignOrg bool
|
2016-03-25 23:04:02 +01:00
|
|
|
assignTeam bool
|
|
|
|
)
|
|
|
|
if len(args) > 0 {
|
2016-04-05 01:41:34 +02:00
|
|
|
assignOrg = args[0]
|
|
|
|
}
|
|
|
|
if len(args) > 1 {
|
|
|
|
assignTeam = args[1]
|
2016-03-25 23:04:02 +01:00
|
|
|
}
|
|
|
|
return func(ctx *context.APIContext) {
|
2016-04-05 01:41:34 +02:00
|
|
|
ctx.Org = new(context.APIOrganization)
|
|
|
|
|
|
|
|
var err error
|
|
|
|
if assignOrg {
|
2017-07-06 15:30:19 +02:00
|
|
|
ctx.Org.Organization, err = models.GetOrgByName(ctx.Params(":orgname"))
|
2016-04-05 01:41:34 +02:00
|
|
|
if err != nil {
|
2017-07-06 15:30:19 +02:00
|
|
|
if models.IsErrOrgNotExist(err) {
|
2016-04-05 01:41:34 +02:00
|
|
|
ctx.Status(404)
|
|
|
|
} else {
|
2017-07-06 15:30:19 +02:00
|
|
|
ctx.Error(500, "GetOrgByName", err)
|
2016-04-05 01:41:34 +02:00
|
|
|
}
|
|
|
|
return
|
2016-03-25 23:04:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if assignTeam {
|
|
|
|
ctx.Org.Team, err = models.GetTeamByID(ctx.ParamsInt64(":teamid"))
|
|
|
|
if err != nil {
|
|
|
|
if models.IsErrUserNotExist(err) {
|
|
|
|
ctx.Status(404)
|
|
|
|
} else {
|
|
|
|
ctx.Error(500, "GetTeamById", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-05 02:08:01 +02:00
|
|
|
func mustEnableIssues(ctx *context.APIContext) {
|
2018-11-28 12:26:14 +01:00
|
|
|
if !ctx.Repo.CanRead(models.UnitTypeIssues) {
|
2016-08-05 01:32:02 +02:00
|
|
|
ctx.Status(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-02 12:10:39 +01:00
|
|
|
func mustAllowPulls(ctx *context.Context) {
|
2018-11-28 12:26:14 +01:00
|
|
|
if !(ctx.Repo.Repository.CanEnablePulls() && ctx.Repo.CanRead(models.UnitTypePullRequests)) {
|
2016-12-02 12:10:39 +01:00
|
|
|
ctx.Status(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-03 19:20:54 +02:00
|
|
|
func mustEnableIssuesOrPulls(ctx *context.Context) {
|
2018-11-28 12:26:14 +01:00
|
|
|
if !ctx.Repo.CanRead(models.UnitTypeIssues) &&
|
|
|
|
!(ctx.Repo.Repository.CanEnablePulls() && ctx.Repo.CanRead(models.UnitTypePullRequests)) {
|
2018-09-03 19:20:54 +02:00
|
|
|
ctx.Status(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-23 04:57:42 +02:00
|
|
|
func mustEnableUserHeatmap(ctx *context.Context) {
|
|
|
|
if !setting.Service.EnableUserHeatmap {
|
|
|
|
ctx.Status(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-30 18:20:40 +01:00
|
|
|
func mustNotBeArchived(ctx *context.Context) {
|
|
|
|
if ctx.Repo.Repository.IsArchived {
|
|
|
|
ctx.Status(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-04 23:16:42 +01:00
|
|
|
// RegisterRoutes registers all v1 APIs routes to web application.
|
|
|
|
// FIXME: custom form error response
|
|
|
|
func RegisterRoutes(m *macaron.Macaron) {
|
|
|
|
bind := binding.Bind
|
|
|
|
|
2018-07-28 02:19:01 +02:00
|
|
|
if setting.API.EnableSwagger {
|
2018-02-14 05:46:00 +01:00
|
|
|
m.Get("/swagger", misc.Swagger) //Render V1 by default
|
|
|
|
}
|
2017-10-21 16:05:50 +02:00
|
|
|
|
2015-12-04 23:16:42 +01:00
|
|
|
m.Group("/v1", func() {
|
|
|
|
// Miscellaneous
|
2018-07-28 02:19:01 +02:00
|
|
|
if setting.API.EnableSwagger {
|
2018-02-14 05:46:00 +01:00
|
|
|
m.Get("/swagger", misc.Swagger)
|
|
|
|
}
|
2017-03-06 15:13:17 +01:00
|
|
|
m.Get("/version", misc.Version)
|
2015-12-04 23:16:42 +01:00
|
|
|
m.Post("/markdown", bind(api.MarkdownOption{}), misc.Markdown)
|
|
|
|
m.Post("/markdown/raw", misc.MarkdownRaw)
|
|
|
|
|
|
|
|
// Users
|
|
|
|
m.Group("/users", func() {
|
|
|
|
m.Get("/search", user.Search)
|
|
|
|
|
|
|
|
m.Group("/:username", func() {
|
|
|
|
m.Get("", user.GetInfo)
|
2018-10-23 04:57:42 +02:00
|
|
|
m.Get("/heatmap", mustEnableUserHeatmap, user.GetUserHeatmapData)
|
2015-12-04 23:16:42 +01:00
|
|
|
|
2017-02-24 22:39:49 +01:00
|
|
|
m.Get("/repos", user.ListUserRepos)
|
2015-12-04 23:16:42 +01:00
|
|
|
m.Group("/tokens", func() {
|
|
|
|
m.Combo("").Get(user.ListAccessTokens).
|
|
|
|
Post(bind(api.CreateAccessTokenOption{}), user.CreateAccessToken)
|
2018-07-07 03:54:30 +02:00
|
|
|
m.Combo("/:id").Delete(user.DeleteAccessToken)
|
2016-08-05 02:08:01 +02:00
|
|
|
}, reqBasicAuth())
|
2015-12-04 23:16:42 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
m.Group("/users", func() {
|
|
|
|
m.Group("/:username", func() {
|
2015-12-05 23:13:13 +01:00
|
|
|
m.Get("/keys", user.ListPublicKeys)
|
2017-03-16 02:27:35 +01:00
|
|
|
m.Get("/gpg_keys", user.ListGPGKeys)
|
2015-12-21 13:24:11 +01:00
|
|
|
|
|
|
|
m.Get("/followers", user.ListFollowers)
|
|
|
|
m.Group("/following", func() {
|
|
|
|
m.Get("", user.ListFollowing)
|
|
|
|
m.Get("/:target", user.CheckFollowing)
|
|
|
|
})
|
2016-11-14 23:33:58 +01:00
|
|
|
|
|
|
|
m.Get("/starred", user.GetStarredRepos)
|
2016-12-24 02:53:11 +01:00
|
|
|
|
|
|
|
m.Get("/subscriptions", user.GetWatchedRepos)
|
2015-12-04 23:16:42 +01:00
|
|
|
})
|
2016-08-05 02:08:01 +02:00
|
|
|
}, reqToken())
|
2015-12-04 23:16:42 +01:00
|
|
|
|
|
|
|
m.Group("/user", func() {
|
2016-08-12 00:29:39 +02:00
|
|
|
m.Get("", user.GetAuthenticatedUser)
|
2015-12-21 13:24:11 +01:00
|
|
|
m.Combo("/emails").Get(user.ListEmails).
|
|
|
|
Post(bind(api.CreateEmailOption{}), user.AddEmail).
|
2017-11-13 08:02:25 +01:00
|
|
|
Delete(bind(api.DeleteEmailOption{}), user.DeleteEmail)
|
2015-12-21 13:24:11 +01:00
|
|
|
|
|
|
|
m.Get("/followers", user.ListMyFollowers)
|
|
|
|
m.Group("/following", func() {
|
|
|
|
m.Get("", user.ListMyFollowing)
|
|
|
|
m.Combo("/:username").Get(user.CheckMyFollowing).Put(user.Follow).Delete(user.Unfollow)
|
|
|
|
})
|
|
|
|
|
2015-12-04 23:16:42 +01:00
|
|
|
m.Group("/keys", func() {
|
|
|
|
m.Combo("").Get(user.ListMyPublicKeys).
|
|
|
|
Post(bind(api.CreateKeyOption{}), user.CreatePublicKey)
|
|
|
|
m.Combo("/:id").Get(user.GetPublicKey).
|
|
|
|
Delete(user.DeletePublicKey)
|
|
|
|
})
|
2016-11-14 23:33:58 +01:00
|
|
|
|
2017-03-16 02:27:35 +01:00
|
|
|
m.Group("/gpg_keys", func() {
|
|
|
|
m.Combo("").Get(user.ListMyGPGKeys).
|
|
|
|
Post(bind(api.CreateGPGKeyOption{}), user.CreateGPGKey)
|
|
|
|
m.Combo("/:id").Get(user.GetGPGKey).
|
|
|
|
Delete(user.DeleteGPGKey)
|
|
|
|
})
|
|
|
|
|
2017-02-24 22:39:49 +01:00
|
|
|
m.Combo("/repos").Get(user.ListMyRepos).
|
|
|
|
Post(bind(api.CreateRepoOption{}), repo.Create)
|
|
|
|
|
2016-11-14 23:33:58 +01:00
|
|
|
m.Group("/starred", func() {
|
|
|
|
m.Get("", user.GetMyStarredRepos)
|
|
|
|
m.Group("/:username/:reponame", func() {
|
|
|
|
m.Get("", user.IsStarring)
|
|
|
|
m.Put("", user.Star)
|
|
|
|
m.Delete("", user.Unstar)
|
2016-12-29 14:17:32 +01:00
|
|
|
}, repoAssignment())
|
2016-11-14 23:33:58 +01:00
|
|
|
})
|
2017-09-12 08:48:13 +02:00
|
|
|
m.Get("/times", repo.ListMyTrackedTimes)
|
2016-12-24 02:53:11 +01:00
|
|
|
|
|
|
|
m.Get("/subscriptions", user.GetMyWatchedRepos)
|
2019-01-17 01:39:50 +01:00
|
|
|
|
|
|
|
m.Get("/teams", org.ListUserTeams)
|
2016-08-05 02:08:01 +02:00
|
|
|
}, reqToken())
|
2015-12-04 23:16:42 +01:00
|
|
|
|
|
|
|
// Repositories
|
2016-08-05 02:08:01 +02:00
|
|
|
m.Post("/org/:org/repos", reqToken(), bind(api.CreateRepoOption{}), repo.CreateOrgRepo)
|
2015-12-04 23:16:42 +01:00
|
|
|
|
|
|
|
m.Group("/repos", func() {
|
|
|
|
m.Get("/search", repo.Search)
|
|
|
|
})
|
|
|
|
|
2016-10-03 12:35:42 +02:00
|
|
|
m.Combo("/repositories/:id", reqToken()).Get(repo.GetByID)
|
|
|
|
|
2015-12-04 23:16:42 +01:00
|
|
|
m.Group("/repos", func() {
|
2017-07-12 03:23:41 +02:00
|
|
|
m.Post("/migrate", reqToken(), bind(auth.MigrateRepoForm{}), repo.Migrate)
|
2015-12-04 23:16:42 +01:00
|
|
|
|
|
|
|
m.Group("/:username/:reponame", func() {
|
2018-11-28 12:26:14 +01:00
|
|
|
m.Combo("").Get(reqAnyRepoReader(), repo.Get).
|
|
|
|
Delete(reqToken(), reqOwner(), repo.Delete)
|
2016-07-17 02:08:38 +02:00
|
|
|
m.Group("/hooks", func() {
|
|
|
|
m.Combo("").Get(repo.ListHooks).
|
|
|
|
Post(bind(api.CreateHookOption{}), repo.CreateHook)
|
2018-04-29 08:21:33 +02:00
|
|
|
m.Group("/:id", func() {
|
|
|
|
m.Combo("").Get(repo.GetHook).
|
|
|
|
Patch(bind(api.EditHookOption{}), repo.EditHook).
|
|
|
|
Delete(repo.DeleteHook)
|
|
|
|
m.Post("/tests", context.RepoRef(), repo.TestHook)
|
|
|
|
})
|
2018-11-28 12:26:14 +01:00
|
|
|
}, reqToken(), reqAdmin())
|
2016-12-26 08:37:01 +01:00
|
|
|
m.Group("/collaborators", func() {
|
|
|
|
m.Get("", repo.ListCollaborators)
|
|
|
|
m.Combo("/:collaborator").Get(repo.IsCollaborator).
|
|
|
|
Put(bind(api.AddCollaboratorOption{}), repo.AddCollaborator).
|
|
|
|
Delete(repo.DeleteCollaborator)
|
2018-11-28 12:26:14 +01:00
|
|
|
}, reqToken(), reqAdmin())
|
|
|
|
m.Get("/raw/*", context.RepoRefByType(context.RepoRefAny), reqRepoReader(models.UnitTypeCode), repo.GetRawFile)
|
|
|
|
m.Get("/archive/*", reqRepoReader(models.UnitTypeCode), repo.GetArchive)
|
2016-12-31 02:15:45 +01:00
|
|
|
m.Combo("/forks").Get(repo.ListForks).
|
2018-11-28 12:26:14 +01:00
|
|
|
Post(reqToken(), reqRepoReader(models.UnitTypeCode), bind(api.CreateForkOption{}), repo.CreateFork)
|
2016-01-15 19:24:03 +01:00
|
|
|
m.Group("/branches", func() {
|
2016-03-11 17:56:52 +01:00
|
|
|
m.Get("", repo.ListBranches)
|
2017-10-30 03:04:25 +01:00
|
|
|
m.Get("/*", context.RepoRefByType(context.RepoRefBranch), repo.GetBranch)
|
2018-11-28 12:26:14 +01:00
|
|
|
}, reqRepoReader(models.UnitTypeCode))
|
2015-12-04 23:16:42 +01:00
|
|
|
m.Group("/keys", func() {
|
|
|
|
m.Combo("").Get(repo.ListDeployKeys).
|
|
|
|
Post(bind(api.CreateKeyOption{}), repo.CreateDeployKey)
|
|
|
|
m.Combo("/:id").Get(repo.GetDeployKey).
|
|
|
|
Delete(repo.DeleteDeploykey)
|
2018-11-28 12:26:14 +01:00
|
|
|
}, reqToken(), reqAdmin())
|
2017-09-12 08:48:13 +02:00
|
|
|
m.Group("/times", func() {
|
|
|
|
m.Combo("").Get(repo.ListTrackedTimesByRepository)
|
|
|
|
m.Combo("/:timetrackingusername").Get(repo.ListTrackedTimesByUser)
|
|
|
|
}, mustEnableIssues)
|
2016-03-14 04:20:22 +01:00
|
|
|
m.Group("/issues", func() {
|
2017-07-12 03:23:41 +02:00
|
|
|
m.Combo("").Get(repo.ListIssues).
|
2019-01-30 18:20:40 +01:00
|
|
|
Post(reqToken(), mustNotBeArchived, bind(api.CreateIssueOption{}), repo.CreateIssue)
|
2016-12-22 09:29:26 +01:00
|
|
|
m.Group("/comments", func() {
|
|
|
|
m.Get("", repo.ListRepoIssueComments)
|
2017-07-12 03:23:41 +02:00
|
|
|
m.Combo("/:id", reqToken()).
|
2019-01-30 18:20:40 +01:00
|
|
|
Patch(mustNotBeArchived, bind(api.EditIssueCommentOption{}), repo.EditIssueComment).
|
2017-11-20 08:24:07 +01:00
|
|
|
Delete(repo.DeleteIssueComment)
|
2016-12-22 09:29:26 +01:00
|
|
|
})
|
2016-08-03 18:24:16 +02:00
|
|
|
m.Group("/:index", func() {
|
2017-07-12 03:23:41 +02:00
|
|
|
m.Combo("").Get(repo.GetIssue).
|
|
|
|
Patch(reqToken(), bind(api.EditIssueOption{}), repo.EditIssue)
|
2016-08-26 20:23:21 +02:00
|
|
|
|
|
|
|
m.Group("/comments", func() {
|
2017-07-12 03:23:41 +02:00
|
|
|
m.Combo("").Get(repo.ListIssueComments).
|
2019-01-30 18:20:40 +01:00
|
|
|
Post(reqToken(), mustNotBeArchived, bind(api.CreateIssueCommentOption{}), repo.CreateIssueComment)
|
2017-11-20 08:24:07 +01:00
|
|
|
m.Combo("/:id", reqToken()).Patch(bind(api.EditIssueCommentOption{}), repo.EditIssueCommentDeprecated).
|
|
|
|
Delete(repo.DeleteIssueCommentDeprecated)
|
2016-08-26 20:23:21 +02:00
|
|
|
})
|
|
|
|
|
2016-08-03 18:24:16 +02:00
|
|
|
m.Group("/labels", func() {
|
2016-08-03 20:51:22 +02:00
|
|
|
m.Combo("").Get(repo.ListIssueLabels).
|
2017-07-12 03:23:41 +02:00
|
|
|
Post(reqToken(), bind(api.IssueLabelsOption{}), repo.AddIssueLabels).
|
|
|
|
Put(reqToken(), bind(api.IssueLabelsOption{}), repo.ReplaceIssueLabels).
|
|
|
|
Delete(reqToken(), repo.ClearIssueLabels)
|
|
|
|
m.Delete("/:id", reqToken(), repo.DeleteIssueLabel)
|
2016-08-03 18:24:16 +02:00
|
|
|
})
|
|
|
|
|
2017-09-12 08:48:13 +02:00
|
|
|
m.Group("/times", func() {
|
|
|
|
m.Combo("").Get(repo.ListTrackedTimes).
|
|
|
|
Post(reqToken(), bind(api.AddTimeOption{}), repo.AddTime)
|
|
|
|
})
|
2018-07-16 14:43:00 +02:00
|
|
|
|
|
|
|
m.Combo("/deadline").Post(reqToken(), bind(api.EditDeadlineOption{}), repo.UpdateIssueDeadline)
|
2016-08-03 18:24:16 +02:00
|
|
|
})
|
2018-09-03 19:20:54 +02:00
|
|
|
}, mustEnableIssuesOrPulls)
|
2016-08-03 18:24:16 +02:00
|
|
|
m.Group("/labels", func() {
|
|
|
|
m.Combo("").Get(repo.ListLabels).
|
2018-11-28 12:26:14 +01:00
|
|
|
Post(reqToken(), reqRepoWriter(models.UnitTypeIssues, models.UnitTypePullRequests), bind(api.CreateLabelOption{}), repo.CreateLabel)
|
2017-07-12 03:23:41 +02:00
|
|
|
m.Combo("/:id").Get(repo.GetLabel).
|
2018-11-28 12:26:14 +01:00
|
|
|
Patch(reqToken(), reqRepoWriter(models.UnitTypeIssues, models.UnitTypePullRequests), bind(api.EditLabelOption{}), repo.EditLabel).
|
|
|
|
Delete(reqToken(), reqRepoWriter(models.UnitTypeIssues, models.UnitTypePullRequests), repo.DeleteLabel)
|
2016-03-13 23:49:16 +01:00
|
|
|
})
|
2016-08-25 00:18:56 +02:00
|
|
|
m.Group("/milestones", func() {
|
|
|
|
m.Combo("").Get(repo.ListMilestones).
|
2018-11-28 12:26:14 +01:00
|
|
|
Post(reqToken(), reqRepoWriter(models.UnitTypeIssues, models.UnitTypePullRequests), bind(api.CreateMilestoneOption{}), repo.CreateMilestone)
|
2016-08-25 01:05:56 +02:00
|
|
|
m.Combo("/:id").Get(repo.GetMilestone).
|
2018-11-28 12:26:14 +01:00
|
|
|
Patch(reqToken(), reqRepoWriter(models.UnitTypeIssues, models.UnitTypePullRequests), bind(api.EditMilestoneOption{}), repo.EditMilestone).
|
|
|
|
Delete(reqToken(), reqRepoWriter(models.UnitTypeIssues, models.UnitTypePullRequests), repo.DeleteMilestone)
|
2016-08-25 00:18:56 +02:00
|
|
|
})
|
2017-01-06 08:05:09 +01:00
|
|
|
m.Get("/stargazers", repo.ListStargazers)
|
2017-01-07 04:13:02 +01:00
|
|
|
m.Get("/subscribers", repo.ListSubscribers)
|
2016-12-24 02:53:11 +01:00
|
|
|
m.Group("/subscription", func() {
|
|
|
|
m.Get("", user.IsWatching)
|
2017-07-12 03:23:41 +02:00
|
|
|
m.Put("", reqToken(), user.Watch)
|
|
|
|
m.Delete("", reqToken(), user.Unwatch)
|
2016-12-29 14:17:32 +01:00
|
|
|
})
|
2016-12-31 17:51:22 +01:00
|
|
|
m.Group("/releases", func() {
|
|
|
|
m.Combo("").Get(repo.ListReleases).
|
2018-11-28 12:26:14 +01:00
|
|
|
Post(reqToken(), reqRepoWriter(models.UnitTypeReleases), context.ReferencesGitRepo(), bind(api.CreateReleaseOption{}), repo.CreateRelease)
|
2018-03-06 02:22:16 +01:00
|
|
|
m.Group("/:id", func() {
|
|
|
|
m.Combo("").Get(repo.GetRelease).
|
2018-11-28 12:26:14 +01:00
|
|
|
Patch(reqToken(), reqRepoWriter(models.UnitTypeReleases), context.ReferencesGitRepo(), bind(api.EditReleaseOption{}), repo.EditRelease).
|
|
|
|
Delete(reqToken(), reqRepoWriter(models.UnitTypeReleases), repo.DeleteRelease)
|
2018-03-06 02:22:16 +01:00
|
|
|
m.Group("/assets", func() {
|
|
|
|
m.Combo("").Get(repo.ListReleaseAttachments).
|
2018-11-28 12:26:14 +01:00
|
|
|
Post(reqToken(), reqRepoWriter(models.UnitTypeReleases), repo.CreateReleaseAttachment)
|
2018-03-06 02:22:16 +01:00
|
|
|
m.Combo("/:asset").Get(repo.GetReleaseAttachment).
|
2018-11-28 12:26:14 +01:00
|
|
|
Patch(reqToken(), reqRepoWriter(models.UnitTypeReleases), bind(api.EditAttachmentOptions{}), repo.EditReleaseAttachment).
|
|
|
|
Delete(reqToken(), reqRepoWriter(models.UnitTypeReleases), repo.DeleteReleaseAttachment)
|
2018-03-06 02:22:16 +01:00
|
|
|
})
|
|
|
|
})
|
2018-11-28 12:26:14 +01:00
|
|
|
}, reqRepoReader(models.UnitTypeReleases))
|
|
|
|
m.Post("/mirror-sync", reqToken(), reqRepoWriter(models.UnitTypeCode), repo.MirrorSync)
|
|
|
|
m.Get("/editorconfig/:filename", context.RepoRef(), reqRepoReader(models.UnitTypeCode), repo.GetEditorconfig)
|
2016-12-02 12:10:39 +01:00
|
|
|
m.Group("/pulls", func() {
|
2017-07-12 03:23:41 +02:00
|
|
|
m.Combo("").Get(bind(api.ListPullRequestsOptions{}), repo.ListPullRequests).
|
2019-01-30 18:20:40 +01:00
|
|
|
Post(reqToken(), mustNotBeArchived, bind(api.CreatePullRequestOption{}), repo.CreatePullRequest)
|
2016-12-02 12:10:39 +01:00
|
|
|
m.Group("/:index", func() {
|
2017-07-12 03:23:41 +02:00
|
|
|
m.Combo("").Get(repo.GetPullRequest).
|
2018-11-28 12:26:14 +01:00
|
|
|
Patch(reqToken(), reqRepoWriter(models.UnitTypePullRequests), bind(api.EditPullRequestOption{}), repo.EditPullRequest)
|
2017-07-12 03:23:41 +02:00
|
|
|
m.Combo("/merge").Get(repo.IsPullRequestMerged).
|
2019-01-30 18:20:40 +01:00
|
|
|
Post(reqToken(), mustNotBeArchived, reqRepoWriter(models.UnitTypePullRequests), bind(auth.MergePullRequestForm{}), repo.MergePullRequest)
|
2016-12-02 12:10:39 +01:00
|
|
|
})
|
2018-11-28 12:26:14 +01:00
|
|
|
}, mustAllowPulls, reqRepoReader(models.UnitTypeCode), context.ReferencesGitRepo())
|
2017-04-21 13:32:31 +02:00
|
|
|
m.Group("/statuses", func() {
|
2017-07-12 03:23:41 +02:00
|
|
|
m.Combo("/:sha").Get(repo.GetCommitStatuses).
|
2018-11-28 12:26:14 +01:00
|
|
|
Post(reqToken(), bind(api.CreateStatusOption{}), repo.NewCommitStatus)
|
|
|
|
}, reqRepoReader(models.UnitTypeCode))
|
2017-04-21 13:32:31 +02:00
|
|
|
m.Group("/commits/:ref", func() {
|
2017-11-13 08:02:25 +01:00
|
|
|
m.Get("/status", repo.GetCombinedCommitStatusByRef)
|
|
|
|
m.Get("/statuses", repo.GetCommitStatusesByRef)
|
2018-11-28 12:26:14 +01:00
|
|
|
}, reqRepoReader(models.UnitTypeCode))
|
2018-11-27 22:52:20 +01:00
|
|
|
m.Group("/git", func() {
|
2019-02-03 04:35:17 +01:00
|
|
|
m.Group("/commits", func() {
|
|
|
|
m.Get("/:sha", repo.GetSingleCommit)
|
|
|
|
})
|
2018-11-27 22:52:20 +01:00
|
|
|
m.Get("/refs", repo.GetGitAllRefs)
|
|
|
|
m.Get("/refs/*", repo.GetGitRefs)
|
2018-11-28 22:17:09 +01:00
|
|
|
m.Combo("/trees/:sha", context.RepoRef()).Get(repo.GetTree)
|
2018-11-28 12:26:14 +01:00
|
|
|
}, reqRepoReader(models.UnitTypeCode))
|
2016-08-05 02:08:01 +02:00
|
|
|
}, repoAssignment())
|
2017-07-12 03:23:41 +02:00
|
|
|
})
|
2015-12-04 23:16:42 +01:00
|
|
|
|
2015-12-17 08:28:47 +01:00
|
|
|
// Organizations
|
2016-08-05 02:08:01 +02:00
|
|
|
m.Get("/user/orgs", reqToken(), org.ListMyOrgs)
|
2015-12-17 08:28:47 +01:00
|
|
|
m.Get("/users/:username/orgs", org.ListUserOrgs)
|
2018-11-20 18:31:30 +01:00
|
|
|
m.Post("/orgs", reqToken(), bind(api.CreateOrgOption{}), org.Create)
|
2016-03-21 17:53:04 +01:00
|
|
|
m.Group("/orgs/:orgname", func() {
|
2017-07-13 13:14:15 +02:00
|
|
|
m.Get("/repos", user.ListOrgRepos)
|
2017-01-26 12:54:04 +01:00
|
|
|
m.Combo("").Get(org.Get).
|
2018-12-27 16:36:58 +01:00
|
|
|
Patch(reqToken(), reqOrgOwnership(), bind(api.EditOrgOption{}), org.Edit).
|
|
|
|
Delete(reqToken(), reqOrgOwnership(), org.Delete)
|
2017-01-20 03:31:46 +01:00
|
|
|
m.Group("/members", func() {
|
|
|
|
m.Get("", org.ListMembers)
|
2017-01-26 12:54:04 +01:00
|
|
|
m.Combo("/:username").Get(org.IsMember).
|
2017-06-07 18:20:32 +02:00
|
|
|
Delete(reqToken(), reqOrgOwnership(), org.DeleteMember)
|
2017-01-20 03:31:46 +01:00
|
|
|
})
|
|
|
|
m.Group("/public_members", func() {
|
|
|
|
m.Get("", org.ListPublicMembers)
|
|
|
|
m.Combo("/:username").Get(org.IsPublicMember).
|
2017-06-07 18:20:32 +02:00
|
|
|
Put(reqToken(), reqOrgMembership(), org.PublicizeMember).
|
|
|
|
Delete(reqToken(), reqOrgMembership(), org.ConcealMember)
|
2017-01-20 03:31:46 +01:00
|
|
|
})
|
2017-06-07 18:20:32 +02:00
|
|
|
m.Combo("/teams", reqToken(), reqOrgMembership()).Get(org.ListTeams).
|
2017-01-20 14:47:09 +01:00
|
|
|
Post(bind(api.CreateTeamOption{}), org.CreateTeam)
|
2016-12-07 05:36:28 +01:00
|
|
|
m.Group("/hooks", func() {
|
|
|
|
m.Combo("").Get(org.ListHooks).
|
|
|
|
Post(bind(api.CreateHookOption{}), org.CreateHook)
|
|
|
|
m.Combo("/:id").Get(org.GetHook).
|
2017-01-14 03:14:48 +01:00
|
|
|
Patch(reqOrgOwnership(), bind(api.EditHookOption{}), org.EditHook).
|
|
|
|
Delete(reqOrgOwnership(), org.DeleteHook)
|
2017-06-07 18:20:32 +02:00
|
|
|
}, reqToken(), reqOrgMembership())
|
2016-08-05 02:08:01 +02:00
|
|
|
}, orgAssignment(true))
|
2016-12-28 02:36:04 +01:00
|
|
|
m.Group("/teams/:teamid", func() {
|
2017-01-20 06:16:10 +01:00
|
|
|
m.Combo("").Get(org.GetTeam).
|
2017-01-26 12:54:04 +01:00
|
|
|
Patch(reqOrgOwnership(), bind(api.EditTeamOption{}), org.EditTeam).
|
|
|
|
Delete(reqOrgOwnership(), org.DeleteTeam)
|
2017-01-20 06:16:10 +01:00
|
|
|
m.Group("/members", func() {
|
|
|
|
m.Get("", org.GetTeamMembers)
|
2017-01-26 12:54:04 +01:00
|
|
|
m.Combo("/:username").
|
2019-01-17 01:39:50 +01:00
|
|
|
Get(org.GetTeamMember).
|
2017-01-26 12:54:04 +01:00
|
|
|
Put(reqOrgOwnership(), org.AddTeamMember).
|
|
|
|
Delete(reqOrgOwnership(), org.RemoveTeamMember)
|
2017-01-20 06:16:10 +01:00
|
|
|
})
|
|
|
|
m.Group("/repos", func() {
|
|
|
|
m.Get("", org.GetTeamRepos)
|
2017-06-07 17:57:28 +02:00
|
|
|
m.Combo("/:orgname/:reponame").
|
2017-01-26 12:54:04 +01:00
|
|
|
Put(org.AddTeamRepository).
|
|
|
|
Delete(org.RemoveTeamRepository)
|
2017-01-20 06:16:10 +01:00
|
|
|
})
|
2017-06-07 18:20:32 +02:00
|
|
|
}, orgAssignment(false, true), reqToken(), reqOrgMembership())
|
2015-12-17 08:28:47 +01:00
|
|
|
|
2016-03-11 17:56:52 +01:00
|
|
|
m.Any("/*", func(ctx *context.Context) {
|
2015-12-04 23:16:42 +01:00
|
|
|
ctx.Error(404)
|
|
|
|
})
|
2015-12-05 23:13:13 +01:00
|
|
|
|
|
|
|
m.Group("/admin", func() {
|
2019-01-23 23:30:19 +01:00
|
|
|
m.Get("/orgs", admin.GetAllOrgs)
|
2015-12-05 23:13:13 +01:00
|
|
|
m.Group("/users", func() {
|
2019-01-23 23:30:19 +01:00
|
|
|
m.Get("", admin.GetAllUsers)
|
2015-12-05 23:13:13 +01:00
|
|
|
m.Post("", bind(api.CreateUserOption{}), admin.CreateUser)
|
|
|
|
m.Group("/:username", func() {
|
|
|
|
m.Combo("").Patch(bind(api.EditUserOption{}), admin.EditUser).
|
|
|
|
Delete(admin.DeleteUser)
|
2017-12-06 11:27:10 +01:00
|
|
|
m.Group("/keys", func() {
|
|
|
|
m.Post("", bind(api.CreateKeyOption{}), admin.CreatePublicKey)
|
|
|
|
m.Delete("/:id", admin.DeleteUserPublicKey)
|
|
|
|
})
|
2019-01-23 23:30:19 +01:00
|
|
|
m.Get("/orgs", org.ListUserOrgs)
|
2015-12-17 08:28:47 +01:00
|
|
|
m.Post("/orgs", bind(api.CreateOrgOption{}), admin.CreateOrg)
|
2015-12-18 04:57:41 +01:00
|
|
|
m.Post("/repos", bind(api.CreateRepoOption{}), admin.CreateRepo)
|
2015-12-05 23:13:13 +01:00
|
|
|
})
|
|
|
|
})
|
2018-11-28 12:26:14 +01:00
|
|
|
}, reqToken(), reqSiteAdmin())
|
2018-04-11 04:51:44 +02:00
|
|
|
|
|
|
|
m.Group("/topics", func() {
|
|
|
|
m.Get("/search", repo.TopicSearch)
|
|
|
|
})
|
2018-09-07 05:31:29 +02:00
|
|
|
}, context.APIContexter(), sudo())
|
2015-12-04 23:16:42 +01:00
|
|
|
}
|