| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- // Copyright 2017 The Gitea Authors. All rights reserved.
- // SPDX-License-Identifier: MIT
-
- package repo
-
- import (
- "code.gitea.io/gitea/models/db"
- issues_model "code.gitea.io/gitea/models/issues"
- "code.gitea.io/gitea/modules/eventsource"
- "code.gitea.io/gitea/services/context"
- )
-
- // IssueStartStopwatch creates a stopwatch for the given issue.
- func IssueStartStopwatch(c *context.Context) {
- issue := GetActionIssue(c)
- if c.Written() {
- return
- }
-
- if !c.Repo.CanUseTimetracker(c, issue, c.Doer) {
- c.NotFound(nil)
- return
- }
-
- if ok, err := issues_model.CreateIssueStopwatch(c, c.Doer, issue); err != nil {
- c.ServerError("CreateIssueStopwatch", err)
- return
- } else if !ok {
- c.Flash.Warning(c.Tr("repo.issues.stopwatch_already_created"))
- } else {
- c.Flash.Success(c.Tr("repo.issues.tracker_auto_close"))
- }
- c.JSONRedirect("")
- }
-
- // IssueStopStopwatch stops a stopwatch for the given issue.
- func IssueStopStopwatch(c *context.Context) {
- issue := GetActionIssue(c)
- if c.Written() {
- return
- }
-
- if !c.Repo.CanUseTimetracker(c, issue, c.Doer) {
- c.NotFound(nil)
- return
- }
-
- if ok, err := issues_model.FinishIssueStopwatch(c, c.Doer, issue); err != nil {
- c.ServerError("FinishIssueStopwatch", err)
- return
- } else if !ok {
- c.Flash.Warning(c.Tr("repo.issues.stopwatch_already_stopped"))
- }
- c.JSONRedirect("")
- }
-
- // CancelStopwatch cancel the stopwatch
- func CancelStopwatch(c *context.Context) {
- issue := GetActionIssue(c)
- if c.Written() {
- return
- }
- if !c.Repo.CanUseTimetracker(c, issue, c.Doer) {
- c.NotFound(nil)
- return
- }
-
- if _, err := issues_model.CancelStopwatch(c, c.Doer, issue); err != nil {
- c.ServerError("CancelStopwatch", err)
- return
- }
-
- stopwatches, err := issues_model.GetUserStopwatches(c, c.Doer.ID, db.ListOptions{})
- if err != nil {
- c.ServerError("GetUserStopwatches", err)
- return
- }
- if len(stopwatches) == 0 {
- eventsource.GetManager().SendMessage(c.Doer.ID, &eventsource.Event{
- Name: "stopwatches",
- Data: "{}",
- })
- }
-
- c.JSONRedirect("")
- }
|