1
0
This repository has been archived on 2024-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
chatgpt-to-api/main.go

112 lines
2.3 KiB
Go
Raw Normal View History

2023-04-02 03:30:03 +00:00
package main
2023-04-02 05:40:07 +00:00
import (
2023-05-18 03:42:54 +00:00
"bufio"
2023-04-11 04:28:01 +00:00
"encoding/json"
2023-04-02 16:37:16 +00:00
"freechatgpt/internal/tokens"
"os"
2023-04-24 08:34:09 +00:00
"strings"
2023-05-18 03:42:54 +00:00
"time"
2023-04-11 04:28:01 +00:00
"github.com/fvbock/endless"
"github.com/gin-gonic/gin"
2023-04-02 05:40:07 +00:00
)
var HOST string
var PORT string
2023-04-02 16:37:16 +00:00
var ACCESS_TOKENS tokens.AccessToken
2023-05-18 03:42:54 +00:00
var proxies []string
func checkProxy() {
// Check for proxies.txt
proxies = []string{}
if _, err := os.Stat("proxies.txt"); err == nil {
// Each line is a proxy, put in proxies array
file, _ := os.Open("proxies.txt")
defer file.Close()
scanner := bufio.NewScanner(file)
for scanner.Scan() {
// Split line by :
proxy := scanner.Text()
proxy_parts := strings.Split(proxy, ":")
if len(proxy_parts) > 0 {
proxies = append(proxies, proxy)
} else {
continue
}
}
}
}
func init() {
HOST = os.Getenv("SERVER_HOST")
PORT = os.Getenv("SERVER_PORT")
if HOST == "" {
HOST = "127.0.0.1"
}
if PORT == "" {
PORT = "8080"
}
2023-05-18 03:42:54 +00:00
checkProxy()
2023-04-11 04:28:01 +00:00
// Check if access_tokens.json exists
2023-05-18 03:42:54 +00:00
if stat, err := os.Stat("access_tokens.json"); os.IsNotExist(err) {
2023-04-11 04:28:01 +00:00
// Create the file
file, err := os.Create("access_tokens.json")
if err != nil {
panic(err)
}
defer file.Close()
2023-05-18 03:42:54 +00:00
updateToken()
2023-04-11 04:28:01 +00:00
} else {
2023-05-18 03:42:54 +00:00
nowTime := time.Now()
usedTime := nowTime.Sub(stat.ModTime())
// update access token 25 days after last modify token file
toExpire := 2.16e15 - usedTime
if toExpire > 0 {
file, err := os.Open("access_tokens.json")
if err != nil {
panic(err)
}
defer file.Close()
decoder := json.NewDecoder(file)
var token_list []string
err = decoder.Decode(&token_list)
if err != nil {
updateToken()
return
}
if len(token_list) == 0 {
updateToken()
} else {
ACCESS_TOKENS = tokens.NewAccessToken(token_list, false)
time.AfterFunc(toExpire, updateToken)
}
} else {
updateToken()
2023-04-11 04:28:01 +00:00
}
}
}
func main() {
router := gin.Default()
2023-04-05 10:07:07 +00:00
router.Use(cors)
router.GET("/ping", func(c *gin.Context) {
2023-04-03 02:11:16 +00:00
c.JSON(200, gin.H{
"message": "pong",
})
})
2023-04-05 10:07:07 +00:00
admin_routes := router.Group("/admin")
admin_routes.Use(adminCheck)
/// Admin routes
2023-04-05 10:07:07 +00:00
admin_routes.PATCH("/password", passwordHandler)
admin_routes.PATCH("/tokens", adminCheck, tokensHandler)
2023-04-02 14:53:33 +00:00
/// Public routes
2023-04-05 10:07:07 +00:00
router.OPTIONS("/v1/chat/completions", optionsHandler)
router.POST("/v1/chat/completions", nightmare)
2023-04-11 04:28:01 +00:00
endless.ListenAndServe(HOST+":"+PORT, router)
}