Goods1.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516
  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 Goods1 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')->where('type',3)->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'])->count();
  54. $now_inventory = getCollectionInventory($v['id']);
  55. $v['now_inventory'] = $now_inventory<=0 ? 0 : $now_inventory;
  56. $v['shengyu'] = Db::name('hash')->where('goods_id',$v['id'])->where('status',0)->count();
  57. }
  58. }
  59. /**
  60. * 添加商品
  61. * @auth true
  62. * @menu true
  63. * @throws \think\Exception
  64. * @throws \think\db\exception\DataNotFoundException
  65. * @throws \think\db\exception\ModelNotFoundException
  66. * @throws \think\exception\DbException
  67. * @throws \think\exception\PDOException
  68. */
  69. public function add()
  70. {
  71. $this->title = '添加藏品';
  72. $this->_form($this->table, 'form');
  73. }
  74. /**
  75. * 编辑商品
  76. * @auth true
  77. * @menu true
  78. * @throws \think\Exception
  79. * @throws \think\db\exception\DataNotFoundException
  80. * @throws \think\db\exception\ModelNotFoundException
  81. * @throws \think\exception\DbException
  82. * @throws \think\exception\PDOException
  83. */
  84. function edit()
  85. {
  86. $this->title = '编辑商品';
  87. $id = $this->request->get('id');
  88. $checksell = $this->checkSellTime($id);
  89. // if (!$checksell) $this->error('藏品已经开始抢购或已过期,无法修改');
  90. $this->_form($this->table, 'form');
  91. }
  92. /**
  93. * 表单数据处理
  94. * @auth true
  95. * @menu true
  96. * @param array $data
  97. */
  98. protected function _form_filter(&$data)
  99. {
  100. if($this->request->post()){
  101. // if (isset($data['id']) || !empty($data['id'])){
  102. // $checksell = $this->checkSellTime($data['id']);
  103. // if (!$checksell) $this->error('藏品已经开始抢购或已过期,无法修改');
  104. // }
  105. if ($data['cover'] == '') $this->error('请上传藏品图片');
  106. if ($data['price']<=0) $this->error('藏品价格错误');
  107. if ($data['auth_img'] == '') $this->error('请上传作者头像');
  108. if ($data['describe'] == '') $this->error('请上传商品描述');
  109. // if ($data['buy_count']<1) $this->error('限购数量不能小于1');
  110. //if ($data['share_img'] == '') $this->error('请上传分享二维码');
  111. // $data['date'] = date('Y-m-d',strtotime($data['sell_time']));
  112. if (isset($data['id'])){
  113. $buy_count = Db::name('store_order_info')
  114. ->whereIn('status','1,3')
  115. ->where('c_id',$data['id'])
  116. ->count();
  117. }else{
  118. $buy_count = 0;
  119. }
  120. $data['type'] = 3;
  121. $data['now_inventory'] = $data['inventory']-$buy_count;
  122. }else{
  123. if (!empty($data)){
  124. $data['covers'] = $data['cover'];
  125. $data['auth_imgs'] = $data['auth_img'];
  126. $data['describes'] = $data['describe'];
  127. $data['share_imgs'] = $data['share_img'];
  128. }
  129. }
  130. }
  131. /**
  132. * 处理成功回调
  133. */
  134. public function _form_result($result,$data){
  135. if ($result) {
  136. setCollectionInfoHash($result);
  137. $redis = new Redis();
  138. $count = Db::name($this->table)->where('id',$result)->value('now_inventory');
  139. $redis->set('collection_count_'.$result,$count);
  140. $this->success('操作成功',url('/#/store/goods1/index'));
  141. }
  142. }
  143. /**
  144. * @auth true
  145. * @menu true
  146. * 商品上架
  147. */
  148. public function up()
  149. {
  150. $data = $this->request->post();
  151. if (Db::name($this->table)->where('id',$data['id'])->update(['status'=>1])){
  152. setCollectionInfoHash($data['id']);
  153. $this->success('恭喜您,数据更新成功');
  154. }else{
  155. $this->error('数据更新失败');
  156. }
  157. }
  158. /**
  159. * @auth true
  160. * @menu true
  161. * 商品下架
  162. */
  163. public function down()
  164. {
  165. $data = $this->request->post();
  166. if (Db::name($this->table)->where('id',$data['id'])->update(['status'=>0])){
  167. setCollectionInfoHash($data['id']);
  168. $this->success('恭喜您,数据更新成功');
  169. }else{
  170. $this->error('数据更新失败');
  171. }
  172. //$this->_save($this->table, ['status' => '0']);
  173. }
  174. /**
  175. * @auth true
  176. * @menu true
  177. * 商品删除
  178. */
  179. public function del()
  180. {
  181. $data = $this->request->post();
  182. if (Db::name($this->table)->where('id',$data['id'])->update(['is_deleted'=>1])){
  183. setCollectionInfoHash($data['id']);
  184. $this->success('恭喜您,数据更新成功');
  185. }else{
  186. $this->error('数据更新失败');
  187. }
  188. //$this->_save($this->table, ['is_deleted' => '1']);
  189. }
  190. // public function _save_result($result){
  191. // if ($result){
  192. // setCollectionInfoHash($result);
  193. // }
  194. // }
  195. //判断是否已经抢购开始
  196. function checkSellTime($id){
  197. $sell_time = Db::name($this->table)->where('id',$id)->value('sell_time');
  198. $advance_minutes = getAdvanceMinutes();
  199. if ($advance_minutes>0){
  200. $sell_time = strtotime($sell_time)-($advance_minutes*60);
  201. }else{
  202. $sell_time = strtotime($sell_time);
  203. }
  204. if ($sell_time<=time()) return false;
  205. return true;
  206. }
  207. public function send(){
  208. if($this->request->post()){
  209. $data = $this->request->post();
  210. if (!isset($data['mid']) || $data['mid']==''){
  211. $this->error('请选择用户');
  212. }
  213. $inventory = Db::name($this->table)->where('id',$data['id'])->value('inventory');
  214. $info = Db::name($this->table)->where('id',$data['id'])->find();
  215. $redis = new Redis();
  216. $zhuzao_count = $redis->Llen('collectionHash_'.$data['id']);
  217. if ($zhuzao_count<$data['number']){
  218. $this->error('铸造的的数量不足,无法赠送');
  219. }
  220. $com = true;
  221. Db::startTrans();
  222. try {
  223. $array = [];
  224. for ($i=0;$i<$data['number'];$i++){
  225. //获取排名
  226. $rank = getRanking($data['id'])+1;
  227. $tag = getTag($data['id'],$rank,$inventory);
  228. saveRanking($data['id']);
  229. $company = '纪元部落有限公司';
  230. $hash = getCompanyHash($data['id']);
  231. $company_hash = $hash['hash'];
  232. $company_hash_time = $hash['create_at'];
  233. Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  234. $collectors_hash = '';
  235. $date = [
  236. 'order_no'=>get_order_sn(),
  237. 'tag'=>$tag,
  238. 'mid'=>$data['mid'],
  239. 'c_id'=>$data['id'],
  240. 'name'=>$info['name'],
  241. 'cover'=>$info['cover'],
  242. 'pro_info'=>json_encode($info,true),
  243. 'company'=>$company,
  244. 'company_hash'=>$company_hash,
  245. 'company_hash_time'=>$company_hash_time,
  246. 'collectors_hash'=>$collectors_hash,
  247. 'collectors_hash_time'=>''
  248. ];
  249. $array[] = $date;
  250. }
  251. Db::name('store_order_info')->insertAll($array);
  252. Db::commit();
  253. } catch (\Exception $e){
  254. Db::rollback();
  255. $com = false;
  256. }
  257. if ($com){
  258. //减掉库存
  259. loseCollectionInventory($data['id'],$data['number']);
  260. $this->success('赠送成功');
  261. }else{
  262. $this->error('赠送失败');
  263. }
  264. }else{
  265. $id=$this->request->get('id');
  266. $this->assign('id',$id);
  267. $user = Db::name('store_member')->where('is_deleted',0)->field('id,name,phone')->select();
  268. $this->assign('user',$user);
  269. $this->fetch();
  270. }
  271. }
  272. public function hash(){
  273. if($this->request->post()){
  274. $id = $this->request->post('id');
  275. $number = $this->request->post('number');
  276. if ($number<=0){
  277. $this->error('数量错误');
  278. }
  279. if (Db::name('store_collection')->where('id',$id)->setInc('casting_num',$number)){
  280. $redis = new Redis();
  281. $redis->Incrby('castingHash_'.$id,$number);
  282. $this->success('增加成功,正在铸造中');
  283. }
  284. $this->error('增加失败,请稍后重试');
  285. }else{
  286. $id=$this->request->get('id');
  287. $this->assign('id',$id);
  288. $this->fetch();
  289. }
  290. }
  291. /**
  292. * 批量赠送
  293. * @auth true
  294. * @throws \think\Exception
  295. * @throws \think\exception\PDOException
  296. */
  297. public function import()
  298. {
  299. list($msec, $sec) = explode(' ', microtime());
  300. $msectime = (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000); //毫秒值
  301. $get = $this->request->get();
  302. $import_path = $_SERVER['DOCUMENT_ROOT'].'/'.$get['path'];
  303. $url = $get['url'];
  304. $c_id = $get['c_id'];
  305. if (getConfigValue('storage_type')=='oss'){
  306. $save_dir = "./upload/excle/"; // 服务资源目录
  307. $filename = date('Ymd').time().".xlsx"; // 自定义名称
  308. $res = $this->getFile($url,$save_dir,$filename,1);
  309. $import_path = $_SERVER['DOCUMENT_ROOT'].'/upload/excle/'.$res;
  310. }
  311. $info = getCollectionInfoHash($c_id);
  312. $num = 1;
  313. try {
  314. $objReader =\PHPExcel_IOFactory::createReader('Excel2007');
  315. $objExcel = $objReader->load($import_path);
  316. $list = $objExcel->getActiveSheet()->toArray();
  317. $result = 0;
  318. $success = 0;
  319. $number = 0;
  320. $array = array();
  321. foreach ($list as $k=>$v){
  322. if($k>$num-1){
  323. if(array_filter($v)){
  324. $data=[];
  325. foreach ($v as $kk=>$vv){
  326. $data[IntToChr($kk)]=trim($vv);
  327. }
  328. $a['phone'] = $data['A'];
  329. $a['number'] = $data['B'];
  330. array_push($array,$a);
  331. $number = $number+$data['B'];
  332. }
  333. }
  334. }
  335. $redis = new Redis();
  336. $zhuzao_count = $redis->Llen('collectionHash_'.$c_id);
  337. if ($zhuzao_count<$number){
  338. $this->error('铸造的的数量不足,无法赠送',[],3);
  339. }
  340. $error = 0;
  341. foreach ($array as &$v){
  342. $member = Db::name('store_member')->where('phone',$v['phone'])->find();
  343. if (!$member){
  344. $error = $error+1;
  345. }else{
  346. $array1 = [];
  347. for ($i=0;$i<$v['number'];$i++){
  348. //获取排名
  349. $rank = getRanking($c_id)+1;
  350. $tag = getTag($c_id,$rank,$info['inventory']);
  351. saveRanking($c_id);
  352. $company = '纪元部落有限公司';
  353. $hash = getCompanyHash($c_id);
  354. $company_hash = $hash['hash'];
  355. $company_hash_time = $hash['create_at'];
  356. Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  357. $collectors_hash = '';
  358. $date = [
  359. 'order_no'=>get_order_sn(),
  360. 'tag'=>$tag,
  361. 'mid'=>$member['id'],
  362. 'c_id'=>$c_id,
  363. 'name'=>$info['name'],
  364. 'cover'=>$info['cover'],
  365. 'pro_info'=>json_encode($info,true),
  366. 'company'=>$company,
  367. 'company_hash'=>$company_hash,
  368. 'company_hash_time'=>$company_hash_time,
  369. 'collectors_hash'=>$collectors_hash,
  370. 'collectors_hash_time'=>''
  371. ];
  372. $array1[] = $date;
  373. }
  374. if (Db::name('store_order_info')->insertAll($array1)){
  375. loseCollectionInventory($c_id,$v['number']);
  376. $success +=1;
  377. }else{
  378. $error = $error+1;
  379. }
  380. }
  381. }
  382. if ($error<1){
  383. $this->success('成功');
  384. }else{
  385. $this->error('失败',['error'=>$error,'success'=>$success],2);
  386. }
  387. } catch (\think\exception\ValidateException $e) {
  388. $this->error($e->getMessage());
  389. }
  390. }
  391. public function detail(){
  392. $id=$this->request->get('id');
  393. $this->title = Db::name($this->table)->where('id',$id)->value('name').'--铸造明细';
  394. $query = $this->_query('hash')->where('goods_id',$id);
  395. $query->dateBetween('create_at')->order('id desc')->page();
  396. $this->fetch();
  397. }
  398. public function curlRequest($url, $headers = [], $body = [], $method = "GET")
  399. {
  400. $ch = curl_init();
  401. curl_setopt($ch, CURLOPT_URL, $url);
  402. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);//设置请求头
  403. curl_setopt($ch, CURLOPT_POSTFIELDS, $body);//设置请求体
  404. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method); //定义请求类型
  405. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
  406. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
  407. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  408. curl_setopt($ch, CURLOPT_HTTP_VERSION, 'CURL_HTTP_VERSION_1_1');
  409. $output = curl_exec($ch);
  410. curl_close($ch);
  411. return $output;
  412. }
  413. /**
  414. * 下载文件到服务器
  415. * addtime 2020年8月28日 18:38:43
  416. */
  417. function getFile($url, $save_dir = '', $filename = '', $type = 0)
  418. {
  419. if (trim($url) == '') {
  420. return false;
  421. }
  422. if (trim($save_dir) == '') {
  423. $save_dir = './';
  424. }
  425. if (0 !== strrpos($save_dir, '/')) {
  426. $save_dir.= '/';
  427. }
  428. //创建保存目录
  429. if (!file_exists($save_dir) && !mkdir($save_dir, 0777, true)) {
  430. return false;
  431. }
  432. //获取远程文件所采用的方法
  433. if ($type) {
  434. $ch = curl_init();
  435. $timeout = 5;
  436. curl_setopt($ch, CURLOPT_URL, $url);
  437. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  438. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
  439. $content = curl_exec($ch);
  440. curl_close($ch);
  441. } else {
  442. ob_start();
  443. readfile($url);
  444. $content = ob_get_contents();
  445. ob_end_clean();
  446. }
  447. $size = strlen($content);
  448. //文件大小
  449. $fp2 = @fopen($save_dir . $filename, 'a');
  450. fwrite($fp2, $content);
  451. fclose($fp2);
  452. unset($content, $url);
  453. return $filename;
  454. }
  455. }