- // 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 (
- "net/http"
- "time"
-
- "code.gitea.io/gitea/models"
- "code.gitea.io/gitea/modules/auth"
- "code.gitea.io/gitea/modules/context"
- )
-
- // AddTimeManually tracks time manually
- func AddTimeManually(c *context.Context, form auth.AddTimeManuallyForm) {
- issueIndex := c.ParamsInt64("index")
- issue, err := models.GetIssueByIndex(c.Repo.Repository.ID, issueIndex)
- if err != nil {
- if models.IsErrIssueNotExist(err) {
- c.Handle(http.StatusNotFound, "GetIssueByIndex", err)
- return
- }
- c.Handle(http.StatusInternalServerError, "GetIssueByIndex", err)
- return
- }
- url := issue.HTMLURL()
-
- 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
- }
-
- if _, err := models.AddTime(c.User, issue, int64(total)); err != nil {
- c.Handle(http.StatusInternalServerError, "AddTime", err)
- return
- }
-
- c.Redirect(url, http.StatusSeeOther)
- }
|