2018-10-23 08:27:42 +05:30
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2018-10-23 08:27:42 +05:30
|
|
|
|
2022-08-25 08:01:57 +05:30
|
|
|
package activities
|
2018-10-23 08:27:42 +05:30
|
|
|
|
|
|
|
import (
|
2021-09-19 17:19:59 +05:30
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-03-29 11:59:02 +05:30
|
|
|
"code.gitea.io/gitea/models/organization"
|
2021-11-24 15:19:20 +05:30
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2018-10-23 08:27:42 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-08-15 20:16:21 +05:30
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2018-10-23 08:27:42 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
// UserHeatmapData represents the data needed to create a heatmap
|
|
|
|
type UserHeatmapData struct {
|
2019-08-15 20:16:21 +05:30
|
|
|
Timestamp timeutil.TimeStamp `json:"timestamp"`
|
|
|
|
Contributions int64 `json:"contributions"`
|
2018-10-23 08:27:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// GetUserHeatmapDataByUser returns an array of UserHeatmapData
|
2021-11-24 15:19:20 +05:30
|
|
|
func GetUserHeatmapDataByUser(user, doer *user_model.User) ([]*UserHeatmapData, error) {
|
2020-12-28 01:28:03 +05:30
|
|
|
return getUserHeatmapData(user, nil, doer)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetUserHeatmapDataByUserTeam returns an array of UserHeatmapData
|
2022-03-29 11:59:02 +05:30
|
|
|
func GetUserHeatmapDataByUserTeam(user *user_model.User, team *organization.Team, doer *user_model.User) ([]*UserHeatmapData, error) {
|
2020-12-28 01:28:03 +05:30
|
|
|
return getUserHeatmapData(user, team, doer)
|
|
|
|
}
|
|
|
|
|
2022-03-29 11:59:02 +05:30
|
|
|
func getUserHeatmapData(user *user_model.User, team *organization.Team, doer *user_model.User) ([]*UserHeatmapData, error) {
|
2018-10-24 18:47:21 +05:30
|
|
|
hdata := make([]*UserHeatmapData, 0)
|
2020-06-06 01:31:53 +05:30
|
|
|
|
2022-08-25 08:01:57 +05:30
|
|
|
if !ActivityReadable(user, doer) {
|
2020-06-06 01:31:53 +05:30
|
|
|
return hdata, nil
|
|
|
|
}
|
|
|
|
|
2021-06-25 22:29:25 +05:30
|
|
|
// Group by 15 minute intervals which will allow the client to accurately shift the timestamp to their timezone.
|
|
|
|
// The interval is based on the fact that there are timezones such as UTC +5:30 and UTC +12:45.
|
|
|
|
groupBy := "created_unix / 900 * 900"
|
2021-03-15 00:22:12 +05:30
|
|
|
groupByName := "timestamp" // We need this extra case because mssql doesn't allow grouping by alias
|
2018-10-23 08:27:42 +05:30
|
|
|
switch {
|
2019-08-24 14:54:45 +05:30
|
|
|
case setting.Database.UseMySQL:
|
2021-06-25 22:29:25 +05:30
|
|
|
groupBy = "created_unix DIV 900 * 900"
|
2019-08-24 14:54:45 +05:30
|
|
|
case setting.Database.UseMSSQL:
|
2018-11-01 23:42:17 +05:30
|
|
|
groupByName = groupBy
|
2018-10-23 08:27:42 +05:30
|
|
|
}
|
|
|
|
|
2020-12-22 08:23:37 +05:30
|
|
|
cond, err := activityQueryCondition(GetFeedsOptions{
|
|
|
|
RequestedUser: user,
|
2020-12-28 01:28:03 +05:30
|
|
|
RequestedTeam: team,
|
2020-12-22 08:23:37 +05:30
|
|
|
Actor: doer,
|
|
|
|
IncludePrivate: true, // don't filter by private, as we already filter by repo access
|
|
|
|
IncludeDeleted: true,
|
|
|
|
// * Heatmaps for individual users only include actions that the user themself did.
|
|
|
|
// * For organizations actions by all users that were made in owned
|
|
|
|
// repositories are counted.
|
|
|
|
OnlyPerformedBy: !user.IsOrganization(),
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2019-01-07 00:59:05 +05:30
|
|
|
}
|
|
|
|
|
2021-09-23 21:15:36 +05:30
|
|
|
return hdata, db.GetEngine(db.DefaultContext).
|
2020-12-22 08:23:37 +05:30
|
|
|
Select(groupBy+" AS timestamp, count(user_id) as contributions").
|
|
|
|
Table("action").
|
|
|
|
Where(cond).
|
2021-04-09 13:10:34 +05:30
|
|
|
And("created_unix > ?", timeutil.TimeStampNow()-31536000).
|
2020-12-22 08:23:37 +05:30
|
|
|
GroupBy(groupByName).
|
2018-10-23 08:27:42 +05:30
|
|
|
OrderBy("timestamp").
|
|
|
|
Find(&hdata)
|
|
|
|
}
|