Listen.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?php
  2. namespace catchAdmin\api;
  3. use catchAdmin\api\model\Publish as ModelPublish;
  4. use Exception;
  5. use think\facade\Db;
  6. trait Listen
  7. {
  8. public $imei;
  9. public static function onAfterInsert($obj)
  10. {
  11. $data = null;
  12. if (method_exists($obj, 'addContent')) {
  13. $data = $obj->addContent($obj);
  14. } else {
  15. throw new Exception('addContent函数不存在');
  16. }
  17. //是否要过滤
  18. if (array_key_exists('is_filter', $data)) {
  19. if ($data['is_filter']) {
  20. return;
  21. }
  22. }
  23. $time = msectime();
  24. //塞入版本号
  25. //类型
  26. //操作方式
  27. $content = [
  28. 'Type' => 'add',
  29. 'ContentType' => $data['type'],
  30. 'Imei' => $obj->imei ? '' : $obj->imei,
  31. 'ContentId' => $data['data']['id'],
  32. 'AddTime' => $time,
  33. 'Version' => $time,
  34. 'Status' => 1,
  35. 'Content' => json_encode($data['data'])
  36. ];
  37. Db::name('publish')->save($content);
  38. }
  39. public static function onAfterUpdate($obj)
  40. {
  41. $data = [];
  42. $where = [];
  43. $time = null;
  44. $content = null;
  45. if (method_exists($obj, 'addContent')) {
  46. $data = $obj->addContent($obj);
  47. } else {
  48. throw new Exception('addContent函数不存在');
  49. }
  50. //是否要过滤
  51. if (array_key_exists('is_filter', $data)) {
  52. if ($data['is_filter']) {
  53. return;
  54. }
  55. }
  56. $time = msectime();
  57. $where = [];
  58. $where[] = ['ContentType', '=', $data['type']];
  59. $where[] = ['ContentId', '=', $data['data']['id']];
  60. $content = [
  61. 'Type' => 'update',
  62. 'Imei' => $obj->imei ? '' : $obj->imei,
  63. 'Version' => $time,
  64. 'Status' => 1,
  65. 'Content' => json_encode($data['data'])
  66. ];
  67. Db::name('publish')->where($where)->update($content);
  68. }
  69. public static function onAfterDelete($obj)
  70. {
  71. $data = [];
  72. $where = [];
  73. $time = null;
  74. $content = null;
  75. if (method_exists($obj, 'addContent')) {
  76. $data = $obj->addContent($obj);
  77. } else {
  78. throw new Exception('addContent函数不存在');
  79. }
  80. //是否要过滤
  81. if (array_key_exists('is_filter', $data)) {
  82. if ($data['is_filter']) {
  83. return;
  84. }
  85. }
  86. $time = msectime();
  87. $where = [];
  88. $where[] = ['ContentType', '=', $data['type']];
  89. $where[] = ['ContentId', '=', $data['data']['id']];
  90. $content = [
  91. 'Type' => 'delete',
  92. 'Imei' => $obj->imei ? '' : $obj->imei,
  93. 'Version' => $time,
  94. 'Status' => 1,
  95. ];
  96. Db::name('publish')->where($where)->update($content);
  97. }
  98. }