Index.php 24 KB

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