Directive.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. /*
  3. * @Descripttion: 定制下发指令
  4. * @version: 1.0.0
  5. * @Author: likang
  6. * @Date: 2022-07-28 14:39:11
  7. * @LastEditors: likang
  8. * @LastEditTime: 2022-08-08 20:30:23
  9. */
  10. namespace catchAdmin\api;
  11. use catcher\Utils;
  12. use think\facade\Db;
  13. class Directive
  14. {
  15. /**
  16. * @Descripttion: 下发指令
  17. * @name: likang
  18. * @param {*} $type 1 全部 2 部分
  19. * @param {*} $data 下发内容
  20. * @param {*} $order 指令类型
  21. * @param {*} $imei 数组 或者字符串
  22. * @return {*}
  23. */
  24. public static function Issued($type, $data, $order, $imei = '')
  25. {
  26. if ($type == 1) {
  27. $msetime = msectime();
  28. $cont = [
  29. 'Type' => 'directive',
  30. 'ContentType' => $order,
  31. 'Content' => json_encode($data),
  32. 'ContentId' => md5(time() . mt_rand(1, 1000000)),
  33. 'AddTime' => $msetime,
  34. 'Version' => $msetime,
  35. 'Status' => 2
  36. ];
  37. Db::name('publish')->save($cont);
  38. } else {
  39. $imei = is_array($imei) ? $imei : Utils::stringToArrayBy($imei);
  40. foreach ($imei as $item) {
  41. $msetime = msectime();
  42. $cont = [
  43. 'Type' => 'directive',
  44. 'ContentType' => $order,
  45. 'Content' => json_encode($data),
  46. 'ContentId' => md5(time() . mt_rand(1, 1000000)),
  47. 'AddTime' => $msetime,
  48. 'Version' => $msetime,
  49. 'Imei' => $item,
  50. 'Status' => 2
  51. ];
  52. Db::name('publish')->save($cont);
  53. }
  54. }
  55. }
  56. }