123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- package models
- import (
- "eta/eta_api/utils"
- "fmt"
- "github.com/beego/beego/v2/client/orm"
- "html"
- "strings"
- "time"
- )
- const (
- BusinessConfUseXf = "UseXf"
- BusinessConfXfAppid = "XfAppid"
- BusinessConfXfApiKey = "XfApiKey"
- BusinessConfXfApiSecret = "XfApiSecret"
- BusinessConfXfVcn = "XfVcn"
- BusinessConfEnPptCoverImgs = "EnPptCoverImgs"
- BusinessConfIsReportApprove = "IsReportApprove"
- BusinessConfReportApproveType = "ReportApproveType"
- BusinessConfCompanyName = "CompanyName"
- BusinessConfCompanyWatermark = "CompanyWatermark"
- BusinessConfWatermarkChart = "WatermarkChart"
- BusinessConfLoginSmsTpId = "LoginSmsTpId"
- BusinessConfLoginSmsGjTpId = "LoginSmsGjTpId"
- BusinessConfSmsJhgnAppKey = "SmsJhgnAppKey"
- BusinessConfSmsJhgjAppKey = "SmsJhgjAppKey"
- BusinessConfLdapHost = "LdapHost"
- BusinessConfLdapBase = "LdapBase"
- BusinessConfLdapPort = "LdapPort"
- BusinessConfEmailClient = "EmailClient"
- BusinessConfEmailServerHost = "EmailServerHost"
- BusinessConfEmailServerPort = "EmailServerPort"
- BusinessConfEmailSender = "EmailSender"
- BusinessConfEmailSenderUserName = "EmailSenderUserName"
- BusinessConfEmailSenderPassword = "EmailSenderPassword"
- BusinessConfSmsClient = "SmsClient"
- BusinessConfNanHuaSmsAppKey = "NanHuaSmsAppKey"
- BusinessConfNanHuaSmsAppSecret = "NanHuaSmsAppSecret"
- BusinessConfNanHuaSmsApiHost = "NanHuaSmsApiHost"
- BusinessConfLoginSmsTplContent = "LoginSmsTplContent"
- BusinessConfLoginEmailTemplateSubject = "LoginEmailTemplateSubject"
- BusinessConfLoginEmailTemplateContent = "LoginEmailTemplateContent"
- BusinessConfLdapBindUserSuffix = "LdapBindUserSuffix"
- BusinessConfLdapUserFilter = "LdapUserFilter"
- BusinessConfTencentApiSecretId = "TencentApiSecretId" // 腾讯云API-密钥对
- BusinessConfTencentApiSecretKey = "TencentApiSecretKey" // 腾讯云API-密钥对
- BusinessConfTencentApiRecTaskCallbackUrl = "TencentApiRecTaskCallbackUrl" // 腾讯云API-语音识别回调地址
- BusinessConfSmsJhgjVariable = "SmsJhgjVariable" // 聚合国际短信变量
- BusinessConfEdbStopRefreshRule = "EdbStopRefreshRule" // 是否停止指标刷新规则
- )
- const (
- BusinessConfReportApproveTypeEta = "eta"
- BusinessConfReportApproveTypeOther = "other"
- BusinessConfClientFlagNanHua = "nhqh" // 南华标记
- BusinessConfEmailClientSmtp = "smtp" // 普通邮箱标记
- )
- // FromSceneMap 数据源名称与数据源ID的对应关系
- var FromSceneMap = map[int]string{
- 1: "SmartReportSheetSize",
- 2: "ReportSheetSize",
- 3: "EnReportSheetSize",
- 4: "CnPptSheetSize",
- 5: "EnPptSheetSize",
- }
- // BusinessConf 商户配置表
- type BusinessConf struct {
- Id int `orm:"column(id);pk"`
- ConfKey string `description:"配置Key"`
- ConfVal string `description:"配置值"`
- ValType int `description:"1-字符串;2-数值;3-字符串数组;4-富文本;"`
- Necessary int `description:"是否必填:0-否;1-是"`
- Remark string `description:"备注"`
- CreateTime time.Time
- }
- func (m *BusinessConf) TableName() string {
- return "business_conf"
- }
- func (m *BusinessConf) PrimaryId() string {
- return "id"
- }
- func (m *BusinessConf) Create() (err error) {
- o := orm.NewOrm()
- id, err := o.Insert(m)
- if err != nil {
- return
- }
- m.Id = int(id)
- return
- }
- func (m *BusinessConf) CreateMulti(items []*BusinessConf) (err error) {
- if len(items) == 0 {
- return
- }
- o := orm.NewOrm()
- _, err = o.InsertMulti(len(items), items)
- return
- }
- func (m *BusinessConf) Update(cols []string) (err error) {
- o := orm.NewOrm()
- _, err = o.Update(m, cols...)
- return
- }
- func (m *BusinessConf) Del() (err error) {
- o := orm.NewOrm()
- sql := fmt.Sprintf(`DELETE FROM %s WHERE %s = ? LIMIT 1`, m.TableName(), m.PrimaryId())
- _, err = o.Raw(sql, m.Id).Exec()
- return
- }
- func (m *BusinessConf) GetItemById(id int) (item *BusinessConf, err error) {
- o := orm.NewOrm()
- sql := fmt.Sprintf(`SELECT * FROM %s WHERE %s = ? LIMIT 1`, m.TableName(), m.PrimaryId())
- err = o.Raw(sql, id).QueryRow(&item)
- return
- }
- func (m *BusinessConf) GetItemByCondition(condition string, pars []interface{}) (item *BusinessConf, err error) {
- o := orm.NewOrm()
- sql := fmt.Sprintf(`SELECT * FROM %s WHERE 1=1 %s LIMIT 1`, m.TableName(), condition)
- err = o.Raw(sql, pars).QueryRow(&item)
- return
- }
- func (m *BusinessConf) GetCountByCondition(condition string, pars []interface{}) (count int, err error) {
- o := orm.NewOrm()
- sql := fmt.Sprintf(`SELECT COUNT(1) FROM %s WHERE 1=1 %s`, m.TableName(), condition)
- err = o.Raw(sql, pars).QueryRow(&count)
- return
- }
- func (m *BusinessConf) GetItemsByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string) (items []*BusinessConf, err error) {
- o := orm.NewOrm()
- fields := strings.Join(fieldArr, ",")
- if len(fieldArr) == 0 {
- fields = `*`
- }
- order := `ORDER BY create_time DESC`
- if orderRule != "" {
- order = ` ORDER BY ` + orderRule
- }
- sql := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 %s %s`, fields, m.TableName(), condition, order)
- _, err = o.Raw(sql, pars).QueryRows(&items)
- return
- }
- func (m *BusinessConf) GetPageItemsByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string, startSize, pageSize int) (items []*BusinessConf, err error) {
- o := orm.NewOrm()
- fields := strings.Join(fieldArr, ",")
- if len(fieldArr) == 0 {
- fields = `*`
- }
- order := `ORDER BY create_time DESC`
- if orderRule != "" {
- order = ` ORDER BY ` + orderRule
- }
- sql := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 %s %s LIMIT ?,?`, fields, m.TableName(), condition, order)
- _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
- return
- }
- // GetBusinessConf 获取商家配置
- func GetBusinessConf() (list map[string]string, err error) {
- list = make(map[string]string)
- var items []*BusinessConf
- o := orm.NewOrm()
- sql := `SELECT * FROM business_conf`
- _, err = o.Raw(sql).QueryRows(&items)
- if err != nil {
- return
- }
- for _, v := range items {
- if v.ValType == 4 {
- list[v.ConfKey] = html.UnescapeString(v.ConfVal)
- continue
- }
- list[v.ConfKey] = v.ConfVal
- }
- return
- }
- // BusinessConfUpdate 更新配置
- type BusinessConfUpdate struct {
- ConfKey string
- ConfVal string
- }
- // UpdateBusinessConfMulti 批量修改配置
- func UpdateBusinessConfMulti(items []BusinessConfUpdate) (err error) {
- o := orm.NewOrm()
- p, err := o.Raw("UPDATE business_conf SET conf_val = ? WHERE conf_key = ?").Prepare()
- if err != nil {
- return
- }
- defer func() {
- _ = p.Close()
- }()
- for _, v := range items {
- _, err = p.Exec(v.ConfVal, v.ConfKey)
- if err != nil {
- return
- }
- }
- return
- }
- func GetBusinessConfByKey(key string) (item *BusinessConf, err error) {
- o := orm.NewOrm()
- sql := fmt.Sprintf(`SELECT * FROM business_conf WHERE conf_key = ? LIMIT 1`)
- err = o.Raw(sql, key).QueryRow(&item)
- return
- }
- type BusinessConfSingleSaveReq struct {
- ConfKey string `description:"配置Key"`
- ConfVal string `description:"配置值"`
- }
- type EdbStopRefreshRule struct {
- IsOpen int `description:"是否开启自动禁用1,开启,0未开启"`
- BaseIndexStopDays int `description:"数据源间隔天数未加入指标库则停用"`
- EdbStopDays int `description:"指标库间隔天数未引用则停用"`
- }
- type BusinessConfSingleResp struct {
- ConfVal string
- }
- // InitUseMongoConf
- // @Description:
- // @author: Roc
- // @datetime 2024-07-01 13:49:09
- func InitUseMongoConf() {
- useMongo, e := GetBusinessConfByKey("UseMongo")
- if e != nil {
- return
- }
- if useMongo.ConfVal == `true` {
- utils.UseMongo = true
- }
- }
|