截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Sign.php 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\logic\SignLogic;
  4. use app\api\validate\SignValidate;
  5. use app\common\basics\Api;
  6. use app\common\server\JsonServer;
  7. /**
  8. * 签到
  9. * Class Sign
  10. * @package app\api\controller
  11. */
  12. class Sign extends Api
  13. {
  14. /**
  15. * @notes 签到列表
  16. * @return \think\response\Json
  17. * @author 段誉
  18. * @date 2022/2/17 18:29
  19. */
  20. public function lists()
  21. {
  22. $lists = SignLogic::lists($this->user_id);
  23. return JsonServer::success('', $lists);
  24. }
  25. /**
  26. * @notes 签到
  27. * @return \think\response\Json
  28. * @author 段誉
  29. * @date 2022/2/17 18:29
  30. */
  31. public function sign()
  32. {
  33. (new SignValidate())->goCheck(null, ['user_id' => $this->user_id]);
  34. $result = SignLogic::sign($this->user_id);
  35. if (false === $result) {
  36. return JsonServer::error(SignLogic::getError() ?: '签到失败');
  37. }
  38. return JsonServer::success('', $result);
  39. }
  40. /**
  41. * @notes 签到规则
  42. * @return \think\response\Json
  43. * @author 段誉
  44. * @date 2022/2/17 14:53
  45. */
  46. public function rule()
  47. {
  48. return JsonServer::success('', SignLogic::getRule());
  49. }
  50. }