Goods.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  1. <?php
  2. namespace app\store\controller;
  3. use library\Controller;
  4. use think\cache\driver\Redis;
  5. use think\Db;
  6. /**
  7. * 商品
  8. * Class Goods
  9. * @package app\store\controller
  10. */
  11. class Goods extends Controller
  12. {
  13. /**
  14. * 绑定数据表
  15. * @var string
  16. */
  17. protected $table = 'store_collection';
  18. /**
  19. * 商品列表
  20. * @auth true
  21. * @menu true
  22. * @throws \think\Exception
  23. * @throws \think\db\exception\DataNotFoundException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. * @throws \think\exception\DbException
  26. * @throws \think\exception\PDOException
  27. */
  28. public function index()
  29. {
  30. checkCollectionState();
  31. $this->title = '藏品管理';
  32. $query = $this->_query($this->table)->where('is_deleted',0)->like('name');
  33. $query->dateBetween('create_at')->order('id desc')->page();
  34. }
  35. /**
  36. * 数据列表处理
  37. * @auth true
  38. * @menu true
  39. * @param array $data
  40. * @throws \think\db\exception\DataNotFoundException
  41. * @throws \think\db\exception\ModelNotFoundException
  42. * @throws \think\exception\DbException
  43. */
  44. protected function _index_page_filter(&$data)
  45. {
  46. foreach ($data as &$v){
  47. $checksell = $this->checkSellTime($v['id']);
  48. if (!$checksell){
  49. $v['is_save'] = 0;
  50. }else{
  51. $v['is_save'] = 1;
  52. }
  53. $v['zz']=Db::table('hash')->where('goods_id',$v['id'])->where('success',1)->count();
  54. $hash = Db::name('hash2')->where('goods_id',$v['id'])->find();
  55. if ($hash){
  56. if ($hash['success']==1){
  57. $v['is_hash'] = 2;
  58. }else{
  59. $v['is_hash'] = 3;
  60. }
  61. }else{
  62. $redis = new Redis();
  63. $count = $redis->get('castingHash_'.$v['id']);
  64. if ($count && $count>0){
  65. $v['is_hash'] = 3;
  66. }else{
  67. $v['is_hash'] = 1;
  68. }
  69. }
  70. }
  71. }
  72. /**
  73. * 添加商品
  74. * @auth true
  75. * @menu true
  76. * @throws \think\Exception
  77. * @throws \think\db\exception\DataNotFoundException
  78. * @throws \think\db\exception\ModelNotFoundException
  79. * @throws \think\exception\DbException
  80. * @throws \think\exception\PDOException
  81. */
  82. public function add()
  83. {
  84. $this->title = '添加藏品';
  85. $this->_form($this->table, 'form');
  86. }
  87. /**
  88. * 编辑商品
  89. * @auth true
  90. * @menu true
  91. * @throws \think\Exception
  92. * @throws \think\db\exception\DataNotFoundException
  93. * @throws \think\db\exception\ModelNotFoundException
  94. * @throws \think\exception\DbException
  95. * @throws \think\exception\PDOException
  96. */
  97. function edit()
  98. {
  99. $this->title = '编辑商品';
  100. $id = $this->request->get('id');
  101. $checksell = $this->checkSellTime($id);
  102. if (!$checksell) $this->error('藏品已经开始抢购或已过期,无法修改');
  103. $this->_form($this->table, 'form');
  104. }
  105. /**
  106. * 表单数据处理
  107. * @auth true
  108. * @menu true
  109. * @param array $data
  110. */
  111. protected function _form_filter(&$data)
  112. {
  113. if($this->request->post()){
  114. if (isset($data['id']) || !empty($data['id'])){
  115. $checksell = $this->checkSellTime($data['id']);
  116. if (!$checksell) $this->error('藏品已经开始抢购或已过期,无法修改');
  117. }
  118. if ($data['cover'] == '') $this->error('请上传藏品图片');
  119. if ($data['auth_img'] == '') $this->error('请上传作者头像');
  120. if ($data['describe'] == '') $this->error('请上传商品描述');
  121. if ($data['buy_count']<1) $this->error('限购数量不能小于1');
  122. //if ($data['share_img'] == '') $this->error('请上传分享二维码');
  123. $data['date'] = date('Y-m-d',strtotime($data['sell_time']));
  124. if (isset($data['id'])){
  125. $buy_count = Db::name('store_order_info')->where('c_id',$data['id'])->count();
  126. }else{
  127. $buy_count = 0;
  128. }
  129. $data['now_inventory'] = $data['inventory']-$buy_count;
  130. }else{
  131. if (!empty($data)){
  132. $data['covers'] = $data['cover'];
  133. $data['auth_imgs'] = $data['auth_img'];
  134. $data['describes'] = $data['describe'];
  135. $data['share_imgs'] = $data['share_img'];
  136. $hash = Db::name('hash2')->where('goods_id',$data['id'])->find();
  137. if ($hash){
  138. if ($hash['success']==1){
  139. $data['is_hash'] = 2;
  140. }else{
  141. $data['is_hash'] = 3;
  142. }
  143. }else{
  144. $data['is_hash'] = 1;
  145. }
  146. }
  147. }
  148. }
  149. /**
  150. * 处理成功回调
  151. */
  152. public function _form_result($result,$data){
  153. if ($result) {
  154. setCollectionInfoHash($result);
  155. $redis = new Redis();
  156. $count = Db::name($this->table)->where('id',$result)->value('now_inventory');
  157. $redis->set('collection_count_'.$result,$count);
  158. $this->success('操作成功',url('/#/store/goods/index'));
  159. }
  160. }
  161. /**
  162. * @auth true
  163. * @menu true
  164. * 商品上架
  165. */
  166. public function up()
  167. {
  168. $data = $this->request->post();
  169. if (Db::name($this->table)->where('id',$data['id'])->update(['status'=>1])){
  170. setCollectionInfoHash($data['id']);
  171. $this->success('恭喜您,数据更新成功');
  172. }else{
  173. $this->error('数据更新失败');
  174. }
  175. }
  176. /**
  177. * @auth true
  178. * @menu true
  179. * 商品下架
  180. */
  181. public function down()
  182. {
  183. $data = $this->request->post();
  184. if (Db::name($this->table)->where('id',$data['id'])->update(['status'=>0])){
  185. setCollectionInfoHash($data['id']);
  186. $this->success('恭喜您,数据更新成功');
  187. }else{
  188. $this->error('数据更新失败');
  189. }
  190. //$this->_save($this->table, ['status' => '0']);
  191. }
  192. /**
  193. * @auth true
  194. * @menu true
  195. * 商品删除
  196. */
  197. public function del()
  198. {
  199. $data = $this->request->post();
  200. if (Db::name($this->table)->where('id',$data['id'])->update(['is_deleted'=>1])){
  201. setCollectionInfoHash($data['id']);
  202. $this->success('恭喜您,数据更新成功');
  203. }else{
  204. $this->error('数据更新失败');
  205. }
  206. //$this->_save($this->table, ['is_deleted' => '1']);
  207. }
  208. // public function _save_result($result){
  209. // if ($result){
  210. // setCollectionInfoHash($result);
  211. // }
  212. // }
  213. //判断是否已经抢购开始
  214. function checkSellTime($id){
  215. $sell_time = Db::name($this->table)->where('id',$id)->value('sell_time');
  216. $advance_minutes = getAdvanceMinutes();
  217. if ($advance_minutes>0){
  218. $sell_time = strtotime($sell_time)-($advance_minutes*60);
  219. }else{
  220. $sell_time = strtotime($sell_time);
  221. }
  222. if ($sell_time<=time()) return false;
  223. return true;
  224. }
  225. public function send(){
  226. if($this->request->post()){
  227. $data = $this->request->post();
  228. if (!isset($data['mid']) || $data['mid']==''){
  229. $this->error('请选择用户');
  230. }
  231. $inventory = Db::name($this->table)->where('id',$data['id'])->value('inventory');
  232. $info = Db::name($this->table)->where('id',$data['id'])->find();
  233. $zhuzao_count = Db::name('hash2')
  234. ->where('goods_id',$data['id'])
  235. ->where('success',1)
  236. ->count();
  237. if (!$zhuzao_count){
  238. $this->error('hash未铸造,无法赠送');
  239. }
  240. // if ($zhuzao_count<$data['number']){
  241. // $this->error('铸造的的数量不足,无法赠送');
  242. // }
  243. $com = true;
  244. Db::startTrans();
  245. try {
  246. $array = [];
  247. for ($i=0;$i<$data['number'];$i++){
  248. //获取排名
  249. $rank = getRanking($data['id'])+1;
  250. $tag = getTag($data['id'],$rank,$inventory);
  251. saveRanking($data['id']);
  252. $company = '象寻数字科技(上海)有限公司';
  253. // $hash = getCompanyHash($data['id']);
  254. // $company_hash = $hash['hash'];
  255. // $ddcid = Db::name('hash')->where('hash',$hash['hash'])->value('ddcid');
  256. // $company_hash_time = $hash['create_at'] ? $hash['create_at'] : date('Y-m-d H:i:s');
  257. // Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  258. $company_hash = Db::name('hash2')->where('goods_id',$data['id'])->where('success',1)->field('hash,ddcid')->find();
  259. $company_hash_time = date('Y-m-d H:i:s');
  260. $collectors_hash = '';
  261. $date = [
  262. 'order_no'=>get_order_sn(),
  263. 'tag'=>$tag,
  264. 'mid'=>$data['mid'],
  265. 'c_id'=>$data['id'],
  266. 'pro_info'=>json_encode($info,true),
  267. 'company'=>$company,
  268. 'company_hash'=>$company_hash['hash'],
  269. 'company_hash_time'=>$company_hash_time,
  270. 'ddcid'=>$company_hash['ddcid'],
  271. 'collectors_hash'=>$collectors_hash,
  272. 'collectors_hash_time'=>'',
  273. 'type'=>2
  274. ];
  275. $array[] = $date;
  276. }
  277. Db::name('store_order_info')->insertAll($array);
  278. //减少数据库库存
  279. Db::name($this->table)->where('id',$data['id'])->setDec('now_inventory',$data['number']);
  280. Db::commit();
  281. } catch (\Exception $e){
  282. Db::rollback();
  283. $com = false;
  284. }
  285. if ($com){
  286. //减掉库存
  287. loseCollectionInventory($data['id'],$data['number']);
  288. $this->success('赠送成功');
  289. }else{
  290. $this->error('赠送失败');
  291. }
  292. }else{
  293. $id=$this->request->get('id');
  294. $this->assign('id',$id);
  295. $user = Db::name('store_member')->where('is_deleted',0)->field('id,name,phone')->where('is_auth',1)->select();
  296. $this->assign('user',$user);
  297. $this->fetch();
  298. }
  299. }
  300. public function hash(){
  301. if($this->request->post()){
  302. $id = $this->request->post('id');
  303. $number = $this->request->post('number');
  304. if ($number<=0){
  305. $this->error('数量错误');
  306. }
  307. if (Db::name('store_collection')->where('id',$id)->setInc('casting_num',$number)){
  308. $redis = new Redis();
  309. $redis->Incrby('castingHash_'.$id,$number);
  310. $this->success('增加成功,正在铸造中');
  311. }
  312. $this->error('增加失败,请稍后重试');
  313. Db::name('store_collection')->where('id',$id)->setInc('casting_num',$number);
  314. $goods=Db::table('store_collection')->where('id',$this->request->post('id'))->find();
  315. if($number){
  316. $url2='http://192.144.219.204:8083/ddc/getNonce';
  317. $nonce=$this->curlRequest($url2);
  318. $result=json_decode($nonce,true);
  319. if(isset($result['code'])){
  320. $this->error($result['msg']);
  321. }
  322. for ($i=1;$i<=$number;$i++){
  323. $address='0x8583c53ca3759f0893cb6c156b682e8fef22ed95';
  324. $str=$goods['id'].'-'.rand(1000000,9999999);
  325. // $url='http://192.144.219.204:8083/ddc/createHash?address='.$address.'&ddcURI='.$str;
  326. $nonce = $nonce + 1;
  327. $url='http://192.144.219.204:8083/ddc/createHash?address='.$address.'&ddcURI='.$str.'&nonce='.$nonce;
  328. $res=$this->curlRequest($url);
  329. $result=json_decode($res,true);
  330. if($result['code']){
  331. $this->error($result['msg']);
  332. }
  333. $data['goods_id']=$id;
  334. $data['hash']=$res;
  335. $data['status']=0;
  336. $redis = new Redis();
  337. if (Db::table('hash')->insert($data)){
  338. //存入reids list
  339. $redis_data = ['hash'=>$res,'create_at'=>date('Y-m-d H:i:s')];
  340. $redis->rPush('collectionHash_'.$id,json_encode($redis_data));
  341. }
  342. }
  343. }else{
  344. $this->error('请填写正确的铸造数量');
  345. }
  346. $this->success('铸造成功',url('/#/store/goods/index'));
  347. }else{
  348. $id=$this->request->get('id');
  349. $this->assign('id',$id);
  350. $vo = Db::name('store_collection')->where('id',$id)->field('inventory')->find();
  351. $this->assign('vo',$vo);
  352. $this->fetch();
  353. }
  354. }
  355. public function detail(){
  356. $id=$this->request->get('id');
  357. $this->title = Db::name($this->table)->where('id',$id)->value('name').'--铸造明细';
  358. $query = $this->_query('hash')->where('goods_id',$id)->where('success',1);
  359. $query->dateBetween('create_at')->order('id desc')->page();
  360. $this->fetch();
  361. }
  362. public function curlRequest($url, $headers = [], $body = [], $method = "GET")
  363. {
  364. $ch = curl_init();
  365. curl_setopt($ch, CURLOPT_URL, $url);
  366. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);//设置请求头
  367. curl_setopt($ch, CURLOPT_POSTFIELDS, $body);//设置请求体
  368. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); //定义请求类型
  369. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  370. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  371. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  372. curl_setopt($ch, CURLOPT_HTTP_VERSION, 'CURL_HTTP_VERSION_1_1');
  373. $output = curl_exec($ch);
  374. curl_close($ch);
  375. return $output;
  376. }
  377. }