2016-08-25 03:48:56 +05:30
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2020-01-25 00:30:29 +05:30
|
|
|
// Copyright 2020 The Gitea Authors.
|
2016-08-25 03:48:56 +05:30
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2019-12-20 22:37:12 +05:30
|
|
|
"net/http"
|
2020-09-14 17:18:03 +05:30
|
|
|
"strconv"
|
2016-08-25 04:35:56 +05:30
|
|
|
"time"
|
|
|
|
|
2022-04-08 14:41:15 +05:30
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/context"
|
2020-05-13 03:24:35 +05:30
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2019-05-11 15:51:34 +05:30
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2019-08-15 20:16:21 +05:30
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2021-01-26 21:06:53 +05:30
|
|
|
"code.gitea.io/gitea/modules/web"
|
2020-01-25 00:30:29 +05:30
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2016-08-25 03:48:56 +05:30
|
|
|
)
|
|
|
|
|
2019-06-06 06:07:45 +05:30
|
|
|
// ListMilestones list milestones for a repository
|
2016-08-25 03:48:56 +05:30
|
|
|
func ListMilestones(ctx *context.APIContext) {
|
2018-06-12 20:29:22 +05:30
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/milestones issue issueGetMilestonesList
|
2017-11-13 12:32:25 +05:30
|
|
|
// ---
|
2018-11-26 14:15:42 +05:30
|
|
|
// summary: Get all of a repository's opened milestones
|
2017-11-13 12:32:25 +05:30
|
|
|
// produces:
|
|
|
|
// - application/json
|
2018-06-12 20:29:22 +05:30
|
|
|
// 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
|
2019-06-06 06:07:45 +05:30
|
|
|
// - name: state
|
|
|
|
// in: query
|
2022-06-13 13:04:46 +05:30
|
|
|
// description: Milestone state, Recognized values are open, closed and all. Defaults to "open"
|
2019-06-06 06:07:45 +05:30
|
|
|
// type: string
|
2020-07-28 17:00:40 +05:30
|
|
|
// - name: name
|
|
|
|
// in: query
|
|
|
|
// description: filter by milestone name
|
|
|
|
// type: string
|
2020-01-25 00:30:29 +05:30
|
|
|
// - name: page
|
|
|
|
// in: query
|
|
|
|
// description: page number of results to return (1-based)
|
|
|
|
// type: integer
|
|
|
|
// - name: limit
|
|
|
|
// in: query
|
2020-06-09 10:27:38 +05:30
|
|
|
// description: page size of results
|
2020-01-25 00:30:29 +05:30
|
|
|
// type: integer
|
2017-11-13 12:32:25 +05:30
|
|
|
// responses:
|
|
|
|
// "200":
|
2018-06-12 20:29:22 +05:30
|
|
|
// "$ref": "#/responses/MilestoneList"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2022-04-08 14:41:15 +05:30
|
|
|
milestones, total, err := issues_model.GetMilestones(issues_model.GetMilestonesOption{
|
2020-07-28 17:00:40 +05:30
|
|
|
ListOptions: utils.GetListOptions(ctx),
|
|
|
|
RepoID: ctx.Repo.Repository.ID,
|
2021-08-11 06:01:13 +05:30
|
|
|
State: api.StateType(ctx.FormString("state")),
|
|
|
|
Name: ctx.FormString("name"),
|
2020-07-28 17:00:40 +05:30
|
|
|
})
|
2016-08-25 03:48:56 +05:30
|
|
|
if err != nil {
|
2020-07-28 17:00:40 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "GetMilestones", err)
|
2016-08-25 03:48:56 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiMilestones := make([]*api.Milestone, len(milestones))
|
|
|
|
for i := range milestones {
|
2020-05-13 03:24:35 +05:30
|
|
|
apiMilestones[i] = convert.ToAPIMilestone(milestones[i])
|
2016-08-25 03:48:56 +05:30
|
|
|
}
|
2021-08-12 18:13:08 +05:30
|
|
|
|
|
|
|
ctx.SetTotalCountHeader(total)
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.JSON(http.StatusOK, &apiMilestones)
|
2016-08-25 03:48:56 +05:30
|
|
|
}
|
|
|
|
|
2020-09-14 17:18:03 +05:30
|
|
|
// GetMilestone get a milestone for a repository by ID and if not available by name
|
2016-08-25 03:48:56 +05:30
|
|
|
func GetMilestone(ctx *context.APIContext) {
|
2018-06-12 20:29:22 +05:30
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/milestones/{id} issue issueGetMilestone
|
2017-11-13 12:32:25 +05:30
|
|
|
// ---
|
2018-06-12 20:29:22 +05:30
|
|
|
// summary: Get a milestone
|
2017-11-13 12:32:25 +05:30
|
|
|
// 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
|
2020-09-14 17:18:03 +05:30
|
|
|
// description: the milestone to get, identified by ID and if not available by name
|
|
|
|
// type: string
|
2017-11-13 12:32:25 +05:30
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
2018-06-12 20:29:22 +05:30
|
|
|
// "$ref": "#/responses/Milestone"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2020-09-14 17:18:03 +05:30
|
|
|
milestone := getMilestoneByIDOrName(ctx)
|
|
|
|
if ctx.Written() {
|
2016-08-25 03:48:56 +05:30
|
|
|
return
|
|
|
|
}
|
2020-09-14 17:18:03 +05:30
|
|
|
|
2020-05-13 03:24:35 +05:30
|
|
|
ctx.JSON(http.StatusOK, convert.ToAPIMilestone(milestone))
|
2016-08-25 03:48:56 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// CreateMilestone create a milestone for a repository
|
2021-01-26 21:06:53 +05:30
|
|
|
func CreateMilestone(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// 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"
|
2021-01-26 21:06:53 +05:30
|
|
|
form := web.GetForm(ctx).(*api.CreateMilestoneOption)
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2016-08-25 03:48:56 +05:30
|
|
|
if form.Deadline == nil {
|
|
|
|
defaultDeadline, _ := time.ParseInLocation("2006-01-02", "9999-12-31", time.Local)
|
|
|
|
form.Deadline = &defaultDeadline
|
|
|
|
}
|
|
|
|
|
2022-04-08 14:41:15 +05:30
|
|
|
milestone := &issues_model.Milestone{
|
2017-12-11 10:07:04 +05:30
|
|
|
RepoID: ctx.Repo.Repository.ID,
|
|
|
|
Name: form.Title,
|
|
|
|
Content: form.Description,
|
2019-08-15 20:16:21 +05:30
|
|
|
DeadlineUnix: timeutil.TimeStamp(form.Deadline.Unix()),
|
2016-08-25 03:48:56 +05:30
|
|
|
}
|
|
|
|
|
2020-06-10 03:31:36 +05:30
|
|
|
if form.State == "closed" {
|
|
|
|
milestone.IsClosed = true
|
|
|
|
milestone.ClosedDateUnix = timeutil.TimeStampNow()
|
|
|
|
}
|
|
|
|
|
2022-04-08 14:41:15 +05:30
|
|
|
if err := issues_model.NewMilestone(milestone); err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "NewMilestone", err)
|
2016-08-25 03:48:56 +05:30
|
|
|
return
|
|
|
|
}
|
2020-05-13 03:24:35 +05:30
|
|
|
ctx.JSON(http.StatusCreated, convert.ToAPIMilestone(milestone))
|
2016-08-25 03:48:56 +05:30
|
|
|
}
|
|
|
|
|
2020-09-14 17:18:03 +05:30
|
|
|
// EditMilestone modify a milestone for a repository by ID and if not available by name
|
2021-01-26 21:06:53 +05:30
|
|
|
func EditMilestone(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// 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 20:29:22 +05:30
|
|
|
// - name: id
|
|
|
|
// in: path
|
2020-09-14 17:18:03 +05:30
|
|
|
// description: the milestone to edit, identified by ID and if not available by name
|
|
|
|
// type: string
|
2018-06-12 20:29:22 +05:30
|
|
|
// required: true
|
2017-11-13 12:32:25 +05:30
|
|
|
// - name: body
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/EditMilestoneOption"
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Milestone"
|
2021-01-26 21:06:53 +05:30
|
|
|
form := web.GetForm(ctx).(*api.EditMilestoneOption)
|
2020-09-14 17:18:03 +05:30
|
|
|
milestone := getMilestoneByIDOrName(ctx)
|
|
|
|
if ctx.Written() {
|
2016-08-25 03:48:56 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(form.Title) > 0 {
|
|
|
|
milestone.Name = form.Title
|
|
|
|
}
|
2016-08-25 04:35:56 +05:30
|
|
|
if form.Description != nil {
|
|
|
|
milestone.Content = *form.Description
|
2016-08-25 03:48:56 +05:30
|
|
|
}
|
2016-08-25 04:35:56 +05:30
|
|
|
if form.Deadline != nil && !form.Deadline.IsZero() {
|
2019-08-15 20:16:21 +05:30
|
|
|
milestone.DeadlineUnix = timeutil.TimeStamp(form.Deadline.Unix())
|
2016-08-25 03:48:56 +05:30
|
|
|
}
|
2016-08-25 04:35:56 +05:30
|
|
|
|
2022-01-20 23:16:10 +05:30
|
|
|
oldIsClosed := milestone.IsClosed
|
2020-01-29 12:06:32 +05:30
|
|
|
if form.State != nil {
|
|
|
|
milestone.IsClosed = *form.State == string(api.StateClosed)
|
|
|
|
}
|
|
|
|
|
2022-04-08 14:41:15 +05:30
|
|
|
if err := issues_model.UpdateMilestone(milestone, oldIsClosed); err != nil {
|
2020-09-21 01:50:14 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "UpdateMilestone", err)
|
2016-08-25 03:48:56 +05:30
|
|
|
return
|
|
|
|
}
|
2020-05-13 03:24:35 +05:30
|
|
|
ctx.JSON(http.StatusOK, convert.ToAPIMilestone(milestone))
|
2016-08-25 03:48:56 +05:30
|
|
|
}
|
|
|
|
|
2020-09-14 17:18:03 +05:30
|
|
|
// DeleteMilestone delete a milestone for a repository by ID and if not available by name
|
2016-08-25 03:48:56 +05:30
|
|
|
func DeleteMilestone(ctx *context.APIContext) {
|
2017-11-13 12:32:25 +05:30
|
|
|
// 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 20:29:22 +05:30
|
|
|
// - name: id
|
2017-11-13 12:32:25 +05:30
|
|
|
// in: path
|
2020-09-14 17:18:03 +05:30
|
|
|
// description: the milestone to delete, identified by ID and if not available by name
|
|
|
|
// type: string
|
2017-11-13 12:32:25 +05:30
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
2019-12-20 22:37:12 +05:30
|
|
|
|
2020-09-14 17:18:03 +05:30
|
|
|
m := getMilestoneByIDOrName(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-04-08 14:41:15 +05:30
|
|
|
if err := issues_model.DeleteMilestoneByRepoID(ctx.Repo.Repository.ID, m.ID); err != nil {
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteMilestoneByRepoID", err)
|
2016-08-25 03:48:56 +05:30
|
|
|
return
|
|
|
|
}
|
2019-12-20 22:37:12 +05:30
|
|
|
ctx.Status(http.StatusNoContent)
|
2016-08-25 03:48:56 +05:30
|
|
|
}
|
2020-09-14 17:18:03 +05:30
|
|
|
|
|
|
|
// getMilestoneByIDOrName get milestone by ID and if not available by name
|
2022-04-08 14:41:15 +05:30
|
|
|
func getMilestoneByIDOrName(ctx *context.APIContext) *issues_model.Milestone {
|
2020-09-14 17:18:03 +05:30
|
|
|
mile := ctx.Params(":id")
|
|
|
|
mileID, _ := strconv.ParseInt(mile, 0, 64)
|
|
|
|
|
|
|
|
if mileID != 0 {
|
2022-04-08 14:41:15 +05:30
|
|
|
milestone, err := issues_model.GetMilestoneByRepoID(ctx, ctx.Repo.Repository.ID, mileID)
|
2020-09-14 17:18:03 +05:30
|
|
|
if err == nil {
|
|
|
|
return milestone
|
2022-04-08 14:41:15 +05:30
|
|
|
} else if !issues_model.IsErrMilestoneNotExist(err) {
|
2020-09-14 17:18:03 +05:30
|
|
|
ctx.Error(http.StatusInternalServerError, "GetMilestoneByRepoID", err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-08 14:41:15 +05:30
|
|
|
milestone, err := issues_model.GetMilestoneByRepoIDANDName(ctx.Repo.Repository.ID, mile)
|
2020-09-14 17:18:03 +05:30
|
|
|
if err != nil {
|
2022-04-08 14:41:15 +05:30
|
|
|
if issues_model.IsErrMilestoneNotExist(err) {
|
2020-09-14 17:18:03 +05:30
|
|
|
ctx.NotFound()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
ctx.Error(http.StatusInternalServerError, "GetMilestoneByRepoID", err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return milestone
|
|
|
|
}
|