2017-09-12 09:48:13 +03:00
// Copyright 2017 The Gitea 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 (
2020-01-09 00:14:00 +03:00
"fmt"
2019-12-20 20:07:12 +03:00
"net/http"
2020-01-09 00:14:00 +03:00
"strings"
2019-12-27 23:30:58 +03:00
"time"
2019-12-20 20:07:12 +03:00
2017-09-12 09:48:13 +03:00
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/context"
2020-01-11 05:59:41 +03:00
"code.gitea.io/gitea/modules/convert"
2019-05-11 13:21:34 +03:00
api "code.gitea.io/gitea/modules/structs"
2020-01-09 00:14:00 +03:00
"code.gitea.io/gitea/routers/api/v1/utils"
2017-09-12 09:48:13 +03:00
)
// ListTrackedTimes list all the tracked times of an issue
func ListTrackedTimes ( ctx * context . APIContext ) {
2019-12-27 23:30:58 +03:00
// swagger:operation GET /repos/{owner}/{repo}/issues/{index}/times issue issueTrackedTimes
2017-11-13 10:02:25 +03: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 23:30:58 +03:00
// - name: index
2017-11-13 10:02:25 +03:00
// in: path
// description: index of the issue
// type: integer
2018-10-21 06:40:42 +03:00
// format: int64
2017-11-13 10:02:25 +03:00
// required: true
2020-01-09 00:14:00 +03: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 22:00:29 +03: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, maximum page size is 50
// type: integer
2017-11-13 10:02:25 +03:00
// responses:
// "200":
// "$ref": "#/responses/TrackedTimeList"
2019-12-20 20:07:12 +03:00
// "404":
// "$ref": "#/responses/notFound"
2017-09-12 09:48:13 +03:00
if ! ctx . Repo . Repository . IsTimetrackerEnabled ( ) {
2019-03-19 05:29:43 +03:00
ctx . NotFound ( "Timetracker is disabled" )
2017-09-12 09:48:13 +03:00
return
}
issue , err := models . GetIssueByIndex ( ctx . Repo . Repository . ID , ctx . ParamsInt64 ( ":index" ) )
if err != nil {
if models . IsErrIssueNotExist ( err ) {
2019-03-19 05:29:43 +03:00
ctx . NotFound ( err )
2017-09-12 09:48:13 +03:00
} else {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusInternalServerError , "GetIssueByIndex" , err )
2017-09-12 09:48:13 +03:00
}
return
}
2019-12-27 23:30:58 +03:00
opts := models . FindTrackedTimesOptions {
2020-01-24 22:00:29 +03:00
ListOptions : utils . GetListOptions ( ctx ) ,
2019-12-27 23:30:58 +03:00
RepositoryID : ctx . Repo . Repository . ID ,
IssueID : issue . ID ,
}
2020-01-09 00:14:00 +03:00
if opts . CreatedBeforeUnix , opts . CreatedAfterUnix , err = utils . GetQueryBeforeSince ( ctx ) ; err != nil {
ctx . InternalServerError ( err )
return
}
2019-12-27 23:30:58 +03:00
if ! ctx . IsUserRepoAdmin ( ) && ! ctx . User . IsAdmin {
opts . UserID = ctx . User . ID
}
trackedTimes , err := models . GetTrackedTimes ( opts )
2017-11-01 05:25:14 +03:00
if err != nil {
2019-12-27 23:30:58 +03:00
ctx . Error ( http . StatusInternalServerError , "GetTrackedTimes" , err )
return
}
if err = trackedTimes . LoadAttributes ( ) ; err != nil {
ctx . Error ( http . StatusInternalServerError , "LoadAttributes" , err )
2017-11-01 05:25:14 +03:00
return
2017-09-12 09:48:13 +03:00
}
2020-01-11 05:59:41 +03:00
ctx . JSON ( http . StatusOK , convert . ToTrackedTimeList ( trackedTimes ) )
2017-09-12 09:48:13 +03:00
}
2019-12-27 23:30:58 +03:00
// AddTime add time manual to the given issue
2017-09-12 09:48:13 +03:00
func AddTime ( ctx * context . APIContext , form api . AddTimeOption ) {
2019-12-27 23:30:58 +03:00
// swagger:operation Post /repos/{owner}/{repo}/issues/{index}/times issue issueAddTime
2017-11-13 10:02:25 +03:00
// ---
2019-12-27 23:30:58 +03:00
// summary: Add tracked time to a issue
2017-11-13 10:02:25 +03: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 23:30:58 +03:00
// - name: index
2017-11-13 10:02:25 +03:00
// in: path
2019-12-27 23:30:58 +03:00
// description: index of the issue
2017-11-13 10:02:25 +03:00
// type: integer
2018-10-21 06:40:42 +03:00
// format: int64
2017-11-13 10:02:25 +03:00
// required: true
// - name: body
// in: body
// schema:
// "$ref": "#/definitions/AddTimeOption"
// responses:
// "200":
// "$ref": "#/responses/TrackedTime"
// "400":
// "$ref": "#/responses/error"
// "403":
2019-12-20 20:07:12 +03:00
// "$ref": "#/responses/forbidden"
2017-09-12 09:48:13 +03:00
issue , err := models . GetIssueByIndex ( ctx . Repo . Repository . ID , ctx . ParamsInt64 ( ":index" ) )
if err != nil {
if models . IsErrIssueNotExist ( err ) {
2019-03-19 05:29:43 +03:00
ctx . NotFound ( err )
2017-09-12 09:48:13 +03:00
} else {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusInternalServerError , "GetIssueByIndex" , err )
2017-09-12 09:48:13 +03:00
}
return
}
if ! ctx . Repo . CanUseTimetracker ( issue , ctx . User ) {
if ! ctx . Repo . Repository . IsTimetrackerEnabled ( ) {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusBadRequest , "" , "time tracking disabled" )
2017-09-12 09:48:13 +03:00
return
}
2019-12-20 20:07:12 +03:00
ctx . Status ( http . StatusForbidden )
2017-09-12 09:48:13 +03:00
return
}
2019-12-27 23:30:58 +03:00
user := ctx . User
if form . User != "" {
if ( ctx . IsUserRepoAdmin ( ) && ctx . User . Name != form . User ) || ctx . User . IsAdmin {
//allow only RepoAdmin, Admin and User to add time
user , err = models . GetUserByName ( form . User )
if err != nil {
2020-01-09 00:14:00 +03:00
ctx . Error ( http . StatusInternalServerError , "GetUserByName" , err )
2019-12-27 23:30:58 +03:00
}
}
}
created := time . Time { }
if ! form . Created . IsZero ( ) {
created = form . Created
}
trackedTime , err := models . AddTime ( user , issue , form . Time , created )
2017-11-01 05:25:14 +03:00
if err != nil {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusInternalServerError , "AddTime" , err )
2017-09-12 09:48:13 +03:00
return
}
2019-12-27 23:30:58 +03:00
if err = trackedTime . LoadAttributes ( ) ; err != nil {
ctx . Error ( http . StatusInternalServerError , "LoadAttributes" , err )
return
}
2020-01-11 05:59:41 +03:00
ctx . JSON ( http . StatusOK , convert . ToTrackedTime ( trackedTime ) )
2017-09-12 09:48:13 +03:00
}
2019-12-27 23:30:58 +03: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-09 00:14:00 +03:00
// "$ref": "#/responses/forbidden"
2019-12-27 23:30:58 +03:00
issue , err := models . GetIssueByIndex ( ctx . Repo . Repository . ID , ctx . ParamsInt64 ( ":index" ) )
if err != nil {
if models . IsErrIssueNotExist ( err ) {
ctx . NotFound ( err )
} else {
2020-01-09 00:14:00 +03:00
ctx . Error ( http . StatusInternalServerError , "GetIssueByIndex" , err )
2019-12-27 23:30:58 +03:00
}
return
}
if ! ctx . Repo . CanUseTimetracker ( issue , ctx . User ) {
if ! ctx . Repo . Repository . IsTimetrackerEnabled ( ) {
2020-01-09 00:14:00 +03:00
ctx . JSON ( http . StatusBadRequest , struct { Message string } { Message : "time tracking disabled" } )
2019-12-27 23:30:58 +03:00
return
}
2020-01-09 00:14:00 +03:00
ctx . Status ( http . StatusForbidden )
2019-12-27 23:30:58 +03:00
return
}
err = models . DeleteIssueUserTimes ( issue , ctx . User )
if err != nil {
if models . IsErrNotExist ( err ) {
2020-01-09 00:14:00 +03:00
ctx . Error ( http . StatusNotFound , "DeleteIssueUserTimes" , err )
2019-12-27 23:30:58 +03:00
} else {
2020-01-09 00:14:00 +03:00
ctx . Error ( http . StatusInternalServerError , "DeleteIssueUserTimes" , err )
2019-12-27 23:30:58 +03:00
}
return
}
ctx . Status ( 204 )
}
// 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-09 00:14:00 +03:00
// "$ref": "#/responses/forbidden"
2019-12-27 23:30:58 +03:00
issue , err := models . GetIssueByIndex ( ctx . Repo . Repository . ID , ctx . ParamsInt64 ( ":index" ) )
if err != nil {
if models . IsErrIssueNotExist ( err ) {
ctx . NotFound ( err )
} else {
2020-01-09 00:14:00 +03:00
ctx . Error ( http . StatusInternalServerError , "GetIssueByIndex" , err )
2019-12-27 23:30:58 +03:00
}
return
}
if ! ctx . Repo . CanUseTimetracker ( issue , ctx . User ) {
if ! ctx . Repo . Repository . IsTimetrackerEnabled ( ) {
2020-01-09 00:14:00 +03:00
ctx . JSON ( http . StatusBadRequest , struct { Message string } { Message : "time tracking disabled" } )
2019-12-27 23:30:58 +03:00
return
}
2020-01-09 00:14:00 +03:00
ctx . Status ( http . StatusForbidden )
2019-12-27 23:30:58 +03:00
return
}
time , err := models . GetTrackedTimeByID ( ctx . ParamsInt64 ( ":id" ) )
if err != nil {
2020-05-07 20:54:33 +03:00
if models . IsErrNotExist ( err ) {
ctx . NotFound ( err )
return
}
2020-01-09 00:14:00 +03:00
ctx . Error ( http . StatusInternalServerError , "GetTrackedTimeByID" , err )
2019-12-27 23:30:58 +03:00
return
}
if ! ctx . User . IsAdmin && time . UserID != ctx . User . ID {
//Only Admin and User itself can delete their time
2020-01-09 00:14:00 +03:00
ctx . Status ( http . StatusForbidden )
2019-12-27 23:30:58 +03:00
return
}
err = models . DeleteTime ( time )
if err != nil {
2020-01-09 00:14:00 +03:00
ctx . Error ( http . StatusInternalServerError , "DeleteTime" , err )
2019-12-27 23:30:58 +03:00
return
}
2020-01-09 00:14:00 +03:00
ctx . Status ( http . StatusNoContent )
2019-12-27 23:30:58 +03:00
}
2017-09-12 09:48:13 +03:00
// ListTrackedTimesByUser lists all tracked times of the user
func ListTrackedTimesByUser ( ctx * context . APIContext ) {
2020-01-09 00:14:00 +03:00
// swagger:operation GET /repos/{owner}/{repo}/times/{user} repository userTrackedTimes
2017-11-13 10:02:25 +03:00
// ---
// summary: List a user's tracked times in a repo
2020-01-09 00:14:00 +03:00
// deprecated: true
2017-11-13 10:02:25 +03: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 user
// type: string
// required: true
// responses:
// "200":
// "$ref": "#/responses/TrackedTimeList"
2019-12-20 20:07:12 +03:00
// "400":
// "$ref": "#/responses/error"
2020-01-09 00:14:00 +03:00
// "403":
// "$ref": "#/responses/forbidden"
2019-12-20 20:07:12 +03:00
2017-09-12 09:48:13 +03:00
if ! ctx . Repo . Repository . IsTimetrackerEnabled ( ) {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusBadRequest , "" , "time tracking disabled" )
2017-09-12 09:48:13 +03:00
return
}
user , err := models . GetUserByName ( ctx . Params ( ":timetrackingusername" ) )
if err != nil {
if models . IsErrUserNotExist ( err ) {
2019-03-19 05:29:43 +03:00
ctx . NotFound ( err )
2017-09-12 09:48:13 +03:00
} else {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusInternalServerError , "GetUserByName" , err )
2017-09-12 09:48:13 +03:00
}
return
}
if user == nil {
2019-03-19 05:29:43 +03:00
ctx . NotFound ( )
2017-09-12 09:48:13 +03:00
return
}
2020-01-09 00:14:00 +03:00
if ! ctx . IsUserRepoAdmin ( ) && ! ctx . User . IsAdmin && ctx . User . ID != user . ID {
ctx . Error ( http . StatusForbidden , "" , fmt . Errorf ( "query user not allowed not enouth rights" ) )
return
}
if ! ctx . IsUserRepoAdmin ( ) && ! ctx . User . IsAdmin && ctx . User . ID != user . ID {
ctx . Error ( http . StatusForbidden , "" , fmt . Errorf ( "query user not allowed not enouth rights" ) )
return
}
opts := models . FindTrackedTimesOptions {
2017-11-01 05:25:14 +03:00
UserID : user . ID ,
2020-01-09 00:14:00 +03:00
RepositoryID : ctx . Repo . Repository . ID ,
}
trackedTimes , err := models . GetTrackedTimes ( opts )
2017-11-01 05:25:14 +03:00
if err != nil {
2019-12-27 23:30:58 +03:00
ctx . Error ( http . StatusInternalServerError , "GetTrackedTimes" , err )
2017-11-01 05:25:14 +03:00
return
2017-09-12 09:48:13 +03:00
}
2019-12-27 23:30:58 +03:00
if err = trackedTimes . LoadAttributes ( ) ; err != nil {
ctx . Error ( http . StatusInternalServerError , "LoadAttributes" , err )
return
}
2020-01-11 05:59:41 +03:00
ctx . JSON ( http . StatusOK , convert . ToTrackedTimeList ( trackedTimes ) )
2017-09-12 09:48:13 +03:00
}
2017-11-13 10:02:25 +03:00
// ListTrackedTimesByRepository lists all tracked times of the repository
2017-09-12 09:48:13 +03:00
func ListTrackedTimesByRepository ( ctx * context . APIContext ) {
2017-11-13 10:02:25 +03: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-09 00:14:00 +03:00
// - name: user
// in: query
// description: optional filter by user
// 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 22:00:29 +03: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, maximum page size is 50
// type: integer
2017-11-13 10:02:25 +03:00
// responses:
// "200":
// "$ref": "#/responses/TrackedTimeList"
2019-12-20 20:07:12 +03:00
// "400":
// "$ref": "#/responses/error"
2020-01-09 00:14:00 +03:00
// "403":
// "$ref": "#/responses/forbidden"
2019-12-20 20:07:12 +03:00
2017-09-12 09:48:13 +03:00
if ! ctx . Repo . Repository . IsTimetrackerEnabled ( ) {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusBadRequest , "" , "time tracking disabled" )
2017-09-12 09:48:13 +03:00
return
}
2019-12-27 23:30:58 +03:00
opts := models . FindTrackedTimesOptions {
2020-01-24 22:00:29 +03:00
ListOptions : utils . GetListOptions ( ctx ) ,
2019-12-27 23:30:58 +03:00
RepositoryID : ctx . Repo . Repository . ID ,
}
2020-01-09 00:14:00 +03:00
// Filters
qUser := strings . Trim ( ctx . Query ( "user" ) , " " )
if qUser != "" {
user , err := models . GetUserByName ( qUser )
if err != nil {
ctx . Error ( http . StatusInternalServerError , "GetUserByName" , err )
return
}
opts . UserID = user . ID
}
var err error
if opts . CreatedBeforeUnix , opts . CreatedAfterUnix , err = utils . GetQueryBeforeSince ( ctx ) ; err != nil {
ctx . InternalServerError ( err )
return
}
2019-12-27 23:30:58 +03:00
if ! ctx . IsUserRepoAdmin ( ) && ! ctx . User . IsAdmin {
2020-01-09 00:14:00 +03:00
if opts . UserID == 0 {
opts . UserID = ctx . User . ID
} else {
ctx . Error ( http . StatusForbidden , "" , fmt . Errorf ( "query user not allowed not enouth rights" ) )
return
}
2019-12-27 23:30:58 +03:00
}
trackedTimes , err := models . GetTrackedTimes ( opts )
2017-11-01 05:25:14 +03:00
if err != nil {
2019-12-27 23:30:58 +03:00
ctx . Error ( http . StatusInternalServerError , "GetTrackedTimes" , err )
2017-11-01 05:25:14 +03:00
return
2017-09-12 09:48:13 +03:00
}
2019-12-27 23:30:58 +03:00
if err = trackedTimes . LoadAttributes ( ) ; err != nil {
ctx . Error ( http . StatusInternalServerError , "LoadAttributes" , err )
return
}
2020-01-11 05:59:41 +03:00
ctx . JSON ( http . StatusOK , convert . ToTrackedTimeList ( trackedTimes ) )
2017-09-12 09:48:13 +03:00
}
// ListMyTrackedTimes lists all tracked times of the current user
func ListMyTrackedTimes ( ctx * context . APIContext ) {
2017-11-13 10:02:25 +03:00
// swagger:operation GET /user/times user userCurrentTrackedTimes
// ---
// summary: List the current user's tracked times
2020-01-24 22:00:29 +03: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, maximum page size is 50
// type: integer
2017-11-13 10:02:25 +03:00
// produces:
// - application/json
2020-01-09 00:14:00 +03:00
// parameters:
// - 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-13 10:02:25 +03:00
// responses:
// "200":
// "$ref": "#/responses/TrackedTimeList"
2019-12-20 20:07:12 +03:00
2020-01-24 22:00:29 +03:00
opts := models . FindTrackedTimesOptions {
ListOptions : utils . GetListOptions ( ctx ) ,
UserID : ctx . User . ID ,
}
2020-01-09 00:14:00 +03:00
var err error
if opts . CreatedBeforeUnix , opts . CreatedAfterUnix , err = utils . GetQueryBeforeSince ( ctx ) ; err != nil {
ctx . InternalServerError ( err )
return
}
trackedTimes , err := models . GetTrackedTimes ( opts )
2017-11-01 05:25:14 +03:00
if err != nil {
2019-12-20 20:07:12 +03:00
ctx . Error ( http . StatusInternalServerError , "GetTrackedTimesByUser" , err )
2017-11-01 05:25:14 +03:00
return
2017-09-12 09:48:13 +03:00
}
2020-01-09 00:14:00 +03:00
2019-12-27 23:30:58 +03:00
if err = trackedTimes . LoadAttributes ( ) ; err != nil {
ctx . Error ( http . StatusInternalServerError , "LoadAttributes" , err )
return
}
2020-01-09 00:14:00 +03:00
2020-01-11 05:59:41 +03:00
ctx . JSON ( http . StatusOK , convert . ToTrackedTimeList ( trackedTimes ) )
2017-09-12 09:48:13 +03:00
}