Easemob.php 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937
  1. <?php
  2. namespace app\api\controller;
  3. /**
  4. --------------------------------------------------
  5. 环信PHP REST示例代码
  6. --------------------------------------------------
  7. Copyright(c) 2015 环信即时通信云 www.easemob.com
  8. --------------------------------------------------
  9. Author: 神之爱 <fengpei@easemob.com>
  10. --------------------------------------------------
  11. */
  12. class Easemob{
  13. private $client_id;
  14. private $client_secret;
  15. private $org_name;
  16. private $app_name;
  17. private $url;
  18. //------------------------------------------------------用户体系
  19. /**
  20. * 初始化参数
  21. *
  22. * @param array $options
  23. * @param $options['client_id']
  24. * @param $options['client_secret']
  25. * @param $options['org_name']
  26. * @param $options['app_name']
  27. */
  28. public function __construct($options = null) {
  29. $this->client_id = isset ( $options ['client_id'] ) ? $options ['client_id'] : config('client_id');
  30. $this->client_secret = isset ( $options ['client_secret'] ) ? $options ['client_secret'] : config('client_secret');
  31. $this->org_name = isset ( $options ['org_name'] ) ? $options ['org_name'] : config('org_name');
  32. $this->app_name = isset ( $options ['app_name'] ) ? $options ['app_name'] : config('app_name');
  33. if (! empty ( $this->org_name ) && ! empty ( $this->app_name )) {
  34. $this->url = 'https://a1.easemob.com/' . $this->org_name . '/' . $this->app_name . '/';
  35. }
  36. }
  37. /**
  38. *获取token
  39. */
  40. function getToken()
  41. {
  42. $options=array(
  43. "grant_type"=>"client_credentials",
  44. "client_id"=>$this->client_id,
  45. "client_secret"=>$this->client_secret
  46. );
  47. //json_encode()函数,可将PHP数组或对象转成json字符串,使用json_decode()函数,可以将json字符串转换为PHP数组或对象
  48. $body=json_encode($options);
  49. //使用 $GLOBALS 替代 global
  50. $url=$this->url.'token';
  51. //$url=$base_url.'token';
  52. $tokenResult = $this->postCurl($url,$body,$header=array());
  53. //var_dump($tokenResult['expires_in']);
  54. //return $tokenResult;
  55. return "Authorization:Bearer ".$tokenResult['access_token'];
  56. }
  57. /**
  58. 授权注册
  59. */
  60. function createUser($username,$password,$name=''){
  61. $url=$this->url.'users';
  62. $options=array(
  63. "username"=>$username,
  64. "password"=>$password,
  65. 'nickname'=>$name
  66. );
  67. $body=json_encode($options);
  68. $header=array($this->getToken());
  69. $result=$this->postCurl($url,$body,$header);
  70. return $result;
  71. }
  72. /*
  73. 批量注册用户
  74. */
  75. function createUsers($options){
  76. $url=$this->url.'users';
  77. $body=json_encode($options);
  78. $header=array($this->getToken());
  79. $result=$this->postCurl($url,$body,$header);
  80. return $result;
  81. }
  82. /*
  83. 重置用户密码
  84. */
  85. function resetPassword($username,$newpassword){
  86. $url=$this->url.'users/'.$username.'/password';
  87. $options=array(
  88. "newpassword"=>$newpassword
  89. );
  90. $body=json_encode($options);
  91. $header=array($this->getToken());
  92. $result=$this->postCurl($url,$body,$header,"PUT");
  93. return $result;
  94. }
  95. /*
  96. 获取单个用户
  97. */
  98. function getUser($username){
  99. $url=$this->url.'users/'.$username;
  100. $header=array($this->getToken());
  101. $result=$this->postCurl($url,'',$header,"GET");
  102. return $result;
  103. }
  104. /*
  105. 获取批量用户----不分页
  106. */
  107. function getUsers($limit=0){
  108. if(!empty($limit)){
  109. $url=$this->url.'users?limit='.$limit;
  110. }else{
  111. $url=$this->url.'users';
  112. }
  113. $header=array($this->getToken());
  114. $result=$this->postCurl($url,'',$header,"GET");
  115. return $result;
  116. }
  117. /*
  118. 获取批量用户---分页
  119. */
  120. function getUsersForPage($limit=0,$cursor=''){
  121. $url=$this->url.'users?limit='.$limit.'&cursor='.$cursor;
  122. $header=array($this->getToken());
  123. $result=$this->postCurl($url,'',$header,"GET");
  124. if(!empty($result["cursor"])){
  125. $cursor=$result["cursor"];
  126. $this->writeCursor("userfile.txt",$cursor);
  127. }
  128. //var_dump($GLOBALS['cursor'].'00000000000000');
  129. return $result;
  130. }
  131. //创建文件夹
  132. function mkdirs($dir, $mode = 0777)
  133. {
  134. if (is_dir($dir) || @mkdir($dir, $mode)) return TRUE;
  135. if (!mkdirs(dirname($dir), $mode)) return FALSE;
  136. return @mkdir($dir, $mode);
  137. }
  138. //写入cursor
  139. function writeCursor($filename,$content){
  140. //判断文件夹是否存在,不存在的话创建
  141. if(!file_exists("resource/txtfile")){
  142. mkdirs("resource/txtfile");
  143. }
  144. $myfile=@fopen("resource/txtfile/".$filename,"w+") or die("Unable to open file!");
  145. @fwrite($myfile,$content);
  146. fclose($myfile);
  147. }
  148. //读取cursor
  149. function readCursor($filename){
  150. //判断文件夹是否存在,不存在的话创建
  151. if(!file_exists("resource/txtfile")){
  152. mkdirs("resource/txtfile");
  153. }
  154. $file="resource/txtfile/".$filename;
  155. $fp=fopen($file,"a+");//这里这设置成a+
  156. if($fp){
  157. while(!feof($fp)){
  158. //第二个参数为读取的长度
  159. $data=fread($fp,1000);
  160. }
  161. fclose($fp);
  162. }
  163. return $data;
  164. }
  165. /*
  166. 删除单个用户
  167. */
  168. function deleteUser($username){
  169. $url=$this->url.'users/'.$username;
  170. $header=array($this->getToken());
  171. $result=$this->postCurl($url,'',$header,'DELETE');
  172. return $result;
  173. }
  174. /*
  175. 删除批量用户
  176. limit:建议在100-500之间,、
  177. 注:具体删除哪些并没有指定, 可以在返回值中查看。
  178. */
  179. function deleteUsers($limit){
  180. $url=$this->url.'users?limit='.$limit;
  181. $header=array($this->getToken());
  182. $result=$this->postCurl($url,'',$header,'DELETE');
  183. return $result;
  184. }
  185. /*
  186. 修改用户昵称
  187. */
  188. function editNickname($username,$nickname){
  189. $url=$this->url.'users/'.$username;
  190. $options=array(
  191. "nickname"=>$nickname
  192. );
  193. $body=json_encode($options);
  194. $header=array($this->getToken());
  195. $result=$this->postCurl($url,$body,$header,'PUT');
  196. return $result;
  197. }
  198. /*
  199. 修改用户头像
  200. */
  201. function editAvatarurl($username,$avatarurl){
  202. $url=$this->url.'users/'.$username;
  203. $options=array(
  204. "avatarurl"=>$avatarurl
  205. );
  206. $body=json_encode($options);
  207. $header=array($this->getToken());
  208. $result=$this->postCurl($url,$body,$header,'PUT');
  209. return $result;
  210. }
  211. /*
  212. 添加好友-
  213. */
  214. function addFriend($username,$friend_name){
  215. $url=$this->url.'users/'.$username.'/contacts/users/'.$friend_name;
  216. $header=array($this->getToken(),'Content-Type:application/json');
  217. $result=$this->postCurl($url,'',$header,'POST');
  218. return $result;
  219. }
  220. /*
  221. 删除好友
  222. */
  223. function deleteFriend($username,$friend_name){
  224. $url=$this->url.'users/'.$username.'/contacts/users/'.$friend_name;
  225. $header=array($this->getToken());
  226. $result=$this->postCurl($url,'',$header,'DELETE');
  227. return $result;
  228. }
  229. /*
  230. 查看好友
  231. */
  232. function showFriends($username){
  233. $url=$this->url.'users/'.$username.'/contacts/users';
  234. $header=array($this->getToken());
  235. $result=$this->postCurl($url,'',$header,'GET');
  236. return $result;
  237. }
  238. /*
  239. 查看用户黑名单
  240. */
  241. function getBlacklist($username){
  242. $url=$this->url.'users/'.$username.'/blocks/users';
  243. $header=array($this->getToken());
  244. $result=$this->postCurl($url,'',$header,'GET');
  245. return $result;
  246. }
  247. /*
  248. 往黑名单中加人
  249. */
  250. function addUserForBlacklist($username,$usernames){
  251. $url=$this->url.'users/'.$username.'/blocks/users';
  252. $body=json_encode($usernames);
  253. $header=array($this->getToken());
  254. $result=$this->postCurl($url,$body,$header,'POST');
  255. return $result;
  256. }
  257. /*
  258. 从黑名单中减人
  259. */
  260. function deleteUserFromBlacklist($username,$blocked_name){
  261. $url=$this->url.'users/'.$username.'/blocks/users/'.$blocked_name;
  262. $header=array($this->getToken());
  263. $result=$this->postCurl($url,'',$header,'DELETE');
  264. return $result;
  265. }
  266. /*
  267. 查看用户是否在线
  268. */
  269. function isOnline($username){
  270. $url=$this->url.'users/'.$username.'/status';
  271. $header=array($this->getToken());
  272. $result=$this->postCurl($url,'',$header,'GET');
  273. return $result;
  274. }
  275. /*
  276. 查看用户离线消息数
  277. */
  278. function getOfflineMessages($username){
  279. $url=$this->url.'users/'.$username.'/offline_msg_count';
  280. $header=array($this->getToken());
  281. $result=$this->postCurl($url,'',$header,'GET');
  282. return $result;
  283. }
  284. /*
  285. 查看某条消息的离线状态
  286. ----deliverd 表示此用户的该条离线消息已经收到
  287. */
  288. function getOfflineMessageStatus($username,$msg_id){
  289. $url=$this->url.'users/'.$username.'/offline_msg_status/'.$msg_id;
  290. $header=array($this->getToken());
  291. $result=$this->postCurl($url,'',$header,'GET');
  292. return $result;
  293. }
  294. /*
  295. 禁用用户账号
  296. */
  297. function deactiveUser($username){
  298. $url=$this->url.'users/'.$username.'/deactivate';
  299. $header=array($this->getToken());
  300. $result=$this->postCurl($url,'',$header);
  301. return $result;
  302. }
  303. /*
  304. 解禁用户账号
  305. */
  306. function activeUser($username){
  307. $url=$this->url.'users/'.$username.'/activate';
  308. $header=array($this->getToken());
  309. $result=$this->postCurl($url,'',$header);
  310. return $result;
  311. }
  312. /*
  313. 强制用户下线
  314. */
  315. function disconnectUser($username){
  316. $url=$this->url.'users/'.$username.'/disconnect';
  317. $header=array($this->getToken());
  318. $result=$this->postCurl($url,'',$header,'GET');
  319. return $result;
  320. }
  321. //--------------------------------------------------------上传下载
  322. /*
  323. 上传图片或文件
  324. */
  325. function uploadFile($filePath){
  326. $url=$this->url.'chatfiles';
  327. $file=file_get_contents($filePath);
  328. $body['file']=$file;
  329. $header=array('Content-type: multipart/form-data',$this->getToken(),"restrict-access:true");
  330. $result=$this->postCurl($url,$body,$header,'XXX');
  331. return $result;
  332. }
  333. /*
  334. 下载文件或图片
  335. */
  336. function downloadFile($uuid,$shareSecret,$ext)
  337. {
  338. $url = $this->url . 'chatfiles/' . $uuid;
  339. $header = array("share-secret:" . $shareSecret, "Accept:application/octet-stream", $this->getToken(),);
  340. if ($ext=="png") {
  341. $result=$this->postCurl($url,'',$header,'GET');
  342. }else {
  343. $result = $this->getFile($url);
  344. }
  345. $filename = md5(time().mt_rand(10, 99)).".".$ext; //新图片名称
  346. if(!file_exists("resource/down")){
  347. mkdir("resource/down/");
  348. }
  349. $file = @fopen("resource/down/".$filename,"w+");//打开文件准备写入
  350. @fwrite($file,$result);//写入
  351. fclose($file);//关闭
  352. return $filename;
  353. }
  354. function getFile($url){
  355. set_time_limit(0); // unlimited max execution time
  356. $ch = curl_init($url);
  357. curl_setopt($ch, CURLOPT_TIMEOUT, 600); //max 10 minutes
  358. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  359. curl_setopt($ch, CURLOPT_HEADER, false);
  360. $result = curl_exec($ch);
  361. curl_close($ch);
  362. return $result;
  363. }
  364. /*
  365. 下载图片缩略图
  366. */
  367. function downloadThumbnail($uuid,$shareSecret){
  368. $url=$this->url.'chatfiles/'.$uuid;
  369. $header = array("share-secret:".$shareSecret,"Accept:application/octet-stream",$this->getToken(),"thumbnail:true");
  370. $result=$this->postCurl($url,'',$header,'GET');
  371. $filename = md5(time().mt_rand(10, 99))."th.png"; //新图片名称
  372. if(!file_exists("resource/down")){
  373. //mkdir("../image/down");
  374. mkdirs("resource/down/");
  375. }
  376. $file = @fopen("resource/down/".$filename,"w+");//打开文件准备写入
  377. @fwrite($file,$result);//写入
  378. fclose($file);//关闭
  379. return $filename;
  380. }
  381. //--------------------------------------------------------发送消息
  382. /*
  383. 发送文本消息
  384. */
  385. function sendText($from="admin",$target_type,$target,$content,$ext){
  386. $url=$this->url.'messages';
  387. $body['target_type']=$target_type;
  388. $body['target']=$target;
  389. $options['type']="txt";
  390. $options['msg']=$content;
  391. $body['msg']=$options;
  392. $body['from']=$from;
  393. $body['ext']=$ext;
  394. $b=json_encode($body);
  395. $header=array($this->getToken());
  396. $result=$this->postCurl($url,$b,$header);
  397. return $result;
  398. }
  399. /*
  400. 发送透传消息
  401. */
  402. function sendCmd($from="admin",$target_type,$target,$action,$ext){
  403. $url=$this->url.'messages';
  404. $body['target_type']=$target_type;
  405. $body['target']=$target;
  406. $options['type']="cmd";
  407. $options['action']=$action;
  408. $body['msg']=$options;
  409. $body['from']=$from;
  410. $body['ext']=$ext;
  411. $b=json_encode($body);
  412. $header=array($this->getToken());
  413. //$b=json_encode($body,true);
  414. $result=$this->postCurl($url,$b,$header);
  415. return $result;
  416. }
  417. /*
  418. 发图片消息
  419. */
  420. function sendImage($filePath,$from="admin",$target_type,$target,$filename,$ext){
  421. $result=$this->uploadFile($filePath);
  422. $uri=$result['uri'];
  423. $uuid=$result['entities'][0]['uuid'];
  424. $shareSecret=$result['entities'][0]['share-secret'];
  425. $url=$this->url.'messages';
  426. $body['target_type']=$target_type;
  427. $body['target']=$target;
  428. $options['type']="img";
  429. $options['url']=$uri.'/'.$uuid;
  430. $options['filename']=$filename;
  431. $options['secret']=$shareSecret;
  432. $options['size']=array(
  433. "width"=>480,
  434. "height"=>720
  435. );
  436. $body['msg']=$options;
  437. $body['from']=$from;
  438. $body['ext']=$ext;
  439. $b=json_encode($body);
  440. $header=array($this->getToken());
  441. //$b=json_encode($body,true);
  442. $result=$this->postCurl($url,$b,$header);
  443. return $result;
  444. }
  445. /*
  446. 发语音消息
  447. */
  448. function sendAudio($filePath,$from="admin",$target_type,$target,$filename,$length,$ext){
  449. $result=$this->uploadFile($filePath);
  450. $uri=$result['uri'];
  451. $uuid=$result['entities'][0]['uuid'];
  452. $shareSecret=$result['entities'][0]['share-secret'];
  453. $url=$this->url.'messages';
  454. $body['target_type']=$target_type;
  455. $body['target']=$target;
  456. $options['type']="audio";
  457. $options['url']=$uri.'/'.$uuid;
  458. $options['filename']=$filename;
  459. $options['length']=$length;
  460. $options['secret']=$shareSecret;
  461. $body['msg']=$options;
  462. $body['from']=$from;
  463. $body['ext']=$ext;
  464. $b=json_encode($body);
  465. $header=array($this->getToken());
  466. //$b=json_encode($body,true);
  467. $result=$this->postCurl($url,$b,$header);
  468. return $result;}
  469. /*
  470. 发视频消息
  471. */
  472. function sendVedio($filePath,$from="admin",$target_type,$target,$filename,$length,$thumb,$thumb_secret,$ext){
  473. $result=$this->uploadFile($filePath);
  474. $uri=$result['uri'];
  475. $uuid=$result['entities'][0]['uuid'];
  476. $shareSecret=$result['entities'][0]['share-secret'];
  477. $url=$this->url.'messages';
  478. $body['target_type']=$target_type;
  479. $body['target']=$target;
  480. $options['type']="video";
  481. $options['url']=$uri.'/'.$uuid;
  482. $options['filename']=$filename;
  483. $options['thumb']=$thumb;
  484. $options['length']=$length;
  485. $options['secret']=$shareSecret;
  486. $options['thumb_secret']=$thumb_secret;
  487. $body['msg']=$options;
  488. $body['from']=$from;
  489. $body['ext']=$ext;
  490. $b=json_encode($body);
  491. $header=array($this->getToken());
  492. //$b=json_encode($body,true);
  493. $result=$this->postCurl($url,$b,$header);
  494. return $result;
  495. }
  496. /*
  497. 发文件消息
  498. */
  499. function sendFile($filePath,$from="admin",$target_type,$target,$filename,$length,$ext){
  500. $result=$this->uploadFile($filePath);
  501. $uri=$result['uri'];
  502. $uuid=$result['entities'][0]['uuid'];
  503. $shareSecret=$result['entities'][0]['share-secret'];
  504. $url=$GLOBALS['base_url'].'messages';
  505. $body['target_type']=$target_type;
  506. $body['target']=$target;
  507. $options['type']="file";
  508. $options['url']=$uri.'/'.$uuid;
  509. $options['filename']=$filename;
  510. $options['length']=$length;
  511. $options['secret']=$shareSecret;
  512. $body['msg']=$options;
  513. $body['from']=$from;
  514. $body['ext']=$ext;
  515. $b=json_encode($body);
  516. $header=array(getToken());
  517. //$b=json_encode($body,true);
  518. $result=postCurl($url,$b,$header);
  519. return $result;
  520. }
  521. //-------------------------------------------------------------群组操作
  522. /*
  523. 获取app中的所有群组----不分页
  524. */
  525. function getGroups($limit=0){
  526. if(!empty($limit)){
  527. $url=$this->url.'chatgroups?limit='.$limit;
  528. }else{
  529. $url=$this->url.'chatgroups';
  530. }
  531. $header=array($this->getToken());
  532. $result=$this->postCurl($url,'',$header,"GET");
  533. return $result;
  534. }
  535. /*
  536. 获取app中的所有群组---分页
  537. */
  538. function getGroupsForPage($limit=0,$cursor=''){
  539. $url=$this->url.'chatgroups?limit='.$limit.'&cursor='.$cursor;
  540. $header=array($this->getToken());
  541. $result=$this->postCurl($url,'',$header,"GET");
  542. if(!empty($result["cursor"])){
  543. $cursor=$result["cursor"];
  544. $this->writeCursor("groupfile.txt",$cursor);
  545. }
  546. //var_dump($GLOBALS['cursor'].'00000000000000');
  547. return $result;
  548. }
  549. /*
  550. 获取一个或多个群组的详情
  551. */
  552. function getGroupDetail($group_ids){
  553. //$g_ids=implode(',',$group_ids);
  554. $url=$this->url.'chatgroups/'.$group_ids;
  555. $header=array($this->getToken());
  556. $result=$this->postCurl($url,'',$header,'GET');
  557. return $result;
  558. }
  559. /*
  560. 创建一个群组
  561. */
  562. function createGroup($options){
  563. $url=$this->url.'chatgroups';
  564. $header=array($this->getToken());
  565. $body=json_encode($options);
  566. $result=$this->postCurl($url,$body,$header);
  567. return $result;
  568. }
  569. /*
  570. 修改群组信息
  571. */
  572. function modifyGroupInfo($group_id,$options){
  573. $url=$this->url.'chatgroups/'.$group_id;
  574. $body=json_encode($options);
  575. $header=array($this->getToken());
  576. $result=$this->postCurl($url,$body,$header,'PUT');
  577. return $result;
  578. }
  579. /*
  580. 删除群组
  581. */
  582. function deleteGroup($group_id){
  583. $url=$this->url.'chatgroups/'.$group_id;
  584. $header=array($this->getToken());
  585. $result=$this->postCurl($url,'',$header,'DELETE');
  586. return $result;
  587. }
  588. /*
  589. 获取群组中的成员
  590. */
  591. function getGroupUsers($group_id){
  592. $url=$this->url.'chatgroups/'.$group_id.'/users';
  593. $header=array($this->getToken());
  594. $result=$this->postCurl($url,'',$header,'GET');
  595. return $result;
  596. }
  597. /*
  598. 群组单个加人
  599. */
  600. function addGroupMember($group_id,$username){
  601. $url=$this->url.'chatgroups/'.$group_id.'/users/'.$username;
  602. $header=array($this->getToken(),'Content-Type:application/json');
  603. $result=$this->postCurl($url,'',$header);
  604. return $result;
  605. }
  606. /*
  607. 群组批量加人
  608. */
  609. function addGroupMembers($group_id,$usernames){
  610. $url=$this->url.'chatgroups/'.$group_id.'/users';
  611. $body=json_encode($usernames);
  612. $header=array($this->getToken(),'Content-Type:application/json');
  613. $result=$this->postCurl($url,$body,$header);
  614. return $result;
  615. }
  616. /*
  617. 群组单个减人
  618. */
  619. function deleteGroupMember($group_id,$username){
  620. $url=$this->url.'chatgroups/'.$group_id.'/users/'.$username;
  621. $header=array($this->getToken());
  622. $result=$this->postCurl($url,'',$header,'DELETE');
  623. return $result;
  624. }
  625. /*
  626. 群组批量减人
  627. */
  628. function deleteGroupMembers($group_id,$usernames){
  629. $url=$this->url.'chatgroups/'.$group_id.'/users/'.$usernames;
  630. //$body=json_encode($usernames);
  631. $header=array($this->getToken());
  632. $result=$this->postCurl($url,'',$header,'DELETE');
  633. return $result;
  634. }
  635. /*
  636. 获取一个用户参与的所有群组
  637. */
  638. function getGroupsForUser($username){
  639. $url=$this->url.'users/'.$username.'/joined_chatgroups';
  640. $header=array($this->getToken());
  641. $result=$this->postCurl($url,'',$header,'GET');
  642. return $result;
  643. }
  644. /*
  645. 群组转让
  646. */
  647. function changeGroupOwner($group_id,$options){
  648. $url=$this->url.'chatgroups/'.$group_id;
  649. $body=json_encode($options);
  650. $header=array($this->getToken());
  651. $result=$this->postCurl($url,$body,$header,'PUT');
  652. return $result;
  653. }
  654. /*
  655. 查询一个群组黑名单用户名列表
  656. */
  657. function getGroupBlackList($group_id){
  658. $url=$this->url.'chatgroups/'.$group_id.'/blocks/users';
  659. $header=array($this->getToken());
  660. $result=$this->postCurl($url,'',$header,'GET');
  661. return $result;
  662. }
  663. /*
  664. 群组黑名单单个加人
  665. */
  666. function addGroupBlackMember($group_id,$username){
  667. $url=$this->url.'chatgroups/'.$group_id.'/blocks/users/'.$username;
  668. $header=array($this->getToken());
  669. $result=$this->postCurl($url,'',$header);
  670. return $result;
  671. }
  672. /*
  673. 群组黑名单批量加人
  674. */
  675. function addGroupBlackMembers($group_id,$usernames){
  676. $url=$this->url.'chatgroups/'.$group_id.'/blocks/users';
  677. $body=json_encode($usernames);
  678. $header=array($this->getToken());
  679. $result=$this->postCurl($url,$body,$header);
  680. return $result;
  681. }
  682. /*
  683. 群组黑名单单个减人
  684. */
  685. function deleteGroupBlackMember($group_id,$username){
  686. $url=$this->url.'chatgroups/'.$group_id.'/blocks/users/'.$username;
  687. $header=array($this->getToken());
  688. $result=$this->postCurl($url,'',$header,'DELETE');
  689. return $result;
  690. }
  691. /*
  692. 群组黑名单批量减人
  693. */
  694. function deleteGroupBlackMembers($group_id,$usernames){
  695. $url=$this->url.'chatgroups/'.$group_id.'/blocks/users';
  696. $body=json_encode($usernames);
  697. $header=array($this->getToken());
  698. $result=$this->postCurl($url,$body,$header,'DELETE');
  699. return $result;
  700. }
  701. //-------------------------------------------------------------聊天室操作
  702. /*
  703. 创建聊天室
  704. */
  705. function createChatRoom($options){
  706. $url=$this->url.'chatrooms';
  707. $header=array($this->getToken());
  708. $body=json_encode($options);
  709. $result=$this->postCurl($url,$body,$header);
  710. return $result;
  711. }
  712. /*
  713. 修改聊天室信息
  714. */
  715. function modifyChatRoom($chatroom_id,$options){
  716. $url=$this->url.'chatrooms/'.$chatroom_id;
  717. $body=json_encode($options);
  718. $result=$this->postCurl($url,$body,$header,'PUT');
  719. return $result;
  720. }
  721. /*
  722. 删除聊天室
  723. */
  724. function deleteChatRoom($chatroom_id){
  725. $url=$this->url.'chatrooms/'.$chatroom_id;
  726. $header=array($this->getToken());
  727. $result=$this->postCurl($url,'',$header,'DELETE');
  728. return $result;
  729. }
  730. /*
  731. 获取app中所有的聊天室
  732. */
  733. function getChatRooms(){
  734. $url=$this->url.'chatrooms';
  735. $header=array($this->getToken());
  736. $result=$this->postCurl($url,'',$header,"GET");
  737. return $result;
  738. }
  739. /*
  740. 获取一个聊天室的详情
  741. */
  742. function getChatRoomDetail($chatroom_id){
  743. $url=$this->url.'chatrooms/'.$chatroom_id;
  744. $header=array($this->getToken());
  745. $result=$this->postCurl($url,'',$header,'GET');
  746. return $result;
  747. }
  748. /*
  749. 获取一个用户加入的所有聊天室
  750. */
  751. function getChatRoomJoined($username){
  752. $url=$this->url.'users/'.$username.'/joined_chatrooms';
  753. $header=array($this->getToken());
  754. $result=$this->postCurl($url,'',$header,'GET');
  755. return $result;
  756. }
  757. /*
  758. 聊天室单个成员添加
  759. */
  760. function addChatRoomMember($chatroom_id,$username){
  761. $url=$this->url.'chatrooms/'.$chatroom_id.'/users/'.$username;
  762. //$header=array($this->getToken());
  763. $header=array($this->getToken(),'Content-Type:application/json');
  764. $result=$this->postCurl($url,'',$header);
  765. return $result;
  766. }
  767. /*
  768. 聊天室批量成员添加
  769. */
  770. function addChatRoomMembers($chatroom_id,$usernames){
  771. $url=$this->url.'chatrooms/'.$chatroom_id.'/users';
  772. $body=json_encode($usernames);
  773. $header=array($this->getToken());
  774. $result=$this->postCurl($url,$body,$header);
  775. return $result;
  776. }
  777. /*
  778. 聊天室单个成员删除
  779. */
  780. function deleteChatRoomMember($chatroom_id,$username){
  781. $url=$this->url.'chatrooms/'.$chatroom_id.'/users/'.$username;
  782. $header=array($this->getToken());
  783. $result=$this->postCurl($url,'',$header,'DELETE');
  784. return $result;
  785. }
  786. /*
  787. 聊天室批量成员删除
  788. */
  789. function deleteChatRoomMembers($chatroom_id,$usernames){
  790. $url=$this->url.'chatrooms/'.$chatroom_id.'/users/'.$usernames;
  791. //$body=json_encode($usernames);
  792. $header=array($this->getToken());
  793. $result=$this->postCurl($url,'',$header,'DELETE');
  794. return $result;
  795. }
  796. //-------------------------------------------------------------聊天记录
  797. /*
  798. 导出聊天记录----不分页
  799. */
  800. function getChatRecord($ql){
  801. if(!empty($ql)){
  802. $url=$this->url.'chatmessages?ql='.$ql;
  803. }else{
  804. $url=$this->url.'chatmessages';
  805. }
  806. $header=array($this->getToken());
  807. $result=$this->postCurl($url,'',$header,"GET");
  808. return $result;
  809. }
  810. /*
  811. 导出聊天记录---分页
  812. */
  813. function getChatRecordForPage($ql,$limit=0,$cursor){
  814. if(!empty($ql)){
  815. $url=$this->url.'chatmessages?ql='.$ql.'&limit='.$limit.'&cursor='.$cursor;
  816. }
  817. $header=array($this->getToken());
  818. $result=$this->postCurl($url,'',$header,"GET");
  819. $cursor=isset ( $result["cursor"] ) ? $result["cursor"] : '-1';
  820. $this->writeCursor("chatfile.txt",$cursor);
  821. //var_dump($GLOBALS['cursor'].'00000000000000');
  822. return $result;
  823. }
  824. /**
  825. *$this->postCurl方法
  826. */
  827. function postCurl($url,$body,$header,$type="POST"){
  828. //1.创建一个curl资源
  829. $ch = curl_init();
  830. //2.设置URL和相应的选项
  831. curl_setopt($ch,CURLOPT_URL,$url);//设置url
  832. //1)设置请求头
  833. //array_push($header, 'Accept:application/json');
  834. //array_push($header,'Content-Type:application/json');
  835. //array_push($header, 'http:multipart/form-data');
  836. //设置为false,只会获得响应的正文(true的话会连响应头一并获取到)
  837. curl_setopt($ch,CURLOPT_HEADER,0);
  838. // curl_setopt ( $ch, CURLOPT_TIMEOUT,5); // 设置超时限制防止死循环
  839. //设置发起连接前的等待时间,如果设置为0,则无限等待。
  840. curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,5);
  841. //将curl_exec()获取的信息以文件流的形式返回,而不是直接输出。
  842. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  843. //2)设备请求体
  844. if (strlen($body)>0) {
  845. //$b=json_encode($body,true);
  846. curl_setopt($ch, CURLOPT_POSTFIELDS, $body);//全部数据使用HTTP协议中的"POST"操作来发送。
  847. }
  848. //设置请求头
  849. if(count($header)>0){
  850. curl_setopt($ch,CURLOPT_HTTPHEADER,$header);
  851. }
  852. //上传文件相关设置
  853. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
  854. curl_setopt($ch, CURLOPT_MAXREDIRS, 3);
  855. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);// 对认证证书来源的检查
  856. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);// 从证书中检查SSL加密算
  857. //3)设置提交方式
  858. switch($type){
  859. case "GET":
  860. curl_setopt($ch,CURLOPT_HTTPGET,true);
  861. break;
  862. case "POST":
  863. curl_setopt($ch,CURLOPT_POST,true);
  864. break;
  865. case "PUT"://使用一个自定义的请求信息来代替"GET"或"HEAD"作为HTTP请求。这对于执行"DELETE" 或者其他更隐蔽的HTT
  866. curl_setopt($ch,CURLOPT_CUSTOMREQUEST,"PUT");
  867. break;
  868. case "DELETE":
  869. curl_setopt($ch,CURLOPT_CUSTOMREQUEST,"DELETE");
  870. break;
  871. }
  872. //4)在HTTP请求中包含一个"User-Agent: "头的字符串。-----必设
  873. // curl_setopt($ch, CURLOPT_USERAGENT, 'SSTS Browser/1.0');
  874. // curl_setopt($ch, CURLOPT_ENCODING, 'gzip');
  875. curl_setopt ( $ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0)' ); // 模拟用户使用的浏览器
  876. //5)
  877. //3.抓取URL并把它传递给浏览器
  878. $res=curl_exec($ch);
  879. $result=json_decode($res,true);
  880. //4.关闭curl资源,并且释放系统资源
  881. curl_close($ch);
  882. if(empty($result))
  883. return $res;
  884. else
  885. return $result;
  886. }
  887. }
  888. ?>