2018-10-22 20:57:42 -06:00
|
|
|
// Copyright 2018 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 models
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2021-09-19 05:49:59 -06:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-03-29 00:29:02 -06:00
|
|
|
"code.gitea.io/gitea/models/organization"
|
2021-11-24 02:49:20 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2018-10-22 20:57:42 -06:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-08-15 08:46:21 -06:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2018-10-22 20:57:42 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
// UserHeatmapData represents the data needed to create a heatmap
|
|
|
|
type UserHeatmapData struct {
|
2019-08-15 08:46:21 -06:00
|
|
|
Timestamp timeutil.TimeStamp `json:"timestamp"`
|
|
|
|
Contributions int64 `json:"contributions"`
|
2018-10-22 20:57:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetUserHeatmapDataByUser returns an array of UserHeatmapData
|
2021-11-24 02:49:20 -07:00
|
|
|
func GetUserHeatmapDataByUser(user, doer *user_model.User) ([]*UserHeatmapData, error) {
|
2020-12-27 12:58:03 -07:00
|
|
|
return getUserHeatmapData(user, nil, doer)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetUserHeatmapDataByUserTeam returns an array of UserHeatmapData
|
2022-03-29 00:29:02 -06:00
|
|
|
func GetUserHeatmapDataByUserTeam(user *user_model.User, team *organization.Team, doer *user_model.User) ([]*UserHeatmapData, error) {
|
2020-12-27 12:58:03 -07:00
|
|
|
return getUserHeatmapData(user, team, doer)
|
|
|
|
}
|
|
|
|
|
2022-03-29 00:29:02 -06:00
|
|
|
func getUserHeatmapData(user *user_model.User, team *organization.Team, doer *user_model.User) ([]*UserHeatmapData, error) {
|
2018-10-24 07:17:21 -06:00
|
|
|
hdata := make([]*UserHeatmapData, 0)
|
2020-06-05 14:01:53 -06:00
|
|
|
|
2020-12-21 19:53:37 -07:00
|
|
|
if !activityReadable(user, doer) {
|
2020-06-05 14:01:53 -06:00
|
|
|
return hdata, nil
|
|
|
|
}
|
|
|
|
|
2021-06-25 10:59:25 -06:00
|
|
|
// 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-14 12:52:12 -06:00
|
|
|
groupByName := "timestamp" // We need this extra case because mssql doesn't allow grouping by alias
|
2018-10-22 20:57:42 -06:00
|
|
|
switch {
|
2019-08-24 03:24:45 -06:00
|
|
|
case setting.Database.UseMySQL:
|
2021-06-25 10:59:25 -06:00
|
|
|
groupBy = "created_unix DIV 900 * 900"
|
2019-08-24 03:24:45 -06:00
|
|
|
case setting.Database.UseMSSQL:
|
2018-11-01 12:12:17 -06:00
|
|
|
groupByName = groupBy
|
2018-10-22 20:57:42 -06:00
|
|
|
}
|
|
|
|
|
2020-12-21 19:53:37 -07:00
|
|
|
cond, err := activityQueryCondition(GetFeedsOptions{
|
|
|
|
RequestedUser: user,
|
2020-12-27 12:58:03 -07:00
|
|
|
RequestedTeam: team,
|
2020-12-21 19:53:37 -07:00
|
|
|
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-06 12:29:05 -07:00
|
|
|
}
|
|
|
|
|
2021-09-23 09:45:36 -06:00
|
|
|
return hdata, db.GetEngine(db.DefaultContext).
|
2020-12-21 19:53:37 -07:00
|
|
|
Select(groupBy+" AS timestamp, count(user_id) as contributions").
|
|
|
|
Table("action").
|
|
|
|
Where(cond).
|
2021-04-09 01:40:34 -06:00
|
|
|
And("created_unix > ?", timeutil.TimeStampNow()-31536000).
|
2020-12-21 19:53:37 -07:00
|
|
|
GroupBy(groupByName).
|
2018-10-22 20:57:42 -06:00
|
|
|
OrderBy("timestamp").
|
|
|
|
Find(&hdata)
|
|
|
|
}
|