Files

74 lines
2.7 KiB
Go
Raw Permalink Normal View History

2018-10-23 04:57:42 +02:00
// Copyright 2018 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
2018-10-23 04:57:42 +02:00
package activities
2018-10-23 04:57:42 +02:00
import (
"context"
"code.gitea.io/gitea/models/db"
"code.gitea.io/gitea/models/organization"
user_model "code.gitea.io/gitea/models/user"
2018-10-23 04:57:42 +02:00
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/modules/timeutil"
2018-10-23 04:57:42 +02:00
)
// UserHeatmapData represents the data needed to create a heatmap
type UserHeatmapData struct {
Timestamp timeutil.TimeStamp `json:"timestamp"`
Contributions int64 `json:"contributions"`
2018-10-23 04:57:42 +02:00
}
2026-02-17 15:03:55 +01:00
// GetUserHeatmapDataByUser returns an array of UserHeatmapData, it checks whether doer can access user's activity
func GetUserHeatmapDataByUser(ctx context.Context, user, doer *user_model.User) ([]*UserHeatmapData, error) {
return getUserHeatmapData(ctx, user, nil, doer)
2020-12-27 20:58:03 +01:00
}
2026-02-17 15:03:55 +01:00
// GetUserHeatmapDataByOrgTeam returns an array of UserHeatmapData, it checks whether doer can access org's activity
func GetUserHeatmapDataByOrgTeam(ctx context.Context, org *organization.Organization, team *organization.Team, doer *user_model.User) ([]*UserHeatmapData, error) {
return getUserHeatmapData(ctx, org.AsUser(), team, doer)
2020-12-27 20:58:03 +01:00
}
func getUserHeatmapData(ctx context.Context, user *user_model.User, team *organization.Team, doer *user_model.User) ([]*UserHeatmapData, error) {
2018-10-24 15:17:21 +02:00
hdata := make([]*UserHeatmapData, 0)
2020-06-05 22:01:53 +02:00
if !ActivityReadable(user, doer) {
2020-06-05 22:01:53 +02:00
return hdata, nil
}
2021-06-25 12:59:25 -04: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"
groupByName := "timestamp" // We need this extra case because mssql doesn't allow grouping by alias
2018-10-23 04:57:42 +02:00
switch {
case setting.Database.Type.IsMySQL():
2021-06-25 12:59:25 -04:00
groupBy = "created_unix DIV 900 * 900"
case setting.Database.Type.IsMSSQL():
2018-11-01 19:12:17 +01:00
groupByName = groupBy
2018-10-23 04:57:42 +02:00
}
2024-11-29 09:53:49 -08:00
cond, err := ActivityQueryCondition(ctx, GetFeedsOptions{
2020-12-22 02:53:37 +00:00
RequestedUser: user,
2020-12-27 20:58:03 +01:00
RequestedTeam: team,
2020-12-22 02:53:37 +00: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
}
return hdata, db.GetEngine(ctx).
2020-12-22 02:53:37 +00:00
Select(groupBy+" AS timestamp, count(user_id) as contributions").
Table("action").
Where(cond).
2025-06-02 23:22:43 +08:00
And("created_unix > ?", timeutil.TimeStampNow()-(366+7)*86400). // (366+7) days to include the first week for the heatmap
2020-12-22 02:53:37 +00:00
GroupBy(groupByName).
2018-10-23 04:57:42 +02:00
OrderBy("timestamp").
Find(&hdata)
}