gpt.go 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package public
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "time"
  6. "github.com/eryajf/chatgpt-dingtalk/config"
  7. "github.com/go-resty/resty/v2"
  8. )
  9. func InitAiCli() *resty.Client {
  10. if config.LoadConfig().HttpProxy != "" {
  11. return resty.New().SetTimeout(30*time.Second).SetHeader("Authorization", fmt.Sprintf("Bearer %s", config.LoadConfig().ApiKey)).SetProxy(config.LoadConfig().HttpProxy).SetRetryCount(3).SetRetryWaitTime(5 * time.Second)
  12. }
  13. return resty.New().SetTimeout(30*time.Second).SetHeader("Authorization", fmt.Sprintf("Bearer %s", config.LoadConfig().ApiKey)).SetRetryCount(3).SetRetryWaitTime(5 * time.Second)
  14. }
  15. type Billing struct {
  16. Object string `json:"object"`
  17. TotalGranted float64 `json:"total_granted"`
  18. TotalUsed float64 `json:"total_used"`
  19. TotalAvailable float64 `json:"total_available"`
  20. Grants struct {
  21. Object string `json:"object"`
  22. Data []struct {
  23. Object string `json:"object"`
  24. ID string `json:"id"`
  25. GrantAmount float64 `json:"grant_amount"`
  26. UsedAmount float64 `json:"used_amount"`
  27. EffectiveAt float64 `json:"effective_at"`
  28. ExpiresAt float64 `json:"expires_at"`
  29. } `json:"data"`
  30. } `json:"grants"`
  31. }
  32. func GetBalance() (Billing, error) {
  33. var data Billing
  34. url := "https://api.openai.com/dashboard/billing/credit_grants"
  35. resp, err := InitAiCli().R().Get(url)
  36. if err != nil {
  37. return data, err
  38. }
  39. err = json.Unmarshal(resp.Body(), &data)
  40. if err != nil {
  41. return data, err
  42. }
  43. t1 := time.Unix(int64(data.Grants.Data[0].EffectiveAt), 0)
  44. t2 := time.Unix(int64(data.Grants.Data[0].ExpiresAt), 0)
  45. msg := fmt.Sprintf("💵 已用: 💲%v\n💵 剩余: 💲%v\n⏳ 有效时间: 从 %v 到 %v\n", fmt.Sprintf("%.2f", data.TotalUsed), fmt.Sprintf("%.2f", data.TotalAvailable), t1.Format("2006-01-02 15:04:05"), t2.Format("2006-01-02 15:04:05"))
  46. // 放入缓存
  47. UserService.SetUserMode("system_balance", msg)
  48. return data, nil
  49. }