Member.php 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\user\controller;
  15. use app\common\model\User;
  16. use app\common\model\UserFacility;
  17. use app\common\model\UserGroup;
  18. use app\common\model\UserLevel;
  19. use app\common\model\UserLevelRank;
  20. use app\common\model\UserTag;
  21. use app\common\model\UserWallet;
  22. use app\common\model\VideoIntro;
  23. use library\Controller;
  24. use library\tools\Data;
  25. use think\cache\driver\Redis;
  26. use think\Db;
  27. use function AlibabaCloud\Client\value;
  28. /**
  29. * 会员信息管理
  30. * Class Member
  31. * @package app\Member\controller
  32. */
  33. class Member extends Controller
  34. {
  35. /**
  36. * 绑定数据表
  37. * @var string
  38. */
  39. protected $table = 'StoreMember';
  40. /**
  41. * 会员信息管理
  42. * @auth true
  43. * @menu true
  44. * @throws \think\Exception
  45. * @throws \think\db\exception\DataNotFoundException
  46. * @throws \think\db\exception\ModelNotFoundException
  47. * @throws \think\exception\DbException
  48. * @throws \think\exception\PDOException
  49. */
  50. public function index()
  51. {
  52. $this->search_url = strtolower($this->request->controller()).'/index_search';
  53. $this->title = '会员信息管理';
  54. $this->tag_arr = UserTag::column('title','id');
  55. $this->level_arr = UserLevel::column('name','id');
  56. $this->group_arr = UserGroup::column('name','id');
  57. $where = [];
  58. $where[] = ['m.is_deleted','=',0];
  59. if($name = input('get.name')) $where[] = ['m.name','like','%'.$name.'%'];
  60. if($phone = input('get.phone')) $where[] = ['m.phone|m.email','like','%'.$phone.'%'];
  61. if($level_id = input('get.level_id')) $where[] = ['m.level_id','=',$level_id];
  62. // if($level_id = input('get.level_id')) $where[] = ['r.level_id','=',$level_id];
  63. // if($level_id = input('get.level_id')) $where[] = ['r.end_date','>',date('Y-m-d H:i:s')];
  64. if($label_id = input('get.label_id')) $where[] = ['m.label','like','%|'.$label_id."|%"];
  65. if($account_type = input('get.account_type')) {
  66. if($account_type == 3) {
  67. $where[] = ['m.is_first','=',1];
  68. }else{
  69. $where[] = ['m.account_type','=',$account_type];
  70. }
  71. }
  72. $field="m.id,m.openid,m.name,m.is_first,m.headimg,m.level_exp,m.phone,m.status,m.create_at,m.account_type,w.growth,w.integral,w.money,m.tag_id,label";
  73. $create_at = input('create_at');
  74. $query = $this->_query($this->table)
  75. ->field($field)
  76. ->alias('m')
  77. ->leftJoin('UserWallet w','m.id =w.user_id')
  78. ->where($where)
  79. ->when($create_at,function ($q)use ($create_at){
  80. if($create_at){
  81. $time = explode(' - ',$_GET['create_at']);
  82. $start_date_time = $time[0];
  83. $end_date_time = $time[1];
  84. $q->whereBetweenTime('m.create_at',$start_date_time,$end_date_time);
  85. }
  86. })->order('id desc')->select();
  87. $query->page();
  88. }
  89. /**
  90. * 数据列表处理
  91. * @auth true
  92. * @menu true
  93. * @param array $data
  94. * @throws \think\db\exception\DataNotFoundException
  95. * @throws \think\db\exception\ModelNotFoundException
  96. * @throws \think\exception\DbException
  97. */
  98. protected function _index_page_filter(&$data)
  99. {
  100. $level_id = input('get.level_id');
  101. $limit = input('get.limit');
  102. if(!$limit){
  103. $limit = 20;
  104. }
  105. $level_arr = UserLevel::column('name','id');
  106. $group_arr = UserGroup::column('name','id');
  107. if($level_id && $level_id != 0){
  108. $arr = [];
  109. foreach ($data as $k=>&$v){
  110. $level_rank= UserLevelRank::getUserVipInfo($v['id']);
  111. if($level_rank){
  112. $v['level_id'] = $level_rank ? $level_rank['level_id'] : 0 ;
  113. $v['level_name'] = $level_rank ? $level_arr[$level_rank['level_id']] : '--';
  114. $v['end_date'] = $level_rank ?$level_rank['end_date'] :'--';
  115. $label_ids = implode(',',explode("|",trim($v['label'],'|')));
  116. $v['label_arr'] = $v['label'] ? UserTag::where('id','in',$label_ids)->column('title') : [];
  117. $arr[] = $v;
  118. }
  119. }
  120. $data = $arr;
  121. }else{
  122. foreach ($data as $k=>&$v){
  123. $level_rank= UserLevelRank::getUserVipInfo($v['id']);
  124. $v['level_id'] = $level_rank ? $level_rank['level_id'] : 0 ;
  125. $v['level_name'] = $level_rank ? $level_arr[$level_rank['level_id']] : '--';
  126. $v['end_date'] = $level_rank ?$level_rank['end_date'] :'--';
  127. $label_ids = implode(',',explode("|",trim($v['label'],'|')));
  128. $v['label_arr'] = $v['label'] ? UserTag::where('id','in',$label_ids)->column('title') : [];
  129. }
  130. }
  131. if(count($data) < $limit && $level_id && $level_id != 0){
  132. $num = $limit - count($data);
  133. $field="m.id,m.openid,m.name,m.is_first,m.headimg,m.level_exp,m.phone,m.status,m.create_at,m.account_type,w.growth,w.integral,w.money,m.tag_id,label";
  134. $create_at = input('create_at');
  135. $where = [];
  136. $where[] = ['m.is_deleted','=',0];
  137. if($name = input('get.name')) $where[] = ['m.name','like','%'.$name.'%'];
  138. if($phone = input('get.phone')) $where[] = ['m.phone|m.email','like','%'.$phone.'%'];
  139. $query = User::field($field)
  140. ->alias('m')
  141. ->leftJoin('UserWallet w','m.id =w.user_id')
  142. ->where($where)
  143. ->when($create_at,function ($q)use ($create_at){
  144. if($create_at){
  145. $time = explode(' - ',$_GET['create_at']);
  146. $start_date_time = $time[0];
  147. $end_date_time = $time[1];
  148. $q->whereBetweenTime('m.create_at',$start_date_time,$end_date_time);
  149. }
  150. })->order('id desc')->select();
  151. $arrs = [];
  152. // $data = $query;
  153. // $level_arr = UserLevel::column('name','id');
  154. foreach ($query as $k=> &$v){
  155. if(count($arrs) >= $num){
  156. break;
  157. }
  158. // dump($v);die;
  159. $level_rank= UserLevelRank::getUserVipInfo($v['id']);
  160. if(!$level_rank){
  161. unset($v);
  162. }else{
  163. $v['level_id'] = $level_rank ? $level_rank['level_id'] : 0 ;
  164. $v['level_name'] = $level_rank ? $level_arr[$level_rank['level_id']] : '--';
  165. $v['end_date'] = $level_rank ?$level_rank['end_date'] :'--';
  166. $label_ids = implode(',',explode("|",trim($v['label'],'|')));
  167. $v['label_arr'] = $v['label'] ? UserTag::where('id','in',$label_ids)->column('title') : [];
  168. $arrs[] = $v;
  169. }
  170. }
  171. $data = array_merge($arrs,$data);
  172. }
  173. }
  174. public function selectes($num = 0){
  175. if($num == 0){
  176. return ;
  177. }
  178. $field="m.id,m.openid,m.name,m.is_first,m.headimg,m.level_exp,m.phone,m.status,m.create_at,m.account_type,w.growth,w.integral,w.money,m.tag_id,label";
  179. $create_at = input('create_at');
  180. $where = [];
  181. $where[] = ['m.is_deleted','=',0];
  182. if($name = input('get.name')) $where[] = ['m.name','like','%'.$name.'%'];
  183. if($phone = input('get.phone')) $where[] = ['m.phone|m.email','like','%'.$phone.'%'];
  184. $query = $this->_query($this->table)
  185. ->field($field)
  186. ->alias('m')
  187. ->leftJoin('UserWallet w','m.id =w.user_id')
  188. ->where($where)
  189. ->when($create_at,function ($q)use ($create_at){
  190. if($create_at){
  191. $time = explode(' - ',$_GET['create_at']);
  192. $start_date_time = $time[0];
  193. $end_date_time = $time[1];
  194. $q->whereBetweenTime('m.create_at',$start_date_time,$end_date_time);
  195. }
  196. })->order('id desc')->select();
  197. $arr = [];
  198. $data = $query;
  199. $level_arr = UserLevel::column('name','id');
  200. foreach ($data as $k=>&$v){
  201. if(count($arr) >= $num){
  202. break;
  203. }
  204. $level_rank= UserLevelRank::getUserVipInfo($v['id']);
  205. if(!$level_rank){
  206. unset($v);
  207. }else{
  208. $v['level_id'] = $level_rank ? $level_rank['level_id'] : 0 ;
  209. $v['level_name'] = $level_rank ? $level_arr[$level_rank['level_id']] : '--';
  210. $v['end_date'] = $level_rank ?$level_rank['end_date'] :'--';
  211. $label_ids = implode(',',explode("|",trim($v['label'],'|')));
  212. $v['label_arr'] = $v['label'] ? UserTag::where('id','in',$label_ids)->column('title') : [];
  213. $arr[] = $v;
  214. }
  215. }
  216. return $arr;
  217. }
  218. /**
  219. * 删除
  220. * @auth true
  221. * @menu true
  222. * @param array $data
  223. * @throws \think\db\exception\DataNotFoundException
  224. * @throws \think\db\exception\ModelNotFoundException
  225. * @throws \think\exception\DbException
  226. */
  227. public function remove()
  228. {
  229. $this->_save($this->table, ['is_deleted' => '1','phone'=>'','email'=>'','bind_id'=>0,'is_first'=>0]);
  230. }
  231. /**
  232. * 禁用
  233. * @auth true
  234. * @menu true
  235. * @param array $data
  236. * @throws \think\db\exception\DataNotFoundException
  237. * @throws \think\db\exception\ModelNotFoundException
  238. * @throws \think\exception\DbException
  239. */
  240. public function forbid()
  241. {
  242. $this->_save($this->table, ['status' => '0']);
  243. }
  244. /**
  245. * 启用
  246. * @auth true
  247. * @menu true
  248. * @param array $data
  249. * @throws \think\db\exception\DataNotFoundException
  250. * @throws \think\db\exception\ModelNotFoundException
  251. * @throws \think\exception\DbException
  252. */
  253. public function resume()
  254. {
  255. $this->_save($this->table, ['status' => '1']);
  256. }
  257. /**
  258. * 添加
  259. * @auth true
  260. * @menu true
  261. * @param array $data
  262. * @throws \think\db\exception\DataNotFoundException
  263. * @throws \think\db\exception\ModelNotFoundException
  264. * @throws \think\exception\DbException
  265. */
  266. public function add(){
  267. $this->title = '添加';
  268. $this->level_arr = UserLevel::column('name','id');
  269. $this->group_arr = UserGroup::column('name','id');
  270. if($this->request->isPost())
  271. {
  272. list($data) = [$this->request->post()];
  273. $check_where =[];
  274. $check_where[] = $data['account_type'] == 1 ? ['email','=',$data['account']] : ['phone','=',$data['account']];
  275. $user_info = User::where($check_where)->find();
  276. if($user_info) $this->error('用户已存在');
  277. $user_add= [];
  278. $data['account_type'] == 1 ? $user_add['email'] = $data['account'] : $user_add['phone'] = $data['account'];
  279. $user_add['name'] = $data['name'];
  280. $user_add['account_type'] = $data['account_type'];
  281. $select_label = [];
  282. if(isset($data['label']) && !empty($data['label'])){
  283. foreach ($data['label'] as $key=>$value){
  284. if($value) $select_label[] = $key;
  285. }
  286. }
  287. $data['label'] = '|'.implode('|',$select_label).'|';
  288. $new_user = User::create($user_add);
  289. if($data['level_id'] && intval($data['days']) > 0) {
  290. UserLevelRank::create(['user_id'=>$new_user->id,'level_id'=>$data['level_id'],'start_time'=>time(),'end_time'=>time()+86400* intval($data['days']),'end_date'=>date('Y-m-d H:i:s',time()+86400*intval($data['days']))]);
  291. }
  292. $this->success('添加成功');
  293. }
  294. $this->_form($this->table, 'add');
  295. }
  296. /**
  297. *
  298. * 编辑
  299. * @auth true
  300. * @menu true
  301. * @param array $data
  302. * @throws \think\db\exception\DataNotFoundException
  303. * @throws \think\db\exception\ModelNotFoundException
  304. * @throws \think\exception\DbException
  305. */
  306. public function edit()
  307. {
  308. $this->title = '编辑';
  309. $this->level_arr = UserLevel::column('name','id');
  310. $this->group_arr = UserGroup::column('name','id');
  311. $this->_form($this->table, 'form');
  312. }
  313. /**
  314. * 钱包管理
  315. * @auth true
  316. * @menu true
  317. * @param array $data
  318. * @throws \think\db\exception\DataNotFoundException
  319. * @throws \think\db\exception\ModelNotFoundException
  320. * @throws \think\exception\DbException
  321. */
  322. public function wallet()
  323. {
  324. $this->title = '钱包';
  325. $this->_form($this->table, 'wallet');
  326. }
  327. protected function _form_filter(&$data){
  328. //选中的服务标签
  329. $this->tag_arr = UserTag::column('title','id');
  330. if($this->request->isPost() && $this->request->action() == 'add')
  331. {
  332. if($data['account_type'] == 1) {
  333. $is_reg = User::where('email',$data['account'])->value('id');
  334. $data['email'] = $data['account'];
  335. }else{
  336. $is_reg = User::where('phone',$data['account'])->value('id');
  337. $data['phone'] = $data['account'];
  338. }
  339. if($is_reg)$this->error('账号已存在');
  340. }
  341. if($this->request->isPost() && $this->request->action() == 'edit') {
  342. if($data['level_id'] > 0 && $data['over_time']) {
  343. Data::save('UserLevelRank',[
  344. 'user_id'=>$data['id'],
  345. 'level_id'=>$data['level_id'],
  346. 'start_time'=>time(),
  347. 'end_time'=>strtotime($data['over_time']) ,
  348. 'end_date'=>$data['over_time']
  349. ],'user_id',['user_id'=>$data['id']]);
  350. $data['level_exp'] = $data['over_time'];
  351. } else if($data['level_id'] == 0){
  352. Data::save('UserLevelRank',[
  353. 'user_id'=>$data['id'],
  354. 'level_id'=>$data['level_id'],
  355. 'start_time'=>time(),
  356. 'end_time'=> time(),
  357. 'end_date'=>date('Y-m-d H:i:s')
  358. ],'user_id',['user_id'=>$data['id']]);
  359. $data['level_exp'] = date('Y-m-d H:i:s');
  360. }
  361. if($data['group_id'] > 0 && $data['group_id']) {
  362. $check_group = User::where(['group_id'=>$data['group_id'],'is_first'=>1])->value('id');//该公司是否有第一个注册的
  363. if(!$check_group) $data['is_first'] =1;
  364. if($check_group)$data['group_first'] = $check_group;
  365. $data['bind_id'] = $data['id'];
  366. $data['account_type'] = 1;
  367. }else{
  368. $data['is_first'] =1;
  369. $data['group_first'] = 0;
  370. $data['bind_id'] = 0;
  371. $data['account_type'] = 2;
  372. }
  373. }
  374. //
  375. if($this->request->isPost()) {
  376. $select_label = [];
  377. if(isset($data['label']) && !empty($data['label'])){
  378. foreach ($data['label'] as $key=>$value){
  379. if($value) $select_label[] = $key;
  380. }
  381. }
  382. $data['label'] = '|'.implode('|',$select_label).'|';
  383. if(isset($data['bind_phone'])) {
  384. $bind_id = User::where('phone',$data['bind_phone'])->value('id');
  385. if(!$bind_id) $this->error('该用户未注册');
  386. $check_bind = User::where(['bind_id'=>$bind_id])->value('id');
  387. if($data['bind_phone'] && $check_bind) $this->error('该用户被绑定');
  388. $data['bind_id'] = $bind_id;
  389. }
  390. }
  391. if($this->request->isGet() && $this->request->action() =='edit') {
  392. $label_arr = isset($data['label']) ? explode('|',trim($data['label'],'|')) : [];
  393. $this->label_arr = $label_arr;
  394. $this->label_zn_arr = Db::name('user_label')->where('user_id',$data['id'])->order('num desc')->select();
  395. $data['rank_id'] = UserLevelRank::getUserVip($data['id']);
  396. $level_rank= UserLevelRank::where([['user_id','=',$data['id']]])->find();
  397. $data['end_date'] = $level_rank ? $level_rank->end_date:'--';
  398. $data['bind_phone'] = $data['bind_id'] ? User::where('id',$data['bind_id'])->value('phone'):'';
  399. }
  400. }
  401. public function facility()
  402. {
  403. if($this->request->isGet())
  404. {
  405. $user_id = input('get.user_id');
  406. $list = UserFacility::where('user_id',$user_id)->column('facility','type');
  407. $this->fetch('', ['list' =>$list,'user_id'=>$user_id]);
  408. }else{
  409. list($data) = [$this->request->post()];
  410. for ($i=1;$i<=4;$i++) {
  411. // $check_facility = UserFacility::where(['user_id'=>$data['user_id'],'type'=>$i,'facility'=>$data['facility_'.$i]])->value('id');
  412. $redis = new Redis();
  413. if(isset($data['facility_'.$i])){
  414. Data::save(
  415. 'UserFacility',
  416. ['user_id'=>$data['user_id'],'type'=>$i,'facility'=>$data['facility_'.$i],'set_time'=>date('Y-m-d H:i:s')],
  417. 'user_id',['user_id'=>$data['user_id'],'type'=>$i]);
  418. if($data['facility_'.$i] == ''){
  419. $redis->rm('TOKEN_'.$data['user_id'].'_'.$i);
  420. // var_dump('TOKEN_'.$data['user_id'].'_'.$i);die;
  421. $aliases = $this->aliases($data['user_id'],[],'GET','?new_format=true');
  422. if(isset($aliases['data']) && $aliases['data'] != '' && $aliases['data'] != null){
  423. if(count($aliases['data']) > 0){
  424. //别名下有绑定的Registration ID
  425. $registration_ids = [];
  426. foreach ($aliases['data'] as $k => $v){
  427. if($i == 1 || $i == 3){
  428. //安卓
  429. if($v['platform'] == "android"){
  430. $registration_ids[] = $v['registration_id'];
  431. }
  432. }else if($i == 2 || $i == 4){
  433. //ios
  434. if($v['platform'] == "ios"){
  435. $registration_ids[] = $v['registration_id'];
  436. }
  437. }
  438. }
  439. if(count($registration_ids) > 0){
  440. $body = [
  441. "registration_ids"=>[
  442. "remove"=> $registration_ids
  443. ]
  444. ];
  445. //var_dump($body);die;
  446. // var_dump($registration_ids);die;
  447. $aliases_del = $this->aliases($data['user_id'],$body,'POST');
  448. // var_dump($aliases_del);die;
  449. }
  450. }
  451. }
  452. }
  453. }
  454. }
  455. $this->success('编辑成功');
  456. }
  457. }
  458. /**
  459. * @title 推送查询
  460. * @desc 推送查询
  461. */
  462. public function aliases($id = 66,$registration_ids = [],$type = 'GET',$new_format = ''){
  463. $data = input();
  464. // if(!$data['url'] || !$data['from'] || !$data['to'] || !$data['url']){
  465. //
  466. // }
  467. $arr = [
  468. 'url'=>'https://device.jpush.cn/v3/aliases/'.$id.$new_format,
  469. 'AppKey'=>config('app.jiguang')['AppKey'],
  470. 'MasterSecret'=>config('app.jiguang')['MasterSecret'],
  471. ];
  472. // $hx_voice = hx_voice(24);
  473. // $url= $arr['url'].$arr['org_name'].'/'.$arr['app_name'].'/'.'messages/users';
  474. // $body['from'] = $data['form']; //'member2200'
  475. // $body['to'] = $data['to']; //worker1000
  476. // $body['type'] = 'audio';
  477. // $body['body'] = [
  478. // 'filename' => $data['filename'], //'testaudio.amr', //语音文件的名称
  479. // 'url' => $data['url'] //'http://tmp/bQo7Udv1FETr01c4bb0ecee3a2edb86b00a393176fcc.durationTime=2790.aac', //语音文件的url地址
  480. // ];
  481. $body = $registration_ids;
  482. $options['type']="audio";
  483. $options['msg']='发送';
  484. $b=json_encode($body);
  485. // return $b;
  486. $str = $arr['AppKey'].':'.$arr['MasterSecret'];
  487. //$str = '7d431e42dfa6a6d693ac2d04:5e987ac6d2e04d95a9d8f0d1';
  488. $base64 = base64_encode($str);
  489. //$header=['Authorization' => ];
  490. $header = array("Authorization: Basic ".$base64);
  491. // return json($header);
  492. $result=$this->postCurl($arr['url'],$b,$header,$type);
  493. // $result=$this->postCurl($url,$body,$header);
  494. //dump($result);
  495. return $result;
  496. // return $hx_voice;
  497. }
  498. public function postCurl($url,$body,$header,$type="POST"){
  499. //1.创建一个curl资源
  500. $ch = curl_init();
  501. //2.设置URL和相应的选项
  502. curl_setopt($ch,CURLOPT_URL,$url);//设置url
  503. //1)设置请求头
  504. // array_push($header, 'Accept:application/json');
  505. // array_push($header,'Content-Type:application/json');
  506. // array_push($header, 'http:multipart/form-data');
  507. //设置为false,只会获得响应的正文(true的话会连响应头一并获取到)
  508. curl_setopt($ch,CURLOPT_HEADER,0);
  509. // curl_setopt ( $ch, CURLOPT_TIMEOUT,5); // 设置超时限制防止死循环
  510. //设置发起连接前的等待时间,如果设置为0,则无限等待。
  511. curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,5);
  512. //将curl_exec()获取的信息以文件流的形式返回,而不是直接输出。
  513. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  514. //2)设备请求体
  515. if (strlen($body)>0) {
  516. //$b=json_encode($body,true);
  517. curl_setopt($ch, CURLOPT_POSTFIELDS, $body);//全部数据使用HTTP协议中的"POST"操作来发送。
  518. }
  519. //设置请求头
  520. // if(count($header)>0){
  521. // curl_setopt($ch,CURLOPT_HTTPHEADER,$header);
  522. // }
  523. curl_setopt($ch,CURLOPT_HTTPHEADER,$header);
  524. //上传文件相关设置
  525. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
  526. curl_setopt($ch, CURLOPT_MAXREDIRS, 3);
  527. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);// 对认证证书来源的检查
  528. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);// 从证书中检查SSL加密算
  529. //3)设置提交方式
  530. switch($type){
  531. case "GET":
  532. curl_setopt($ch,CURLOPT_HTTPGET,true);
  533. break;
  534. case "POST":
  535. curl_setopt($ch,CURLOPT_POST,true);
  536. break;
  537. case "PUT"://使用一个自定义的请求信息来代替"GET"或"HEAD"作为HTTP请求。这对于执行"DELETE" 或者其他更隐蔽的HTT
  538. curl_setopt($ch,CURLOPT_CUSTOMREQUEST,"PUT");
  539. break;
  540. case "DELETE":
  541. curl_setopt($ch,CURLOPT_CUSTOMREQUEST,"DELETE");
  542. break;
  543. }
  544. //4)在HTTP请求中包含一个"User-Agent: "头的字符串。-----必设
  545. // curl_setopt($ch, CURLOPT_USERAGENT, 'SSTS Browser/1.0');
  546. // curl_setopt($ch, CURLOPT_ENCODING, 'gzip');
  547. //curl_setopt ( $ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0)' ); // 模拟用户使用的浏览器
  548. //5)
  549. //3.抓取URL并把它传递给浏览器
  550. $res=curl_exec($ch);
  551. $result=json_decode($res,true);
  552. //4.关闭curl资源,并且释放系统资源
  553. curl_close($ch);
  554. if(empty($result))
  555. return $res;
  556. else
  557. return $result;
  558. }
  559. public function export(){
  560. $tag_arr = UserTag::column('title','id');
  561. $get_data = $this->request->get();
  562. $time = explode(' - ',$get_data['create_at']);
  563. $phone = $get_data['phone'];
  564. $name = $get_data['name'];
  565. $where = [];
  566. $where[] = ['status',1];
  567. $where[] = ['is_deleted',0];
  568. $where_str = ' status = 1 AND is_deleted = 0';
  569. if($name) $where_str .=' AND name like '."'%".$name."%'";
  570. if($phone) $where_str .=' AND phone like '."'%".$phone."%'";
  571. if($level_id = input('get.level_id')) $where_str .=' AND level_id = '.$level_id;
  572. if($label_id = input('get.label_id')) $where_str .=' AND label like '."'%|".$label_id."|%'";
  573. if($get_data['create_at']) $where_str.=" AND create_at > '".$time[0]."'AND create_at <'".$time[1]."'";
  574. $data = Db::query("SELECT name,headimg,email,tag_id,phone,create_at,account_type,label FROM dd_store_member WHERE".$where_str.' ORDER BY id DESC');
  575. if(empty($data)) $this->error('暂无可以导出的数据');
  576. foreach ($data as $k=>&$v) {
  577. if(!$v) $v = '--';
  578. $v['account_desc'] = $v['account_type'] == 1 ? '公司':'个人';
  579. $label_ids = implode(',',explode("|",trim($v['label'],'|')));
  580. $label_arr = $label_ids ? UserTag::where('id','in',$label_ids)->column('title') : [];
  581. $v['label_name'] = $label_arr ? implode('|',$label_arr) : "--";
  582. }
  583. $field=array(
  584. 'A' => array('name', '昵称'),
  585. 'B' => array('email', '邮箱'),
  586. 'C' => array('phone', '电话'),
  587. 'D' => array('account_desc','类型'),
  588. 'E' => array('label_name','标签'),
  589. 'F' => array('create_at', '注册时间'),
  590. );
  591. $this->phpExcelList($field,$data,'会员列表');
  592. }
  593. public function study_export(){
  594. $get_data = $this->request->get();
  595. $time = explode(' - ',$get_data['study_at']);
  596. $where_str = [];
  597. if(!$get_data['study_at']) $this->error('请选择时间');
  598. $date = $this->getDatesInRange($time[0],$time[1]);
  599. $title = '学习记录';
  600. if(count($date)>30)$this->error('导出记录不能超过30天');
  601. //生成表格部分
  602. $obj = new \PHPExcel();// 实例化PHPExcel类,等价于在桌面上新建一个excel表格
  603. $objSheet = $obj->getActiveSheet(); //获得当前活动sheet的操作对象
  604. foreach ($date as $k => $v){
  605. $study = Db::name('user_study_log')->where('create_at','> time',$v.' 00:00:00')
  606. ->where('create_at','< time',$v.' 23:59:59')
  607. ->select();
  608. $studyss = Db::name('user_study_log')->where('create_at','> time',$v.' 00:00:00')
  609. ->where('create_at','< time',$v.' 23:59:59')
  610. ->group('user_phone')
  611. ->select();
  612. $obj->createSheet();//创建新的内置表
  613. $obj->setActiveSheetIndex($k); //把新创建的sheet设定为当前活动sheet
  614. $objSheet = $obj->getActiveSheet(); //获取当前活动sheet
  615. $objSheet->setTitle($v); //给当前活动sheet设置名称
  616. //方法二
  617. $array = [
  618. [""],
  619. ];
  620. if ($study){
  621. // return json($study);
  622. // $array[] = [];
  623. foreach ($study as $sk => $sv){
  624. $video = VideoIntro::where('id',$sv['video_intro_id'])->find();
  625. $key = array_search($video['title'], $array[0]);
  626. // $is_s = 1;
  627. if ($key !== false) {
  628. //return "找到值,对应的键是: " . $key;for(
  629. //return $key;
  630. } else {
  631. //第一行
  632. $array[0][] = $video['title'];
  633. $key = array_search($video['title'], $array[0]);
  634. // foreach ($array as $ak => $av){
  635. // $is_s = 1;
  636. // if($ak != 0){
  637. // foreach ($array as $ak1 => $av1){
  638. // if(isset($array[$ak1][0]) && $array[$ak1][0] == $sv['user_phone']) {
  639. //// return json($array);
  640. // var_dump($sv);
  641. // $is_s = 0;
  642. // }
  643. // }
  644. // if($is_s == 1 && !isset($array[$ak][0])){
  645. // $array[$ak][0] = $sv['user_phone'];
  646. // }else if($is_s == 1){
  647. // $array[] = [$sv['user_phone']];
  648. // }
  649. // if($av == $video['title']){
  650. // $array[$ak][] = $sv['study_duration'];
  651. //// $is_s = 0;
  652. // }
  653. // }else{
  654. //
  655. // }
  656. // }
  657. //以下
  658. }
  659. }
  660. foreach ($studyss as $kss => $vss){
  661. $array[] = [$vss['user_phone']];
  662. }
  663. // return json($array);
  664. foreach ($array as $k1 => $v1){
  665. if($k1 != 0){
  666. foreach ($study as $k3 => $v3) {
  667. foreach ($array[0] as $k2 => $v2){
  668. $videoIn = VideoIntro::where('id',$v3['video_intro_id'])->find();
  669. if($k2 != 0){
  670. // $key = array_search($videoIn['title'], $array[0]);
  671. // $is_s = 1;
  672. if ($videoIn['title'] == $v2 && $v1[0] == $v3['user_phone']) {
  673. //return "找到值,对应的键是: " . $key;for(
  674. $array[$k1][$k2] = $v3['study_duration'];
  675. }else if($videoIn['title'] != $v2 && $v1[0] == $v3['user_phone'] && !isset($array[$k1][$k2])){
  676. $array[$k1][$k2] = '0';
  677. }
  678. }
  679. }
  680. }
  681. }
  682. // if($k !== 0){
  683. // return json($v2);
  684. // }
  685. }
  686. }
  687. $objSheet->fromArray($array); //直接加载数据块来填充数据
  688. }
  689. $objWriter = \PHPExcel_IOFactory::createWriter($obj,"Excel2007");
  690. header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
  691. header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
  692. header('Cache-Control: max-age=0'); //禁止缓存
  693. $objWriter->save("php://output"); //输出到浏览器
  694. $this->success('ok',$date);
  695. }
  696. public function phpExcelList($field=[],$list=[],$title='文件'){
  697. $PHPExcel=new \PHPExcel();
  698. $PHPSheet=$PHPExcel->getActiveSheet();
  699. $PHPSheet->setTitle('demo'); //给当前活动sheet设置名称
  700. foreach($list as $key=>$value)
  701. {
  702. foreach($field as $k=>$v){
  703. if($key == 0){
  704. $PHPSheet= $PHPExcel->getActiveSheet()->setCellValue($k.'1',$v[1]);
  705. }
  706. $i=$key+2;
  707. $PHPExcel->getActiveSheet()->setCellValue($k . $i, $value[$v[0]]);
  708. }
  709. }
  710. $PHPWriter = \PHPExcel_IOFactory::createWriter($PHPExcel,'Excel2007'); //按照指定格式生成Excel文件,
  711. header('Content-Type: application/vnd.ms-excel'); // 告诉浏览器生成一个excel05版的表格
  712. header("Content-Disposition: attachment;filename={$title}.xls"); //告诉浏览器输出文件的名称
  713. header('Cache-Control: max-age=0'); //禁止缓存
  714. $PHPWriter->save("php://output"); //输出到浏览器
  715. }
  716. function getDatesInRange($start, $end) {
  717. $start = new \DateTime($start);
  718. $end = new \DateTime($end);
  719. $end->add(new \DateInterval('P1D')); // 添加一天来包含结束日期
  720. $interval = new \DateInterval('P1D');
  721. $period = new \DatePeriod($start, $interval, $end);
  722. $dates = array();
  723. foreach ($period as $date) {
  724. $dates[] = $date->format('Y-m-d'); // 按年-月-日格式化日期
  725. }
  726. return $dates;
  727. }
  728. /**
  729. * 导入
  730. * @auth true
  731. * @menu true
  732. * @throws \think\Exception
  733. * @throws \think\db\exception\DataNotFoundException
  734. * @throws \think\db\exception\ModelNotFoundException
  735. * @throws \think\exception\DbException
  736. * @throws \think\exception\PDOException
  737. */
  738. public function import()
  739. {
  740. $file = request()->file('file');
  741. $file_size = $_FILES['file']['size'];
  742. if ($file_size > 5 * 1024 * 1024) $this->error('文件大小不能超过5M');
  743. //限制上传表格类型
  744. $fileExtendName = substr(strrchr($_FILES['file']["name"], '.'), 1);
  745. if ($fileExtendName != 'xls' && $fileExtendName != 'xlsx') $this->error('必须为excel表格,且必须为xls/xlsx格式!');
  746. $dir = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . '/public/upload';
  747. if (!file_exists($dir)) mkdir($dir, 0777, true);
  748. $info = $file->move($dir);
  749. $fileName = $info->getSaveName();
  750. $filePath = dirname(realpath(dirname($_SERVER['SCRIPT_FILENAME']))) . "/public/upload/{$fileName}";
  751. /* $reader = \PHPExcel_IOFactory::createReader('Excel2007');
  752. if(!$reader->canRead($filePath)) $reader = \PHPExcel_IOFactory::createReader('Excel2015');
  753. */
  754. $objPHPExcelReader = \PHPExcel_IOFactory::load($filePath);
  755. $sheet = $objPHPExcelReader->getSheet(0); // 读取第一个工作表(编号从 0 开始)
  756. $highestRow = $sheet->getHighestRow(); // 取得总行数
  757. $arr = array('A','B','C','D','E','F');
  758. // 一次读取一列
  759. $res_arr = [];
  760. for ($row = 2; $row <= $highestRow; $row++) {
  761. $row_arr = array();
  762. for ($column = 0 ;$column < count($arr) ; $column++) {
  763. $val = $sheet->getCellByColumnAndRow($column, $row)->getValue();
  764. $row_arr[] = $val;
  765. }
  766. $res_arr[] = $row_arr;
  767. }
  768. $success_num = 0;
  769. // name account account_type level_id days label
  770. foreach ($res_arr as $new_user) {
  771. if(!trim($new_user['1']) || empty($new_user['1']))continue;
  772. $check_where=[];
  773. $check_where[] = $new_user['2'] == 1 ? ['email','=',trim($new_user['1'])]: ['phone','=',trim($new_user['1'])];
  774. $ck_res = User::where($check_where)->value('id');
  775. if($ck_res){
  776. Data::save('UserLevelRank',[
  777. 'user_id'=>$ck_res,
  778. 'level_id'=>intval($new_user['3']),
  779. 'start_time'=>time(),
  780. 'end_time'=>time()+86400* intval($new_user['4']),
  781. 'end_date'=>date('Y-m-d H:i:s',time()+86400*intval($new_user['4']))],'user_id',['user_id'=>$ck_res]);
  782. $success_num++;
  783. User::where('id',$ck_res)->update(['level_id'=>intval($new_user['3']),'level_exp'=>date('Y-m-d H:i:s',time()+86400*intval($new_user['4'])),'label'=>'|'.$new_user['5'].'|']);
  784. }else{
  785. $user_add= [];
  786. $user_add['account_type'] = $new_user['2'];
  787. if($new_user['5']) $user_add['label'] = '|'.$new_user['5'].'|';
  788. if( $user_add['account_type'] == 1) {// 公司账号
  789. $group_title = explode('@', $new_user['1'])[1];
  790. $group_info = UserGroup::where(['title'=>'@'.$group_title])->find();
  791. if(empty($group_info)) continue;
  792. $user_add['name'] = 'G企业用户_'.$group_info->name.'_'.$group_title;
  793. $check_group = User::where(['group_id'=>$group_info->id,'is_first'=>1])->value('id');//该公司是否有第一个注册的
  794. $user_add['group_id'] = $group_info->id;
  795. if(!$check_group) $user_add['is_first'] =1;
  796. if($check_group) $user_add['group_first'] = $check_group;
  797. $add_res = User::create($user_add);
  798. if(isset_full_check($user_add,'is_first',1)){
  799. User::where('id',$add_res->id)->update(['group_first'=>$add_res->id]);
  800. if($new_user['3'] > 0 && intval($new_user[4]) > 0) {
  801. UserLevelRank::create(['user_id'=>$add_res->id,'level_id'=>$new_user['3'],'start_time'=>time(),'end_time'=>time()+86400* intval($new_user['4']),'end_date'=>date('Y-m-d H:i:s',time()+86400*intval($new_user['4']))]);
  802. User::where('id',$add_res->id)->update(['level_id'=>intval($new_user['3']),'level_exp'=>date('Y-m-d H:i:s',time()+86400*intval($new_user['4']))]);
  803. $success_num++;
  804. }
  805. }
  806. }else{
  807. $user_add['phone'] = trim($new_user['1']);
  808. $user_add['name'] = 'G'. substr_replace( $new_user['1'],'****',3,4);
  809. $add_res = User::create($user_add);
  810. if($new_user['3'] > 0 && intval($new_user[4]) > 0) {
  811. UserLevelRank::create(['user_id'=>$add_res->id,'level_id'=>$new_user['3'],'start_time'=>time(),'end_time'=>time()+86400* intval($new_user['4']),'end_date'=>date('Y-m-d H:i:s',time()+86400*intval($new_user['4']))]);
  812. User::where('id',$add_res->id)->update(['level_id'=>intval($new_user['3']),'level_exp'=>date('Y-m-d H:i:s',time()+86400*intval($new_user['4']))]);
  813. $success_num++;
  814. }
  815. }
  816. }
  817. }
  818. $this->success('成功导入会员:'.$success_num);
  819. }
  820. }