business_conf.go 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. package models
  2. import (
  3. "fmt"
  4. "github.com/beego/beego/v2/client/orm"
  5. "html"
  6. "strings"
  7. "time"
  8. )
  9. const (
  10. BusinessConfUseXf = "UseXf"
  11. BusinessConfXfAppid = "XfAppid"
  12. BusinessConfXfApiKey = "XfApiKey"
  13. BusinessConfXfApiSecret = "XfApiSecret"
  14. BusinessConfXfVcn = "XfVcn"
  15. BusinessConfEnPptCoverImgs = "EnPptCoverImgs"
  16. BusinessConfIsReportApprove = "IsReportApprove"
  17. BusinessConfReportApproveType = "ReportApproveType"
  18. BusinessConfCompanyName = "CompanyName"
  19. BusinessConfCompanyWatermark = "CompanyWatermark"
  20. BusinessConfWatermarkChart = "WatermarkChart"
  21. BusinessConfLoginSmsTpId = "LoginSmsTpId"
  22. BusinessConfLoginSmsGjTpId = "LoginSmsGjTpId"
  23. BusinessConfSmsJhgnAppKey = "SmsJhgnAppKey"
  24. BusinessConfSmsJhgjAppKey = "SmsJhgjAppKey"
  25. BusinessConfLdapHost = "LdapHost"
  26. BusinessConfLdapBase = "LdapBase"
  27. BusinessConfLdapPort = "LdapPort"
  28. BusinessConfEmailClient = "EmailClient"
  29. BusinessConfEmailServerHost = "EmailServerHost"
  30. BusinessConfEmailServerPort = "EmailServerPort"
  31. BusinessConfEmailSender = "EmailSender"
  32. BusinessConfEmailSenderUserName = "EmailSenderUserName"
  33. BusinessConfEmailSenderPassword = "EmailSenderPassword"
  34. BusinessConfSmsClient = "SmsClient"
  35. BusinessConfNanHuaSmsAppKey = "NanHuaSmsAppKey"
  36. BusinessConfNanHuaSmsAppSecret = "NanHuaSmsAppSecret"
  37. BusinessConfNanHuaSmsApiHost = "NanHuaSmsApiHost"
  38. BusinessConfLoginSmsTplContent = "LoginSmsTplContent"
  39. BusinessConfLoginEmailTemplateSubject = "LoginEmailTemplateSubject"
  40. BusinessConfLoginEmailTemplateContent = "LoginEmailTemplateContent"
  41. BusinessConfLdapBindUserSuffix = "LdapBindUserSuffix"
  42. BusinessConfLdapUserFilter = "LdapUserFilter"
  43. BusinessConfSmsJhgjVariable = "SmsJhgjVariable" // 聚合国际短信变量
  44. )
  45. const (
  46. BusinessConfReportApproveTypeEta = "eta"
  47. BusinessConfReportApproveTypeOther = "other"
  48. BusinessConfClientFlagNanHua = "nhqh" // 南华标记
  49. BusinessConfEmailClientSmtp = "smtp" // 普通邮箱标记
  50. )
  51. // FromSceneMap 数据源名称与数据源ID的对应关系
  52. var FromSceneMap = map[int]string{
  53. 1: "SmartReportSheetSize",
  54. 2: "ReportSheetSize",
  55. 3: "EnReportSheetSize",
  56. 4: "CnPptSheetSize",
  57. 5: "EnPptSheetSize",
  58. }
  59. // BusinessConf 商户配置表
  60. type BusinessConf struct {
  61. Id int `orm:"column(id);pk"`
  62. ConfKey string `description:"配置Key"`
  63. ConfVal string `description:"配置值"`
  64. ValType int `description:"1-字符串;2-数值;3-字符串数组;4-富文本;"`
  65. Necessary int `description:"是否必填:0-否;1-是"`
  66. Remark string `description:"备注"`
  67. CreateTime time.Time
  68. }
  69. func (m *BusinessConf) TableName() string {
  70. return "business_conf"
  71. }
  72. func (m *BusinessConf) PrimaryId() string {
  73. return "id"
  74. }
  75. func (m *BusinessConf) Create() (err error) {
  76. o := orm.NewOrm()
  77. id, err := o.Insert(m)
  78. if err != nil {
  79. return
  80. }
  81. m.Id = int(id)
  82. return
  83. }
  84. func (m *BusinessConf) CreateMulti(items []*BusinessConf) (err error) {
  85. if len(items) == 0 {
  86. return
  87. }
  88. o := orm.NewOrm()
  89. _, err = o.InsertMulti(len(items), items)
  90. return
  91. }
  92. func (m *BusinessConf) Update(cols []string) (err error) {
  93. o := orm.NewOrm()
  94. _, err = o.Update(m, cols...)
  95. return
  96. }
  97. func (m *BusinessConf) Del() (err error) {
  98. o := orm.NewOrm()
  99. sql := fmt.Sprintf(`DELETE FROM %s WHERE %s = ? LIMIT 1`, m.TableName(), m.PrimaryId())
  100. _, err = o.Raw(sql, m.Id).Exec()
  101. return
  102. }
  103. func (m *BusinessConf) GetItemById(id int) (item *BusinessConf, err error) {
  104. o := orm.NewOrm()
  105. sql := fmt.Sprintf(`SELECT * FROM %s WHERE %s = ? LIMIT 1`, m.TableName(), m.PrimaryId())
  106. err = o.Raw(sql, id).QueryRow(&item)
  107. return
  108. }
  109. func (m *BusinessConf) GetItemByCondition(condition string, pars []interface{}) (item *BusinessConf, err error) {
  110. o := orm.NewOrm()
  111. sql := fmt.Sprintf(`SELECT * FROM %s WHERE 1=1 %s LIMIT 1`, m.TableName(), condition)
  112. err = o.Raw(sql, pars).QueryRow(&item)
  113. return
  114. }
  115. func (m *BusinessConf) GetCountByCondition(condition string, pars []interface{}) (count int, err error) {
  116. o := orm.NewOrm()
  117. sql := fmt.Sprintf(`SELECT COUNT(1) FROM %s WHERE 1=1 %s`, m.TableName(), condition)
  118. err = o.Raw(sql, pars).QueryRow(&count)
  119. return
  120. }
  121. func (m *BusinessConf) GetItemsByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string) (items []*BusinessConf, err error) {
  122. o := orm.NewOrm()
  123. fields := strings.Join(fieldArr, ",")
  124. if len(fieldArr) == 0 {
  125. fields = `*`
  126. }
  127. order := `ORDER BY create_time DESC`
  128. if orderRule != "" {
  129. order = ` ORDER BY ` + orderRule
  130. }
  131. sql := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 %s %s`, fields, m.TableName(), condition, order)
  132. _, err = o.Raw(sql, pars).QueryRows(&items)
  133. return
  134. }
  135. func (m *BusinessConf) GetPageItemsByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string, startSize, pageSize int) (items []*BusinessConf, err error) {
  136. o := orm.NewOrm()
  137. fields := strings.Join(fieldArr, ",")
  138. if len(fieldArr) == 0 {
  139. fields = `*`
  140. }
  141. order := `ORDER BY create_time DESC`
  142. if orderRule != "" {
  143. order = ` ORDER BY ` + orderRule
  144. }
  145. sql := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 %s %s LIMIT ?,?`, fields, m.TableName(), condition, order)
  146. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  147. return
  148. }
  149. // GetBusinessConf 获取商家配置
  150. func GetBusinessConf() (list map[string]string, err error) {
  151. list = make(map[string]string)
  152. var items []*BusinessConf
  153. o := orm.NewOrm()
  154. sql := `SELECT * FROM business_conf`
  155. _, err = o.Raw(sql).QueryRows(&items)
  156. if err != nil {
  157. return
  158. }
  159. for _, v := range items {
  160. if v.ValType == 4 {
  161. list[v.ConfKey] = html.UnescapeString(v.ConfVal)
  162. continue
  163. }
  164. list[v.ConfKey] = v.ConfVal
  165. }
  166. return
  167. }
  168. // BusinessConfUpdate 更新配置
  169. type BusinessConfUpdate struct {
  170. ConfKey string
  171. ConfVal string
  172. }
  173. // UpdateBusinessConfMulti 批量修改配置
  174. func UpdateBusinessConfMulti(items []BusinessConfUpdate) (err error) {
  175. o := orm.NewOrm()
  176. p, err := o.Raw("UPDATE business_conf SET conf_val = ? WHERE conf_key = ?").Prepare()
  177. if err != nil {
  178. return
  179. }
  180. defer func() {
  181. _ = p.Close()
  182. }()
  183. for _, v := range items {
  184. _, err = p.Exec(v.ConfVal, v.ConfKey)
  185. if err != nil {
  186. return
  187. }
  188. }
  189. return
  190. }
  191. func GetBusinessConfByKey(key string) (item *BusinessConf, err error) {
  192. o := orm.NewOrm()
  193. sql := fmt.Sprintf(`SELECT * FROM business_conf WHERE conf_key = ? LIMIT 1`)
  194. err = o.Raw(sql, key).QueryRow(&item)
  195. return
  196. }