2023-04-23 03:31:00 +00:00
|
|
|
package controller
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gin-gonic/gin"
|
2024-01-28 11:38:58 +00:00
|
|
|
"github.com/songquanpeng/one-api/common"
|
|
|
|
"github.com/songquanpeng/one-api/common/config"
|
|
|
|
"github.com/songquanpeng/one-api/common/helper"
|
|
|
|
"github.com/songquanpeng/one-api/model"
|
2023-04-23 03:31:00 +00:00
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
)
|
|
|
|
|
|
|
|
func GetAllTokens(c *gin.Context) {
|
|
|
|
userId := c.GetInt("id")
|
|
|
|
p, _ := strconv.Atoi(c.Query("p"))
|
|
|
|
if p < 0 {
|
|
|
|
p = 0
|
|
|
|
}
|
2024-01-21 15:21:42 +00:00
|
|
|
tokens, err := model.GetAllUserTokens(userId, p*config.ItemsPerPage, config.ItemsPerPage)
|
2023-04-23 03:31:00 +00:00
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": false,
|
|
|
|
"message": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": true,
|
|
|
|
"message": "",
|
|
|
|
"data": tokens,
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func SearchTokens(c *gin.Context) {
|
|
|
|
userId := c.GetInt("id")
|
|
|
|
keyword := c.Query("keyword")
|
|
|
|
tokens, err := model.SearchUserTokens(userId, keyword)
|
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": false,
|
|
|
|
"message": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": true,
|
|
|
|
"message": "",
|
|
|
|
"data": tokens,
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetToken(c *gin.Context) {
|
|
|
|
id, err := strconv.Atoi(c.Param("id"))
|
2023-04-23 04:43:10 +00:00
|
|
|
userId := c.GetInt("id")
|
2023-04-23 03:31:00 +00:00
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": false,
|
|
|
|
"message": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2023-04-23 04:43:10 +00:00
|
|
|
token, err := model.GetTokenByIds(id, userId)
|
2023-04-23 03:31:00 +00:00
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": false,
|
|
|
|
"message": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": true,
|
|
|
|
"message": "",
|
|
|
|
"data": token,
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-10 01:28:41 +00:00
|
|
|
func GetTokenStatus(c *gin.Context) {
|
|
|
|
tokenId := c.GetInt("token_id")
|
|
|
|
userId := c.GetInt("id")
|
|
|
|
token, err := model.GetTokenByIds(tokenId, userId)
|
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": false,
|
|
|
|
"message": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
expiredAt := token.ExpiredTime
|
|
|
|
if expiredAt == -1 {
|
|
|
|
expiredAt = 0
|
|
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"object": "credit_summary",
|
|
|
|
"total_granted": token.RemainQuota,
|
|
|
|
"total_used": 0, // not supported currently
|
|
|
|
"total_available": token.RemainQuota,
|
|
|
|
"expires_at": expiredAt * 1000,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-04-23 03:31:00 +00:00
|
|
|
func AddToken(c *gin.Context) {
|
|
|
|
token := model.Token{}
|
|
|
|
err := c.ShouldBindJSON(&token)
|
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": false,
|
|
|
|
"message": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2023-08-12 08:58:29 +00:00
|
|
|
if len(token.Name) > 30 {
|
2023-04-23 04:43:10 +00:00
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": false,
|
2023-08-12 02:49:30 +00:00
|
|
|
"message": "令牌名称过长",
|
2023-04-23 04:43:10 +00:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
cleanToken := model.Token{
|
2023-05-16 03:26:09 +00:00
|
|
|
UserId: c.GetInt("id"),
|
|
|
|
Name: token.Name,
|
2024-01-21 15:21:42 +00:00
|
|
|
Key: helper.GenerateKey(),
|
|
|
|
CreatedTime: helper.GetTimestamp(),
|
|
|
|
AccessedTime: helper.GetTimestamp(),
|
2023-05-16 03:26:09 +00:00
|
|
|
ExpiredTime: token.ExpiredTime,
|
|
|
|
RemainQuota: token.RemainQuota,
|
|
|
|
UnlimitedQuota: token.UnlimitedQuota,
|
2023-04-23 04:43:10 +00:00
|
|
|
}
|
|
|
|
err = cleanToken.Insert()
|
2023-04-23 03:31:00 +00:00
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": false,
|
|
|
|
"message": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": true,
|
|
|
|
"message": "",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func DeleteToken(c *gin.Context) {
|
|
|
|
id, _ := strconv.Atoi(c.Param("id"))
|
2023-04-23 04:43:10 +00:00
|
|
|
userId := c.GetInt("id")
|
|
|
|
err := model.DeleteTokenById(id, userId)
|
2023-04-23 03:31:00 +00:00
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": false,
|
|
|
|
"message": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": true,
|
|
|
|
"message": "",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func UpdateToken(c *gin.Context) {
|
2023-04-23 04:43:10 +00:00
|
|
|
userId := c.GetInt("id")
|
2023-04-26 02:45:34 +00:00
|
|
|
statusOnly := c.Query("status_only")
|
2023-04-23 03:31:00 +00:00
|
|
|
token := model.Token{}
|
|
|
|
err := c.ShouldBindJSON(&token)
|
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": false,
|
|
|
|
"message": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2023-08-12 08:58:29 +00:00
|
|
|
if len(token.Name) > 30 {
|
2023-08-12 02:49:30 +00:00
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": false,
|
|
|
|
"message": "令牌名称过长",
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2023-04-23 04:43:10 +00:00
|
|
|
cleanToken, err := model.GetTokenByIds(token.Id, userId)
|
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": false,
|
|
|
|
"message": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2023-04-24 12:52:40 +00:00
|
|
|
if token.Status == common.TokenStatusEnabled {
|
2024-01-21 15:21:42 +00:00
|
|
|
if cleanToken.Status == common.TokenStatusExpired && cleanToken.ExpiredTime <= helper.GetTimestamp() && cleanToken.ExpiredTime != -1 {
|
2023-04-24 12:52:40 +00:00
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": false,
|
2023-07-02 06:47:06 +00:00
|
|
|
"message": "令牌已过期,无法启用,请先修改令牌过期时间,或者设置为永不过期",
|
2023-04-24 12:52:40 +00:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2023-04-28 06:57:20 +00:00
|
|
|
if cleanToken.Status == common.TokenStatusExhausted && cleanToken.RemainQuota <= 0 && !cleanToken.UnlimitedQuota {
|
2023-04-24 12:52:40 +00:00
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": false,
|
2023-05-16 04:09:17 +00:00
|
|
|
"message": "令牌可用额度已用尽,无法启用,请先修改令牌剩余额度,或者设置为无限额度",
|
2023-04-24 12:52:40 +00:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2023-04-26 02:45:34 +00:00
|
|
|
if statusOnly != "" {
|
|
|
|
cleanToken.Status = token.Status
|
|
|
|
} else {
|
|
|
|
// If you add more fields, please also update token.Update()
|
|
|
|
cleanToken.Name = token.Name
|
|
|
|
cleanToken.ExpiredTime = token.ExpiredTime
|
2023-05-16 04:09:17 +00:00
|
|
|
cleanToken.RemainQuota = token.RemainQuota
|
|
|
|
cleanToken.UnlimitedQuota = token.UnlimitedQuota
|
2023-04-26 02:45:34 +00:00
|
|
|
}
|
2023-04-23 04:43:10 +00:00
|
|
|
err = cleanToken.Update()
|
2023-04-23 03:31:00 +00:00
|
|
|
if err != nil {
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": false,
|
|
|
|
"message": err.Error(),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.JSON(http.StatusOK, gin.H{
|
|
|
|
"success": true,
|
|
|
|
"message": "",
|
2023-04-23 04:43:10 +00:00
|
|
|
"data": cleanToken,
|
2023-04-23 03:31:00 +00:00
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|