package pintoto import ( "go.dtapp.net/library/golog" "go.dtapp.net/library/gomongo" "go.dtapp.net/library/gorequest" "gorm.io/gorm" "math" "strconv" "time" ) // App 电影票服务 type App struct { appKey string appSecret string mongo *gomongo.Client // 日志数据库 pgsql *gorm.DB // pgsql数据库 client *gorequest.App // 请求客户端 log *golog.Api // 日志服务 logTableName string // 日志表名 logStatus bool // 日志状态 } func NewApp(appKey string, appSecret string, pgsql *gorm.DB) *App { app := &App{appKey: appKey, appSecret: appSecret} app.client = gorequest.NewHttp() if pgsql != nil { app.pgsql = pgsql app.logStatus = true app.logTableName = "pintoto" app.log = golog.NewApi(&golog.ApiConfig{ Db: pgsql, TableName: app.logTableName, }) } return app } // 请求 func (app *App) request(url string, params map[string]interface{}) (resp gorequest.Response, err error) { // 公共参数 params["time"] = time.Now().Unix() params["appKey"] = app.appKey // 签名 params["sign"] = app.getSign(app.appSecret, params) // 创建请求 client := app.client // 设置请求地址 client.SetUri(url) // 设置格式 client.SetContentTypeForm() // 设置参数 client.SetParams(params) // 发起请求 request, err := client.Post() if err != nil { return gorequest.Response{}, err } // 日志 if app.mongo != nil && app.mongo.Db != nil { go app.mongoLog(request) } if app.logStatus == true { go app.postgresqlLog(request) } return request, err } func (app *App) GradeToFloat64(i interface{}) float64 { switch v := i.(type) { case string: float, _ := strconv.ParseFloat(v, 64) return float case float64: return v case int64: return float64(v) / math.Pow10(0) default: return 0 } }