Index.php 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\library\Common;
  4. use app\common\model\Config;
  5. use app\common\model\ElectPool;
  6. use app\common\model\SearchHistory;
  7. use app\common\model\User;
  8. use app\common\controller\Api;
  9. use app\common\model\UserWantKnow;
  10. use app\common\model\UserWantKnowRecord;
  11. use think\Db;
  12. use think\facade\Validate;
  13. /**
  14. * @title 首页
  15. * @controller Index
  16. */
  17. class Index extends Api
  18. {
  19. /**
  20. * 创建、编辑互选池
  21. */
  22. public function create_edit_elect_pool(){
  23. $this->check_login();
  24. $data = input();
  25. $pool_id = intval(input('pool_id')); //互选池id(有则修改)
  26. // if (!$data['name'] || !$data['education'] || !$data['province'] || !$data['city'] || !$data['area'] || !$data['birth_start'] || !$data['birth_end'] || !$data['group_number'] || !$data['type'] ||
  27. // !in_array($data['type'],array('1','2')) || !$data['introduction'] || !$data['imgs']){
  28. // $this->error('参数错误');
  29. // }
  30. // if ($data['type']==2){
  31. // if (!$data['password']){
  32. // $this->error('密码为空');
  33. // }
  34. // $data['password'] = md5($data['password']);
  35. // }else{
  36. // $data['password'] = '';
  37. // }
  38. unset($data['pool_id']);
  39. $data['is_audit'] = 1;
  40. $data['education'] = implode(',',$data['education']);
  41. $wx_check_name = $this->wx_check($data['name'],2);
  42. if ($wx_check_name['errcode']=='87014'){
  43. $this->error('含有违规文字');
  44. }
  45. $wx_check = $this->wx_check($data['introduction'],2);
  46. if ($wx_check['errcode']=='87014'){
  47. $this->error('含有违规文字');
  48. }
  49. $result = ElectPool::createElectPool($data,$pool_id);
  50. if ($result['code']){
  51. $this->success($result['msg'],$result['data']);
  52. }else{
  53. $this->error($result['msg']);
  54. }
  55. }
  56. /**
  57. * 获取置顶推荐用户列表
  58. */
  59. public function top_user(){
  60. $city = input('city'); //市
  61. $result = User::topUser($city);
  62. $this->success($result['msg'],$result['data']);
  63. }
  64. /**
  65. * 首页推荐嘉宾列表
  66. */
  67. public function recommended_user(){
  68. $city = input('city'); //市
  69. $result = User::recommendedUser($city);
  70. $this->success($result['msg'],$result['data']);
  71. }
  72. /**
  73. * 获取单身广场数据
  74. */
  75. public function single_user(){
  76. $this->check_login();
  77. $city = input('city'); //市
  78. $keywords = input('keywords'); //关键词
  79. $Nowpage = input('page',1);
  80. $limits = input("limit",10);
  81. $result = User::singleUser($city,$keywords,$Nowpage,$limits);
  82. $this->success($result['msg'],$result['data']);
  83. }
  84. /**
  85. * 获取互选池列表
  86. */
  87. public function pool_list(){
  88. $Nowpage = input('page') ? input('page') : 1;
  89. $limits = input("limit") ? input("limit") : 10;
  90. $city = input('city'); //市
  91. $keywords = input('keywords'); //关键词
  92. $result = ElectPool::poolList($city,$keywords,$Nowpage,$limits);
  93. //插入搜索记录
  94. if ($keywords)
  95. SearchHistory::setKeyword($keywords);
  96. $this->success($result['msg'],$result['data']);
  97. }
  98. /**
  99. * 互选池列表
  100. */
  101. public function my_create_join_pool(){
  102. $this->check_login();
  103. $Nowpage = input('page') ? input('page') : 1;
  104. $limits = input("limit") ? input("limit") : 10;
  105. $city = input('city'); //市
  106. $result = ElectPool::myCreateJoinPool($city,$Nowpage,$limits);
  107. $this->success($result['msg'],$result['data']);
  108. }
  109. /**
  110. * 获取互选池资料
  111. */
  112. public function pool_detail(){
  113. $pool_id = intval(input('pool_id')); //互选池id
  114. if (!$pool_id) $this->error('互选池ID为空!');
  115. $result = ElectPool::poolDetail($pool_id);
  116. if ($result['code']){
  117. $this->success($result['msg'],$result['data']);
  118. }else{
  119. $this->error($result['msg']);
  120. }
  121. }
  122. /**
  123. * 进入互选池
  124. */
  125. public function into_pool(){
  126. $this->check_login();
  127. $pool_id = intval(input('pool_id')); //互选池id
  128. $password = intval(input('password')); //密码
  129. if (!$pool_id) $this->error('互选池ID为空!');
  130. $result = ElectPool::intoPool($pool_id,$password);
  131. if ($result['code']){
  132. $this->success($result['msg'],$result['data']);
  133. }else{
  134. $this->error($result['msg']);
  135. }
  136. }
  137. /**
  138. * 获取互选池异性用户列表
  139. */
  140. public function pool_user_list(){
  141. $this->check_login();
  142. $pool_id = intval(input('pool_id')); //互选池id
  143. if (!$pool_id) $this->error('互选池ID为空!');
  144. $Nowpage = input('page') ? input('page') : 1;
  145. $limits = input("limit") ? input("limit") : 10;
  146. $result = ElectPool::poolUserList($pool_id,$Nowpage,$limits);
  147. if ($result['code']){
  148. $this->success($result['msg'],$result['data']);
  149. }else{
  150. $this->error($result['msg']);
  151. }
  152. }
  153. /**
  154. * 退出互选池
  155. */
  156. public function exit_pool(){
  157. $this->check_login();
  158. $pool_id = intval(input('pool_id')); //互选池id
  159. if (!$pool_id) $this->error('互选池ID为空!');
  160. $result = ElectPool::exitPool($pool_id);
  161. if ($result['code']){
  162. $this->success($result['msg'],$result['data']);
  163. }else{
  164. $this->error($result['msg']);
  165. }
  166. }
  167. /**
  168. * 查看用户资料
  169. */
  170. public function sel_user(){
  171. //$this->check_login();
  172. $user_id = intval(input('user_id')); //用户ID
  173. if (!$user_id) $this->error('用户ID为空!');
  174. $result = ElectPool::SelUser($user_id);
  175. if ($result['code']){
  176. $this->success($result['msg'],$result['data']);
  177. }else{
  178. $this->error($result['msg']);
  179. }
  180. }
  181. /**
  182. * @title 查看申请
  183. * @desc 查看申请
  184. * @url /api/Index/sel_apply
  185. * @method POST
  186. * @tag 基础
  187. * @header
  188. * @param name:user_id type:int require:1 desc:查看的用户ID
  189. * @return name:type type:int desc:1:申请者2:收到者 leave_message:留言 state:
  190. * @return name:info@id type:string desc:申请的主键ID
  191. * @return name:info@leave_message type:string desc:留言
  192. * @return name:info@state type:int desc:状态1:申请中2:同意3:不通过4:不合适5:终止申请
  193. * @return name:info@list@id type:int desc:记录ID
  194. * @return name:info@list@content type:string desc:内容
  195. * @return name:info@list@create_at type:date desc:时间
  196. */
  197. public function sel_apply(){
  198. $this->check_login();
  199. $user_id = intval(input('user_id')); //用户ID
  200. if (!$user_id) $this->error('用户ID为空!');
  201. $result = ElectPool::SelApply($user_id);
  202. if ($result['code']){
  203. $this->success($result['msg'],$result['data']);
  204. }else{
  205. $this->error($result['msg']);
  206. }
  207. }
  208. /**
  209. * @title 终止申请
  210. * @desc 终止申请
  211. * @url /api/Index/termination_apply
  212. * @method POST
  213. * @tag 基础
  214. * @header
  215. * @param name:id type:int require:1 desc:申请的主键ID
  216. */
  217. public function termination_apply(){
  218. $this->check_login();
  219. $id = intval(input('id')); //申请ID
  220. if (!$id) $this->error('id为空!');
  221. $result = ElectPool::TerminationApply($id);
  222. if ($result['code']){
  223. $this->success($result['msg'],$result['data']);
  224. }else{
  225. $this->error($result['msg']);
  226. }
  227. }
  228. /**
  229. * @title 同意申请
  230. * @desc 同意申请
  231. * @url /api/Index/agree_apply
  232. * @method POST
  233. * @tag 基础
  234. * @header
  235. * @param name:id type:int require:1 desc:申请的主键ID
  236. */
  237. public function agree_apply(){
  238. $this->check_login();
  239. $id = intval(input('id')); //申请ID
  240. if (!$id) $this->error('id为空!');
  241. $result = ElectPool::AgreeApply($id);
  242. if ($result['code']){
  243. $this->success($result['msg'],$result['data']);
  244. }else{
  245. $this->error($result['msg']);
  246. }
  247. }
  248. /**
  249. * @title 拒绝申请
  250. * @desc 拒绝申请
  251. * @url /api/Index/refuse_apply
  252. * @method POST
  253. * @tag 基础
  254. * @header
  255. * @param name:id type:int require:1 desc:申请的主键ID
  256. * @param name:refused_why type:string require:1 desc:拒绝理由
  257. */
  258. public function refuse_apply(){
  259. $this->check_login();
  260. $id = intval(input('id')); //申请ID
  261. if (!$id) $this->error('id为空!');
  262. $refused_why = input('refused_why'); //拒绝理由
  263. if (!$refused_why) $this->error('拒绝理由为空!');
  264. $result = ElectPool::RefuseApply($id,$refused_why);
  265. if ($result['code']){
  266. $this->success($result['msg'],$result['data']);
  267. }else{
  268. $this->error($result['msg']);
  269. }
  270. }
  271. /**
  272. * @title 屏蔽用户
  273. * @desc 屏蔽用户
  274. * @url /api/Index/shielding_know_user
  275. * @method POST
  276. * @tag 基础
  277. * @header
  278. * @param name:to_user_id type:int require:1 desc:被屏蔽的用户ID
  279. * @param name:switch type:int require:1 desc:1:屏蔽2:取消屏蔽
  280. */
  281. public function shielding_know_user(){
  282. $this->check_login();
  283. $to_user_id = input('to_user_id'); //被屏蔽的用户ID
  284. if (!$to_user_id) $this->error('参数错误');
  285. $switch = intval(input('switch',1)); //1:屏蔽2:取消屏蔽
  286. $result = ElectPool::shieldingKnowUser($to_user_id,$switch);
  287. if ($result['code']){
  288. $this->success($result['msg']);
  289. }else{
  290. $this->error($result['msg']);
  291. }
  292. }
  293. /**
  294. * @title 想认识
  295. * @desc 想认识
  296. * @url /api/Index/want_know
  297. * @method POST
  298. * @tag 基础
  299. * @header
  300. * @param name:user_id type:int require:1 desc:想认识的用户id
  301. * @param name:pool_id type:string require:0 desc:互选池ID
  302. * @param name:leave_message type:string require:0 desc:留言
  303. */
  304. public function want_know(){
  305. $this->check_login();
  306. $user_id = intval(input('user_id')); //用户id
  307. if (!$user_id) $this->error('用户ID为空!');
  308. $pool_id = intval(input('pool_id')); //互选池id
  309. $leave_message = input('leave_message'); //留言
  310. // if (!$pool_id) $this->error('互选池ID为空!');
  311. $result = ElectPool::wantKnow($user_id,$pool_id,$leave_message);
  312. if ($result['code']){
  313. $this->success($result['msg']);
  314. }else{
  315. $this->error($result['msg']);
  316. }
  317. }
  318. /**
  319. * @title 不合适
  320. * @desc 不合适
  321. * @url /api/Index/dont_fit
  322. * @method POST
  323. * @tag 基础
  324. * @header
  325. * @param name:user_id type:int require:1 desc:不合适的用户id
  326. */
  327. public function dont_fit(){
  328. $this->check_login();
  329. $user_id = intval(input('user_id')); //用户id
  330. if (!$user_id) $this->error('用户ID为空!');
  331. $result = ElectPool::DontFit($user_id);
  332. if ($result['code']){
  333. $this->success($result['msg']);
  334. }else{
  335. $this->error($result['msg']);
  336. }
  337. }
  338. /**
  339. * @title 星标聊天开关
  340. * @desc 星标聊天开关
  341. * @url /api/Index/set_star
  342. * @method POST
  343. * @tag 基础
  344. * @header
  345. * @param name:user_id type:int require:1 desc:用户id
  346. * @param name:switch type:int require:1 desc:1:开2:关
  347. */
  348. public function set_star(){
  349. $this->check_login();
  350. $user_id = intval(input('user_id')); //用户id
  351. if (!$user_id) $this->error('用户ID为空!');
  352. $switch = intval(input('switch',1)); //1:开 2:关
  353. $result = ElectPool::SetStar($user_id,$switch);
  354. if ($result['code']){
  355. $this->success($result['msg']);
  356. }else{
  357. $this->error($result['msg']);
  358. }
  359. }
  360. /**
  361. * 积分获取联系方式
  362. */
  363. public function integral_contact(){
  364. $this->check_login();
  365. $user_id = intval(input('user_id')); //用户id
  366. if (!$user_id) $this->error('用户ID为空!');
  367. $pool_id = intval(input('pool_id')); //互选池id
  368. // if (!$pool_id) $this->error('互选池ID为空!');
  369. $result = ElectPool::integralContact($user_id,$pool_id);
  370. if ($result['code']){
  371. $this->success($result['msg']);
  372. }else{
  373. $this->error($result['msg']);
  374. }
  375. }
  376. /**
  377. * 群主解散互选池
  378. */
  379. public function dissolution_pool(){
  380. $this->check_login();
  381. $pool_id = intval(input('pool_id')); //互选池ID
  382. if (!$pool_id) $this->error('互选池ID为空!');
  383. $result = ElectPool::dissolutionPool($pool_id);
  384. if ($result['code']){
  385. $this->success($result['msg']);
  386. }else{
  387. $this->error($result['msg']);
  388. }
  389. }
  390. /**
  391. * 群主移出互选池用户
  392. */
  393. public function remove_user(){
  394. $this->check_login();
  395. $pool_id = intval(input('pool_id')); //互选池ID
  396. if (!$pool_id) $this->error('互选池ID为空!');
  397. $user_id = intval(input('user_id')); //用户ID
  398. if (!$user_id) $this->error('用户ID为空!');
  399. $result = ElectPool::removeUser($pool_id,$user_id);
  400. if ($result['code']){
  401. $this->success($result['msg']);
  402. }else{
  403. $this->error($result['msg']);
  404. }
  405. }
  406. /**
  407. * 分享获得积分
  408. */
  409. public function share(){
  410. $this->check_login();
  411. $type = intval(input('type')); //1:分享小程序 2:分享互选池 3:分享个人资料 4:分享其他人资料
  412. $link_id = input('link_id'); //关联的ID
  413. $result = ElectPool::share($type,$link_id);
  414. if ($result['code']){
  415. $this->success($result['msg'],$result['data']);
  416. }else{
  417. $this->error($result['msg']);
  418. }
  419. }
  420. /**
  421. * @title 举报用户
  422. * @desc 举报用户
  423. * @url /api/Index/report_user
  424. * @method POST
  425. * @tag 基础
  426. * @header
  427. * @param name:pool_id type:int require:0 desc:互选池ID
  428. * @param name:user_id type:int require:1 desc:被举报的用户ID
  429. * @param name:item_type type:string require:1 desc:类型
  430. * @param name:content type:string require:1 desc:内容
  431. * @param name:imgs type:array require:1 desc:图片凭证数组
  432. */
  433. public function report_user(){
  434. $this->check_login();
  435. $pool_id = intval(input('pool_id')); //互选池ID
  436. // if (!$pool_id) $this->error('互选池ID为空!');
  437. $user_id = intval(input('user_id')); //用户ID
  438. if (!$user_id) $this->error('用户ID为空!');
  439. $item_type = input('item_type'); //类型
  440. if (!$item_type) $this->error('类型为空!');
  441. $content = input('content'); //内容
  442. if (!$content) $this->error('内容为空!');
  443. $imgs = input('imgs'); //凭证图片
  444. $result = ElectPool::reportUser($pool_id,$user_id,$item_type,$content,$imgs);
  445. if ($result['code']){
  446. $this->success($result['msg']);
  447. }else{
  448. $this->error($result['msg']);
  449. }
  450. }
  451. /**
  452. * 特权过期脚本
  453. */
  454. public function privilege_overdue(){
  455. User::privilegeOverdue();
  456. }
  457. /**
  458. * 每周五24后收藏卡清空
  459. */
  460. public function collection_empty(){
  461. User::collectionEmpty();
  462. }
  463. /**
  464. * 判断好友申请七天是否过期
  465. */
  466. public function apply_overdue(){
  467. User::applyOverdue();
  468. }
  469. /**
  470. * 判断禁用时间是否到期
  471. */
  472. public function disable_overdue(){
  473. User::disableOverdue();
  474. }
  475. /**
  476. * 晚上八点推荐单身广场
  477. */
  478. public function recommended(){
  479. User::recommended();
  480. }
  481. /**
  482. * 公众号推送消息
  483. */
  484. public function sendTemplateMsg(){
  485. $appid = Config::get_values('wechat_appid');
  486. $appsecret = Config::get_values('wechat_appsecret');
  487. $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=' . $appid . '&secret=' . $appsecret;
  488. $res = json_decode(file_get_contents($url),true);
  489. $access_token = $res['access_token'];
  490. //请求url
  491. // $url = 'https://api.weixin.qq.com/cgi-bin/message/subscribe/send?access_token='.$access_token;
  492. $url='https://api.weixin.qq.com/cgi-bin/message/wxopen/template/uniform_send?access_token='.$access_token;
  493. // $arr = array(
  494. // 'touser'=>"oo7E85LrD0ovt7hbz4sZGrf-_flA",
  495. // 'template_id'=>"j5yotQv2l58Bk3rfVPt9J4HEAd5L8NjKYv2Is6S3rE4",
  496. // 'url'=>"http://www.baidu.com",
  497. // 'data'=>array(
  498. // 'first'=>array('value'=>'申请成功通知','color'=>"#173177"),
  499. // 'keyword1'=>array('value'=>'互选猫','color'=>"#173177"),
  500. // 'keyword2'=>array('value'=>date('Y-m-d H:i:s'),'color'=>"#173177"),
  501. // 'remark'=>array('value'=>'备注','color'=>"#173177"),
  502. // )
  503. //
  504. // );
  505. $arr=[
  506. 'touser'=>"oo7E85LrD0ovt7hbz4sZGrf-_flA",
  507. 'mp_template_msg'=>[
  508. "appid"=>"wxad3ed96c8ce52359",
  509. "template_id"=>"j5yotQv2l58Bk3rfVPt9J4HEAd5L8NjKYv2Is6S3rE4",
  510. "url"=>"http://www.baidu.com",
  511. 'miniprogram'=>[
  512. "appid"=>Config::get_values('wechat_appid')
  513. ],
  514. 'data'=>[
  515. 'first'=>[
  516. "value"=>'申请成功通知',
  517. "color"=>"#173177"
  518. ],
  519. 'keyword1'=>[
  520. "value"=>'互选猫',
  521. "color"=>"#173177"
  522. ],
  523. 'keyword2'=>[
  524. "value"=>date('Y-m-d H:i:s'),
  525. "color"=>"#173177"
  526. ],
  527. 'remark'=>[
  528. "value"=>'备注',
  529. "color"=>"#173177"
  530. ]
  531. ]
  532. ],
  533. ];
  534. //将数组->json
  535. //汉字不转义
  536. $postJson = json_encode($arr,JSON_UNESCAPED_UNICODE) ;
  537. $res = self::curlPost($url,$postJson);
  538. print_r($res);
  539. }
  540. /**
  541. * 订阅消息发送
  542. */
  543. public function sendMessage(){
  544. $appid = Config::get_values('wechat_appid');
  545. $appsecret = Config::get_values('wechat_appsecret');
  546. $touser = 'oo7E85AVzyBul7w_8vh6vkfExrIY';
  547. $template_id = 'q_wRBSYSOCG037hNgcRXT6WPy-jM8HtqXla2i6NIrsc';
  548. $page = '/pages/my/index';
  549. $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=' . $appid . '&secret=' . $appsecret;
  550. $res = json_decode(file_get_contents($url),true);
  551. $access_token = $res['access_token'] ;
  552. //请求url
  553. $url = 'https://api.weixin.qq.com/cgi-bin/message/subscribe/send?access_token=' . $access_token ;
  554. //发送内容
  555. $data = [] ;
  556. //接收者(用户)的 openid
  557. $data['touser'] = $touser;
  558. $data['scene'] = rand(1,9);
  559. //所需下发的订阅模板id
  560. $data['template_id'] = $template_id ;
  561. //点击模板卡片后的跳转页面,仅限本小程序内的页面。支持带参数,(示例index?foo=bar)。该字段不填则模板无跳转。
  562. $data['page'] = $page ;
  563. //模板内容,格式形如 { "key1": { "value": any }, "key2": { "value": any } }
  564. $data['data'] = [
  565. "name1"=>[
  566. 'value'=>'张三'
  567. ],
  568. "date2"=>[
  569. 'value' => date("Y-m-d H:i:s")
  570. ],
  571. "thing3"=>[
  572. 'value' => '通知'
  573. ],
  574. ];
  575. //跳转小程序类型:developer为开发版;trial为体验版;formal为正式版;默认为正式版
  576. $data['miniprogram_state'] = 'formal' ;
  577. print_r(self::curlPost($url,json_encode($data))) ;
  578. }
  579. //发送post请求
  580. static function curlPost($url,$data)
  581. {
  582. $ch = curl_init();
  583. $params[CURLOPT_URL] = $url; //请求url地址
  584. $params[CURLOPT_HEADER] = FALSE; //是否返回响应头信息
  585. $params[CURLOPT_SSL_VERIFYPEER] = false;
  586. $params[CURLOPT_SSL_VERIFYHOST] = false;
  587. $params[CURLOPT_RETURNTRANSFER] = true; //是否将结果返回
  588. $params[CURLOPT_POST] = true;
  589. $params[CURLOPT_POSTFIELDS] = $data;
  590. curl_setopt_array($ch, $params); //传入curl参数
  591. $content = curl_exec($ch); //执行
  592. curl_close($ch); //关闭连接
  593. return $content;
  594. }
  595. /**
  596. * 环信注册
  597. */
  598. function huanxin_zhuce(){
  599. $param = array (
  600. "username" => 'ceshi',
  601. "password" => '88888888',
  602. "nickname" => '测试'
  603. );
  604. // $url = "https://a1.easemob.com/".huanxin_get_org_name()."/".huanxin_get_app_name()."/users";
  605. $url = "https://a1.easemob.com/1101210401193729/demo/users";
  606. $res = self::huanxin_curl_request($url, json_encode($param));
  607. $tokenResult = json_decode($res, true);
  608. print_r($tokenResult);die;
  609. $tokenResult["password"]=$param["password"];
  610. return $tokenResult;
  611. $huanxin_uuid = $tokenResult["entities"][0]["uuid"];
  612. $huanxin_username = $tokenResult["entities"][0]["username"];
  613. $huanxin_password=$param["password"];
  614. if(!($huanxin_uuid&&$huanxin_username)){
  615. $this->ajaxReturn(array("sta"=>2,"msg"=>"注册失败,环信接口异常"));
  616. }
  617. }
  618. static function huanxin_curl_request($url, $body, $header = array(), $method = "POST") {
  619. array_push ( $header, 'Accept:application/json' );
  620. array_push ( $header, 'Content-Type:application/json' );
  621. $ch = curl_init ();
  622. curl_setopt ( $ch, CURLOPT_CONNECTTIMEOUT, 60 );
  623. curl_setopt ( $ch, CURLOPT_URL, $url );
  624. curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );
  625. // curl_setopt($ch, $method, 1);
  626. switch (strtoupper($method)) {
  627. case "GET" :
  628. curl_setopt ( $ch, CURLOPT_HTTPGET, true );
  629. break;
  630. case "POST" :
  631. curl_setopt ( $ch, CURLOPT_POST, true );
  632. break;
  633. case "PUT" :
  634. curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, "PUT" );
  635. break;
  636. case "DELETE" :
  637. curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, "DELETE" );
  638. break;
  639. }
  640. curl_setopt ( $ch, CURLOPT_USERAGENT, 'SSTS Browser/1.0' );
  641. curl_setopt ( $ch, CURLOPT_ENCODING, 'gzip' );
  642. curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
  643. curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, 2 );
  644. if (isset ( $body {3} ) > 0) {
  645. curl_setopt ( $ch, CURLOPT_POSTFIELDS, $body );
  646. }
  647. if (count ( $header ) > 0) {
  648. curl_setopt ( $ch, CURLOPT_HTTPHEADER, $header );
  649. }
  650. $ret = curl_exec ( $ch );
  651. $err = curl_error ( $ch );
  652. curl_close ( $ch );
  653. if ($err) {
  654. return $err;
  655. }
  656. return $ret;
  657. }
  658. public function zhuce(){
  659. // $list = Db::name('UserWantKnow')
  660. // ->where('state',2)
  661. // ->group('to_user_id')
  662. // ->select();
  663. // foreach ($list as &$v){
  664. // //注册环信
  665. // $nickname = Db::name('User')->where('id',$v['to_user_id'])->value('nickname');
  666. // Common::huanxin_zhuce('huxuanmao-'.$v['to_user_id'],$nickname);
  667. // }
  668. // print_r($list);die;
  669. $list2 = Db::name('UserWantKnow')->where('state',2)->select();
  670. foreach ($list2 as &$v){
  671. Common::add_friend('huxuanmao-'.$v['user_id'],'huxuanmao-'.$v['to_user_id']);
  672. }
  673. //注册环信
  674. //Common::huanxin_zhuce('huxuanmao-2410','苹果籽');
  675. }
  676. public function test(){
  677. $user_id = input('user_id');
  678. $to_user_id = input('to_user_id');
  679. $data['user_id'] = $user_id;
  680. $data['to_user_id'] = $to_user_id;
  681. $data['pool_id'] = 0;
  682. $data['leave_message'] = '认识你';
  683. $data['integral'] = '0';
  684. $knowid = UserWantKnow::create($data);
  685. //记录
  686. UserWantKnowRecord::create(
  687. [
  688. 'know_id'=>$knowid['id'],
  689. 'user_id'=>$user_id,
  690. 'content'=>'发出申请',
  691. 'sort'=>1
  692. ]
  693. );
  694. UserWantKnowRecord::create(
  695. [
  696. 'know_id'=>$knowid['id'],
  697. 'user_id'=>$user_id,
  698. 'content'=>'等待对方查看',
  699. 'sort'=>2
  700. ]
  701. );
  702. UserWantKnowRecord::create(
  703. [
  704. 'know_id'=>$knowid['id'],
  705. 'user_id'=>$to_user_id,
  706. 'content'=>'收到申请',
  707. 'sort'=>1
  708. ]
  709. );
  710. echo 'success';
  711. }
  712. }