Index.php 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881
  1. <?php
  2. namespace app\api\controller;
  3. use AlibabaCloud\DBFS\V20200418\DbfsRecord;
  4. use app\admin\controller\Auth;
  5. use app\admin\controller\Auth as Au;
  6. use app\common\model\Article;
  7. use app\common\model\ArticleCate;
  8. use app\common\model\GoodsCate;
  9. use app\common\model\Goods;
  10. use app\common\model\GoodsNumber;
  11. use app\common\model\Order;
  12. use app\common\model\Banner;
  13. use app\common\model\User;
  14. use app\common\controller\Api;
  15. use app\common\model\UserForm;
  16. use app\data\model\DataXw;
  17. use app\store\controller\Video;
  18. use Carbon\Carbon;
  19. use think\console\command\Make;
  20. use think\Exception;
  21. use think\facade\Validate;
  22. use think\Db;
  23. use think\admin\Controller;
  24. use think\Request;
  25. /**
  26. * @title 首页
  27. * @controller Index
  28. */
  29. class Index extends Api
  30. {
  31. const C = [
  32. 'uid.request' => '父级评论id不能为空',
  33. // 'zid'
  34. ];
  35. /**
  36. * @title 首页banner
  37. * @desc 首页banner
  38. * @url /api/Index/banner_list
  39. * @method POST
  40. * @tag 基础
  41. */
  42. public function banner_list(){
  43. $result = Banner::BannerList();
  44. $this->success($result['msg'],$result['data']);
  45. }
  46. public function text(){
  47. print_r(getConfig('tuijian'));die;
  48. // $sta_week = date("Y-m-d H:i:s", mktime(0,0,0,date("m"),date("d")-date("w")+1,date("Y"))); //2020-03-09 00:00:00
  49. // $end_week = date("Y-m-d H:i:s", mktime(0,0,0,date("m"),date("d")-date("w")+7,date("Y"))); //2020-03-09 00:00:00
  50. // $weeek_regiz = Db::name('store_member')->whereBetween('create_at',[$sta_week,$end_week])->fetchSql()->count();
  51. // print_r($weeek_regiz);
  52. // $userId = 9;
  53. // $list = Db::name('store_member_interested')
  54. // ->alias('i')
  55. // ->join('store_member m', 'm.id=i.i_id')
  56. //// ->join('store_area a', 'm.province_id=a.id')
  57. // ->where('mid', 9)
  58. // ->field('i_id,nickname,age,headimg')
  59. // ->select();
  60. // print_r($list);die;
  61. $pr = av_status(8);
  62. // $use = Db::name('store_member')->where('id',9)->find();
  63. // $url = 'https://xiangqinim.zhousi.hdlkeji.com/addons/fastim/api.user/createUser?username='.$use['nickname'].'&avatar='.$use['nickname'].'&id='.$userId;
  64. // curlRequest($url);
  65. }
  66. /**
  67. * 首页公告
  68. */
  69. public function notice(){
  70. $mid = $this->check_login();
  71. $sex = Db::name('store_member')->where('id',$mid)->value('sex');
  72. if($sex==1) {
  73. $p_sex = 2;
  74. }
  75. else{
  76. $p_sex = 1;
  77. }
  78. $notice = Db::name('store_notice')->order('id','DESC')->find();
  79. unset($notice['is_deleted']);
  80. $ids = Db::name('store_recommend')->where('m_id',$mid)->find();
  81. if(empty($ids['tuijian'])){
  82. $member = [];
  83. }
  84. else {
  85. $time_a = time() - $ids['createtime'];
  86. $time_b = 86400 * getConfigValue('tuijian');
  87. if ($time_a >= $time_b) {
  88. $this->save_recommend($mid, $p_sex);
  89. $ids = Db::name('store_recommend')->where('m_id', $mid)->find();
  90. }
  91. $u_ids = explode(',', $ids['tuijian']);
  92. $member = Db::name('store_member')->whereIn('id', $u_ids)->field('id,sex,nickname,headimg,im_id')->select();
  93. }
  94. // $member = Db::name('store_member')->where('sex','=',$p_sex)->where('vip_level','=',1)->whereIn('status','1,3,4')->orderRaw('rand()')->limit(3)->field('id,sex,nickname,headimg,im_id')->select();
  95. $video = Db::name('store_video')->where('is_deleted',0)->orderRaw('rand()')->limit(3)->field('id,title,video_url,show_image,video_time')->select();
  96. $article = Db::name('store_article')->where('is_deleted',0)->order('id','DESC')->field('id,title,content,show_image,subtitle')->limit(3)->select();
  97. $this->success('首页数据',['notice' => $notice,'member'=>$member,'video'=>$video,'article'=>$article]);
  98. }
  99. /**
  100. * 视频列表
  101. */
  102. public function videolist(){
  103. $listRows = input('listRows','10');
  104. $page = input('page','1');
  105. $key = input('title');
  106. $where = [];
  107. if(isset($key)&&$key){
  108. $where[] = ['title','like','%'.$key.'%'];
  109. }
  110. $video = Db::name('store_video')
  111. ->where($where)
  112. ->where('is_deleted',3)
  113. ->field('id,title,video_url,create_at,show_image,video_time')
  114. ->order('id','DESC')
  115. ->paginate($listRows,'',['page'=>$page]);
  116. $this->success('首页数据',$video);
  117. }
  118. public function article_class(){
  119. $class = Db::name('store_article_class')->where('is_deleted','=',0)->field('id,title')->select();
  120. $this->success('文章分类',$class);
  121. }
  122. /**
  123. * 文章列表
  124. */
  125. public function articlelist(){
  126. $listRows = input('listRows','10');
  127. $page = input('page','1');
  128. $key = input('title');
  129. $where = [];
  130. if(isset($key)&&$key){
  131. $where[] = ['title','like','%'.$key.'%'];
  132. }
  133. $video = Db::name('store_article')
  134. ->where($where)
  135. ->where('is_deleted',0)
  136. ->field('id,title,show_image,create_at,subtitle,type')
  137. ->order('id','DESC')
  138. ->paginate($listRows,'',['page'=>$page]);
  139. $this->success('首页数据',$video);
  140. }
  141. /**
  142. * 文章详情
  143. */
  144. public function articlederail(){
  145. $id = input('id');
  146. $article = Db::name('store_article')
  147. ->where('id',$id)
  148. ->find();
  149. unset($article['is_deleted']);
  150. $this->success('首页数据',$article);
  151. }
  152. /**
  153. * 注册用户
  154. */
  155. public function registered_user(){
  156. $this->check_login();
  157. $page = input('page',1);
  158. $page_num = input('page_num',6);
  159. $age_max = input('age_max');
  160. $age_min = input('age_min');
  161. $nature = input('nature');
  162. $education = input('education');
  163. $sex = input('sex');
  164. $where = [];
  165. if(isset($age_max)&&isset($age_min)) {
  166. if (!empty($age_max) && !empty($age_min)) {
  167. $where[] = ['age', 'between', [$age_min, $age_max]];
  168. }
  169. }
  170. if(isset($nature)) {
  171. if (!empty($nature)) {
  172. $where[] = ['nature', 'in', $nature];
  173. }
  174. }
  175. if(isset($education)) {
  176. if (!empty($education)) {
  177. $where[] = ['education', 'in', $education];
  178. }
  179. }
  180. if(isset($sex)) {
  181. if (!empty($sex)) {
  182. $where[] = ['sex', '=', $sex];
  183. }
  184. }
  185. $member = Db::name('store_member')
  186. ->where('vip_level',0)
  187. ->where($where)
  188. ->order('id','DESC')
  189. ->field('id,nickname,sex,height,province_id,age,headimg,vip_level,im_id')
  190. ->paginate($page_num,'',['page'=>$page]);
  191. $member= $member->items();
  192. foreach ($member as $k=>$v){
  193. $member[$k]['province_id'] = Db::name('store_area')->where('id',$member[$k]['province_id'])->value('shortname');
  194. }
  195. $this->success('注册用户',$member);
  196. }
  197. /**
  198. * 认证用户
  199. */
  200. public function certified_user(){
  201. $this->check_login();
  202. $page = input('page',1);
  203. $page_num = input('page_num',6);
  204. $age_max = input('age_max');
  205. $age_min = input('age_min');
  206. $nature = input('nature');
  207. $education = input('education');
  208. $sex = input('sex');
  209. $level = input('level','');
  210. $where = [];
  211. if(isset($age_max)&&isset($age_min)) {
  212. if (!empty($age_max) && !empty($age_min)) {
  213. $where[] = ['age', 'between', [$age_min, $age_max]];
  214. }
  215. }
  216. if(isset($nature)) {
  217. if (!empty($nature)) {
  218. $where[] = ['nature', 'in', $nature];
  219. }
  220. }
  221. if(isset($education)) {
  222. if (!empty($education)) {
  223. $where[] = ['education', 'in', $education];
  224. }
  225. }
  226. if(isset($sex)) {
  227. if (!empty($sex)) {
  228. $where[] = ['sex', '=', $sex];
  229. }
  230. }
  231. if(isset($level)) {
  232. if ($level!='') {
  233. $where[] = ['vip_level', '=', $level];
  234. }
  235. }
  236. $member = Db::name('store_member')
  237. ->whereIn('vip_level','0,1')
  238. ->where($where)
  239. ->order('id','DESC')
  240. ->field('id,nickname,sex,height,area_id,age,headimg,vip_level,im_id')
  241. ->paginate($page_num,'',['page'=>$page]);
  242. $member= $member->items();
  243. foreach ($member as $k=>$v){
  244. $member[$k]['province_id'] = Db::name('store_area')->where('id',$member[$k]['area_id'])->value('shortname');
  245. }
  246. $this->success('认证用户',$member);
  247. }
  248. /**
  249. * 工作性质
  250. */
  251. public function WorkNature(){
  252. $nature = Db::name('store_work_nature')->where('is_deleted',0)->field('id,name')->select();
  253. $this->success('工作性质',$nature);
  254. }
  255. /*
  256. * 智能匹配
  257. */
  258. public function Intelligent(){
  259. $user_id = $this->check_login();;
  260. $data = input();
  261. $sex = Db::name('store_member')->where('id',$user_id)->value('sex');
  262. if($sex==1) {
  263. $p_sex = 2;
  264. }
  265. else{
  266. $p_sex = 1;
  267. }
  268. switch ($data['income']){
  269. case 1:
  270. $data['income_min'] = 3000;
  271. $data['income_max'] = 6000;
  272. break;
  273. case 2:
  274. $data['income_min'] = 6000;
  275. $data['income_max'] = 10000;
  276. break;
  277. case 3:
  278. $data['income_min'] = 10000;
  279. $data['income_max'] = "不限";
  280. break;
  281. case 4:
  282. $data['income_min'] = '不限';
  283. $data['income_max'] = "不限";
  284. }
  285. $add_data=[
  286. 'age'=>$data['age_min'].'-'.$data['age_max'],
  287. 'education'=>$data['education'],
  288. 'height'=>$data['height_min'].'-'.$data['height_max'],
  289. 'income' => $data['income_min'].'-'.$data['income_max'],
  290. 'nature'=>$data['nature'],
  291. 'area_id'=>$data['area_id'],
  292. ];
  293. Db::name('store_marriage')->insert($add_data);
  294. $where = [];
  295. if($data['age_min']&&$data['age_max']&&$data['nature']&&$data['education']&&$data['height_min']&&$data['height_max']&&$data['income_min']&&$data['income_max']&&$data['area_id']){
  296. $where[] = ['age','between',[$data['age_min'],$data['age_max']]];
  297. if($data['nature'] != '不限')$where[] = ['nature','=',$data['nature']];
  298. if($data['nature'] != '不限')$where[] = ['education','=',$data['education']];
  299. if($data['height_min'] != '不限' && $data['height_max'] != '不限'){
  300. $where[] = ['height','between',[$data['height_min'],$data['height_max']]];
  301. }elseif ($data['height_min'] == '不限' && $data['height_max'] != '不限'){
  302. $where[] = ['height','<',$data['height_max']];
  303. }elseif ($data['height_max'] == '不限' && $data['height_min'] != '不限'){
  304. $where[] = ['height','>',$data['height_min']];
  305. }
  306. if($data['income_min'] != '不限' && $data['income_max'] != '不限'){
  307. $where[] = ['income','between',[$data['income_min'],$data['income_max']]];
  308. }else if($data['income_max'] == '不限'){
  309. $where[] = ['income','>',$data['income_min']];
  310. }
  311. if($data['area_id'] != '不限')$where[] = ['area_id','=',$data['area_id']];
  312. $member = Db::name('store_member')
  313. ->where('sex',$p_sex)
  314. ->where('is_deleted',1)
  315. ->where($where)
  316. ->field('id,nickname,sex,height,province_id,age,headimg')
  317. ->select();
  318. foreach ($member as $k=>$v){
  319. $member[$k]['province_id'] = Db::name('store_area')->where('id',$member[$k]['province_id'])->value('shortname');
  320. }
  321. $this->success('匹配结果',$member);
  322. }
  323. else{
  324. $this->error('筛选信息不能为空');
  325. }
  326. }
  327. /**
  328. * 三区九县
  329. */
  330. public function linyi(){
  331. $area = Db::name('store_area')->where('pid','=',1479)->field('id,name')->select();
  332. $this->success('三区九县',$area);
  333. }
  334. /**
  335. * 举报类型
  336. */
  337. public function report_problem(){
  338. $list = Db::name('store_report_problem')->where('is_deleted',0)->field('id,title')->select();
  339. $this->success('举报类型',$list);
  340. }
  341. /**
  342. * 我要举报uuid举报
  343. */
  344. public function report(){
  345. $mid = $this->check_login();
  346. // $this->check_login()
  347. $data = input();
  348. $r_id = Db::name('store_member')->where('vip_number',$data['uuid'])->value('id');
  349. if(empty($r_id)){
  350. $this->error('填写正确要举报人的会员ID');
  351. }
  352. if(empty($data['type'])){
  353. $this->error('填写举报类型不能为空');
  354. }
  355. $p_name = Db::name('store_report_problem')->where('id',$data['type'])->value('title');
  356. if(empty($data['content'])){
  357. $this->error('填写举报内容不能为空');
  358. }
  359. if(empty($data['r_images'])){
  360. $this->error('填写举报图片不能为空');
  361. }
  362. $insert = [
  363. 'm_id'=>$r_id,
  364. 'r_id'=>$mid,
  365. 'p_id'=>$data['type'],
  366. 'p_name'=>$p_name,
  367. 'r_content'=>$data['content'],
  368. 'r_images'=>$data['r_images'],
  369. 'reject'=>'',
  370. 'status'=>1,
  371. 'is_deleted'=>0,
  372. 'create_at'=>date('Y-m-d H:i:s')
  373. ];
  374. Db::startTrans();
  375. try {
  376. $is_have = Db::name('store_report')->where(array('m_id'=>$r_id,'r_id'=>$mid))->find();
  377. if($is_have){
  378. Db::name('store_report')->where('id',$is_have['id'])->update($insert);
  379. }
  380. else {
  381. Db::name('store_report')->insert($insert);
  382. }
  383. Db::commit();
  384. }catch (Exception $e) {
  385. Db::rollback();
  386. $this->error('举报未成功,重新举报');
  387. }
  388. $this->success('举报成功,等待结果');
  389. }
  390. /**
  391. * 我要举报指定用户举报
  392. */
  393. public function user_report(){
  394. $mid = $this->check_login();
  395. // $this->check_login()
  396. $data = input();
  397. if(empty($data['type'])){
  398. $this->error('填写举报类型不能为空');
  399. }
  400. $p_name = Db::name('store_report_problem')->where('id',$data['type'])->value('title');
  401. if(empty($data['content'])){
  402. $this->error('填写举报内容不能为空');
  403. }
  404. if(empty($data['r_images'])){
  405. $this->error('填写举报图片不能为空');
  406. }
  407. $insert = [
  408. 'm_id'=>$data['r_id'],
  409. 'r_id'=>$mid,
  410. 'p_id'=>$data['type'],
  411. 'p_name'=>$p_name,
  412. 'r_content'=>$data['content'],
  413. 'r_images'=>$data['r_images'],
  414. 'reject'=>'',
  415. 'status'=>1,
  416. 'is_deleted'=>0,
  417. 'create_at'=>date('Y-m-d H:i:s')
  418. ];
  419. Db::startTrans();
  420. try {
  421. $is_have = Db::name('store_report')->where(array('m_id'=>$data['r_id'],'r_id'=>$mid))->find();
  422. if($is_have){
  423. Db::name('store_report')->where('id',$is_have['id'])->update($insert);
  424. }
  425. else {
  426. Db::name('store_report')->insert($insert);
  427. }
  428. Db::commit();
  429. }catch (Exception $e) {
  430. Db::rollback();
  431. $this->error('举报未成功,重新举报');
  432. }
  433. $this->success('举报成功,等待结果');
  434. }
  435. public function banner(){
  436. $list = Db::name('store_banner')->where('is_deleted',0)->field('show_image')->select();
  437. $this->success('轮播图',$list);
  438. }
  439. public function xcxtuisong($uid){
  440. $openid = Db::name('third')->where('user_id',2)->field('openid')->find();
  441. //请求access_token
  442. $getToken = file_get_contents("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=wx4c96fac89070fe7a&secret=36edc36c9ec2fb309fd90c9a9e719560");
  443. //json解析返回数据
  444. $getToken = json_decode($getToken);
  445. //拿到access_token
  446. $token = $getToken ->{'access_token'};
  447. // 获取请求路径
  448. //sprintf=php方法
  449. //推送消息url
  450. $msgUrl = 'https://api.weixin.qq.com/cgi-bin/message/subscribe/send?access_token='.$token;
  451. //订阅消息的模板消息
  452. $msgObj = [
  453. //模板属性
  454. "thing1"=> [
  455. //模板属性值
  456. "value"=> "339208499"
  457. ],
  458. "thing3"=> [
  459. "value"=> "17503008888"
  460. ],
  461. "date2"=> [
  462. "value"=> "120"
  463. ],
  464. ];
  465. //请求的data数据
  466. $msgData = [
  467. 'access_token'=> $token,
  468. 'touser'=> $openid['openid'],
  469. 'template_id'=> '6gBL8zRZ3YKjA7iNXpeS7SBguNKNQM8hmXrHK3VWr9M',
  470. 'data'=> $msgObj
  471. ];
  472. //curl_post自定封装post请求
  473. curl_post($msgUrl,$msgData);
  474. }
  475. /**
  476. * @return void
  477. * 情感咨询
  478. */
  479. public function emotion(){
  480. $mid = $this->check_login();
  481. $problem = input('problem','');
  482. if($problem==''){
  483. $this->error('咨询问题不能为空');
  484. }
  485. $add_data = [
  486. 'm_id'=>$mid,
  487. 'problem'=>$problem,
  488. 'create_time'=>date('Y-m-d H:i:s')
  489. ];
  490. Db::startTrans();
  491. try {
  492. $res = Db::name('store_emotional_counseling')->insertGetId($add_data);
  493. $add_data_new = [
  494. 'e_id'=>$res,
  495. 'type'=>1,
  496. 'answer'=>$problem,
  497. 'create_time'=>date('Y-m-d H:i:s')
  498. ];
  499. Db::name('store_answer_log')->insert($add_data_new);
  500. Db::commit();
  501. }catch (Exception $e){
  502. $this->error('提交失败联系管理人员');
  503. }
  504. $this->success('情感咨询已提交,等待专员回复');
  505. }
  506. /**
  507. * @return void
  508. * 持续回复
  509. */
  510. public function answer(){
  511. $this->check_login();
  512. $eid = input('e_id');
  513. $answer = input('answer');
  514. $add_data_new = [
  515. 'e_id'=>$eid,
  516. 'type'=>1,
  517. 'answer'=>$answer,
  518. 'create_time'=>date('Y-m-d H:i:s')
  519. ];
  520. Db::startTrans();
  521. try {
  522. Db::name('store_answer_log')->insert($add_data_new);
  523. Db::name('store_emotional_counseling')->where('id',$eid)->update(['status'=>1]);
  524. Db::commit();
  525. }catch (Exception $e){
  526. $this->error('发送失败,联系管理人员');
  527. }
  528. $this->success('发送成功,等待专员回复');
  529. }
  530. /**
  531. * @return void
  532. * @throws \think\db\exception\DataNotFoundException
  533. * @throws \think\db\exception\ModelNotFoundException
  534. * @throws \think\exception\DbException
  535. * 问答记录
  536. */
  537. public function answer_log(){
  538. $this->check_login();
  539. $eid = input('e_id');
  540. $list = Db::name('store_answer_log')->where('e_id',$eid)->order('id','asc')->field('type,answer,create_time')->select();
  541. $this->success('问答记录',$list);
  542. }
  543. /**
  544. * @return void
  545. * @throws \think\db\exception\DataNotFoundException
  546. * @throws \think\db\exception\ModelNotFoundException
  547. * @throws \think\exception\DbException
  548. * 情感咨询记录
  549. */
  550. public function emotion_list(){
  551. $mid = $this->check_login();
  552. $list = Db::name('store_emotional_counseling')->where('m_id',$mid)->where('is_deleted','=',0)->field('id,problem,create_time')->select();
  553. $this->success('情感咨询记录',$list);
  554. }
  555. public function delete_emotion(){
  556. $this->check_login();
  557. $eid = input('e_id');
  558. Db::name('store_emotional_counseling')->where('id',$eid)->update(['is_deleted'=>1]);
  559. $this->success('情感咨询记录已删除');
  560. }
  561. /**
  562. * @return void
  563. * @throws Exception
  564. * @throws \think\exception\PDOException
  565. * 基础信息
  566. */
  567. public function member_basic(){
  568. $uid = $this->check_login();
  569. $ceshi = input('type');
  570. $nickname = input('nickname');
  571. $height =input('height');
  572. $weight = input('weight');
  573. $area_id = input('area_id');
  574. $username = input('username');
  575. $sex = input('sex');
  576. $ID_car = input('ID_car');
  577. $age = input('age');
  578. $education = input('education');
  579. $phone = input('phone');
  580. $code = input('code');
  581. $headimg = input('headimg');
  582. if(!$code||!$phone||!$username||!$ID_car||!$age||!$education||!$nickname||!$height||!$weight){
  583. $this->error('参数不能为空');
  584. }
  585. $time = time()-60;
  586. $sms = Db::name('store_sms')->where(['mobile' => $phone, 'event' => 'yzm'])
  587. ->where('createtime','>',$time)
  588. ->order('id', 'DESC')
  589. ->find();
  590. if (!$sms || $sms['code'] != $code) $this->error('短信验证码不正确!');
  591. if(isset($ceshi)){
  592. $data = [
  593. 'nickname'=>$nickname,
  594. 'username'=>$username,
  595. 'sex'=>$sex,
  596. 'ID_car'=>$ID_car,
  597. 'age'=>$age,
  598. 'education'=>$education,
  599. 'height'=>$height,
  600. 'weight'=>$weight,
  601. 'area_id'=>$area_id,
  602. 'phone'=>$phone,
  603. 'headimg'=>$headimg,
  604. 'state'=>0,
  605. 'create_at'=>date('Y-m-d H:i:s')
  606. ];
  607. }
  608. $is_have = Db::name('store_member_basic')->where('mid',$uid)->find();
  609. if($is_have){
  610. Db::name('store_member_basic')->where('id',$is_have['id'])->update($data);
  611. }
  612. else{
  613. $data['mid']=$uid;
  614. Db::name('store_member_basic')->insert($data);
  615. }
  616. $this->success('基础信息提已提交等待审核');
  617. }
  618. /**
  619. * 合作商家列表
  620. */
  621. public function business(){
  622. $page = input('page',1);
  623. $page_num = input('page_num',5);
  624. $list = Db::name('store_business')
  625. ->order('id','DESC')
  626. ->paginate($page_num,'',['page'=>$page]);
  627. $this->success('合作商家列表',$list);
  628. }
  629. /*
  630. * 定时任务
  631. */
  632. public function disable_time(){
  633. $time = time();
  634. $list = Db::name('store_member')->where('vip_level',2)->where('disable_time','<',$time)->select();
  635. foreach ($list as &$v){
  636. Db::name('store_member')->where('id',$v['id'])->update(['vip_level'=>1,'disable_time'=>0]);
  637. }
  638. }
  639. /*
  640. * 会员推荐
  641. */
  642. public function recommend(){
  643. $user_id = 43;
  644. $ids = Db::name('store_recommend')->where('m_id',$user_id)->find();
  645. if(empty($ids['tuijian'])){
  646. $this->error('没有数据');
  647. }
  648. $time_a = time()-$ids['createtime'];
  649. $time_b = 86400*getConfigValue('tuijian');
  650. if($time_a>=$time_b){
  651. $sex = Db::name('store_member')->where('id',$user_id)->value('sex');
  652. if($sex==1) {
  653. $p_sex = 2;
  654. }
  655. else{
  656. $p_sex = 1;
  657. }
  658. $this->save_recommend($user_id,$p_sex);
  659. $ids = Db::name('store_recommend')->where('m_id',$user_id)->find();
  660. }
  661. $u_ids = explode(',',$ids['tuijian']);
  662. $list=[];
  663. foreach ($u_ids as $k=>$v){
  664. $list[$k]= Db::name('store_member')->where('id',$u_ids[$k])->field('id,sex,nickname,headimg,im_id')->select();
  665. }
  666. $this->success('推荐会员',$list);
  667. }
  668. /**
  669. * @Title('推荐会员')
  670. * @param $user_id
  671. * @param $p_sex
  672. * @return void
  673. * @throws Exception
  674. * @throws \think\db\exception\DataNotFoundException
  675. * @throws \think\db\exception\ModelNotFoundException
  676. * @throws \think\exception\DbException
  677. * @throws \think\exception\PDOException
  678. */
  679. public function save_recommend($user_id,$p_sex)
  680. {
  681. $data = Db::name('store_member_appeals')->where('mid', $user_id)->find();
  682. if ($data) {
  683. $education = json_decode(education($data['education']));
  684. $education = implode(',',$education);
  685. $height_a = $data['height']-5;
  686. $height_b = $data['height']+5;
  687. $where[] = ['age', 'between', [$data['age_min'], $data['age_max']]];
  688. if($education != '不限')$where[] = ['education', 'in', $education];
  689. $where[] = ['weight', '<=', $data['weight']+10];
  690. $where[] = ['height', 'between', [$height_a, $height_b]];
  691. $where[] = ['income', '>=', $data['income']-500];
  692. $where[] = ['city_id', '=', $data['city_id']];
  693. $member = Db::name('store_member')
  694. ->where('sex', $p_sex)
  695. ->where('is_deleted', 1)
  696. ->where($where)
  697. ->orderRaw('rand()')
  698. ->limit(3)
  699. ->field('id')
  700. ->select();
  701. $array = [];
  702. foreach ($member as $k => $v) {
  703. $array[$k] = $member[$k]['id'];
  704. }
  705. $tuijian = implode(',', $array);
  706. $is_have = Db::name('store_recommend')->where('m_id', $user_id)->find();
  707. if ($is_have) {
  708. Db::name('store_recommend')->where('m_id', $user_id)->update(['tuijian' => $tuijian, 'createtime' => time()]);
  709. } else {
  710. Db::name('store_recommend')->insert(['m_id' => $user_id, 'tuijian' => $tuijian, 'createtime' => time()]);
  711. }
  712. }
  713. }
  714. public function notice1(){
  715. $user_id = 11366;
  716. $p_sex = 2;
  717. $data = Db::name('store_member_appeals')->where('mid', $user_id)->find();
  718. if ($data) {
  719. $education = json_decode(education($data['education']));
  720. $education = implode(',',$education);
  721. $height_a = $data['height']-5;
  722. $height_b = $data['height']+5;
  723. $where[] = ['age', 'between', [$data['age_min'], $data['age_max']]];
  724. $where[] = ['education', 'in', $education];
  725. $where[] = ['weight', '<=', $data['weight']+10];
  726. $where[] = ['height', 'between', [$height_a, $height_b]];
  727. $where[] = ['income', '>=', $data['income']-500];
  728. $where[] = ['city_id', '=', $data['city_id']];
  729. $member = Db::name('store_member')
  730. ->where('sex', $p_sex)
  731. ->where('is_deleted', 1)
  732. ->where($where)
  733. ->orderRaw('rand()')
  734. ->limit(3)
  735. ->field('id')
  736. ->select();
  737. $array = [];
  738. foreach ($member as $k => $v) {
  739. $array[$k] = $member[$k]['id'];
  740. }
  741. $tuijian = implode(',', $array);
  742. $is_have = Db::name('store_recommend')->where('m_id', $user_id)->find();
  743. if ($is_have) {
  744. Db::name('store_recommend')->where('m_id', $user_id)->update(['tuijian' => $tuijian, 'createtime' => time()]);
  745. } else {
  746. Db::name('store_recommend')->insert(['m_id' => $user_id, 'tuijian' => $tuijian, 'createtime' => time()]);
  747. }
  748. }
  749. }
  750. /**
  751. * @爱情加油站评论功能
  752. */
  753. public function comment(Request $request){
  754. $id = $this->check_login();
  755. if(!$request->ispost())$this->error('请求错误');
  756. if(input('type') == 1){
  757. //父级评论
  758. if(!input('articleid') || !input('content')){
  759. $this->error('参数缺失');
  760. }else{
  761. Db::name('store_article_class')->where('id',input('articleid'))->findOrFail();
  762. Db::startTrans();
  763. try{
  764. $comment = Db::name('store_article_comment')->insertGetId(['uid' => $id, 'articleid' => input('articleid'), 'content' => input('content'),'create_time'=>date('Y-m-d H:i:s')]);
  765. Db::commit();
  766. $this->success('评论成功',$comment);
  767. } catch (Exception $e) {
  768. $this->error($e);
  769. Db::rollback();
  770. }
  771. }
  772. }else if(input('type') == 2){
  773. //子级评论
  774. if(!input('uid') || !input('uid') || !input('articleid') || !input('content')){
  775. $this->error('参数缺失');
  776. }else{
  777. Db::name('store_article_class')->where('id',input('articleid'))->findOrFail();
  778. Db::startTrans();
  779. try{
  780. $comment = Db::name('store_article_comment')->insertGetId(['uid' => input('uid'),'zid' => $id, 'articleid' => input('articleid'), 'content' => input('content'),'create_time'=>date('Y-m-d H:i:s')]);
  781. Db::commit();
  782. $this->success('评论成功',$comment);
  783. } catch (Exception $e) {
  784. $this->error($e);
  785. Db::rollback();
  786. }
  787. }
  788. }
  789. }
  790. /**
  791. * @爱情加油站评论列表
  792. */
  793. public function comment_list(Request $request){
  794. if(!$request->ispost())$this->error('请求错误');
  795. $page_num = input('page_num',5);
  796. $page = input('page',1);
  797. $articleid = input('id');
  798. if(!$articleid)$this->error('参数缺失');
  799. $where = [
  800. 'articleid' => $articleid,
  801. 'status' => 1,
  802. 'audit' => 1
  803. ];
  804. if(input('type') == 1){
  805. $data = Db::name('store_article_comment')->where($where)->where('zid',0)->paginate($page_num,'',['page'=>$page]);;
  806. $this->success('请求成功',$data);
  807. }else if(input('type') == 2){
  808. $uid = input('uid');
  809. if(!$uid)$this->error('参数缺失');
  810. $data = Db::name('store_article_comment')->where($where)->where('zid','<>','0')->where('uid',$uid)->paginate($page_num,'',['page'=>$page]);;
  811. $this->success('请求成功',$data);
  812. }
  813. }
  814. }