截流自动化的商城平台
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.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\validate\MakeMnQrcode;
  4. use app\common\basics\Api;
  5. use app\common\server\JsonServer;
  6. use app\api\logic\ShareLogic;
  7. use app\api\validate\BargainValidate;
  8. /**
  9. * Class Share
  10. * @package app\api\controller
  11. */
  12. class Share extends Api
  13. {
  14. /**
  15. * @notes 分享商品海报
  16. * @return array|string|\think\response\Json
  17. * @author suny
  18. * @date 2021/7/13 6:15 下午
  19. */
  20. public function shareGoods()
  21. {
  22. $id = $this->request->get('id');
  23. $url = $this->request->get('url');
  24. $client = $this->client;
  25. if ($id && $url) {
  26. $result = ShareLogic::shareGoods($this->user_id, $id, $url, $client);
  27. return $result;
  28. }
  29. return JsonServer::error('参数缺失');
  30. }
  31. /**
  32. * @notes 用户分销海报
  33. * @return array|string|\think\response\Json
  34. * @author suny
  35. * @date 2021/7/13 6:15 下午
  36. */
  37. public function userPoster()
  38. {
  39. $url = $this->request->get('url');
  40. $client = $this->client;
  41. if (empty($client)) {
  42. return '参数缺失';
  43. }
  44. $result = ShareLogic::getUserPoster($this->user_id, $url, $client);
  45. return $result;
  46. }
  47. /**
  48. * @notes 砍价分享海报
  49. * @return array|\think\response\Json
  50. * @author suny
  51. * @date 2021/7/13 6:15 下午
  52. */
  53. public function shareBargain()
  54. {
  55. $id = $this->request->get('id');
  56. $url = $this->request->get('url');
  57. $client = $this->client;
  58. (new BargainValidate())->goCheck('share', ['id' => $id, 'url' => $url]);
  59. $result = ShareLogic::shareBargain($this->user_id, $id, $url, $client);
  60. return $result;
  61. }
  62. /**
  63. * @notes 获取二维码
  64. * @author cjhao
  65. * @date 2021/11/25 10:47
  66. */
  67. public function getMnQrcode()
  68. {
  69. (new MakeMnQrcode())->goCheck();
  70. $get = $this->request->get();
  71. $result = ShareLogic::getMnQrcode($this->user_id,$get);
  72. if(1 === $result['code']){
  73. return JsonServer::success('',$result['data']);
  74. }
  75. return JsonServer::error($result['msg']);
  76. }
  77. }