修改项目结构

This commit is contained in:
TOP糯米 2023-03-27 23:47:46 +08:00
parent b382647d78
commit 2b7291d7f6
6 changed files with 103 additions and 94 deletions

87
core/data.go Normal file
View File

@ -0,0 +1,87 @@
package core
import (
"chatgpt/util"
"encoding/json"
"fmt"
"reflect"
"sort"
"strings"
)
// RequestData
type RequestData struct {
Words string `json:"words"`
Time int `json:"time"`
Sign string `json:"sign"`
}
// Response
// 响应体
type Response struct {
Code int `json:"code"`
Msg string `json:"msg"`
Data string `json:"data"`
Sign string `json:"sign"`
}
// ResponseData
// 响应数据
type ResponseData map[string]interface{}
// BuildResponse
// 构建响应体
//
// @param privateKey
// @param code
// @param msg
// @param data
// @return string
func BuildResponse(privateKey string, code int, msg string, data ResponseData) string {
resp := Response{
Code: code,
Msg: msg,
}
dataJson, _ := json.Marshal(data)
resp.Data = util.Base64{
Content: []byte(dataJson),
}.Encode()
if privateKey != "" {
resp.Sign = MakeSign(resp, privateKey)
}
respJson, _ := json.Marshal(resp)
return string(respJson)
}
// MakeSign
// 生成签名
//
// @param obj
// @param privateKey
// @return string
func MakeSign(obj interface{}, privateKey string) string {
valueOfObj := reflect.ValueOf(obj)
keysCount := valueOfObj.NumField()
keys := make([]string, keysCount)
for i := 0; i < keysCount; i++ {
keys[i] = valueOfObj.Type().Field(i).Name
}
sort.Strings(keys)
str := ""
currentKey := ""
var currentValue reflect.Value
for j := 0; j < keysCount; j++ {
currentKey = strings.ToLower(keys[j])
if currentKey == "sign" {
continue
}
currentValue = valueOfObj.FieldByName(keys[j])
str = fmt.Sprintf("%s%s=%v&", str, currentKey, currentValue)
}
return util.Md5(str + "key=" + privateKey)
}

View File

