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