forked from acheong08/ChatGPT-to-API
-
Notifications
You must be signed in to change notification settings - Fork 1
/
handlers.go
209 lines (198 loc) · 5.41 KB
/
handlers.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
package main
import (
"bytes"
"encoding/json"
chatgpt_request_converter "freechatgpt/conversion/requests/chatgpt"
chatgpt "freechatgpt/internal/chatgpt"
"freechatgpt/internal/gemini/api"
"freechatgpt/internal/tokens"
official_types "freechatgpt/typings/official"
"io"
"net/http"
"os"
"strings"
"github.com/gin-gonic/gin"
"github.com/google/uuid"
)
func passwordHandler(c *gin.Context) {
// Get the password from the request (json) and update the password
type password_struct struct {
Password string `json:"password"`
}
var password password_struct
err := c.BindJSON(&password)
if err != nil {
c.String(400, "password not provided")
return
}
ADMIN_PASSWORD = password.Password
// Set environment variable
os.Setenv("ADMIN_PASSWORD", ADMIN_PASSWORD)
c.String(200, "password updated")
}
func tokensHandler(c *gin.Context) {
// Get the request_tokens from the request (json) and update the request_tokens
var request_tokens map[string]tokens.Secret
err := c.BindJSON(&request_tokens)
if err != nil {
c.String(400, "tokens not provided")
return
}
ACCESS_TOKENS = tokens.NewAccessToken(request_tokens)
ACCESS_TOKENS.Save()
validAccounts = ACCESS_TOKENS.GetKeys()
c.String(200, "tokens updated")
}
func optionsHandler(c *gin.Context) {
// Set headers for CORS
c.Header("Access-Control-Allow-Origin", "*")
c.Header("Access-Control-Allow-Methods", "POST")
c.Header("Access-Control-Allow-Headers", "*")
c.JSON(200, gin.H{
"message": "pong",
})
}
func simulateModel(c *gin.Context) {
c.JSON(200, gin.H{
"object": "list",
"data": []gin.H{
{
"id": "gpt-3.5-turbo",
"object": "model",
"created": 1688888888,
"owned_by": "chatgpt-to-api",
},
{
"id": "gpt-4",
"object": "model",
"created": 1688888888,
"owned_by": "chatgpt-to-api",
},
{
"id": "gemini-pro",
"object": "model",
"created": 1688888888,
"owned_by": "chatgpt-to-api",
},
{
"id": "gemini-pro-vision",
"object": "model",
"created": 1688888888,
"owned_by": "chatgpt-to-api",
},
},
})
}
func nightmare(c *gin.Context) {
var original_request official_types.APIRequest
if c.Request.ContentLength == 0 {
c.Status(http.StatusBadRequest)
return
}
buff := &bytes.Buffer{}
defer c.Request.Body.Close()
if _, err := io.Copy(buff, c.Request.Body); err != nil {
c.JSON(500, gin.H{
"error": err,
})
return
}
if err := json.Unmarshal(buff.Bytes(), &original_request); err != nil {
c.JSON(500, gin.H{
"error": err,
})
return
}
// err := c.BindJSON(&original_request)
// if err != nil {
// c.JSON(400, gin.H{"error": gin.H{
// "message": "Request must be proper JSON",
// "type": "invalid_request_error",
// "param": nil,
// "code": err.Error(),
// }})
// return
// }
c.Request.Body = io.NopCloser(bytes.NewReader(buff.Bytes()))
if original_request.Model == "gemini-pro" {
api.ChatProxyHandler(c)
return
}
if original_request.Model == "gemini-pro-vision" {
api.VisionProxyHandler(c)
return
}
authHeader := c.GetHeader("Authorization")
token, puid := getSecret()
if authHeader != "" {
customAccessToken := strings.Replace(authHeader, "Bearer ", "", 1)
// Check if customAccessToken starts with sk-
if strings.HasPrefix(customAccessToken, "eyJhbGciOiJSUzI1NiI") {
token = customAccessToken
}
}
var proxy_url string
if len(proxies) == 0 {
proxy_url = ""
} else {
proxy_url = proxies[0]
// Push used proxy to the back of the list
proxies = append(proxies[1:], proxies[0])
}
uid := uuid.NewString()
err = chatgpt.InitWSConn(token, uid, proxy_url)
if err != nil {
return
}
// Convert the chat request to a ChatGPT request
translated_request := chatgpt_request_converter.ConvertAPIRequest(original_request, puid, proxy_url)
response, err := chatgpt.POSTconversation(translated_request, token, puid, proxy_url)
if err != nil {
c.JSON(500, gin.H{
"error": "error sending request",
})
return
}
defer response.Body.Close()
if chatgpt.Handle_request_error(c, response) {
return
}
var full_response string
for i := 3; i > 0; i-- {
var continue_info *chatgpt.ContinueInfo
var response_part string
response_part, continue_info = chatgpt.Handler(c, response, token, puid, uid, translated_request, original_request.Stream)
full_response += response_part
if continue_info == nil {
break
}
println("Continuing conversation")
translated_request.Messages = nil
translated_request.Action = "continue"
translated_request.ConversationID = continue_info.ConversationID
translated_request.ParentMessageID = continue_info.ParentID
if strings.HasPrefix(original_request.Model, "gpt-4") {
chatgpt_request_converter.RenewTokenForRequest(&translated_request, puid, proxy_url)
}
response, err = chatgpt.POSTconversation(translated_request, token, puid, proxy_url)
if err != nil {
c.JSON(500, gin.H{
"error": "error sending request",
})
return
}
defer response.Body.Close()
if chatgpt.Handle_request_error(c, response) {
return
}
}
if c.Writer.Status() != 200 {
return
}
if !original_request.Stream {
c.JSON(200, official_types.NewChatCompletion(full_response))
} else {
c.String(200, "data: [DONE]\n\n")
}
chatgpt.UnlockSpecConn(token, uid)
}