2017-09-12 06:48:13 +00:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-09-12 06:48:13 +00:00
|
|
|
|
2022-06-13 09:37:59 +00:00
|
|
|
package issues
|
2017-09-12 06:48:13 +00:00
|
|
|
|
|
|
|
import (
|
2021-11-19 13:39:57 +00:00
|
|
|
"context"
|
2017-09-12 06:48:13 +00:00
|
|
|
"fmt"
|
|
|
|
"time"
|
2017-12-11 04:37:04 +00:00
|
|
|
|
2021-09-19 11:49:59 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2023-02-27 18:46:00 +00:00
|
|
|
"code.gitea.io/gitea/models/repo"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2019-08-15 14:46:21 +00:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2022-02-15 16:50:10 +00:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2017-09-12 06:48:13 +00:00
|
|
|
)
|
|
|
|
|
2021-11-21 09:11:48 +00:00
|
|
|
// ErrIssueStopwatchNotExist represents an error that stopwatch is not exist
|
|
|
|
type ErrIssueStopwatchNotExist struct {
|
|
|
|
UserID int64
|
|
|
|
IssueID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrIssueStopwatchNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("issue stopwatch doesn't exist[uid: %d, issue_id: %d", err.UserID, err.IssueID)
|
|
|
|
}
|
|
|
|
|
2022-10-18 05:50:37 +00:00
|
|
|
func (err ErrIssueStopwatchNotExist) Unwrap() error {
|
|
|
|
return util.ErrNotExist
|
|
|
|
}
|
|
|
|
|
2021-11-21 09:11:48 +00:00
|
|
|
// ErrIssueStopwatchAlreadyExist represents an error that stopwatch is already exist
|
|
|
|
type ErrIssueStopwatchAlreadyExist struct {
|
|
|
|
UserID int64
|
|
|
|
IssueID int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrIssueStopwatchAlreadyExist) Error() string {
|
|
|
|
return fmt.Sprintf("issue stopwatch already exists[uid: %d, issue_id: %d", err.UserID, err.IssueID)
|
|
|
|
}
|
|
|
|
|
2022-10-18 05:50:37 +00:00
|
|
|
func (err ErrIssueStopwatchAlreadyExist) Unwrap() error {
|
|
|
|
return util.ErrAlreadyExist
|
|
|
|
}
|
|
|
|
|
2017-09-12 06:48:13 +00:00
|
|
|
// Stopwatch represents a stopwatch for time tracking.
|
|
|
|
type Stopwatch struct {
|
2019-08-15 14:46:21 +00:00
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
IssueID int64 `xorm:"INDEX"`
|
|
|
|
UserID int64 `xorm:"INDEX"`
|
|
|
|
CreatedUnix timeutil.TimeStamp `xorm:"created"`
|
2017-09-12 06:48:13 +00:00
|
|
|
}
|
|
|
|
|
2021-09-19 11:49:59 +00:00
|
|
|
func init() {
|
|
|
|
db.RegisterModel(new(Stopwatch))
|
|
|
|
}
|
|
|
|
|
2021-01-21 14:51:52 +00:00
|
|
|
// Seconds returns the amount of time passed since creation, based on local server time
|
|
|
|
func (s Stopwatch) Seconds() int64 {
|
|
|
|
return int64(timeutil.TimeStampNow() - s.CreatedUnix)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Duration returns a human-readable duration string based on local server time
|
|
|
|
func (s Stopwatch) Duration() string {
|
2022-02-15 16:50:10 +00:00
|
|
|
return util.SecToTime(s.Seconds())
|
2021-01-21 14:51:52 +00:00
|
|
|
}
|
|
|
|
|
2021-11-21 09:11:48 +00:00
|
|
|
func getStopwatch(ctx context.Context, userID, issueID int64) (sw *Stopwatch, exists bool, err error) {
|
2017-09-12 06:48:13 +00:00
|
|
|
sw = new(Stopwatch)
|
2021-11-21 09:11:48 +00:00
|
|
|
exists, err = db.GetEngine(ctx).
|
2017-09-12 06:48:13 +00:00
|
|
|
Where("user_id = ?", userID).
|
|
|
|
And("issue_id = ?", issueID).
|
|
|
|
Get(sw)
|
2022-06-20 10:02:49 +00:00
|
|
|
return sw, exists, err
|
2017-09-12 06:48:13 +00:00
|
|
|
}
|
|
|
|
|
2022-04-25 20:45:22 +00:00
|
|
|
// UserIDCount is a simple coalition of UserID and Count
|
|
|
|
type UserStopwatch struct {
|
|
|
|
UserID int64
|
|
|
|
StopWatches []*Stopwatch
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetUIDsAndNotificationCounts between the two provided times
|
|
|
|
func GetUIDsAndStopwatch() ([]*UserStopwatch, error) {
|
|
|
|
sws := []*Stopwatch{}
|
2022-06-02 02:36:46 +00:00
|
|
|
if err := db.GetEngine(db.DefaultContext).Where("issue_id != 0").Find(&sws); err != nil {
|
2022-04-25 20:45:22 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(sws) == 0 {
|
|
|
|
return []*UserStopwatch{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
lastUserID := int64(-1)
|
|
|
|
res := []*UserStopwatch{}
|
|
|
|
for _, sw := range sws {
|
|
|
|
if lastUserID == sw.UserID {
|
|
|
|
lastUserStopwatch := res[len(res)-1]
|
|
|
|
lastUserStopwatch.StopWatches = append(lastUserStopwatch.StopWatches, sw)
|
|
|
|
} else {
|
|
|
|
res = append(res, &UserStopwatch{
|
|
|
|
UserID: sw.UserID,
|
|
|
|
StopWatches: []*Stopwatch{sw},
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res, nil
|
|
|
|
}
|
|
|
|
|
2019-12-12 04:23:05 +00:00
|
|
|
// GetUserStopwatches return list of all stopwatches of a user
|
2021-09-24 11:32:56 +00:00
|
|
|
func GetUserStopwatches(userID int64, listOptions db.ListOptions) ([]*Stopwatch, error) {
|
2020-09-18 12:09:26 +00:00
|
|
|
sws := make([]*Stopwatch, 0, 8)
|
2021-09-23 15:45:36 +00:00
|
|
|
sess := db.GetEngine(db.DefaultContext).Where("stopwatch.user_id = ?", userID)
|
2020-01-24 19:00:29 +00:00
|
|
|
if listOptions.Page != 0 {
|
2021-09-24 11:32:56 +00:00
|
|
|
sess = db.SetSessionPagination(sess, &listOptions)
|
2020-01-24 19:00:29 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 12:09:26 +00:00
|
|
|
err := sess.Find(&sws)
|
2019-12-12 04:23:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return sws, nil
|
|
|
|
}
|
|
|
|
|
2021-08-12 12:43:08 +00:00
|
|
|
// CountUserStopwatches return count of all stopwatches of a user
|
|
|
|
func CountUserStopwatches(userID int64) (int64, error) {
|
2021-09-23 15:45:36 +00:00
|
|
|
return db.GetEngine(db.DefaultContext).Where("user_id = ?", userID).Count(&Stopwatch{})
|
2021-08-12 12:43:08 +00:00
|
|
|
}
|
|
|
|
|
2017-09-12 06:48:13 +00:00
|
|
|
// StopwatchExists returns true if the stopwatch exists
|
2021-03-14 18:52:12 +00:00
|
|
|
func StopwatchExists(userID, issueID int64) bool {
|
2021-11-21 09:11:48 +00:00
|
|
|
_, exists, _ := getStopwatch(db.DefaultContext, userID, issueID)
|
2017-09-12 06:48:13 +00:00
|
|
|
return exists
|
|
|
|
}
|
|
|
|
|
|
|
|
// HasUserStopwatch returns true if the user has a stopwatch
|
2023-02-27 18:46:00 +00:00
|
|
|
func HasUserStopwatch(ctx context.Context, userID int64) (exists bool, sw *Stopwatch, issue *Issue, err error) {
|
|
|
|
type stopwatchIssueRepo struct {
|
|
|
|
Stopwatch `xorm:"extends"`
|
|
|
|
Issue `xorm:"extends"`
|
|
|
|
repo.Repository `xorm:"extends"`
|
|
|
|
}
|
|
|
|
|
|
|
|
swIR := new(stopwatchIssueRepo)
|
2022-05-20 14:08:52 +00:00
|
|
|
exists, err = db.GetEngine(ctx).
|
2023-02-27 18:46:00 +00:00
|
|
|
Table("stopwatch").
|
2017-09-12 06:48:13 +00:00
|
|
|
Where("user_id = ?", userID).
|
2023-02-27 18:46:00 +00:00
|
|
|
Join("INNER", "issue", "issue.id = stopwatch.issue_id").
|
|
|
|
Join("INNER", "repository", "repository.id = issue.repo_id").
|
|
|
|
Get(swIR)
|
|
|
|
if exists {
|
|
|
|
sw = &swIR.Stopwatch
|
|
|
|
issue = &swIR.Issue
|
|
|
|
issue.Repo = &swIR.Repository
|
|
|
|
}
|
|
|
|
return exists, sw, issue, err
|
2017-09-12 06:48:13 +00:00
|
|
|
}
|
|
|
|
|
2021-11-21 09:11:48 +00:00
|
|
|
// FinishIssueStopwatchIfPossible if stopwatch exist then finish it otherwise ignore
|
2021-11-24 09:49:20 +00:00
|
|
|
func FinishIssueStopwatchIfPossible(ctx context.Context, user *user_model.User, issue *Issue) error {
|
2021-11-21 09:11:48 +00:00
|
|
|
_, exists, err := getStopwatch(ctx, user.ID, issue.ID)
|
2021-11-19 13:39:57 +00:00
|
|
|
if err != nil {
|
2021-07-26 20:46:06 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-11-21 09:11:48 +00:00
|
|
|
if !exists {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return FinishIssueStopwatch(ctx, user, issue)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateOrStopIssueStopwatch create an issue stopwatch if it's not exist, otherwise finish it
|
2021-11-24 09:49:20 +00:00
|
|
|
func CreateOrStopIssueStopwatch(user *user_model.User, issue *Issue) error {
|
2021-11-21 09:11:48 +00:00
|
|
|
_, exists, err := getStopwatch(db.DefaultContext, user.ID, issue.ID)
|
|
|
|
if err != nil {
|
2021-07-26 20:46:06 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-11-21 09:11:48 +00:00
|
|
|
if exists {
|
|
|
|
return FinishIssueStopwatch(db.DefaultContext, user, issue)
|
|
|
|
}
|
|
|
|
return CreateIssueStopwatch(db.DefaultContext, user, issue)
|
2021-07-26 20:46:06 +00:00
|
|
|
}
|
|
|
|
|
2021-11-21 09:11:48 +00:00
|
|
|
// FinishIssueStopwatch if stopwatch exist then finish it otherwise return an error
|
2021-11-24 09:49:20 +00:00
|
|
|
func FinishIssueStopwatch(ctx context.Context, user *user_model.User, issue *Issue) error {
|
2021-11-21 09:11:48 +00:00
|
|
|
sw, exists, err := getStopwatch(ctx, user.ID, issue.ID)
|
2017-09-12 06:48:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-11-21 09:11:48 +00:00
|
|
|
if !exists {
|
|
|
|
return ErrIssueStopwatchNotExist{
|
|
|
|
UserID: user.ID,
|
|
|
|
IssueID: issue.ID,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create tracked time out of the time difference between start date and actual date
|
|
|
|
timediff := time.Now().Unix() - int64(sw.CreatedUnix)
|
|
|
|
|
|
|
|
// Create TrackedTime
|
|
|
|
tt := &TrackedTime{
|
|
|
|
Created: time.Now(),
|
|
|
|
IssueID: issue.ID,
|
|
|
|
UserID: user.ID,
|
|
|
|
Time: timediff,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := db.Insert(ctx, tt); err != nil {
|
2018-12-13 15:55:43 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-04-08 09:11:15 +00:00
|
|
|
if err := issue.LoadRepo(ctx); err != nil {
|
2021-11-21 09:11:48 +00:00
|
|
|
return err
|
|
|
|
}
|
2017-09-12 06:48:13 +00:00
|
|
|
|
2022-12-10 02:46:31 +00:00
|
|
|
if _, err := CreateComment(ctx, &CreateCommentOptions{
|
2021-11-21 09:11:48 +00:00
|
|
|
Doer: user,
|
|
|
|
Issue: issue,
|
|
|
|
Repo: issue.Repo,
|
2022-02-15 16:50:10 +00:00
|
|
|
Content: util.SecToTime(timediff),
|
2021-11-21 09:11:48 +00:00
|
|
|
Type: CommentTypeStopTracking,
|
|
|
|
TimeID: tt.ID,
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-05-20 14:08:52 +00:00
|
|
|
_, err = db.DeleteByBean(ctx, sw)
|
2021-11-21 09:11:48 +00:00
|
|
|
return err
|
|
|
|
}
|
2017-09-12 06:48:13 +00:00
|
|
|
|
2021-11-21 09:11:48 +00:00
|
|
|
// CreateIssueStopwatch creates a stopwatch if not exist, otherwise return an error
|
2021-11-24 09:49:20 +00:00
|
|
|
func CreateIssueStopwatch(ctx context.Context, user *user_model.User, issue *Issue) error {
|
2022-04-08 09:11:15 +00:00
|
|
|
if err := issue.LoadRepo(ctx); err != nil {
|
2021-11-21 09:11:48 +00:00
|
|
|
return err
|
|
|
|
}
|
2017-09-12 06:48:13 +00:00
|
|
|
|
2021-11-21 09:11:48 +00:00
|
|
|
// if another stopwatch is running: stop it
|
2023-02-27 18:46:00 +00:00
|
|
|
exists, _, otherIssue, err := HasUserStopwatch(ctx, user.ID)
|
2021-11-21 09:11:48 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if exists {
|
2023-02-27 18:46:00 +00:00
|
|
|
if err := FinishIssueStopwatch(ctx, user, otherIssue); err != nil {
|
2017-09-12 06:48:13 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-11-21 09:11:48 +00:00
|
|
|
}
|
2017-09-12 06:48:13 +00:00
|
|
|
|
2021-11-21 09:11:48 +00:00
|
|
|
// Create stopwatch
|
2023-02-27 18:46:00 +00:00
|
|
|
sw := &Stopwatch{
|
2021-11-21 09:11:48 +00:00
|
|
|
UserID: user.ID,
|
|
|
|
IssueID: issue.ID,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := db.Insert(ctx, sw); err != nil {
|
|
|
|
return err
|
2017-09-12 06:48:13 +00:00
|
|
|
}
|
2021-11-21 09:11:48 +00:00
|
|
|
|
2022-04-08 09:11:15 +00:00
|
|
|
if err := issue.LoadRepo(ctx); err != nil {
|
2021-11-21 09:11:48 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-12-10 02:46:31 +00:00
|
|
|
if _, err := CreateComment(ctx, &CreateCommentOptions{
|
2021-11-21 09:11:48 +00:00
|
|
|
Doer: user,
|
|
|
|
Issue: issue,
|
|
|
|
Repo: issue.Repo,
|
|
|
|
Type: CommentTypeStartTracking,
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-09-12 06:48:13 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CancelStopwatch removes the given stopwatch and logs it into issue's timeline.
|
2021-11-24 09:49:20 +00:00
|
|
|
func CancelStopwatch(user *user_model.User, issue *Issue) error {
|
2022-11-12 20:18:50 +00:00
|
|
|
ctx, committer, err := db.TxContext(db.DefaultContext)
|
2021-11-19 13:39:57 +00:00
|
|
|
if err != nil {
|
2021-07-26 20:46:06 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-11-19 13:39:57 +00:00
|
|
|
defer committer.Close()
|
|
|
|
if err := cancelStopwatch(ctx, user, issue); err != nil {
|
2021-07-26 20:46:06 +00:00
|
|
|
return err
|
|
|
|
}
|
2021-11-19 13:39:57 +00:00
|
|
|
return committer.Commit()
|
2021-07-26 20:46:06 +00:00
|
|
|
}
|
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
func cancelStopwatch(ctx context.Context, user *user_model.User, issue *Issue) error {
|
2021-11-19 13:39:57 +00:00
|
|
|
e := db.GetEngine(ctx)
|
2021-11-21 09:11:48 +00:00
|
|
|
sw, exists, err := getStopwatch(ctx, user.ID, issue.ID)
|
2017-09-12 06:48:13 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if exists {
|
2021-07-26 20:46:06 +00:00
|
|
|
if _, err := e.Delete(sw); err != nil {
|
2017-09-12 06:48:13 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-04-08 09:11:15 +00:00
|
|
|
if err := issue.LoadRepo(ctx); err != nil {
|
2021-11-21 09:11:48 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-12-10 02:46:31 +00:00
|
|
|
if _, err := CreateComment(ctx, &CreateCommentOptions{
|
2017-09-12 06:48:13 +00:00
|
|
|
Doer: user,
|
|
|
|
Issue: issue,
|
|
|
|
Repo: issue.Repo,
|
|
|
|
Type: CommentTypeCancelTracking,
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|