business_conf.go 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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. )
  42. const (
  43. BusinessConfReportApproveTypeEta = "eta"
  44. BusinessConfReportApproveTypeOther = "other"
  45. BusinessConfClientFlagNanHua = "nhqh" // 南华标记
  46. BusinessConfEmailClientSmtp = "smtp" // 普通邮箱标记
  47. )
  48. // BusinessConf 商户配置表
  49. type BusinessConf struct {
  50. Id int `orm:"column(id);pk"`
  51. ConfKey string `description:"配置Key"`
  52. ConfVal string `description:"配置值"`
  53. ValType int `description:"1-字符串;2-数值;3-字符串数组;4-富文本;"`
  54. Necessary int `description:"是否必填:0-否;1-是"`
  55. Remark string `description:"备注"`
  56. CreateTime time.Time
  57. }
  58. func (m *BusinessConf) TableName() string {
  59. return "business_conf"
  60. }
  61. func (m *BusinessConf) PrimaryId() string {
  62. return "id"
  63. }
  64. func (m *BusinessConf) Create() (err error) {
  65. o := orm.NewOrm()
  66. id, err := o.Insert(m)
  67. if err != nil {
  68. return
  69. }
  70. m.Id = int(id)
  71. return
  72. }
  73. func (m *BusinessConf) CreateMulti(items []*BusinessConf) (err error) {
  74. if len(items) == 0 {
  75. return
  76. }
  77. o := orm.NewOrm()
  78. _, err = o.InsertMulti(len(items), items)
  79. return
  80. }
  81. func (m *BusinessConf) Update(cols []string) (err error) {
  82. o := orm.NewOrm()
  83. _, err = o.Update(m, cols...)
  84. return
  85. }
  86. func (m *BusinessConf) Del() (err error) {
  87. o := orm.NewOrm()
  88. sql := fmt.Sprintf(`DELETE FROM %s WHERE %s = ? LIMIT 1`, m.TableName(), m.PrimaryId())
  89. _, err = o.Raw(sql, m.Id).Exec()
  90. return
  91. }
  92. func (m *BusinessConf) GetItemById(id int) (item *BusinessConf, err error) {
  93. o := orm.NewOrm()
  94. sql := fmt.Sprintf(`SELECT * FROM %s WHERE %s = ? LIMIT 1`, m.TableName(), m.PrimaryId())
  95. err = o.Raw(sql, id).QueryRow(&item)
  96. return
  97. }
  98. func (m *BusinessConf) GetItemByCondition(condition string, pars []interface{}) (item *BusinessConf, err error) {
  99. o := orm.NewOrm()
  100. sql := fmt.Sprintf(`SELECT * FROM %s WHERE 1=1 %s LIMIT 1`, m.TableName(), condition)
  101. err = o.Raw(sql, pars).QueryRow(&item)
  102. return
  103. }
  104. func (m *BusinessConf) GetCountByCondition(condition string, pars []interface{}) (count int, err error) {
  105. o := orm.NewOrm()
  106. sql := fmt.Sprintf(`SELECT COUNT(1) FROM %s WHERE 1=1 %s`, m.TableName(), condition)
  107. err = o.Raw(sql, pars).QueryRow(&count)
  108. return
  109. }
  110. func (m *BusinessConf) GetItemsByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string) (items []*BusinessConf, err error) {
  111. o := orm.NewOrm()
  112. fields := strings.Join(fieldArr, ",")
  113. if len(fieldArr) == 0 {
  114. fields = `*`
  115. }
  116. order := `ORDER BY create_time DESC`
  117. if orderRule != "" {
  118. order = ` ORDER BY ` + orderRule
  119. }
  120. sql := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 %s %s`, fields, m.TableName(), condition, order)
  121. _, err = o.Raw(sql, pars).QueryRows(&items)
  122. return
  123. }
  124. func (m *BusinessConf) GetPageItemsByCondition(condition string, pars []interface{}, fieldArr []string, orderRule string, startSize, pageSize int) (items []*BusinessConf, err error) {
  125. o := orm.NewOrm()
  126. fields := strings.Join(fieldArr, ",")
  127. if len(fieldArr) == 0 {
  128. fields = `*`
  129. }
  130. order := `ORDER BY create_time DESC`
  131. if orderRule != "" {
  132. order = ` ORDER BY ` + orderRule
  133. }
  134. sql := fmt.Sprintf(`SELECT %s FROM %s WHERE 1=1 %s %s LIMIT ?,?`, fields, m.TableName(), condition, order)
  135. _, err = o.Raw(sql, pars, startSize, pageSize).QueryRows(&items)
  136. return
  137. }
  138. // GetBusinessConf 获取商家配置
  139. func GetBusinessConf() (list map[string]string, err error) {
  140. list = make(map[string]string)
  141. var items []*BusinessConf
  142. o := orm.NewOrm()
  143. sql := `SELECT * FROM business_conf`
  144. _, err = o.Raw(sql).QueryRows(&items)
  145. if err != nil {
  146. return
  147. }
  148. for _, v := range items {
  149. if v.ValType == 4 {
  150. list[v.ConfKey] = html.UnescapeString(v.ConfVal)
  151. continue
  152. }
  153. list[v.ConfKey] = v.ConfVal
  154. }
  155. return
  156. }
  157. // BusinessConfUpdate 更新配置
  158. type BusinessConfUpdate struct {
  159. ConfKey string
  160. ConfVal string
  161. }
  162. // UpdateBusinessConfMulti 批量修改配置
  163. func UpdateBusinessConfMulti(items []BusinessConfUpdate) (err error) {
  164. o := orm.NewOrm()
  165. p, err := o.Raw("UPDATE business_conf SET conf_val = ? WHERE conf_key = ?").Prepare()
  166. if err != nil {
  167. return
  168. }
  169. defer func() {
  170. _ = p.Close()
  171. }()
  172. for _, v := range items {
  173. _, err = p.Exec(v.ConfVal, v.ConfKey)
  174. if err != nil {
  175. return
  176. }
  177. }
  178. return
  179. }
  180. func GetBusinessConfByKey(key string) (item *BusinessConf, err error) {
  181. o := orm.NewOrm()
  182. sql := fmt.Sprintf(`SELECT * FROM business_conf WHERE conf_key = ? LIMIT 1`)
  183. err = o.Raw(sql, key).QueryRow(&item)
  184. return
  185. }