Index.php 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\model\Article;
  4. use app\common\model\Banner;
  5. use app\common\model\Config;
  6. use app\common\model\ElectPool;
  7. use app\common\model\SearchHistory;
  8. use app\common\model\User;
  9. use app\common\controller\Api;
  10. use app\common\model\UserWantKnow;
  11. use app\common\model\UserWantKnowRecord;
  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_pay
  297. * @method POST
  298. * @tag 基础
  299. * @header
  300. * @param name:user_id type:int require:1 desc:想认识的用户id
  301. */
  302. public function want_know_pay(){
  303. $this->check_login();
  304. $user_id = intval(input('user_id')); //用户id
  305. if (!$user_id) $this->error('用户ID为空!');
  306. // if (!$pool_id) $this->error('互选池ID为空!');
  307. $result = ElectPool::wantKnowPay($user_id);
  308. if ($result['code']){
  309. $this->success($result['msg']);
  310. }else{
  311. $this->error($result['msg']);
  312. }
  313. }
  314. /**
  315. * @title 想认识
  316. * @desc 想认识
  317. * @url /api/Index/want_know
  318. * @method POST
  319. * @tag 基础
  320. * @header
  321. * @param name:user_id type:int require:1 desc:想认识的用户id
  322. * @param name:pool_id type:string require:0 desc:互选池ID
  323. // * @param name:leave_message type:string require:0 desc:留言
  324. */
  325. public function want_know(){
  326. $this->check_login();
  327. $user_id = intval(input('user_id')); //用户id
  328. if (!$user_id) $this->error('用户ID为空!');
  329. $pool_id = intval(input('pool_id')); //互选池id
  330. $leave_message = input('leave_message'); //留言
  331. // if (!$pool_id) $this->error('互选池ID为空!');
  332. $result = ElectPool::wantKnow($user_id,$pool_id,$leave_message);
  333. if ($result['code']){
  334. $this->success($result['msg']);
  335. }else{
  336. $this->error($result['msg']);
  337. }
  338. }
  339. //付费查看提交
  340. public function pay_check(){
  341. $this->check_login();
  342. $user_id = intval(input('user_id')); //用户ID
  343. if (!$user_id) $this->error('用户ID为空!');
  344. $result = ElectPool::payCheck($user_id);
  345. if ($result['code']){
  346. $this->success($result['msg'],$result['data']);
  347. }else{
  348. $this->error($result['msg']);
  349. }
  350. }
  351. /**
  352. * @title 不合适
  353. * @desc 不合适
  354. * @url /api/Index/dont_fit
  355. * @method POST
  356. * @tag 基础
  357. * @header
  358. * @param name:user_id type:int require:1 desc:不合适的用户id
  359. */
  360. public function dont_fit(){
  361. $this->check_login();
  362. $user_id = intval(input('user_id')); //用户id
  363. if (!$user_id) $this->error('用户ID为空!');
  364. $result = ElectPool::DontFit($user_id);
  365. if ($result['code']){
  366. $this->success($result['msg']);
  367. }else{
  368. $this->error($result['msg']);
  369. }
  370. }
  371. /**
  372. * @title 星标聊天开关
  373. * @desc 星标聊天开关
  374. * @url /api/Index/set_star
  375. * @method POST
  376. * @tag 基础
  377. * @header
  378. * @param name:user_id type:int require:1 desc:用户id
  379. * @param name:switch type:int require:1 desc:1:开2:关
  380. */
  381. public function set_star(){
  382. $this->check_login();
  383. $user_id = intval(input('user_id')); //用户id
  384. if (!$user_id) $this->error('用户ID为空!');
  385. $switch = intval(input('switch',1)); //1:开 2:关
  386. $result = ElectPool::SetStar($user_id,$switch);
  387. if ($result['code']){
  388. $this->success($result['msg']);
  389. }else{
  390. $this->error($result['msg']);
  391. }
  392. }
  393. /**
  394. * 积分获取联系方式
  395. */
  396. public function integral_contact(){
  397. $this->check_login();
  398. $user_id = intval(input('user_id')); //用户id
  399. if (!$user_id) $this->error('用户ID为空!');
  400. $pool_id = intval(input('pool_id')); //互选池id
  401. // if (!$pool_id) $this->error('互选池ID为空!');
  402. $result = ElectPool::integralContact($user_id,$pool_id);
  403. if ($result['code']){
  404. $this->success($result['msg']);
  405. }else{
  406. $this->error($result['msg']);
  407. }
  408. }
  409. /**
  410. * 群主解散互选池
  411. */
  412. public function dissolution_pool(){
  413. $this->check_login();
  414. $pool_id = intval(input('pool_id')); //互选池ID
  415. if (!$pool_id) $this->error('互选池ID为空!');
  416. $result = ElectPool::dissolutionPool($pool_id);
  417. if ($result['code']){
  418. $this->success($result['msg']);
  419. }else{
  420. $this->error($result['msg']);
  421. }
  422. }
  423. /**
  424. * 群主移出互选池用户
  425. */
  426. public function remove_user(){
  427. $this->check_login();
  428. $pool_id = intval(input('pool_id')); //互选池ID
  429. if (!$pool_id) $this->error('互选池ID为空!');
  430. $user_id = intval(input('user_id')); //用户ID
  431. if (!$user_id) $this->error('用户ID为空!');
  432. $result = ElectPool::removeUser($pool_id,$user_id);
  433. if ($result['code']){
  434. $this->success($result['msg']);
  435. }else{
  436. $this->error($result['msg']);
  437. }
  438. }
  439. /**
  440. * 分享获得积分
  441. */
  442. public function share(){
  443. $this->check_login();
  444. $type = intval(input('type')); //1:分享小程序 2:分享互选池 3:分享个人资料 4:分享其他人资料
  445. $link_id = input('link_id'); //关联的ID
  446. $result = ElectPool::share($type,$link_id);
  447. if ($result['code']){
  448. $this->success($result['msg'],$result['data']);
  449. }else{
  450. $this->error($result['msg']);
  451. }
  452. }
  453. /**
  454. * @title 举报用户
  455. * @desc 举报用户
  456. * @url /api/Index/report_user
  457. * @method POST
  458. * @tag 基础
  459. * @header
  460. * @param name:pool_id type:int require:0 desc:互选池ID
  461. * @param name:user_id type:int require:1 desc:被举报的用户ID
  462. * @param name:item_type type:string require:1 desc:类型
  463. * @param name:content type:string require:1 desc:内容
  464. * @param name:imgs type:array require:1 desc:图片凭证数组
  465. */
  466. public function report_user(){
  467. $this->check_login();
  468. $pool_id = intval(input('pool_id')); //互选池ID
  469. // if (!$pool_id) $this->error('互选池ID为空!');
  470. $user_id = intval(input('user_id')); //用户ID
  471. if (!$user_id) $this->error('用户ID为空!');
  472. $item_type = input('item_type'); //类型
  473. if (!$item_type) $this->error('类型为空!');
  474. $content = input('content'); //内容
  475. if (!$content) $this->error('内容为空!');
  476. $imgs = input('imgs'); //凭证图片
  477. $result = ElectPool::reportUser($pool_id,$user_id,$item_type,$content,$imgs);
  478. if ($result['code']){
  479. $this->success($result['msg']);
  480. }else{
  481. $this->error($result['msg']);
  482. }
  483. }
  484. /**
  485. * @title banner列表
  486. * @desc banner列表
  487. * @url /api/Index/banner_list
  488. * @method POST
  489. * @tag 基础
  490. * @header
  491. */
  492. public function banner_list(){
  493. $result = Banner::BannerList();
  494. if ($result['code']){
  495. $this->success($result['msg'],$result['data']);
  496. }else{
  497. $this->error($result['msg']);
  498. }
  499. }
  500. /**
  501. * @title 文章列表
  502. * @desc 文章列表
  503. * @url /api/Index/article_list
  504. * @method POST
  505. * @tag 基础
  506. * @header
  507. */
  508. public function article_list(){
  509. $result = Article::articleList();
  510. if ($result['code']){
  511. $this->success($result['msg'],$result['data']);
  512. }else{
  513. $this->error($result['msg']);
  514. }
  515. }
  516. /**
  517. * 特权过期脚本
  518. */
  519. public function privilege_overdue(){
  520. User::privilegeOverdue();
  521. }
  522. /**
  523. * 每周五24后收藏卡清空
  524. */
  525. public function collection_empty(){
  526. User::collectionEmpty();
  527. }
  528. /**
  529. * 判断好友申请七天是否过期
  530. */
  531. public function apply_overdue(){
  532. User::applyOverdue();
  533. }
  534. /**
  535. * 判断禁用时间是否到期
  536. */
  537. public function disable_overdue(){
  538. User::disableOverdue();
  539. }
  540. /**
  541. * 晚上八点推荐单身广场
  542. */
  543. public function recommended(){
  544. User::recommended();
  545. }
  546. /**
  547. * 公众号推送消息
  548. */
  549. public function sendTemplateMsg(){
  550. $appid = Config::get_values('wechat_appid');
  551. $appsecret = Config::get_values('wechat_appsecret');
  552. $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=' . $appid . '&secret=' . $appsecret;
  553. $res = json_decode(file_get_contents($url),true);
  554. $access_token = $res['access_token'];
  555. //请求url
  556. // $url = 'https://api.weixin.qq.com/cgi-bin/message/subscribe/send?access_token='.$access_token;
  557. $url='https://api.weixin.qq.com/cgi-bin/message/wxopen/template/uniform_send?access_token='.$access_token;
  558. // $arr = array(
  559. // 'touser'=>"oo7E85LrD0ovt7hbz4sZGrf-_flA",
  560. // 'template_id'=>"j5yotQv2l58Bk3rfVPt9J4HEAd5L8NjKYv2Is6S3rE4",
  561. // 'url'=>"http://www.baidu.com",
  562. // 'data'=>array(
  563. // 'first'=>array('value'=>'申请成功通知','color'=>"#173177"),
  564. // 'keyword1'=>array('value'=>'互选猫','color'=>"#173177"),
  565. // 'keyword2'=>array('value'=>date('Y-m-d H:i:s'),'color'=>"#173177"),
  566. // 'remark'=>array('value'=>'备注','color'=>"#173177"),
  567. // )
  568. //
  569. // );
  570. $arr=[
  571. 'touser'=>"oo7E85LrD0ovt7hbz4sZGrf-_flA",
  572. 'mp_template_msg'=>[
  573. "appid"=>"wxad3ed96c8ce52359",
  574. "template_id"=>"j5yotQv2l58Bk3rfVPt9J4HEAd5L8NjKYv2Is6S3rE4",
  575. "url"=>"http://www.baidu.com",
  576. 'miniprogram'=>[
  577. "appid"=>Config::get_values('wechat_appid')
  578. ],
  579. 'data'=>[
  580. 'first'=>[
  581. "value"=>'申请成功通知',
  582. "color"=>"#173177"
  583. ],
  584. 'keyword1'=>[
  585. "value"=>'互选猫',
  586. "color"=>"#173177"
  587. ],
  588. 'keyword2'=>[
  589. "value"=>date('Y-m-d H:i:s'),
  590. "color"=>"#173177"
  591. ],
  592. 'remark'=>[
  593. "value"=>'备注',
  594. "color"=>"#173177"
  595. ]
  596. ]
  597. ],
  598. ];
  599. //将数组->json
  600. //汉字不转义
  601. $postJson = json_encode($arr,JSON_UNESCAPED_UNICODE) ;
  602. $res = self::curlPost($url,$postJson);
  603. print_r($res);
  604. }
  605. /**
  606. * 订阅消息发送
  607. */
  608. public function sendMessage(){
  609. $appid = Config::get_values('wechat_appid');
  610. $appsecret = Config::get_values('wechat_appsecret');
  611. $touser = 'oo7E85AVzyBul7w_8vh6vkfExrIY';
  612. $template_id = 'q_wRBSYSOCG037hNgcRXT6WPy-jM8HtqXla2i6NIrsc';
  613. $page = '/pages/my/index';
  614. $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=' . $appid . '&secret=' . $appsecret;
  615. $res = json_decode(file_get_contents($url),true);
  616. $access_token = $res['access_token'] ;
  617. //请求url
  618. $url = 'https://api.weixin.qq.com/cgi-bin/message/subscribe/send?access_token=' . $access_token ;
  619. //发送内容
  620. $data = [] ;
  621. //接收者(用户)的 openid
  622. $data['touser'] = $touser;
  623. $data['scene'] = rand(1,9);
  624. //所需下发的订阅模板id
  625. $data['template_id'] = $template_id ;
  626. //点击模板卡片后的跳转页面,仅限本小程序内的页面。支持带参数,(示例index?foo=bar)。该字段不填则模板无跳转。
  627. $data['page'] = $page ;
  628. //模板内容,格式形如 { "key1": { "value": any }, "key2": { "value": any } }
  629. $data['data'] = [
  630. "name1"=>[
  631. 'value'=>'张三'
  632. ],
  633. "date2"=>[
  634. 'value' => date("Y-m-d H:i:s")
  635. ],
  636. "thing3"=>[
  637. 'value' => '通知'
  638. ],
  639. ];
  640. //跳转小程序类型:developer为开发版;trial为体验版;formal为正式版;默认为正式版
  641. $data['miniprogram_state'] = 'formal' ;
  642. print_r(self::curlPost($url,json_encode($data))) ;
  643. }
  644. //发送post请求
  645. static function curlPost($url,$data)
  646. {
  647. $ch = curl_init();
  648. $params[CURLOPT_URL] = $url; //请求url地址
  649. $params[CURLOPT_HEADER] = FALSE; //是否返回响应头信息
  650. $params[CURLOPT_SSL_VERIFYPEER] = false;
  651. $params[CURLOPT_SSL_VERIFYHOST] = false;
  652. $params[CURLOPT_RETURNTRANSFER] = true; //是否将结果返回
  653. $params[CURLOPT_POST] = true;
  654. $params[CURLOPT_POSTFIELDS] = $data;
  655. curl_setopt_array($ch, $params); //传入curl参数
  656. $content = curl_exec($ch); //执行
  657. curl_close($ch); //关闭连接
  658. return $content;
  659. }
  660. /**
  661. * 环信注册
  662. */
  663. function huanxin_zhuce(){
  664. $param = array (
  665. "username" => 'ceshi',
  666. "password" => '88888888',
  667. "nickname" => '测试'
  668. );
  669. // $url = "https://a1.easemob.com/".huanxin_get_org_name()."/".huanxin_get_app_name()."/users";
  670. $url = "https://a1.easemob.com/1101210401193729/demo/users";
  671. $res = self::huanxin_curl_request($url, json_encode($param));
  672. $tokenResult = json_decode($res, true);
  673. print_r($tokenResult);die;
  674. $tokenResult["password"]=$param["password"];
  675. return $tokenResult;
  676. $huanxin_uuid = $tokenResult["entities"][0]["uuid"];
  677. $huanxin_username = $tokenResult["entities"][0]["username"];
  678. $huanxin_password=$param["password"];
  679. if(!($huanxin_uuid&&$huanxin_username)){
  680. $this->ajaxReturn(array("sta"=>2,"msg"=>"注册失败,环信接口异常"));
  681. }
  682. }
  683. static function huanxin_curl_request($url, $body, $header = array(), $method = "POST") {
  684. array_push ( $header, 'Accept:application/json' );
  685. array_push ( $header, 'Content-Type:application/json' );
  686. $ch = curl_init ();
  687. curl_setopt ( $ch, CURLOPT_CONNECTTIMEOUT, 60 );
  688. curl_setopt ( $ch, CURLOPT_URL, $url );
  689. curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );
  690. // curl_setopt($ch, $method, 1);
  691. switch (strtoupper($method)) {
  692. case "GET" :
  693. curl_setopt ( $ch, CURLOPT_HTTPGET, true );
  694. break;
  695. case "POST" :
  696. curl_setopt ( $ch, CURLOPT_POST, true );
  697. break;
  698. case "PUT" :
  699. curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, "PUT" );
  700. break;
  701. case "DELETE" :
  702. curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, "DELETE" );
  703. break;
  704. }
  705. curl_setopt ( $ch, CURLOPT_USERAGENT, 'SSTS Browser/1.0' );
  706. curl_setopt ( $ch, CURLOPT_ENCODING, 'gzip' );
  707. curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
  708. curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, 2 );
  709. if (isset ( $body {3} ) > 0) {
  710. curl_setopt ( $ch, CURLOPT_POSTFIELDS, $body );
  711. }
  712. if (count ( $header ) > 0) {
  713. curl_setopt ( $ch, CURLOPT_HTTPHEADER, $header );
  714. }
  715. $ret = curl_exec ( $ch );
  716. $err = curl_error ( $ch );
  717. curl_close ( $ch );
  718. if ($err) {
  719. return $err;
  720. }
  721. return $ret;
  722. }
  723. public function test(){
  724. $user_id = input('user_id');
  725. $to_user_id = input('to_user_id');
  726. $data['user_id'] = $user_id;
  727. $data['to_user_id'] = $to_user_id;
  728. $data['pool_id'] = 0;
  729. $data['leave_message'] = '认识你';
  730. $data['integral'] = '0';
  731. $knowid = UserWantKnow::create($data);
  732. //记录
  733. UserWantKnowRecord::create(
  734. [
  735. 'know_id'=>$knowid['id'],
  736. 'user_id'=>$user_id,
  737. 'content'=>'发出申请',
  738. 'sort'=>1
  739. ]
  740. );
  741. UserWantKnowRecord::create(
  742. [
  743. 'know_id'=>$knowid['id'],
  744. 'user_id'=>$user_id,
  745. 'content'=>'等待对方查看',
  746. 'sort'=>2
  747. ]
  748. );
  749. UserWantKnowRecord::create(
  750. [
  751. 'know_id'=>$knowid['id'],
  752. 'user_id'=>$to_user_id,
  753. 'content'=>'收到申请',
  754. 'sort'=>1
  755. ]
  756. );
  757. echo 'success';
  758. }
  759. }