Uidsale.php 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use think\Db;
  5. /**
  6. * 靓号
  7. *
  8. * @icon fa fa-circle-o
  9. */
  10. class Uidsale extends Backend
  11. {
  12. /**
  13. * Uidsale模型对象
  14. * @var \app\admin\model\Uidsale
  15. */
  16. protected $model = null;
  17. public function _initialize()
  18. {
  19. parent::_initialize();
  20. $this->model = new \app\admin\model\Uidsale;
  21. $this->view->assign("isShowList", $this->model->getIsShowList());
  22. $this->view->assign("statusList", $this->model->getStatusList());
  23. }
  24. public function import()
  25. {
  26. parent::import();
  27. }
  28. /**
  29. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  30. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  31. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  32. */
  33. /**
  34. * 查看
  35. */
  36. public function index()
  37. {
  38. //当前是否为关联查询
  39. $this->relationSearch = true;
  40. //设置过滤方法
  41. $this->request->filter(['strip_tags', 'trim']);
  42. if ($this->request->isAjax()) {
  43. //如果发送的来源是Selectpage,则转发到Selectpage
  44. if ($this->request->request('keyField')) {
  45. return $this->selectpage();
  46. }
  47. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  48. $list = $this->model
  49. ->with(['uidsaletype','user'])
  50. ->where($where)
  51. ->order($sort, $order)
  52. ->paginate($limit);
  53. foreach ($list as $row) {
  54. $row->getRelation('uidsaletype')->visible(['type']);
  55. $row->getRelation('user')->visible(['username']);
  56. }
  57. $result = array("total" => $list->total(), "rows" => $list->items());
  58. return json($result);
  59. }
  60. return $this->view->fetch();
  61. }
  62. /**
  63. * 添加
  64. */
  65. public function add()
  66. {
  67. if ($this->request->isPost()) {
  68. $params = $this->request->post("row/a");
  69. if ($params) {
  70. $params = $this->preExcludeFields($params);
  71. if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
  72. $params[$this->dataLimitField] = $this->auth->id;
  73. }
  74. $result = false;
  75. Db::startTrans();
  76. try {
  77. //是否采用模型验证
  78. if ($this->modelValidate) {
  79. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  80. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate;
  81. $this->model->validateFailException(true)->validate($validate);
  82. }
  83. $new_id = $params['new_id'];
  84. //检查用户表
  85. $find = Db::name('user')->where('u_id',$new_id)->find();
  86. if($find){
  87. Db::rollback();
  88. $this->error('此靓号已经有用户在使用了');
  89. }
  90. //检查靓号表
  91. $find = Db::name('uidsale')->where('new_id',$new_id)->find();
  92. if($find){
  93. Db::rollback();
  94. $this->error('靓号商城已经有此靓号了');
  95. }
  96. //检查靓号背包表
  97. $find = Db::name('uidsale_bag')->where('u_id',$new_id)->find();
  98. if($find){
  99. Db::rollback();
  100. $this->error('此靓号已经有用户在使用了');
  101. }
  102. $result = $this->model->allowField(true)->save($params);
  103. Db::commit();
  104. } catch (ValidateException $e) {
  105. Db::rollback();
  106. $this->error($e->getMessage());
  107. } catch (PDOException $e) {
  108. Db::rollback();
  109. $this->error($e->getMessage());
  110. } catch (Exception $e) {
  111. Db::rollback();
  112. $this->error($e->getMessage());
  113. }
  114. if ($result !== false) {
  115. $this->success();
  116. } else {
  117. $this->error(__('No rows were inserted'));
  118. }
  119. }
  120. $this->error(__('Parameter %s can not be empty', ''));
  121. }
  122. return $this->view->fetch();
  123. }
  124. /**
  125. * 编辑
  126. */
  127. public function edit($ids = null)
  128. {
  129. $row = $this->model->get($ids);
  130. if (!$row) {
  131. $this->error(__('No Results were found'));
  132. }
  133. $adminIds = $this->getDataLimitAdminIds();
  134. if (is_array($adminIds)) {
  135. if (!in_array($row[$this->dataLimitField], $adminIds)) {
  136. $this->error(__('You have no permission'));
  137. }
  138. }
  139. if ($this->request->isPost()) {
  140. $params = $this->request->post("row/a");
  141. if ($params) {
  142. $params = $this->preExcludeFields($params);
  143. $result = false;
  144. Db::startTrans();
  145. try {
  146. //是否采用模型验证
  147. if ($this->modelValidate) {
  148. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  149. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
  150. $row->validateFailException(true)->validate($validate);
  151. }
  152. $new_id = $params['new_id'];
  153. //检查用户表
  154. $find = Db::name('user')->where('u_id',$new_id)->find();
  155. if($find){
  156. Db::rollback();
  157. $this->error('此靓号已经有用户在使用了');
  158. }
  159. //检查靓号表
  160. $find = Db::name('uidsale')->where('id != '.$ids)->where('new_id',$new_id)->find();
  161. if($find){
  162. Db::rollback();
  163. $this->error('靓号商城已经有此靓号了');
  164. }
  165. //检查靓号背包表
  166. $find = Db::name('uidsale_bag')->where('u_id',$new_id)->find();
  167. if($find){
  168. Db::rollback();
  169. $this->error('此靓号已经有用户在使用了');
  170. }
  171. $result = $row->allowField(true)->save($params);
  172. Db::commit();
  173. } catch (ValidateException $e) {
  174. Db::rollback();
  175. $this->error($e->getMessage());
  176. } catch (PDOException $e) {
  177. Db::rollback();
  178. $this->error($e->getMessage());
  179. } catch (Exception $e) {
  180. Db::rollback();
  181. $this->error($e->getMessage());
  182. }
  183. if ($result !== false) {
  184. $this->success();
  185. } else {
  186. $this->error(__('No rows were updated'));
  187. }
  188. }
  189. $this->error(__('Parameter %s can not be empty', ''));
  190. }
  191. $this->view->assign("row", $row);
  192. return $this->view->fetch();
  193. }
  194. /**
  195. * 上架
  196. */
  197. public function shangjia(){
  198. $id = input('ids');
  199. $update = [
  200. 'is_show' => 1,
  201. ];
  202. Db::name('uidsale')->where('id',$id)->update($update);
  203. $this->success('已上架');
  204. }
  205. /**
  206. * 下架
  207. */
  208. public function xiajia(){
  209. $id = input('ids');
  210. $update = [
  211. 'is_show' => 0,
  212. ];
  213. Db::name('uidsale')->where('id',$id)->update($update);
  214. $this->success('已下架');
  215. }
  216. }