mirror of
https://github.com/linux-do/new-api.git
synced 2025-09-18 00:16:37 +08:00
chore: 数据看板限制用户只能查询跨度一个月的数据
This commit is contained in:
parent
a8715c61c8
commit
e41fcd563e
@ -31,6 +31,14 @@ func GetUserQuotaDates(c *gin.Context) {
|
|||||||
userId := c.GetInt("id")
|
userId := c.GetInt("id")
|
||||||
startTimestamp, _ := strconv.ParseInt(c.Query("start_timestamp"), 10, 64)
|
startTimestamp, _ := strconv.ParseInt(c.Query("start_timestamp"), 10, 64)
|
||||||
endTimestamp, _ := strconv.ParseInt(c.Query("end_timestamp"), 10, 64)
|
endTimestamp, _ := strconv.ParseInt(c.Query("end_timestamp"), 10, 64)
|
||||||
|
// 判断时间跨度是否超过 1 个月
|
||||||
|
if endTimestamp-startTimestamp > 2592000 {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": false,
|
||||||
|
"message": "时间跨度不能超过 1 个月",
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
dates, err := model.GetQuotaDataByUserId(userId, startTimestamp, endTimestamp)
|
dates, err := model.GetQuotaDataByUserId(userId, startTimestamp, endTimestamp)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.JSON(http.StatusOK, gin.H{
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
Loading…
Reference in New Issue
Block a user