Share.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. namespace addons\shopro\controller;
  3. use addons\shopro\model\Share as ShareModel;
  4. class Share extends Base
  5. {
  6. protected $noNeedLogin = [];
  7. protected $noNeedRight = ['*'];
  8. /**
  9. * 获取分享记录
  10. *
  11. * @return void
  12. */
  13. public function index()
  14. {
  15. $params = $this->request->get();
  16. $shares = ShareModel::getList($params);
  17. return $this->success('获取成功', $shares);
  18. }
  19. public function add()
  20. {
  21. $spm = $this->request->post('spm');
  22. $share = false;
  23. if (!empty($spm)) {
  24. $share = \think\Db::transaction(function () use ($spm) {
  25. try {
  26. $shareLog = ShareModel::add($spm);
  27. if ($shareLog) {
  28. \think\Hook::listen('share_after', $shareLog);
  29. return true;
  30. }
  31. } catch (\Exception $e) {
  32. $this->error($e->getMessage());
  33. }
  34. return false;
  35. });
  36. }
  37. if($share) {
  38. $this->success('识别成功'); // 使用 success 前端不提示
  39. }
  40. }
  41. }