mysql.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  1. package dao
  2. import (
  3. "context"
  4. "database/sql"
  5. "fmt"
  6. "time"
  7. "go-common/app/interface/openplatform/monitor-end/model"
  8. xsql "go-common/library/database/sql"
  9. "go-common/library/log"
  10. "go-common/library/xstr"
  11. )
  12. var (
  13. _allGroupsSQL = "SELECT id, name, receivers, `interval`, ctime, mtime FROM `alert_group` WHERE is_deleted = 0 ORDER BY id DESC"
  14. _groupSQL = "SELECT id, name, receivers, `interval`, ctime, mtime FROM `alert_group` WHERE id = ? AND is_deleted = 0"
  15. _groupsSQL = "SELECT id, name, receivers, `interval`, ctime, mtime FROM `alert_group` WHERE id in (%s) AND is_deleted = 0"
  16. _addGroupSQL = "INSERT INTO `alert_group` (name,receivers,`interval`)VALUES(?,?,?)"
  17. _groupByNameSQL = "SELECT id, name, receivers, `interval`, ctime, mtime FROM `alert_group` WHERE name = ? AND is_deleted = 0"
  18. _updateGroupSQL = "UPDATE `alert_group` SET name = ?, receivers = ?, `interval` = ? WHERE id = ?"
  19. _deleteGroupSQL = "UPDATE `alert_group` SET is_deleted = 1 WHERE id = ?"
  20. _targetSQL = "SELECT id, sub_event, event, product, source, group_id, threshold, duration, state, ctime, mtime FROM alert_target WHERE id = ? AND deleted_time = 0"
  21. _targetQuerySQL = "SELECT id, sub_event, event, product, source, group_id, threshold, duration, state, ctime, mtime FROM alert_target"
  22. _allTargetsSQL = "SELECT id, sub_event, event, product, source, group_id, threshold, duration, state, ctime, mtime FROM alert_target WHERE deleted_time = 0 AND state = ?"
  23. _countTargetSQL = "SELECT count(id) as cnt FROM alert_target"
  24. _addTargetSQL = "INSERT INTO alert_target (sub_event, event, product, source, group_id, threshold, duration, state)VALUES(?,?,?,?,?,?,?,?)"
  25. _updateTargetSQL = "UPDATE alert_target SET sub_event = ?, event =? , product = ?, source = ?, group_id = ?, threshold = ?, duration = ?, state = ? WHERE id = ?"
  26. _existTargetSQL = "SELECT id FROM alert_target WHERE sub_event = ? AND event =? AND product = ? AND source = ? AND deleted_time = 0"
  27. _targetSyncSQL = "UPDATE alert_target set state = ? WHERE id = ?"
  28. _deleteTargetSQL = "UPDATE alert_target set deleted_time = ? WHERE id = ?"
  29. _productSQL = "SELECT id, name, group_id, ctime, mtime FROM alert_product WHERE id = ? AND is_deleted = 0"
  30. _productByNameSQL = "SELECT id, name, group_id, ctime, mtime FROM alert_product WHERE name = ? AND is_deleted = 0"
  31. _allProductsSQL = "SELECT id, name, group_id, ctime, mtime FROM alert_product WHERE is_deleted = 0 AND state = 1 ORDER BY ctime desc"
  32. _addProductSQL = "INSERT INTO alert_product (name, group_id, state)VALUES(?,?,?)"
  33. _updateProductSQL = "UPDATE alert_product SET name = ?, group_id = ?, state = ? WHERE id = ?"
  34. _deleteProductSQL = "UPDATE alert_product SET is_deleted = 1 WHERE id = ?"
  35. )
  36. // Group query group by id.
  37. func (d *Dao) Group(c context.Context, id int64) (res *model.Group, err error) {
  38. res = &model.Group{}
  39. if err = d.db.QueryRow(c, _groupSQL, id).Scan(&res.ID, &res.Name, &res.Receivers, &res.Interval, &res.Ctime, &res.Mtime); err != nil {
  40. if err == sql.ErrNoRows {
  41. res = nil
  42. err = nil
  43. return
  44. }
  45. log.Error("d.Group.Scan error(%+v), id(%d)", err, id)
  46. }
  47. return
  48. }
  49. // Groups query groups by ids.
  50. func (d *Dao) Groups(c context.Context, ids []int64) (res []*model.Group, err error) {
  51. if len(ids) == 0 {
  52. return
  53. }
  54. var (
  55. rows *xsql.Rows
  56. query = fmt.Sprintf(_groupsSQL, xstr.JoinInts(ids))
  57. )
  58. if rows, err = d.db.Query(c, query); err != nil {
  59. if err == sql.ErrNoRows {
  60. res = nil
  61. err = nil
  62. return
  63. }
  64. log.Error("d.Group.Scan error(%+v), id(%d)", err, ids)
  65. }
  66. for rows.Next() {
  67. r := &model.Group{}
  68. if err = rows.Scan(&r.ID, &r.Name, &r.Receivers, &r.Interval, &r.Ctime, &r.Mtime); err != nil {
  69. log.Error("d.Group.Scan error(%+v), id(%d)", err, ids)
  70. return
  71. }
  72. res = append(res, r)
  73. }
  74. err = rows.Err()
  75. return
  76. }
  77. // GroupByName query group id by name.
  78. func (d *Dao) GroupByName(c context.Context, name string) (res *model.Group, err error) {
  79. res = &model.Group{}
  80. if err = d.db.QueryRow(c, _groupByNameSQL, name).Scan(&res.ID, &res.Name, &res.Receivers, &res.Interval, &res.Ctime, &res.Mtime); err != nil {
  81. if err == sql.ErrNoRows {
  82. err = nil
  83. return
  84. }
  85. log.Error("d.GroupByName.Scan error(%+v), name(%s)", err, name)
  86. }
  87. return
  88. }
  89. // AddGroup add new group.
  90. func (d *Dao) AddGroup(c context.Context, g *model.Group) (res int64, err error) {
  91. var r sql.Result
  92. if r, err = d.db.Exec(c, _addGroupSQL, g.Name, g.Receivers, g.Interval); err != nil {
  93. log.Error("d.AddGroup.Exec error(%+v), group(%+v)", err, g)
  94. return
  95. }
  96. if res, err = r.LastInsertId(); err != nil {
  97. log.Error("d.AddGroup.LastInsertId error(%+v), group(%+v)", err, g)
  98. }
  99. return
  100. }
  101. // UpdateGroup update group.
  102. func (d *Dao) UpdateGroup(c context.Context, g *model.Group) (res int64, err error) {
  103. var r sql.Result
  104. if r, err = d.db.Exec(c, _updateGroupSQL, g.Name, g.Receivers, g.Interval, g.ID); err != nil {
  105. log.Error("d.UpdateGroup.Exec error(%+v), group(%+v)", err, g)
  106. return
  107. }
  108. if res, err = r.RowsAffected(); err != nil {
  109. log.Error("d.UpdateGroup.RowsAffected error(%+v), group(%+v)", err, g)
  110. }
  111. return
  112. }
  113. // AllGroups return all groups.
  114. func (d *Dao) AllGroups(c context.Context) (res []*model.Group, err error) {
  115. var rows *xsql.Rows
  116. if rows, err = d.db.Query(c, _allGroupsSQL); err != nil {
  117. log.Error("d.AllGroups.Query error(%+v)", err)
  118. return
  119. }
  120. defer rows.Close()
  121. for rows.Next() {
  122. var g = &model.Group{}
  123. if err = rows.Scan(&g.ID, &g.Name, &g.Receivers, &g.Interval, &g.Ctime, &g.Mtime); err != nil {
  124. log.Error("d.AllGroups.Scan error(%+v)]", err)
  125. return
  126. }
  127. res = append(res, g)
  128. }
  129. err = rows.Err()
  130. return
  131. }
  132. // DeleteGroup delete group.
  133. func (d *Dao) DeleteGroup(c context.Context, id int64) (res int64, err error) {
  134. var r sql.Result
  135. if r, err = d.db.Exec(c, _deleteGroupSQL, id); err != nil {
  136. log.Error("d.DeleteGroup.Exec error(%+v), id(%d)", err, id)
  137. return
  138. }
  139. if res, err = r.RowsAffected(); err != nil {
  140. log.Error("d.DeleteGroup.RowsAffected error(%+v), id(%d)", err, id)
  141. }
  142. return
  143. }
  144. // IsExisted return id if target existed by sub_event, event, product, source.
  145. func (d *Dao) IsExisted(c context.Context, t *model.Target) (res int64, err error) {
  146. if err = d.db.QueryRow(c, _existTargetSQL, t.SubEvent, t.Event, t.Product, t.Source).Scan(&res); err != nil {
  147. if err == sql.ErrNoRows {
  148. err = nil
  149. return
  150. }
  151. log.Error("d.Isexisted.Scan error(%+v), target(%+v)", err, t)
  152. }
  153. return
  154. }
  155. // Target get target by id.
  156. func (d *Dao) Target(c context.Context, id int64) (res *model.Target, err error) {
  157. res = &model.Target{}
  158. if err = d.db.QueryRow(c, _targetSQL, id).Scan(&res.ID, &res.SubEvent, &res.Event, &res.Product, &res.Source, &res.GroupIDs, &res.Threshold, &res.Duration, &res.State, &res.Ctime, &res.Mtime); err != nil {
  159. if err == sql.ErrNoRows {
  160. res = nil
  161. err = nil
  162. return
  163. }
  164. log.Error("d.Target.Scan error(%+v), id(%d)", err, id)
  165. }
  166. if res.GroupIDs != "" {
  167. var gids []int64
  168. if gids, err = xstr.SplitInts(res.GroupIDs); err != nil {
  169. log.Error("d.Product.SplitInts error(%+v), group ids(%s)", err, res.GroupIDs)
  170. return
  171. }
  172. if res.Groups, err = d.Groups(c, gids); err != nil {
  173. return
  174. }
  175. }
  176. return
  177. }
  178. // AllTargets return all targets by state.
  179. func (d *Dao) AllTargets(c context.Context, state int) (res []*model.Target, err error) {
  180. var rows *xsql.Rows
  181. if rows, err = d.db.Query(c, _allTargetsSQL, state); err != nil {
  182. log.Error("d.AllTargets.Query error(%+v), sql(%s)", err, _allTargetsSQL)
  183. return
  184. }
  185. defer rows.Close()
  186. for rows.Next() {
  187. var t = &model.Target{}
  188. if err = rows.Scan(&t.ID, &t.SubEvent, &t.Event, &t.Product, &t.Source, &t.GroupIDs, &t.Threshold, &t.Duration, &t.State, &t.Ctime, &t.Mtime); err != nil {
  189. log.Error("d.AllTargets.Scan error(%+v), sql(%s)", err, _allTargetsSQL)
  190. return
  191. }
  192. if t.GroupIDs != "" {
  193. var gids []int64
  194. if gids, err = xstr.SplitInts(t.GroupIDs); err != nil {
  195. log.Error("d.Product.SplitInts error(%+v), group ids(%s)", err, t.GroupIDs)
  196. return
  197. }
  198. if t.Groups, err = d.Groups(c, gids); err != nil {
  199. return
  200. }
  201. }
  202. res = append(res, t)
  203. }
  204. err = rows.Err()
  205. return
  206. }
  207. // AddTarget add a new target.
  208. func (d *Dao) AddTarget(c context.Context, t *model.Target) (res int64, err error) {
  209. var r sql.Result
  210. if r, err = d.db.Exec(c, _addTargetSQL, t.SubEvent, t.Event, t.Product, t.Source, t.GroupIDs, t.Threshold, t.Duration, t.State); err != nil {
  211. log.Error("d.AddTarget.Exec error(%+v), target(%+v)", err, t)
  212. return
  213. }
  214. if res, err = r.LastInsertId(); err != nil {
  215. log.Error("d.AddTarget.LastInsertId error(%+v), target(%+v)", err, t)
  216. }
  217. return
  218. }
  219. // UpdateTarget uodate target.
  220. func (d *Dao) UpdateTarget(c context.Context, t *model.Target) (res int64, err error) {
  221. var r sql.Result
  222. if r, err = d.db.Exec(c, _updateTargetSQL, t.SubEvent, t.Event, t.Product, t.Source, t.GroupIDs, t.Threshold, t.Duration, t.State, t.ID); err != nil {
  223. log.Error("d.UpdateGroup.Exec error(%+v), target(%+v)", err, t)
  224. return
  225. }
  226. if res, err = r.RowsAffected(); err != nil {
  227. log.Error("d.UpdateGroup.RowsAffected error(%+v), target(%+v)", err, t)
  228. }
  229. return
  230. }
  231. // DeleteTarget delete target by id.
  232. func (d *Dao) DeleteTarget(c context.Context, id int64) (res int64, err error) {
  233. var (
  234. r sql.Result
  235. now = time.Now()
  236. )
  237. if r, err = d.db.Exec(c, _deleteTargetSQL, now, id); err != nil {
  238. log.Error("d.UpdateGroup.Exec error(%+v), target(%d)", err, id)
  239. return
  240. }
  241. if res, err = r.RowsAffected(); err != nil {
  242. log.Error("d.UpdateGroup.RowsAffected error(%+v), target(%d)", err, id)
  243. }
  244. return
  245. }
  246. // TargetsByQuery query targets by query.
  247. func (d *Dao) TargetsByQuery(c context.Context, where string) (res []*model.Target, err error) {
  248. var rows *xsql.Rows
  249. if rows, err = d.db.Query(c, _targetQuerySQL+where); err != nil {
  250. log.Error("d.TargetsByQuery.Query error(%+v), sql(%s)", err, _targetQuerySQL+where)
  251. return
  252. }
  253. defer rows.Close()
  254. for rows.Next() {
  255. var t = &model.Target{}
  256. if err = rows.Scan(&t.ID, &t.SubEvent, &t.Event, &t.Product, &t.Source, &t.GroupIDs, &t.Threshold, &t.Duration, &t.State, &t.Ctime, &t.Mtime); err != nil {
  257. log.Error("d.TargetsByQuery.Scan error(%+v), sql(%s)", err, _targetQuerySQL+where)
  258. return
  259. }
  260. if t.GroupIDs != "" {
  261. var gids []int64
  262. if gids, err = xstr.SplitInts(t.GroupIDs); err != nil {
  263. log.Error("d.Product.SplitInts error(%+v), group ids(%s)", err, t.GroupIDs)
  264. return
  265. }
  266. if t.Groups, err = d.Groups(c, gids); err != nil {
  267. return
  268. }
  269. }
  270. res = append(res, t)
  271. }
  272. return
  273. }
  274. // CountTargets .
  275. func (d *Dao) CountTargets(c context.Context, where string) (res int, err error) {
  276. if err = d.db.QueryRow(c, _countTargetSQL+where).Scan(&res); err != nil {
  277. if err == sql.ErrNoRows {
  278. err = nil
  279. return
  280. }
  281. log.Error("d.CountTargets.Scan error(%+v), sql(%s)", err, _countTargetSQL+where)
  282. }
  283. return
  284. }
  285. // TargetSync sync target state by id.
  286. func (d *Dao) TargetSync(c context.Context, id int64, state int) (err error) {
  287. if _, err = d.db.Exec(c, _targetSyncSQL, state, id); err != nil {
  288. log.Error("d.TargetSync.Exec error(%+v), id(%d), state(%d)", err, id, state)
  289. }
  290. return
  291. }
  292. // Product get product by id.
  293. func (d *Dao) Product(c context.Context, id int64) (res *model.Product, err error) {
  294. res = &model.Product{}
  295. if err = d.db.QueryRow(c, _productSQL, id).Scan(&res.ID, &res.Name, &res.GroupIDs, &res.Ctime, &res.Mtime); err != nil {
  296. if err == sql.ErrNoRows {
  297. res = nil
  298. err = nil
  299. return
  300. }
  301. log.Error("d.Product.Scan error(%+v), id(%d)", err, id)
  302. }
  303. if res.GroupIDs != "" {
  304. var gids []int64
  305. if gids, err = xstr.SplitInts(res.GroupIDs); err != nil {
  306. log.Error("d.Product.SplitInts error(%+v), group ids(%s)", err, res.GroupIDs)
  307. return
  308. }
  309. if res.Groups, err = d.Groups(c, gids); err != nil {
  310. return
  311. }
  312. }
  313. return
  314. }
  315. // ProductByName get product bu name.
  316. func (d *Dao) ProductByName(c context.Context, name string) (res *model.Product, err error) {
  317. res = &model.Product{}
  318. if err = d.db.QueryRow(c, _productByNameSQL, name).Scan(&res.ID, &res.Name, &res.GroupIDs, &res.Ctime, &res.Mtime); err != nil {
  319. if err == sql.ErrNoRows {
  320. res = nil
  321. err = nil
  322. return
  323. }
  324. log.Error("d.ProductByName.Scan error(%+v), name(%s)", err, name)
  325. }
  326. if res.GroupIDs != "" {
  327. var gids []int64
  328. if gids, err = xstr.SplitInts(res.GroupIDs); err != nil {
  329. log.Error("d.Product.SplitInts error(%+v), group ids(%s)", err, res.GroupIDs)
  330. return
  331. }
  332. if res.Groups, err = d.Groups(c, gids); err != nil {
  333. return
  334. }
  335. }
  336. return
  337. }
  338. // AllProducts return all products.
  339. func (d *Dao) AllProducts(c context.Context) (res []*model.Product, err error) {
  340. var rows *xsql.Rows
  341. if rows, err = d.db.Query(c, _allProductsSQL); err != nil {
  342. log.Error("d.AllProducts.Query error(%+v), sql(%s)", err, _allProductsSQL)
  343. return
  344. }
  345. defer rows.Close()
  346. for rows.Next() {
  347. var p = &model.Product{}
  348. if err = rows.Scan(&p.ID, &p.Name, &p.GroupIDs, &p.Ctime, &p.Mtime); err != nil {
  349. log.Error("d.AllProducts.Scan error(%+v), sql(%s)", err, _allProductsSQL)
  350. return
  351. }
  352. if p.GroupIDs != "" {
  353. var gids []int64
  354. if gids, err = xstr.SplitInts(p.GroupIDs); err != nil {
  355. log.Error("d.Product.SplitInts error(%+v), group ids(%s)", err, p.GroupIDs)
  356. return
  357. }
  358. if p.Groups, err = d.Groups(c, gids); err != nil {
  359. return
  360. }
  361. }
  362. res = append(res, p)
  363. }
  364. err = rows.Err()
  365. return
  366. }
  367. // AddProduct add a new product.
  368. func (d *Dao) AddProduct(c context.Context, p *model.Product) (res int64, err error) {
  369. var r sql.Result
  370. if r, err = d.db.Exec(c, _addProductSQL, p.Name, p.GroupIDs, p.State); err != nil {
  371. log.Error("d.AddProduct.Exec error(%+v), product(%+v)", err, p)
  372. return
  373. }
  374. if res, err = r.LastInsertId(); err != nil {
  375. log.Error("d.AddProduct.RowsAffected error(%+v), product(%+v)", err, p)
  376. }
  377. return
  378. }
  379. // UpdateProduct update product by id.
  380. func (d *Dao) UpdateProduct(c context.Context, p *model.Product) (res int64, err error) {
  381. var r sql.Result
  382. if r, err = d.db.Exec(c, _updateProductSQL, p.Name, p.GroupIDs, p.State, p.ID); err != nil {
  383. log.Error("d.DeleteProduct.Exec error(%+v), product(%+v)", err, p)
  384. return
  385. }
  386. if res, err = r.RowsAffected(); err != nil {
  387. log.Error("d.DeleteProduct.RowsAffected error(%+v), product(%+v)", err, p)
  388. }
  389. return
  390. }
  391. // DeleteProduct delete a product by id.
  392. func (d *Dao) DeleteProduct(c context.Context, id int64) (res int64, err error) {
  393. var r sql.Result
  394. if r, err = d.db.Exec(c, _deleteProductSQL, id); err != nil {
  395. log.Error("d.DeleteProduct.Exec error(%+v), id(%d)", err, id)
  396. return
  397. }
  398. if res, err = r.RowsAffected(); err != nil {
  399. log.Error("d.DeleteProduct.RowsAffected error(%+v), id(%d)", err, id)
  400. }
  401. return
  402. }