2017-09-12 08:48:13 +02:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-09-12 08:48:13 +02:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2022-05-08 15:46:34 +02:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-13 11:37:59 +02:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2017-09-12 08:48:13 +02:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2022-02-15 17:50:10 +01:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2021-01-26 16:36:53 +01:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2021-04-06 21:44:05 +02:00
|
|
|
"code.gitea.io/gitea/services/forms"
|
2017-09-12 08:48:13 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// AddTimeManually tracks time manually
|
2021-01-26 16:36:53 +01:00
|
|
|
func AddTimeManually(c *context.Context) {
|
2021-02-19 11:52:11 +01:00
|
|
|
form := web.GetForm(c).(*forms.AddTimeManuallyForm)
|
2017-10-16 09:55:43 +02:00
|
|
|
issue := GetActionIssue(c)
|
|
|
|
if c.Written() {
|
|
|
|
return
|
|
|
|
}
|
2022-03-22 08:03:22 +01:00
|
|
|
if !c.Repo.CanUseTimetracker(issue, c.Doer) {
|
2018-01-10 22:34:17 +01:00
|
|
|
c.NotFound("CanUseTimetracker", nil)
|
2017-09-12 08:48:13 +02:00
|
|
|
return
|
|
|
|
}
|
2023-02-11 07:34:11 +01:00
|
|
|
url := issue.Link()
|
2017-09-12 08:48:13 +02:00
|
|
|
|
|
|
|
if c.HasError() {
|
|
|
|
c.Flash.Error(c.GetErrMsg())
|
|
|
|
c.Redirect(url)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
total := time.Duration(form.Hours)*time.Hour + time.Duration(form.Minutes)*time.Minute
|
|
|
|
|
|
|
|
if total <= 0 {
|
|
|
|
c.Flash.Error(c.Tr("repo.issues.add_time_sum_to_small"))
|
|
|
|
c.Redirect(url, http.StatusSeeOther)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-13 11:37:59 +02:00
|
|
|
if _, err := issues_model.AddTime(c.Doer, issue, int64(total.Seconds()), time.Now()); err != nil {
|
2018-01-10 22:34:17 +01:00
|
|
|
c.ServerError("AddTime", err)
|
2017-09-12 08:48:13 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Redirect(url, http.StatusSeeOther)
|
|
|
|
}
|
2021-02-19 11:52:11 +01:00
|
|
|
|
|
|
|
// DeleteTime deletes tracked time
|
|
|
|
func DeleteTime(c *context.Context) {
|
|
|
|
issue := GetActionIssue(c)
|
|
|
|
if c.Written() {
|
|
|
|
return
|
|
|
|
}
|
2022-03-22 08:03:22 +01:00
|
|
|
if !c.Repo.CanUseTimetracker(issue, c.Doer) {
|
2021-02-19 11:52:11 +01:00
|
|
|
c.NotFound("CanUseTimetracker", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-13 11:37:59 +02:00
|
|
|
t, err := issues_model.GetTrackedTimeByID(c.ParamsInt64(":timeid"))
|
2021-02-19 11:52:11 +01:00
|
|
|
if err != nil {
|
2022-05-08 15:46:34 +02:00
|
|
|
if db.IsErrNotExist(err) {
|
2021-02-19 11:52:11 +01:00
|
|
|
c.NotFound("time not found", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.Error(http.StatusInternalServerError, "GetTrackedTimeByID", err.Error())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// only OP or admin may delete
|
2022-03-22 08:03:22 +01:00
|
|
|
if !c.IsSigned || (!c.IsUserSiteAdmin() && c.Doer.ID != t.UserID) {
|
2021-02-19 11:52:11 +01:00
|
|
|
c.Error(http.StatusForbidden, "not allowed")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-13 11:37:59 +02:00
|
|
|
if err = issues_model.DeleteTime(t); err != nil {
|
2021-02-19 11:52:11 +01:00
|
|
|
c.ServerError("DeleteTime", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-02-15 17:50:10 +01:00
|
|
|
c.Flash.Success(c.Tr("repo.issues.del_time_history", util.SecToTime(t.Time)))
|
2023-02-11 07:34:11 +01:00
|
|
|
c.Redirect(issue.Link())
|
2021-02-19 11:52:11 +01:00
|
|
|
}
|