QueryController.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace backend\controllers;
  3. use components\Exception;
  4. use components\service\AmqpConfig;
  5. use components\service\Redis;
  6. use Yii;
  7. class QueryController extends BaseController
  8. {
  9. /**
  10. * behaviors
  11. * @return array
  12. */
  13. public function behaviors()
  14. {
  15. return [
  16. 'verbs' => [
  17. 'class' => \yii\filters\VerbFilter::className(),
  18. 'actions' => [
  19. 'message-status' => ['GET'],
  20. ],
  21. ],
  22. ];
  23. }
  24. /**
  25. * 查询消息状态
  26. * @author: libingke
  27. * @return mixed
  28. * @throws Exception
  29. */
  30. public function actionMessageStatus()
  31. {
  32. $params = Yii::$app->request->queryParams;
  33. if (!isset($params['queue']))
  34. throw new Exception(1100);
  35. if (!is_string($params['queue']) || !$params['queue'])
  36. throw new Exception(1101);
  37. if (!isset($params['mid']))
  38. throw new Exception(1203);
  39. if (!is_string($params['mid']) || !$params['mid'])
  40. throw new Exception(1204);
  41. $r = Redis::get($params['queue'], $params['mid'], 'status');
  42. if ($r == null)
  43. throw new Exception(1004);
  44. return [
  45. 'code' => 200,
  46. 'message' => Yii::t('error', 200),
  47. 'data' => ['status' => $r, 'status_mark' => AmqpConfig::getMarkById($r)]
  48. ];
  49. }
  50. }