Files

236 lines
5.9 KiB
Go
Raw Permalink Normal View History

2019-12-12 05:23:05 +01:00
// Copyright 2019 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2019-12-12 05:23:05 +01:00
package repo
import (
2019-12-20 18:07:12 +01:00
"net/http"
issues_model "code.gitea.io/gitea/models/issues"
2020-01-24 19:00:29 +00:00
"code.gitea.io/gitea/routers/api/v1/utils"
"code.gitea.io/gitea/services/context"
2022-12-29 03:57:15 +01:00
"code.gitea.io/gitea/services/convert"
2019-12-12 05:23:05 +01:00
)
// StartIssueStopwatch creates a stopwatch for the given issue.
func StartIssueStopwatch(ctx *context.APIContext) {
// swagger:operation POST /repos/{owner}/{repo}/issues/{index}/stopwatch/start issue issueStartStopWatch
// ---
// summary: Start stopwatch on an issue.
// 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: index
// in: path
// description: index of the issue to create the stopwatch on
// type: integer
// format: int64
// required: true
// responses:
// "201":
// "$ref": "#/responses/empty"
// "403":
// description: Not repo writer, user does not have rights to toggle stopwatch
// "404":
2019-12-20 18:07:12 +01:00
// "$ref": "#/responses/notFound"
2019-12-12 05:23:05 +01:00
// "409":
// description: Cannot start a stopwatch again if it already exists
2019-12-20 18:07:12 +01:00
issue := prepareIssueForStopwatch(ctx)
if ctx.Written() {
2019-12-12 05:23:05 +01:00
return
}
if ok, err := issues_model.CreateIssueStopwatch(ctx, ctx.Doer, issue); err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-12 05:23:05 +01:00
return
} else if !ok {
ctx.APIError(http.StatusConflict, "cannot start a stopwatch again if it already exists")
return
2019-12-12 05:23:05 +01:00
}
2019-12-20 18:07:12 +01:00
ctx.Status(http.StatusCreated)
2019-12-12 05:23:05 +01:00
}
// StopIssueStopwatch stops a stopwatch for the given issue.
func StopIssueStopwatch(ctx *context.APIContext) {
// swagger:operation POST /repos/{owner}/{repo}/issues/{index}/stopwatch/stop issue issueStopStopWatch
// ---
// summary: Stop an issue's existing stopwatch.
// 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: index
// in: path
// description: index of the issue to stop the stopwatch on
// type: integer
// format: int64
// required: true
// responses:
// "201":
// "$ref": "#/responses/empty"
// "403":
// description: Not repo writer, user does not have rights to toggle stopwatch
// "404":
2019-12-20 18:07:12 +01:00
// "$ref": "#/responses/notFound"
2019-12-12 05:23:05 +01:00
// "409":
// description: Cannot stop a non-existent stopwatch
2019-12-20 18:07:12 +01:00
issue := prepareIssueForStopwatch(ctx)
if ctx.Written() {
2019-12-12 05:23:05 +01:00
return
}
if ok, err := issues_model.FinishIssueStopwatch(ctx, ctx.Doer, issue); err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-12 05:23:05 +01:00
return
} else if !ok {
ctx.APIError(http.StatusConflict, "cannot stop a non-existent stopwatch")
return
2019-12-12 05:23:05 +01:00
}
2019-12-20 18:07:12 +01:00
ctx.Status(http.StatusCreated)
2019-12-12 05:23:05 +01:00
}
// DeleteIssueStopwatch delete a specific stopwatch
func DeleteIssueStopwatch(ctx *context.APIContext) {
// swagger:operation DELETE /repos/{owner}/{repo}/issues/{index}/stopwatch/delete issue issueDeleteStopWatch
// ---
// summary: Delete an issue's existing stopwatch.
// 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: index
// in: path
// description: index of the issue to stop the stopwatch on
// type: integer
// format: int64
// required: true
// responses:
// "204":
// "$ref": "#/responses/empty"
// "403":
// description: Not repo writer, user does not have rights to toggle stopwatch
// "404":
2019-12-20 18:07:12 +01:00
// "$ref": "#/responses/notFound"
2019-12-12 05:23:05 +01:00
// "409":
// description: Cannot cancel a non-existent stopwatch
2019-12-20 18:07:12 +01:00
issue := prepareIssueForStopwatch(ctx)
if ctx.Written() {
2019-12-12 05:23:05 +01:00
return
}
if ok, err := issues_model.CancelStopwatch(ctx, ctx.Doer, issue); err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-12 05:23:05 +01:00
return
} else if !ok {
ctx.APIError(http.StatusConflict, "cannot cancel a non-existent stopwatch")
return
2019-12-12 05:23:05 +01:00
}
2019-12-20 18:07:12 +01:00
ctx.Status(http.StatusNoContent)
2019-12-12 05:23:05 +01:00
}
func prepareIssueForStopwatch(ctx *context.APIContext) *issues_model.Issue {
2024-12-24 21:47:45 +08:00
issue, err := issues_model.GetIssueByIndex(ctx, ctx.Repo.Repository.ID, ctx.PathParamInt64("index"))
2019-12-12 05:23:05 +01:00
if err != nil {
if issues_model.IsErrIssueNotExist(err) {
2025-02-17 14:13:17 +08:00
ctx.APIErrorNotFound()
2019-12-12 05:23:05 +01:00
} else {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-12 05:23:05 +01:00
}
return nil
2019-12-12 05:23:05 +01:00
}
if !ctx.Repo.CanWriteIssuesOrPulls(issue.IsPull) {
2019-12-20 18:07:12 +01:00
ctx.Status(http.StatusForbidden)
return nil
2019-12-12 05:23:05 +01:00
}
if !ctx.Repo.CanUseTimetracker(ctx, issue, ctx.Doer) {
2019-12-20 18:07:12 +01:00
ctx.Status(http.StatusForbidden)
return nil
2019-12-12 05:23:05 +01:00
}
return issue
2019-12-12 05:23:05 +01:00
}
// GetStopwatches get all stopwatches
func GetStopwatches(ctx *context.APIContext) {
// swagger:operation GET /user/stopwatches user userGetStopWatches
// ---
// summary: Get list of all existing stopwatches
2020-01-24 19:00:29 +00:00
// parameters:
// - name: page
// in: query
// description: page number of results to return (1-based)
// type: integer
// - name: limit
// in: query
// description: page size of results
2020-01-24 19:00:29 +00:00
// type: integer
2019-12-12 05:23:05 +01:00
// consumes:
// - application/json
// produces:
// - application/json
// responses:
// "200":
// "$ref": "#/responses/StopWatchList"
sws, err := issues_model.GetUserStopwatches(ctx, ctx.Doer.ID, utils.GetListOptions(ctx))
2019-12-12 05:23:05 +01:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-12 05:23:05 +01:00
return
}
count, err := issues_model.CountUserStopwatches(ctx, ctx.Doer.ID)
2021-08-12 14:43:08 +02:00
if err != nil {
2025-02-17 14:13:17 +08:00
ctx.APIErrorInternal(err)
2021-08-12 14:43:08 +02:00
return
}
apiSWs, err := convert.ToStopWatches(ctx, ctx.Doer, sws)
2019-12-12 05:23:05 +01:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-12 05:23:05 +01:00
return
}
2021-08-12 14:43:08 +02:00
ctx.SetTotalCountHeader(count)
2019-12-20 18:07:12 +01:00
ctx.JSON(http.StatusOK, apiSWs)
2019-12-12 05:23:05 +01:00
}