package meituan import ( "go.dtapp.net/library/golog" "go.dtapp.net/library/gorequest" "gorm.io/gorm" ) // App 美团联盟 type App struct { secret string // 秘钥 appKey string // 渠道标记 pgsql *gorm.DB // pgsql数据库 client *gorequest.App // 请求客户端 log *golog.Api // 日志服务 logTableName string // 日志表名 logStatus bool // 日志状态 } func NewApp(secret string, appKey string, pgsql *gorm.DB) *App { app := &App{secret: secret, appKey: appKey} app.client = gorequest.NewHttp() if pgsql != nil { app.pgsql = pgsql app.logStatus = true app.logTableName = "meituan" app.log = golog.NewApi(&golog.ApiConfig{ Db: pgsql, TableName: app.logTableName, }) } return app } func (app *App) request(url string, params map[string]interface{}, method string) (resp gorequest.Response, err error) { // 创建请求 client := app.client // 设置请求地址 client.SetUri(url) // 设置方式 client.SetMethod(method) // 设置格式 client.SetContentTypeJson() // 设置参数 client.SetParams(params) // 发起请求 request, err := client.Request() if err != nil { return gorequest.Response{}, err } // 日志 if app.logStatus == true { go app.postgresqlLog(request) } return request, err } func (app *App) GetAppKey() string { return app.appKey }