common.go 7.1 KB

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