2018-10-23 08:27:42 +05:30
|
|
|
// 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 (
|
|
|
|
"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
|
2018-10-24 18:47:21 +05:30
|
|
|
func GetUserHeatmapDataByUser(user *User) ([]*UserHeatmapData, error) {
|
|
|
|
hdata := make([]*UserHeatmapData, 0)
|
2020-06-06 01:31:53 +05:30
|
|
|
|
|
|
|
if user.KeepActivityPrivate {
|
|
|
|
return hdata, nil
|
|
|
|
}
|
|
|
|
|
2018-10-23 08:27:42 +05:30
|
|
|
var groupBy string
|
2018-11-01 23:42:17 +05:30
|
|
|
var 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.UseSQLite3:
|
2018-10-23 08:27:42 +05:30
|
|
|
groupBy = "strftime('%s', strftime('%Y-%m-%d', created_unix, 'unixepoch'))"
|
2019-08-24 14:54:45 +05:30
|
|
|
case setting.Database.UseMySQL:
|
2018-11-01 02:26:32 +05:30
|
|
|
groupBy = "UNIX_TIMESTAMP(DATE(FROM_UNIXTIME(created_unix)))"
|
2019-08-24 14:54:45 +05:30
|
|
|
case setting.Database.UsePostgreSQL:
|
2018-10-23 08:27:42 +05:30
|
|
|
groupBy = "extract(epoch from date_trunc('day', to_timestamp(created_unix)))"
|
2019-08-24 14:54:45 +05:30
|
|
|
case setting.Database.UseMSSQL:
|
2018-12-11 07:35:24 +05:30
|
|
|
groupBy = "datediff(SECOND, '19700101', dateadd(DAY, 0, datediff(day, 0, dateadd(s, created_unix, '19700101'))))"
|
2018-11-01 23:42:17 +05:30
|
|
|
groupByName = groupBy
|
2018-10-23 08:27:42 +05:30
|
|
|
}
|
|
|
|
|
2019-01-07 00:59:05 +05:30
|
|
|
sess := x.Select(groupBy+" AS timestamp, count(user_id) as contributions").
|
2018-10-23 08:27:42 +05:30
|
|
|
Table("action").
|
|
|
|
Where("user_id = ?", user.ID).
|
2019-08-15 20:16:21 +05:30
|
|
|
And("created_unix > ?", (timeutil.TimeStampNow() - 31536000))
|
2019-01-07 00:59:05 +05:30
|
|
|
|
|
|
|
// * 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.
|
|
|
|
if user.Type == UserTypeIndividual {
|
|
|
|
sess = sess.And("act_user_id = ?", user.ID)
|
|
|
|
}
|
|
|
|
|
|
|
|
err := sess.GroupBy(groupByName).
|
2018-10-23 08:27:42 +05:30
|
|
|
OrderBy("timestamp").
|
|
|
|
Find(&hdata)
|
2019-01-07 00:59:05 +05:30
|
|
|
|
2018-10-24 18:47:21 +05:30
|
|
|
return hdata, err
|
2018-10-23 08:27:42 +05:30
|
|
|
}
|