Goods.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use datamodel\GoodsHash;
  5. use fast\Tree;
  6. use logicmodel\ChainLogic;
  7. use logicmodel\WalletLogic;
  8. use think\Db;
  9. use think\exception\ValidateException;
  10. use think\Model;
  11. /**
  12. *
  13. *
  14. * @icon fa fa-circle-o
  15. */
  16. class Goods extends Backend
  17. {
  18. /**
  19. * Goods模型对象
  20. * @var \app\admin\model\Goods
  21. */
  22. protected $model = null;
  23. public function _initialize()
  24. {
  25. parent::_initialize();
  26. $this->model = new \app\admin\model\Goods;
  27. $this->view->assign("isShowList", $this->model->getIsShowList());
  28. $this->view->assign("isHomeList", $this->model->getIsHomeList());
  29. }
  30. public function import()
  31. {
  32. parent::import();
  33. }
  34. /**
  35. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  36. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  37. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  38. */
  39. /**
  40. * 查看
  41. */
  42. public function index()
  43. {
  44. //当前是否为关联查询
  45. $this->relationSearch = true;
  46. //设置过滤方法
  47. $this->request->filter(['strip_tags', 'trim']);
  48. if ($this->request->isAjax()) {
  49. //如果发送的来源是Selectpage,则转发到Selectpage
  50. if ($this->request->request('keyField')) {
  51. return $this->selectpage();
  52. }
  53. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  54. $list = $this->model
  55. ->with(['goodscategory','author','network','merge','merge.goods','buy','buy.goods'])
  56. ->where(['goods.is_del'=>0])
  57. ->where($where)
  58. ->order($sort, $order)
  59. ->paginate($limit);
  60. foreach ($list as $row) {
  61. $row->visible(['id','buy_before_user_limit','name','image','images','price','desc','attribute','contract','meta_data','order','stock','sales','surplus','start_time','end_time','content','is_show','label','is_home','merge_open','merge_source_num','buy_type','buy_before_time']);
  62. $row->visible(['goodscategory']);
  63. $row->getRelation('goodscategory')->visible(['name']);
  64. $row->visible(['author']);
  65. $row->getRelation('author')->visible(['name']);
  66. $row->visible(['network','merge','buy']);
  67. $row->getRelation('network')->visible(['name']);
  68. }
  69. $result = array("total" => $list->total(), "rows" => $list->items());
  70. return json($result);
  71. }
  72. return $this->view->fetch();
  73. }
  74. public function del($ids = "")
  75. {
  76. $result = $this->model->where(['id'=>['in',$ids]])->update(['is_del'=>1]);
  77. if($result) return json(['code'=>1,'msg'=>'删除成功']);
  78. return json(['code'=>1,'msg'=>'删除成功']);
  79. }
  80. protected function selectpage()
  81. {
  82. //设置过滤方法
  83. $this->request->filter(['trim', 'strip_tags', 'htmlspecialchars']);
  84. //搜索关键词,客户端输入以空格分开,这里接收为数组
  85. $word = (array)$this->request->request("q_word/a");
  86. //当前页
  87. $page = $this->request->request("pageNumber");
  88. //分页大小
  89. $pagesize = $this->request->request("pageSize");
  90. //搜索条件
  91. $andor = $this->request->request("andOr", "and", "strtoupper");
  92. //排序方式
  93. $orderby = (array)$this->request->request("orderBy/a");
  94. //显示的字段
  95. $field = $this->request->request("showField");
  96. //主键
  97. $primarykey = $this->request->request("keyField");
  98. //主键值
  99. $primaryvalue = $this->request->request("keyValue");
  100. //搜索字段
  101. $searchfield = (array)$this->request->request("searchField/a");
  102. //自定义搜索条件
  103. $custom = (array)$this->request->request("custom/a");
  104. //是否返回树形结构
  105. $istree = $this->request->request("isTree", 0);
  106. $ishtml = $this->request->request("isHtml", 0);
  107. if ($istree) {
  108. $word = [];
  109. $pagesize = 999999;
  110. }
  111. $order = [];
  112. foreach ($orderby as $k => $v) {
  113. $order[$v[0]] = $v[1];
  114. }
  115. $field = $field ? $field : 'name';
  116. //如果有primaryvalue,说明当前是初始化传值
  117. if ($primaryvalue !== null) {
  118. $where = [$primarykey => ['in', $primaryvalue]];
  119. $pagesize = 999999;
  120. } else {
  121. $where = function ($query) use ($word, $andor, $field, $searchfield, $custom) {
  122. $logic = $andor == 'AND' ? '&' : '|';
  123. $searchfield = is_array($searchfield) ? implode($logic, $searchfield) : $searchfield;
  124. $searchfield = str_replace(',', $logic, $searchfield);
  125. $word = array_filter(array_unique($word));
  126. if (count($word) == 1) {
  127. $query->where($searchfield, "like", "%" . reset($word) . "%");
  128. } else {
  129. $query->where(function ($query) use ($word, $searchfield) {
  130. foreach ($word as $index => $item) {
  131. $query->whereOr(function ($query) use ($item, $searchfield) {
  132. $query->where($searchfield, "like", "%{$item}%");
  133. });
  134. }
  135. });
  136. }
  137. if ($custom && is_array($custom)) {
  138. foreach ($custom as $k => $v) {
  139. if (is_array($v) && 2 == count($v)) {
  140. $query->where($k, trim($v[0]), $v[1]);
  141. } else {
  142. $query->where($k, '=', $v);
  143. }
  144. }
  145. }
  146. };
  147. }
  148. $adminIds = $this->getDataLimitAdminIds();
  149. if (is_array($adminIds)) {
  150. $this->model->where($this->dataLimitField, 'in', $adminIds);
  151. }
  152. $list = [];
  153. $total = $this->model->where($where)->count();
  154. if ($total > 0) {
  155. if (is_array($adminIds)) {
  156. $this->model->where($this->dataLimitField, 'in', $adminIds);
  157. }
  158. $fields = is_array($this->selectpageFields) ? $this->selectpageFields : ($this->selectpageFields && $this->selectpageFields != '*' ? explode(',', $this->selectpageFields) : []);
  159. //如果有primaryvalue,说明当前是初始化传值,按照选择顺序排序
  160. if ($primaryvalue !== null && preg_match("/^[a-z0-9_\-]+$/i", $primarykey)) {
  161. $primaryvalue = array_unique(is_array($primaryvalue) ? $primaryvalue : explode(',', $primaryvalue));
  162. //修复自定义data-primary-key为字符串内容时,给排序字段添加上引号
  163. $primaryvalue = array_map(function ($value) {
  164. return '\'' . $value . '\'';
  165. }, $primaryvalue);
  166. $primaryvalue = implode(',', $primaryvalue);
  167. $this->model->orderRaw("FIELD(`{$primarykey}`, {$primaryvalue})");
  168. } else {
  169. $this->model->order($order);
  170. }
  171. $datalist = $this->model->where($where)
  172. ->where(['is_del'=>0])
  173. ->page($page, $pagesize)
  174. ->select();
  175. foreach ($datalist as $index => $item) {
  176. unset($item['password'], $item['salt']);
  177. if ($this->selectpageFields == '*') {
  178. $result = [
  179. $primarykey => isset($item[$primarykey]) ? $item[$primarykey] : '',
  180. $field => isset($item[$field]) ? $item[$field] : '',
  181. ];
  182. } else {
  183. $result = array_intersect_key(($item instanceof Model ? $item->toArray() : (array)$item), array_flip($fields));
  184. }
  185. $result['pid'] = isset($item['pid']) ? $item['pid'] : (isset($item['parent_id']) ? $item['parent_id'] : 0);
  186. $list[] = $result;
  187. }
  188. if ($istree && !$primaryvalue) {
  189. $tree = Tree::instance();
  190. $tree->init(collection($list)->toArray(), 'pid');
  191. $list = $tree->getTreeList($tree->getTreeArray(0), $field);
  192. if (!$ishtml) {
  193. foreach ($list as &$item) {
  194. $item = str_replace('&nbsp;', ' ', $item);
  195. }
  196. unset($item);
  197. }
  198. }
  199. }
  200. //这里一定要返回有list这个字段,total是可选的,如果total<=list的数量,则会隐藏分页按钮
  201. return json(['list' => $list, 'total' => $total]);
  202. }
  203. public function add()
  204. {
  205. if(request()->isPost()){
  206. $data = input('post.');
  207. $data = $data['row'];
  208. //$data['contract'] = (new WalletLogic())->newContract();
  209. $data['meta_data'] = rand(111111,999999);
  210. $result = $this->model->insertGetId($data);
  211. if($result) $this->success('添加成功');
  212. $this->error('添加失败');
  213. }
  214. return $this->fetch();
  215. }
  216. public function merge($ids){
  217. $row=$this->model->find($ids);
  218. if($this->request->isPost()){
  219. $data=input('row/a');
  220. $check=$this->validate($data,$rules=[
  221. 'merge_open'=>['require','in:0,1'],
  222. 'merge_user_limit'=>['require','egt:0'],
  223. ]);
  224. if($check!==true){
  225. $this->error($check);
  226. }
  227. if(empty($data['merge'])){
  228. $data['merge']=[];
  229. }
  230. if(empty($data['merge']) && $data['merge_open']){
  231. $this->error('必须选择藏品');
  232. }
  233. DB::startTrans();
  234. $row['merge_open']=$data['merge_open'];
  235. $row['merge_user_limit']=$data['merge_user_limit'];
  236. $row->save();
  237. $ids=[];
  238. foreach ($data['merge'] as $merge){
  239. if(empty($merge['source_goods_id'])){
  240. $this->error('藏品必须');
  241. }
  242. if($merge['num']<=0){
  243. Db::rollback();
  244. $this->error('数量必须大于0');
  245. }
  246. if($merge['source_goods_id']==$row['id']){
  247. $this->error('藏品不能和合成品相同');
  248. }
  249. $ids[]=$merge['source_goods_id'];
  250. $exists=$row->merge()->where('source_goods_id',$merge['source_goods_id'])->find();
  251. if($exists){
  252. $exists['num']=$merge['num'];
  253. $exists->save();
  254. }else{
  255. $row->merge()->save($merge);
  256. }
  257. }
  258. $row->merge()->whereNotIn('source_goods_id',$ids)->delete();
  259. Db::commit();
  260. $this->success();
  261. }else{
  262. $this->assign('row',$row);
  263. return view();
  264. }
  265. }
  266. public function buy($ids){
  267. $row=$this->model->find($ids);
  268. if($this->request->isGet()){
  269. return view('',compact('row'));
  270. }else{
  271. try {
  272. $this->failException=true;
  273. $this->validate($data=input('row/a'),[
  274. 'buy_type'=>['require','in:0,1,2'],
  275. 'buy_before_time|提前购买时间'=>['requireIf:buy_type,1'],
  276. 'buy_before_user_limit|提前购买限制数量'=>['requireIf:buy_type,1','integer','egt:0'],
  277. ]);
  278. if($data['buy_type']!=0){
  279. $this->validate($data,[
  280. 'source_goods_id|藏品'=>['require','integer'],
  281. 'num|数量'=>['require','integer','gt:0'],
  282. ]);
  283. }
  284. }catch (ValidateException $e){
  285. $this->error($e->getMessage());
  286. }
  287. Db::startTrans();
  288. $row['buy_type']=$data['buy_type'];
  289. $row['buy_before_user_limit']=$data['buy_before_user_limit'];
  290. $row['buy_before_time']=$data['buy_before_time'];
  291. $row->save();
  292. $row->buy()->delete();
  293. $row->buy()->save([
  294. 'source_goods_id'=>$data['source_goods_id'],
  295. 'num'=>$data['num'],
  296. ]);
  297. if($data['buy_type']==2){
  298. $uids=\datamodel\UsersGoods::where('goods_id',$data['source_goods_id'])
  299. ->where('status',1)
  300. ->where('is_del',0)
  301. ->group('uid')
  302. ->column('uid');
  303. if(count($uids)) {
  304. #todo:HASH
  305. $hash = GoodsHash::zero()->queryGoods($row['id'])->limit(count($uids))->lock(true)->select();
  306. foreach ($uids as $key=>$uid) {
  307. $currentHash=$hash[$key]??null;
  308. \datamodel\UsersGoods::create([
  309. 'uid'=>$uid,
  310. 'goods_id'=>$row['id'],
  311. 'price'=>$row['price'],
  312. 'is_buy_before'=>2,
  313. 'token_id'=>$currentHash['token_id']??null,
  314. ]);
  315. ChainLogic::instance()->buy($currentHash,\datamodel\Users::get($uid));
  316. $currentHash && $currentHash->setOrder(-3);
  317. }
  318. }
  319. }
  320. Db::commit();
  321. $this->success();
  322. }
  323. }
  324. }