2016-08-25 00:18:56 +02:00
|
|
|
// Copyright 2016 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 repo
|
|
|
|
|
|
|
|
import (
|
2016-08-25 01:05:56 +02:00
|
|
|
"time"
|
|
|
|
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2017-12-11 05:37:04 +01:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2018-03-29 15:32:40 +02:00
|
|
|
|
|
|
|
api "code.gitea.io/sdk/gitea"
|
2016-08-25 00:18:56 +02:00
|
|
|
)
|
|
|
|
|
2018-11-26 09:45:42 +01:00
|
|
|
// ListMilestones list all the opened milestones for a repository
|
2016-08-25 00:18:56 +02:00
|
|
|
func ListMilestones(ctx *context.APIContext) {
|
2018-06-12 16:59:22 +02:00
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/milestones issue issueGetMilestonesList
|
2017-11-13 08:02:25 +01:00
|
|
|
// ---
|
2018-11-26 09:45:42 +01:00
|
|
|
// summary: Get all of a repository's opened milestones
|
2017-11-13 08:02:25 +01:00
|
|
|
// produces:
|
|
|
|
// - application/json
|
2018-06-12 16:59:22 +02:00
|
|
|
// 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
|
2017-11-13 08:02:25 +01:00
|
|
|
// responses:
|
|
|
|
// "200":
|
2018-06-12 16:59:22 +02:00
|
|
|
// "$ref": "#/responses/MilestoneList"
|
2016-08-25 01:05:56 +02:00
|
|
|
milestones, err := models.GetMilestonesByRepoID(ctx.Repo.Repository.ID)
|
2016-08-25 00:18:56 +02:00
|
|
|
if err != nil {
|
2016-08-25 01:05:56 +02:00
|
|
|
ctx.Error(500, "GetMilestonesByRepoID", err)
|
2016-08-25 00:18:56 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiMilestones := make([]*api.Milestone, len(milestones))
|
|
|
|
for i := range milestones {
|
2016-08-25 01:05:56 +02:00
|
|
|
apiMilestones[i] = milestones[i].APIFormat()
|
2016-08-25 00:18:56 +02:00
|
|
|
}
|
|
|
|
ctx.JSON(200, &apiMilestones)
|
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// GetMilestone get a milestone for a repository
|
2016-08-25 00:18:56 +02:00
|
|
|
func GetMilestone(ctx *context.APIContext) {
|
2018-06-12 16:59:22 +02:00
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/milestones/{id} issue issueGetMilestone
|
2017-11-13 08:02:25 +01:00
|
|
|
// ---
|
2018-06-12 16:59:22 +02:00
|
|
|
// summary: Get a milestone
|
2017-11-13 08:02:25 +01:00
|
|
|
// 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
|
|
|
|
// - name: id
|
|
|
|
// in: path
|
2018-06-12 16:59:22 +02:00
|
|
|
// description: id of the milestone
|
2017-11-13 08:02:25 +01:00
|
|
|
// type: integer
|
2018-10-21 05:40:42 +02:00
|
|
|
// format: int64
|
2017-11-13 08:02:25 +01:00
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
2018-06-12 16:59:22 +02:00
|
|
|
// "$ref": "#/responses/Milestone"
|
2016-08-25 01:05:56 +02:00
|
|
|
milestone, err := models.GetMilestoneByRepoID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id"))
|
2016-08-25 00:18:56 +02:00
|
|
|
if err != nil {
|
|
|
|
if models.IsErrMilestoneNotExist(err) {
|
|
|
|
ctx.Status(404)
|
|
|
|
} else {
|
2016-08-25 01:05:56 +02:00
|
|
|
ctx.Error(500, "GetMilestoneByRepoID", err)
|
2016-08-25 00:18:56 +02:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2016-08-25 01:05:56 +02:00
|
|
|
ctx.JSON(200, milestone.APIFormat())
|
2016-08-25 00:18:56 +02:00
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// CreateMilestone create a milestone for a repository
|
2016-08-25 00:18:56 +02:00
|
|
|
func CreateMilestone(ctx *context.APIContext, form api.CreateMilestoneOption) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation POST /repos/{owner}/{repo}/milestones issue issueCreateMilestone
|
|
|
|
// ---
|
|
|
|
// summary: Create a milestone
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// 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
|
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/CreateMilestoneOption"
|
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/Milestone"
|
2016-08-25 00:18:56 +02:00
|
|
|
if form.Deadline == nil {
|
|
|
|
defaultDeadline, _ := time.ParseInLocation("2006-01-02", "9999-12-31", time.Local)
|
|
|
|
form.Deadline = &defaultDeadline
|
|
|
|
}
|
|
|
|
|
|
|
|
milestone := &models.Milestone{
|
2017-12-11 05:37:04 +01:00
|
|
|
RepoID: ctx.Repo.Repository.ID,
|
|
|
|
Name: form.Title,
|
|
|
|
Content: form.Description,
|
|
|
|
DeadlineUnix: util.TimeStamp(form.Deadline.Unix()),
|
2016-08-25 00:18:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := models.NewMilestone(milestone); err != nil {
|
|
|
|
ctx.Error(500, "NewMilestone", err)
|
|
|
|
return
|
|
|
|
}
|
2016-08-25 01:05:56 +02:00
|
|
|
ctx.JSON(201, milestone.APIFormat())
|
2016-08-25 00:18:56 +02:00
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// EditMilestone modify a milestone for a repository
|
2016-08-25 00:18:56 +02:00
|
|
|
func EditMilestone(ctx *context.APIContext, form api.EditMilestoneOption) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation PATCH /repos/{owner}/{repo}/milestones/{id} issue issueEditMilestone
|
|
|
|
// ---
|
|
|
|
// summary: Update a milestone
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// 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
|
2018-06-12 16:59:22 +02:00
|
|
|
// - name: id
|
|
|
|
// in: path
|
|
|
|
// description: id of the milestone
|
|
|
|
// type: integer
|
2018-10-21 05:40:42 +02:00
|
|
|
// format: int64
|
2018-06-12 16:59:22 +02:00
|
|
|
// required: true
|
2017-11-13 08:02:25 +01:00
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/EditMilestoneOption"
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Milestone"
|
2016-08-25 01:05:56 +02:00
|
|
|
milestone, err := models.GetMilestoneByRepoID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id"))
|
2016-08-25 00:18:56 +02:00
|
|
|
if err != nil {
|
|
|
|
if models.IsErrMilestoneNotExist(err) {
|
|
|
|
ctx.Status(404)
|
|
|
|
} else {
|
2016-08-25 01:05:56 +02:00
|
|
|
ctx.Error(500, "GetMilestoneByRepoID", err)
|
2016-08-25 00:18:56 +02:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(form.Title) > 0 {
|
|
|
|
milestone.Name = form.Title
|
|
|
|
}
|
2016-08-25 01:05:56 +02:00
|
|
|
if form.Description != nil {
|
|
|
|
milestone.Content = *form.Description
|
2016-08-25 00:18:56 +02:00
|
|
|
}
|
2016-08-25 01:05:56 +02:00
|
|
|
if form.Deadline != nil && !form.Deadline.IsZero() {
|
2017-12-11 05:37:04 +01:00
|
|
|
milestone.DeadlineUnix = util.TimeStamp(form.Deadline.Unix())
|
2016-08-25 00:18:56 +02:00
|
|
|
}
|
2016-08-25 01:05:56 +02:00
|
|
|
|
2016-08-25 00:18:56 +02:00
|
|
|
if err := models.UpdateMilestone(milestone); err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
ctx.ServerError("UpdateMilestone", err)
|
2016-08-25 00:18:56 +02:00
|
|
|
return
|
|
|
|
}
|
2016-08-25 01:05:56 +02:00
|
|
|
ctx.JSON(200, milestone.APIFormat())
|
2016-08-25 00:18:56 +02:00
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// DeleteMilestone delete a milestone for a repository
|
2016-08-25 00:18:56 +02:00
|
|
|
func DeleteMilestone(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation DELETE /repos/{owner}/{repo}/milestones/{id} issue issueDeleteMilestone
|
|
|
|
// ---
|
|
|
|
// summary: Delete a milestone
|
|
|
|
// 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
|
2018-06-12 16:59:22 +02:00
|
|
|
// - name: id
|
2017-11-13 08:02:25 +01:00
|
|
|
// in: path
|
|
|
|
// description: id of the milestone to delete
|
|
|
|
// type: integer
|
2018-10-21 05:40:42 +02:00
|
|
|
// format: int64
|
2017-11-13 08:02:25 +01:00
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2016-08-25 01:05:56 +02:00
|
|
|
if err := models.DeleteMilestoneByRepoID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id")); err != nil {
|
|
|
|
ctx.Error(500, "DeleteMilestoneByRepoID", err)
|
2016-08-25 00:18:56 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Status(204)
|
|
|
|
}
|