Files

634 lines
16 KiB
Go
Raw Permalink Normal View History

2017-09-12 08:48:13 +02:00
// Copyright 2017 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2017-09-12 08:48:13 +02:00
package repo
import (
2025-04-01 12:14:01 +02:00
"errors"
2019-12-20 18:07:12 +01:00
"net/http"
2019-12-27 21:30:58 +01:00
"time"
2019-12-20 18:07:12 +01:00
"code.gitea.io/gitea/models/db"
issues_model "code.gitea.io/gitea/models/issues"
2021-11-10 03:57:58 +08:00
"code.gitea.io/gitea/models/unit"
user_model "code.gitea.io/gitea/models/user"
2019-05-11 18:21:34 +08:00
api "code.gitea.io/gitea/modules/structs"
2021-01-26 23:36:53 +08:00
"code.gitea.io/gitea/modules/web"
2020-01-08 22:14:00 +01: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"
2017-09-12 08:48:13 +02:00
)
// ListTrackedTimes list all the tracked times of an issue
func ListTrackedTimes(ctx *context.APIContext) {
2019-12-27 21:30:58 +01:00
// swagger:operation GET /repos/{owner}/{repo}/issues/{index}/times issue issueTrackedTimes
2017-11-12 23:02:25 -08:00
// ---
// summary: List an issue's tracked times
// 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
2019-12-27 21:30:58 +01:00
// - name: index
2017-11-12 23:02:25 -08:00
// in: path
// description: index of the issue
// type: integer
// format: int64
2017-11-12 23:02:25 -08:00
// required: true
// - name: user
// in: query
// description: optional filter by user (available for issue managers)
// type: string
2020-01-08 22:14:00 +01:00
// - name: since
// in: query
// description: Only show times updated after the given time. This is a timestamp in RFC 3339 format
// type: string
// format: date-time
// - name: before
// in: query
// description: Only show times updated before the given time. This is a timestamp in RFC 3339 format
// type: string
// format: date-time
2020-01-24 19:00:29 +00:00
// - 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
2017-11-12 23:02:25 -08:00
// responses:
// "200":
// "$ref": "#/responses/TrackedTimeList"
2019-12-20 18:07:12 +01:00
// "404":
// "$ref": "#/responses/notFound"
2022-12-10 10:46:31 +08:00
if !ctx.Repo.Repository.IsTimetrackerEnabled(ctx) {
2025-02-17 14:13:17 +08:00
ctx.APIErrorNotFound("Timetracker is disabled")
2017-09-12 08:48:13 +02:00
return
}
2024-12-24 21:47:45 +08:00
issue, err := issues_model.GetIssueByIndex(ctx, ctx.Repo.Repository.ID, ctx.PathParamInt64("index"))
2017-09-12 08:48:13 +02:00
if err != nil {
if issues_model.IsErrIssueNotExist(err) {
2025-02-17 14:13:17 +08:00
ctx.APIErrorNotFound(err)
2017-09-12 08:48:13 +02:00
} else {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2017-09-12 08:48:13 +02:00
}
return
}
opts := &issues_model.FindTrackedTimesOptions{
2020-01-24 19:00:29 +00:00
ListOptions: utils.GetListOptions(ctx),
2019-12-27 21:30:58 +01:00
RepositoryID: ctx.Repo.Repository.ID,
IssueID: issue.ID,
}
qUser := ctx.FormTrim("user")
if qUser != "" {
user, err := user_model.GetUserByName(ctx, qUser)
if user_model.IsErrUserNotExist(err) {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusNotFound, err)
} else if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
return
}
opts.UserID = user.ID
}
if opts.CreatedBeforeUnix, opts.CreatedAfterUnix, err = context.GetQueryBeforeSince(ctx.Base); err != nil {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusUnprocessableEntity, err)
2020-01-08 22:14:00 +01:00
return
}
2022-03-22 08:03:22 +01:00
cantSetUser := !ctx.Doer.IsAdmin &&
opts.UserID != ctx.Doer.ID &&
2021-11-10 03:57:58 +08:00
!ctx.IsUserRepoWriter([]unit.Type{unit.TypeIssues})
if cantSetUser {
if opts.UserID == 0 {
2022-03-22 08:03:22 +01:00
opts.UserID = ctx.Doer.ID
} else {
2025-04-01 12:14:01 +02:00
ctx.APIError(http.StatusForbidden, errors.New("query by user not allowed; not enough rights"))
return
}
2019-12-27 21:30:58 +01:00
}
count, err := issues_model.CountTrackedTimes(ctx, opts)
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
}
trackedTimes, err := issues_model.GetTrackedTimes(ctx, opts)
2017-10-31 19:25:14 -07:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-27 21:30:58 +01:00
return
}
if err = trackedTimes.LoadAttributes(ctx); err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2017-10-31 19:25:14 -07:00
return
2017-09-12 08:48:13 +02:00
}
2021-08-12 14:43:08 +02:00
ctx.SetTotalCountHeader(count)
2024-04-09 05:26:41 +08:00
ctx.JSON(http.StatusOK, convert.ToTrackedTimeList(ctx, ctx.Doer, trackedTimes))
2017-09-12 08:48:13 +02:00
}
2019-12-27 21:30:58 +01:00
// AddTime add time manual to the given issue
2021-01-26 23:36:53 +08:00
func AddTime(ctx *context.APIContext) {
2019-12-27 21:30:58 +01:00
// swagger:operation Post /repos/{owner}/{repo}/issues/{index}/times issue issueAddTime
2017-11-12 23:02:25 -08:00
// ---
2019-12-27 21:30:58 +01:00
// summary: Add tracked time to a issue
2017-11-12 23:02:25 -08:00
// 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
2019-12-27 21:30:58 +01:00
// - name: index
2017-11-12 23:02:25 -08:00
// in: path
2019-12-27 21:30:58 +01:00
// description: index of the issue
2017-11-12 23:02:25 -08:00
// type: integer
// format: int64
2017-11-12 23:02:25 -08:00
// required: true
// - name: body
// in: body
// schema:
// "$ref": "#/definitions/AddTimeOption"
// responses:
// "200":
// "$ref": "#/responses/TrackedTime"
// "400":
// "$ref": "#/responses/error"
// "403":
2019-12-20 18:07:12 +01:00
// "$ref": "#/responses/forbidden"
// "404":
// "$ref": "#/responses/notFound"
2021-01-26 23:36:53 +08:00
form := web.GetForm(ctx).(*api.AddTimeOption)
2024-12-24 21:47:45 +08:00
issue, err := issues_model.GetIssueByIndex(ctx, ctx.Repo.Repository.ID, ctx.PathParamInt64("index"))
2017-09-12 08:48:13 +02:00
if err != nil {
if issues_model.IsErrIssueNotExist(err) {
2025-02-17 14:13:17 +08:00
ctx.APIErrorNotFound(err)
2017-09-12 08:48:13 +02:00
} else {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2017-09-12 08:48:13 +02:00
}
return
}
if !ctx.Repo.CanUseTimetracker(ctx, issue, ctx.Doer) {
2022-12-10 10:46:31 +08:00
if !ctx.Repo.Repository.IsTimetrackerEnabled(ctx) {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusBadRequest, "time tracking disabled")
2017-09-12 08:48:13 +02:00
return
}
2019-12-20 18:07:12 +01:00
ctx.Status(http.StatusForbidden)
2017-09-12 08:48:13 +02:00
return
}
2019-12-27 21:30:58 +01:00
2022-03-22 08:03:22 +01:00
user := ctx.Doer
2019-12-27 21:30:58 +01:00
if form.User != "" {
2022-03-22 08:03:22 +01:00
if (ctx.IsUserRepoAdmin() && ctx.Doer.Name != form.User) || ctx.Doer.IsAdmin {
2022-01-20 18:46:10 +01:00
// allow only RepoAdmin, Admin and User to add time
user, err = user_model.GetUserByName(ctx, form.User)
2019-12-27 21:30:58 +01:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-27 21:30:58 +01:00
}
}
}
created := time.Time{}
if !form.Created.IsZero() {
created = form.Created
}
trackedTime, err := issues_model.AddTime(ctx, user, issue, form.Time, created)
2017-10-31 19:25:14 -07:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2017-09-12 08:48:13 +02:00
return
}
if err = trackedTime.LoadAttributes(ctx); err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-27 21:30:58 +01:00
return
}
2024-04-09 05:26:41 +08:00
ctx.JSON(http.StatusOK, convert.ToTrackedTime(ctx, user, trackedTime))
2017-09-12 08:48:13 +02:00
}
2019-12-27 21:30:58 +01:00
// ResetIssueTime reset time manual to the given issue
func ResetIssueTime(ctx *context.APIContext) {
// swagger:operation Delete /repos/{owner}/{repo}/issues/{index}/times issue issueResetTime
// ---
// summary: Reset a tracked time of 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 add tracked time to
// type: integer
// format: int64
// required: true
// responses:
// "204":
// "$ref": "#/responses/empty"
// "400":
// "$ref": "#/responses/error"
// "403":
2020-01-08 22:14:00 +01:00
// "$ref": "#/responses/forbidden"
// "404":
// "$ref": "#/responses/notFound"
2019-12-27 21:30:58 +01:00
2024-12-24 21:47:45 +08:00
issue, err := issues_model.GetIssueByIndex(ctx, ctx.Repo.Repository.ID, ctx.PathParamInt64("index"))
2019-12-27 21:30:58 +01:00
if err != nil {
if issues_model.IsErrIssueNotExist(err) {
2025-02-17 14:13:17 +08:00
ctx.APIErrorNotFound(err)
2019-12-27 21:30:58 +01:00
} else {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-27 21:30:58 +01:00
}
return
}
if !ctx.Repo.CanUseTimetracker(ctx, issue, ctx.Doer) {
2022-12-10 10:46:31 +08:00
if !ctx.Repo.Repository.IsTimetrackerEnabled(ctx) {
2020-01-08 22:14:00 +01:00
ctx.JSON(http.StatusBadRequest, struct{ Message string }{Message: "time tracking disabled"})
2019-12-27 21:30:58 +01:00
return
}
2020-01-08 22:14:00 +01:00
ctx.Status(http.StatusForbidden)
2019-12-27 21:30:58 +01:00
return
}
err = issues_model.DeleteIssueUserTimes(ctx, issue, ctx.Doer)
2019-12-27 21:30:58 +01:00
if err != nil {
if db.IsErrNotExist(err) {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusNotFound, err)
2019-12-27 21:30:58 +01:00
} else {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-27 21:30:58 +01:00
}
return
}
ctx.Status(http.StatusNoContent)
2019-12-27 21:30:58 +01:00
}
// DeleteTime delete a specific time by id
func DeleteTime(ctx *context.APIContext) {
// swagger:operation Delete /repos/{owner}/{repo}/issues/{index}/times/{id} issue issueDeleteTime
// ---
// summary: Delete specific tracked time
// 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
// type: integer
// format: int64
// required: true
// - name: id
// in: path
// description: id of time to delete
// type: integer
// format: int64
// required: true
// responses:
// "204":
// "$ref": "#/responses/empty"
// "400":
// "$ref": "#/responses/error"
// "403":
2020-01-08 22:14:00 +01:00
// "$ref": "#/responses/forbidden"
// "404":
// "$ref": "#/responses/notFound"
2019-12-27 21:30:58 +01:00
2024-12-24 21:47:45 +08:00
issue, err := issues_model.GetIssueByIndex(ctx, ctx.Repo.Repository.ID, ctx.PathParamInt64("index"))
2019-12-27 21:30:58 +01:00
if err != nil {
if issues_model.IsErrIssueNotExist(err) {
2025-02-17 14:13:17 +08:00
ctx.APIErrorNotFound(err)
2019-12-27 21:30:58 +01:00
} else {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-27 21:30:58 +01:00
}
return
}
if !ctx.Repo.CanUseTimetracker(ctx, issue, ctx.Doer) {
2022-12-10 10:46:31 +08:00
if !ctx.Repo.Repository.IsTimetrackerEnabled(ctx) {
2020-01-08 22:14:00 +01:00
ctx.JSON(http.StatusBadRequest, struct{ Message string }{Message: "time tracking disabled"})
2019-12-27 21:30:58 +01:00
return
}
2020-01-08 22:14:00 +01:00
ctx.Status(http.StatusForbidden)
2019-12-27 21:30:58 +01:00
return
}
2026-02-20 13:48:54 -08:00
time, err := issues_model.GetTrackedTimeByID(ctx, issue.ID, ctx.PathParamInt64("id"))
2019-12-27 21:30:58 +01:00
if err != nil {
if db.IsErrNotExist(err) {
2025-02-17 14:13:17 +08:00
ctx.APIErrorNotFound(err)
return
}
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-27 21:30:58 +01:00
return
}
2020-05-09 16:18:44 +02:00
if time.Deleted {
ctx.APIErrorNotFound("tracked time was already deleted")
2020-05-09 16:18:44 +02:00
return
}
2019-12-27 21:30:58 +01:00
2022-03-22 08:03:22 +01:00
if !ctx.Doer.IsAdmin && time.UserID != ctx.Doer.ID {
2022-01-20 18:46:10 +01:00
// Only Admin and User itself can delete their time
2020-01-08 22:14:00 +01:00
ctx.Status(http.StatusForbidden)
2019-12-27 21:30:58 +01:00
return
}
err = issues_model.DeleteTime(ctx, time)
2019-12-27 21:30:58 +01:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-27 21:30:58 +01:00
return
}
2020-01-08 22:14:00 +01:00
ctx.Status(http.StatusNoContent)
2019-12-27 21:30:58 +01:00
}
2017-09-12 08:48:13 +02:00
// ListTrackedTimesByUser lists all tracked times of the user
func ListTrackedTimesByUser(ctx *context.APIContext) {
2020-01-08 22:14:00 +01:00
// swagger:operation GET /repos/{owner}/{repo}/times/{user} repository userTrackedTimes
2017-11-12 23:02:25 -08:00
// ---
// summary: List a user's tracked times in a repo
2020-01-08 22:14:00 +01:00
// deprecated: true
2017-11-12 23:02:25 -08: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: user
// in: path
// description: username of the user whose tracked times are to be listed
2017-11-12 23:02:25 -08:00
// type: string
// required: true
// responses:
// "200":
// "$ref": "#/responses/TrackedTimeList"
2019-12-20 18:07:12 +01:00
// "400":
// "$ref": "#/responses/error"
2020-01-08 22:14:00 +01:00
// "403":
// "$ref": "#/responses/forbidden"
// "404":
// "$ref": "#/responses/notFound"
2019-12-20 18:07:12 +01:00
2022-12-10 10:46:31 +08:00
if !ctx.Repo.Repository.IsTimetrackerEnabled(ctx) {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusBadRequest, "time tracking disabled")
2017-09-12 08:48:13 +02:00
return
}
2024-12-24 21:47:45 +08:00
user, err := user_model.GetUserByName(ctx, ctx.PathParam("timetrackingusername"))
2017-09-12 08:48:13 +02:00
if err != nil {
if user_model.IsErrUserNotExist(err) {
2025-02-17 14:13:17 +08:00
ctx.APIErrorNotFound(err)
2017-09-12 08:48:13 +02:00
} else {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2017-09-12 08:48:13 +02:00
}
return
}
if user == nil {
2025-02-17 14:13:17 +08:00
ctx.APIErrorNotFound()
2017-09-12 08:48:13 +02:00
return
}
2020-01-08 22:14:00 +01:00
2022-03-22 08:03:22 +01:00
if !ctx.IsUserRepoAdmin() && !ctx.Doer.IsAdmin && ctx.Doer.ID != user.ID {
2025-04-01 12:14:01 +02:00
ctx.APIError(http.StatusForbidden, errors.New("query by user not allowed; not enough rights"))
2020-01-08 22:14:00 +01:00
return
}
opts := &issues_model.FindTrackedTimesOptions{
2017-10-31 19:25:14 -07:00
UserID: user.ID,
2020-01-08 22:14:00 +01:00
RepositoryID: ctx.Repo.Repository.ID,
}
trackedTimes, err := issues_model.GetTrackedTimes(ctx, opts)
2017-10-31 19:25:14 -07:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2017-10-31 19:25:14 -07:00
return
2017-09-12 08:48:13 +02:00
}
if err = trackedTimes.LoadAttributes(ctx); err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-27 21:30:58 +01:00
return
}
2024-04-09 05:26:41 +08:00
ctx.JSON(http.StatusOK, convert.ToTrackedTimeList(ctx, ctx.Doer, trackedTimes))
2017-09-12 08:48:13 +02:00
}
2017-11-12 23:02:25 -08:00
// ListTrackedTimesByRepository lists all tracked times of the repository
2017-09-12 08:48:13 +02:00
func ListTrackedTimesByRepository(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation GET /repos/{owner}/{repo}/times repository repoTrackedTimes
// ---
// summary: List a repo's tracked times
// 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
2020-01-08 22:14:00 +01:00
// - name: user
// in: query
// description: optional filter by user (available for issue managers)
2020-01-08 22:14:00 +01:00
// type: string
// - name: since
// in: query
// description: Only show times updated after the given time. This is a timestamp in RFC 3339 format
// type: string
// format: date-time
// - name: before
// in: query
// description: Only show times updated before the given time. This is a timestamp in RFC 3339 format
// type: string
// format: date-time
2020-01-24 19:00:29 +00:00
// - 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
2017-11-12 23:02:25 -08:00
// responses:
// "200":
// "$ref": "#/responses/TrackedTimeList"
2019-12-20 18:07:12 +01:00
// "400":
// "$ref": "#/responses/error"
2020-01-08 22:14:00 +01:00
// "403":
// "$ref": "#/responses/forbidden"
// "404":
// "$ref": "#/responses/notFound"
2019-12-20 18:07:12 +01:00
2022-12-10 10:46:31 +08:00
if !ctx.Repo.Repository.IsTimetrackerEnabled(ctx) {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusBadRequest, "time tracking disabled")
2017-09-12 08:48:13 +02:00
return
}
2019-12-27 21:30:58 +01:00
opts := &issues_model.FindTrackedTimesOptions{
2020-01-24 19:00:29 +00:00
ListOptions: utils.GetListOptions(ctx),
2019-12-27 21:30:58 +01:00
RepositoryID: ctx.Repo.Repository.ID,
}
2020-01-08 22:14:00 +01:00
// Filters
qUser := ctx.FormTrim("user")
2020-01-08 22:14:00 +01:00
if qUser != "" {
user, err := user_model.GetUserByName(ctx, qUser)
if user_model.IsErrUserNotExist(err) {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusNotFound, err)
} else if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2020-01-08 22:14:00 +01:00
return
}
opts.UserID = user.ID
}
var err error
if opts.CreatedBeforeUnix, opts.CreatedAfterUnix, err = context.GetQueryBeforeSince(ctx.Base); err != nil {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusUnprocessableEntity, err)
2020-01-08 22:14:00 +01:00
return
}
2022-03-22 08:03:22 +01:00
cantSetUser := !ctx.Doer.IsAdmin &&
opts.UserID != ctx.Doer.ID &&
2021-11-10 03:57:58 +08:00
!ctx.IsUserRepoWriter([]unit.Type{unit.TypeIssues})
if cantSetUser {
2020-01-08 22:14:00 +01:00
if opts.UserID == 0 {
2022-03-22 08:03:22 +01:00
opts.UserID = ctx.Doer.ID
2020-01-08 22:14:00 +01:00
} else {
2025-04-01 12:14:01 +02:00
ctx.APIError(http.StatusForbidden, errors.New("query by user not allowed; not enough rights"))
2020-01-08 22:14:00 +01:00
return
}
2019-12-27 21:30:58 +01:00
}
count, err := issues_model.CountTrackedTimes(ctx, opts)
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
}
trackedTimes, err := issues_model.GetTrackedTimes(ctx, opts)
2017-10-31 19:25:14 -07:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2017-10-31 19:25:14 -07:00
return
2017-09-12 08:48:13 +02:00
}
if err = trackedTimes.LoadAttributes(ctx); err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-27 21:30:58 +01:00
return
}
2021-08-12 14:43:08 +02:00
ctx.SetTotalCountHeader(count)
2024-04-09 05:26:41 +08:00
ctx.JSON(http.StatusOK, convert.ToTrackedTimeList(ctx, ctx.Doer, trackedTimes))
2017-09-12 08:48:13 +02:00
}
// ListMyTrackedTimes lists all tracked times of the current user
func ListMyTrackedTimes(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation GET /user/times user userCurrentTrackedTimes
// ---
// summary: List the current user's tracked times
2022-08-30 21:15:45 -05:00
// produces:
// - application/json
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
2020-01-08 22:14:00 +01:00
// - name: since
// in: query
// description: Only show times updated after the given time. This is a timestamp in RFC 3339 format
// type: string
// format: date-time
// - name: before
// in: query
// description: Only show times updated before the given time. This is a timestamp in RFC 3339 format
// type: string
// format: date-time
2017-11-12 23:02:25 -08:00
// responses:
// "200":
// "$ref": "#/responses/TrackedTimeList"
2019-12-20 18:07:12 +01:00
opts := &issues_model.FindTrackedTimesOptions{
2020-01-24 19:00:29 +00:00
ListOptions: utils.GetListOptions(ctx),
2022-03-22 08:03:22 +01:00
UserID: ctx.Doer.ID,
2020-01-24 19:00:29 +00:00
}
2020-01-08 22:14:00 +01:00
var err error
if opts.CreatedBeforeUnix, opts.CreatedAfterUnix, err = context.GetQueryBeforeSince(ctx.Base); err != nil {
2025-02-17 14:13:17 +08:00
ctx.APIError(http.StatusUnprocessableEntity, err)
2020-01-08 22:14:00 +01:00
return
}
count, err := issues_model.CountTrackedTimes(ctx, opts)
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
}
trackedTimes, err := issues_model.GetTrackedTimes(ctx, opts)
2017-10-31 19:25:14 -07:00
if err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2017-10-31 19:25:14 -07:00
return
2017-09-12 08:48:13 +02:00
}
2020-01-08 22:14:00 +01:00
if err = trackedTimes.LoadAttributes(ctx); err != nil {
2025-02-18 04:41:03 +08:00
ctx.APIErrorInternal(err)
2019-12-27 21:30:58 +01:00
return
}
2020-01-08 22:14:00 +01:00
2021-08-12 14:43:08 +02:00
ctx.SetTotalCountHeader(count)
2024-04-09 05:26:41 +08:00
ctx.JSON(http.StatusOK, convert.ToTrackedTimeList(ctx, ctx.Doer, trackedTimes))
2017-09-12 08:48:13 +02:00
}