common.go 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. package common
  2. import (
  3. "gorm.io/gorm"
  4. "math/rand"
  5. "strconv"
  6. "strings"
  7. "time"
  8. )
  9. // Operation type 操作类型
  10. const (
  11. OperationDefault = iota
  12. OperationLogin //登录
  13. OperationLogout //注销
  14. OperationCreate //新增
  15. OperationUpdate //修改
  16. OperationRemove //删除
  17. OperationImport //导入导出
  18. OperationLightStrategy //开关灯控策略
  19. OperationOrderCreate //工单发起
  20. OperationOrderChange //工单转派
  21. OperationOrderHandle //工单处理
  22. OperationProgramPublish //节目发布待审核
  23. OperationProgramResult //节目处理结果
  24. OperationStrategyRelation //策略关联
  25. OperationControl //操作
  26. OperationAlarmHandle //告警处理
  27. OperationSuccess = 0
  28. OperationFail = 1
  29. )
  30. const (
  31. ModuleTypeDefault = iota //操作记录模块
  32. ModuleTypeDevice //设备台账管理
  33. ModuleTypeInfoBar //信息发布系统
  34. ModuleTypeOrder //工单运维
  35. ModuleTypeNotification //通知公告
  36. ModuleTypeLightStrategy //照明策略
  37. ModuleTypeLighting //智慧照明系统-智能照明
  38. ModuleTypeSystem //系统管理
  39. ModuleTypeAlarm //告警管理
  40. ModuleTypeOperation //运营分析
  41. ModuleTypeRecord //记录处理
  42. ModuleTypeWisdomLighting //智能感应照明系统-灯随车走照明控制
  43. )
  44. // deviceType 设备类型 1** 交通 2** 农业
  45. const (
  46. DeviceTypeDefault = 0 //--
  47. DeviceTypeCamera = 100 //摄像头
  48. DeviceTypeLightControl = 101 //灯控
  49. DeviceTypeInfoBoard = 102 //信息屏
  50. DeviceTypeSwitchBox = 103 //配电箱
  51. DeviceTypeGateway = 104 //网关
  52. DeviceTypeOptoSensor = 105 // 环境监测
  53. DeviceTypeZigbee = 106 //ZigBee
  54. DeviceTypeAlarmTerminal = 107 //一键告警终端
  55. DeviceTypeAlarmServer = 108 //一键告警服务端
  56. DeviceTypeBridgeSensor = 109 //桥梁传感器
  57. DeviceTypeBridge = 110 //桥梁
  58. DeviceTypeIPBroadcast = 111 //ip音柱
  59. DeviceTypeManholeCover = 112 //井盖
  60. DeviceTypeGarbage = 113 //垃圾桶
  61. DeviceTypeLampPoleGroup = 114 //灯杆分组
  62. DeviceTypeLampPole = 115 //灯杆
  63. DeviceTypeCaptureUnit = 116 //抓拍单元
  64. DeviceTypePoint = 117 //卡口
  65. DeviceTypeGarbageGroup = 118 //垃圾桶分组
  66. DeviceTypeLightStrategy = 119 //灯控策略
  67. DeviceTypeOnDemandGroup = 120 //灯随车走分组
  68. DeviceTypeOnDemandSensor = 121 //灯随车走传感器
  69. DeviceTypeTransformer = 122 //变压器
  70. )
  71. var mLocation *time.Location
  72. func init() {
  73. loc, err := time.LoadLocation("Asia/Shanghai")
  74. if err != nil {
  75. mLocation = time.FixedZone("CST", 8*3600)
  76. } else {
  77. mLocation = loc
  78. }
  79. }
  80. func GetDeviceObject(id int, name string) string {
  81. return strconv.Itoa(id) + "(" + name + ")"
  82. }
  83. func StringToInt(id string) int {
  84. if id != "" {
  85. id, err := strconv.Atoi(id)
  86. if err == nil {
  87. return id
  88. }
  89. }
  90. return -1
  91. }
  92. func RandomString(n int) string {
  93. var letters = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789")
  94. rand.Seed(time.Now().Unix())
  95. b := make([]rune, n)
  96. for i := range b {
  97. b[i] = letters[rand.Intn(len(letters))]
  98. }
  99. return string(b)
  100. }
  101. func RandomString2(n int) string {
  102. var letters = []rune("ABCDEFGHIJKLMNOPQRSTUVWXYZ")
  103. rand.Seed(time.Now().Unix())
  104. b := make([]rune, n)
  105. for i := range b {
  106. b[i] = letters[rand.Intn(len(letters))]
  107. }
  108. return string(b)
  109. }
  110. func StringToInt64Array(str string) []int64 {
  111. tmp := strings.Split(str, ",")
  112. var result []int64
  113. for _, t := range tmp {
  114. i, _ := strconv.ParseInt(t, 10, 64)
  115. result = append(result, i)
  116. }
  117. return result
  118. }
  119. func StringToIntArray(str string) []int {
  120. tmp := strings.Split(str, ",")
  121. var result []int
  122. for _, t := range tmp {
  123. i, _ := strconv.Atoi(t)
  124. result = append(result, i)
  125. }
  126. return result
  127. }
  128. func MlParseTime(strTime string) (time.Time, error) {
  129. if strings.Contains(strTime, ".") {
  130. return time.ParseInLocation("2006-01-02 15:04:05.000", strTime, mLocation)
  131. }
  132. return time.ParseInLocation("2006-01-02 15:04:05", strTime, mLocation)
  133. }
  134. func IsAdmin(roleId int64) bool {
  135. return roleId == 1
  136. }
  137. // TableModelAuto 给表命名字
  138. type TableModelAuto struct {
  139. Model interface{}
  140. Comment string
  141. }
  142. // MultimediaEfficacyTime ip音柱效验时间是否在当前时间之前
  143. func MultimediaEfficacyTime(stime Time, etime Time, time2 string) bool {
  144. stimeStr := stime.String()
  145. etimeStr := etime.String()
  146. if stimeStr == "" || etimeStr == "" || time2 == "" {
  147. return true
  148. }
  149. currDate := time.Now().Format("2006-01-02")
  150. kstime := currDate + time2
  151. nowTime, _ := time.Parse("2006-01-02 15:04:05", kstime)
  152. time3 := time.Now()
  153. if etimeStr == stimeStr && currDate == etimeStr && time3.Before(nowTime) {
  154. return false
  155. }
  156. return true
  157. }
  158. // Paginate 翻页
  159. func Paginate(page int, size int) func(db *gorm.DB) *gorm.DB {
  160. return func(db *gorm.DB) *gorm.DB {
  161. page := page
  162. if page == 0 {
  163. page = 1
  164. }
  165. pageSize := size
  166. switch {
  167. case pageSize > 100:
  168. pageSize = 100
  169. case pageSize <= 0:
  170. pageSize = 10
  171. }
  172. offset := (page - 1) * pageSize
  173. return db.Offset(offset).Limit(pageSize)
  174. }
  175. }
  176. var timeTemplates = []string{
  177. "2006-01-02 15:04:05", //常规类型
  178. "2006/01/02 15:04:05",
  179. "2006-01-02",
  180. "2006/01/02",
  181. "15:04:05",
  182. }
  183. /* 时间格式字符串转换 */
  184. func TimeStringToGoTime(tm string) time.Time {
  185. for i := range timeTemplates {
  186. t, err := time.ParseInLocation(timeTemplates[i], tm, time.Local)
  187. if nil == err && !t.IsZero() {
  188. return t
  189. }
  190. }
  191. return time.Time{}
  192. }