@ -1,7 +1,7 @@
package core package core
import ( import (
"chatgpt/utils" "chatgpt/util"
"encoding/json" "encoding/json"
"fmt" "fmt"
"io/ioutil" "io/ioutil"
@ -10,69 +10,24 @@ import (
"sync" "sync"
) )
// RequestData // wg
type RequestData struct {
Words string `json:"words"`
Time int `json:"time"`
Sign string `json:"sign"`
}
// Response
// 响应体
type Response struct {
Code int `json:"code"`
Msg string `json:"msg"`
Data string `json:"data"`
Sign string `json:"sign"`
}
// ResponseData
// 响应数据
type ResponseData map[string]interface{}
// BuildResponse
// 构建响应体
//
// @param privateKey
// @param code
// @param msg
// @param data
// @return string
func BuildResponse(privateKey string, code int, msg string, data ResponseData) string {
resp := Response{
Code: code,
Msg: msg,
}
dataJson, _ := json.Marshal(data)
resp.Data = utils.Base64{
Content: []byte(dataJson),
}.Encode()
if privateKey != "" {
resp.Sign = utils.MakeSign(resp, privateKey)
}
respJson, _ := json.Marshal(resp)
return string(respJson)
}
var wg sync.WaitGroup var wg sync.WaitGroup
// proxyAddr // proxyAddr
// 代理配置 // 代理配置
var proxyAddr string = utils.GetProxyServer() var proxyAddr string = util.GetProxyServer()
// apiKey // apiKey
// GPT Api Key // GPT Api Key
var apiKey string = utils.Conf.Get("gpt", "api_key") var apiKey string = util.Conf.Get("gpt", "api_key")
// privateKey // privateKey
// 签名密钥 // 签名密钥
var privateKey string = utils.Conf.Get("init", "private_key") var privateKey string = util.Conf.Get("init", "private_key")
// TimeoutValue // TimeoutValue
// 超时配置 // 超时配置
var TimeoutValue string = utils.Conf.Get("init", "timeout") var TimeoutValue string = util.Conf.Get("init", "timeout")
// Action // Action
// 处理请求 // 处理请求
@ -89,12 +44,12 @@ func Handler(w http.ResponseWriter, r *http.Request) {
raw, _ := ioutil.ReadAll(r.Body) raw, _ := ioutil.ReadAll(r.Body)
json.Unmarshal(raw, &requestData) json.Unmarshal(raw, &requestData)
if privateKey != "" && requestData.Sign != utils.MakeSign(requestData, privateKey) { if privateKey != "" && requestData.Sign != MakeSign(requestData, privateKey) {
fmt.Fprintln(w, BuildResponse(privateKey, 0, "sign error", ResponseData{})) fmt.Fprintln(w, BuildResponse(privateKey, 0, "sign error", ResponseData{}))
return return
} }
question := utils.Base64{ question := util.Base64{
Content: []byte(requestData.Words), Content: []byte(requestData.Words),
}.Decode() }.Decode()
if len(question) > 0 { if len(question) > 0 {

10
main.go
View File

@ -2,18 +2,18 @@ package main
import ( import (
"chatgpt/core" "chatgpt/core"
"chatgpt/utils" "chatgpt/util"
"net/http" "net/http"
) )
// main // main
func main() { func main() {
utils.Conf = &utils.Config{} util.Conf = &util.Config{}
http.HandleFunc("/", core.Handler) http.HandleFunc("/", core.Handler)
addressArr := utils.GetListenAddress() addressArr := util.GetListenAddress()
if addressArr[0] == "https" { if addressArr[0] == "https" {
certFile := utils.Conf.Get("init", "cert_file") certFile := util.Conf.Get("init", "cert_file")
keyFile := utils.Conf.Get("init", "key_file") keyFile := util.Conf.Get("init", "key_file")
http.ListenAndServeTLS(addressArr[1], certFile, keyFile, nil) http.ListenAndServeTLS(addressArr[1], certFile, keyFile, nil)
} else { } else {
http.ListenAndServe(addressArr[1], nil) http.ListenAndServe(addressArr[1], nil)

View File

@ -1,4 +1,4 @@
package utils package util
import "encoding/base64" import "encoding/base64"

View File

@ -1,4 +1,4 @@
package utils package util
import ( import (
"github.com/go-ini/ini" "github.com/go-ini/ini"

View File

@ -1,10 +1,8 @@
package utils package util
import ( import (
"crypto/md5" "crypto/md5"
"fmt" "fmt"
"reflect"
"sort"
"strings" "strings"
) )
@ -54,34 +52,3 @@ func Md5(text string) string {
byteData := hash.Sum(nil) byteData := hash.Sum(nil)
return fmt.Sprintf("%x", byteData) return fmt.Sprintf("%x", byteData)
} }
// MakeSign
// 生成签名
//
// @param obj
// @param privateKey
// @return string
func MakeSign(obj interface{}, privateKey string) string {
valueOfObj := reflect.ValueOf(obj)
keysCount := valueOfObj.NumField()
keys := make([]string, keysCount)
for i := 0; i < keysCount; i++ {
keys[i] = valueOfObj.Type().Field(i).Name
}
sort.Strings(keys)
str := ""
currentKey := ""
var currentValue reflect.Value
for j := 0; j < keysCount; j++ {
currentKey = strings.ToLower(keys[j])
if currentKey == "sign" {
continue
}
currentValue = valueOfObj.FieldByName(keys[j])
str = fmt.Sprintf("%s%s=%v&", str, currentKey, currentValue)
}
return Md5(str + "key=" + privateKey)
}