-
Notifications
You must be signed in to change notification settings - Fork 0
/
hyphenate.class.php
964 lines (872 loc) · 29.3 KB
/
hyphenate.class.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
<?php
/**
--------------------------------------------------
Hyphenate PHP REST REST API client library
--------------------------------------------------
Copyright(c) 2017 Hyphenate Inc www.hyphenate.io
--------------------------------------------------
Author: Hyphenate <info@hyphenate.io>
--------------------------------------------------
*/
class Hyphenate {
private $client_id;
private $client_secret;
private $org_name;
private $app_name;
private $base_url = 'https://api.hyphenate.io/';
private $url;
/**
* constructor init
*
* @param array $options
* @param $options['client_id']
* @param $options['client_secret']
* @param $options['org_name']
* @param $options['app_name']
*/
public function __construct($options) {
$this->client_id = isset ( $options ['client_id'] ) ? $options ['client_id'] : '';
$this->client_secret = isset ( $options ['client_secret'] ) ? $options ['client_secret'] : '';
$this->org_name = isset ( $options ['org_name'] ) ? $options ['org_name'] : '';
$this->app_name = isset ( $options ['app_name'] ) ? $options ['app_name'] : '';
if (! empty ( $this->org_name ) && ! empty ( $this->app_name )) {
$this->url = $this->base_url . $this->org_name . '/' . $this->app_name . '/';
}
}
/*
get authentication token
*/
function getToken()
{
$options=array(
"grant_type"=>"client_credentials",
"client_id"=>$this->client_id,
"client_secret"=>$this->client_secret
);
// json_encode() function, it converts PHP array or object into json string
// json_decode() function, it converts PHP json string to array or object
$body=json_encode($options);
// use $GLOBALS to replace global
$url=$this->url.'token';
//$url=$base_url.'token';
$tokenResult = $this->postCurl($url,$body,$header=array());
//var_dump($tokenResult['expires_in']);
//return $tokenResult;
return "Authorization:Bearer ".$tokenResult['access_token'];
}
/*
create a Hyphenate IM account
*/
function createUser($username,$password){
$url=$this->url.'users';
$options=array(
"username"=>$username,
"password"=>$password
);
$body=json_encode($options);
$header=array($this->getToken());
$result=$this->postCurl($url,$body,$header);
return $result;
}
/*
create multiple Hyphenate IM account
*/
function createUsers($options){
$url=$this->url.'users';
$body=json_encode($options);
$header=array($this->getToken());
$result=$this->postCurl($url,$body,$header);
return $result;
}
/*
reset user password
*/
function resetPassword($username,$newpassword){
$url=$this->url.'users/'.$username.'/password';
$options=array(
"newpassword"=>$newpassword
);
$body=json_encode($options);
$header=array($this->getToken());
$result=$this->postCurl($url,$body,$header,"PUT");
return $result;
}
/*
get a user
*/
function getUser($username){
$url=$this->url.'users/'.$username;
$header=array($this->getToken());
$result=$this->postCurl($url,'',$header,"GET");
return $result;
}
/*
get multiple users without pagination, default 10 users at a time
*/
function getUsers($limit=0){
if(!empty($limit)){
$url=$this->url.'users?limit='.$limit;
}else{
$url=$this->url.'users';
}
$header=array($this->getToken());
$result=$this->postCurl($url,'',$header,"GET");
return $result;
}
/*
get multiple users with pagination, default 10 users at a time
*/
function getUsersForPage($limit=0,$cursor=''){
$url=$this->url.'users?limit='.$limit.'&cursor='.$cursor;
$header=array($this->getToken());
$result=$this->postCurl($url,'',$header,"GET");
if(!empty($result["cursor"])){
$cursor=$result["cursor"];
$this->writeCursor("userfile.txt",$cursor);
}
//var_dump($GLOBALS['cursor'].'00000000000000');
return $result;
}
// create directory
function mkdir($dir, $mode = 0777)
{
if (is_dir($dir) || @mkdir($dir, $mode)) return TRUE;
if (!mkdir(dirname($dir), $mode)) return FALSE;
return @mkdir($dir, $mode);
}
// write cursor
function writeCursor($filename, $content){
// create file if not exist
if(!file_exists("resources/txtfile")){
mkdir("resources/txtfile");
}
$myfile=@fopen("resources/txtfile/".$filename,"a") or die("Unable to open file!");
@fwrite($myfile,$content);
fclose($myfile);
}
// read cursor
function readCursor($filename){
// create file if not exist
if(!file_exists("resources/txtfile")) {
mkdir("resources/txtfile");
}
$file="resources/txtfile/".$filename;
$fp=fopen($file, 'w+');
if($fp){
while(!feof($fp)){
// length of reading
$data=fread($fp,1000);
return $data;
}
fclose($fp);
}
return;
}
/*
delete a user
*/
function deleteUser($username){
$url=$this->url.'users/'.$username;
$header=array($this->getToken());
$result=$this->postCurl($url,'',$header,'DELETE');
return $result;
}
/*
delete multiple users
limit: recommend delete 100-500 user one at a time
Note: see the return object for deleted users
*/
function deleteUsers($limit){
$url=$this->url.'users?limit='.$limit;
$header=array($this->getToken());
$result=$this->postCurl($url,'',$header,'DELETE');
return $result;
}
/*
update user's nickname
*/
function editNickname($username,$nickname){
$url=$this->url.'users/'.$username;
$options=array(
"nickname"=>$nickname
);
$body=json_encode($options);
$header=array($this->getToken());
$result=$this->postCurl($url,$body,$header,'PUT');
return $result;
}
/*
add friend to user
*/
function addFriend($username,$friend_name){
$url=$this->url.'users/'.$username.'/contacts/users/'.$friend_name;
$header=array($this->getToken(),'Content-Type:application/json');
$result=$this->postCurl($url,'',$header,'POST');
return $result;
}
/*
remove friend from user
*/
function deleteFriend($username,$friend_name){
$url=$this->url.'users/'.$username.'/contacts/users/'.$friend_name;
$header=array($this->getToken());
$result=$this->postCurl($url,'',$header,'DELETE');
return $result;
}
/*
get a list of friends of user
*/
function showFriends($username){
$url=$this->url.'users/'.$username.'/contacts/users';
$header=array($this->getToken());
$result=$this->postCurl($url,'',$header,'GET');
return $result;
}
/*
get blacklist of user
*/
function getBlacklist($username){
$url=$this->url.'users/'.$username.'/blocks/users';
$header=array($this->getToken());
$result=$this->postCurl($url,'',$header,'GET');
return $result;
}
/*
block user (add user to blacklist) for user
*/
function addUserForBlacklist($username, $usernames){
$url=$this->url.'users/'.$username.'/blocks/users';
$body=json_encode($usernames);
$header=array($this->getToken());
$result=$this->postCurl($url, $body, $header, 'POST');
return $result;
}
/*
unblock user (remove user from blacklist) for user
*/
function deleteUserFromBlacklist($username,$blocked_name){
$url=$this->url.'users/'.$username.'/blocks/users/'.$blocked_name;
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header, 'DELETE');
return $result;
}
/*
get user's online status
*/
function isOnline($username){
$url=$this->url.'users/'.$username.'/status';
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header, 'GET');
return $result;
}
/*
get user's offline messages (undelivered messages)
*/
function getOfflineMessages($username){
$url=$this->url.'users/'.$username.'/offline_msg_count';
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header, 'GET');
return $result;
}
/*
get offline message (undelivered message) status
if status shown as "delivered" means message is delivered
*/
function getOfflineMessageStatus($username,$msg_id){
$url=$this->url.'users/'.$username.'/offline_msg_status/'.$msg_id;
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header, 'GET');
return $result;
}
/*
deactivate user account
*/
function deactiveUser($username){
$url=$this->url.'users/'.$username.'/deactivate';
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header);
return $result;
}
/*
activate user account
*/
function activeUser($username){
$url=$this->url.'users/'.$username.'/activate';
$header=array($this->getToken());
$result=$this->postCurl($url, '', $header);
return $result;
}
/*
force user logout
*/
function disconnectUser($username){
$url=$this->url.'users/'.$username.'/disconnect';
$header=array($this->getToken());
$result=$this->postCurl($url, '', $header, 'GET');
return $result;
}
/**
* File Downloading and Uploading
*/
/*
upload file
*/
function uploadFile($filePath){
$url=$this->url.'chatfiles';
$file=file_get_contents($filePath);
$body['file']=$file;
$header=array('enctype:multipart/form-data',$this->getToken(),"restrict-access:true");
$result=$this->postCurl($url, $body, $header, 'XXX');
return $result;
}
/*
download file
$fileType in string // "png", "jpg", etc
*/
function downloadFile($uuid, $shareSecret, $fileType){
$url=$this->url.'chatfiles/'.$uuid;
$header = array("share-secret:".$shareSecret,"Accept:application/octet-stream", $this->getToken());
$result=$this->postCurl($url, '', $header, 'GET');
$filename = md5(time().mt_rand(10, 99)).$fileType; // file name
if(!file_exists("/downloads")){
mkdir("/downloads");
}
$file = @fopen("/downloads".$filename,"w+"); // open file to write
@fwrite($file,$result); // write
fclose($file); // close
return $filename;
}
/*
download thumbnail
$fileType in string // "png", "jpg", etc
*/
function downloadThumbnail($uuid, $shareSecret, $fileType){
$url=$this->url.'chatfiles/'.$uuid;
$header = array("share-secret:".$shareSecret,"Accept:application/octet-stream", $this->getToken(), "thumbnail:true");
$result=$this->postCurl($url,'', $header, 'GET');
$filename = md5(time().mt_rand(10, 99)).$fileType; // file name
if(!file_exists("/downloads")){
mkdir("/downloads");
}
$file = @fopen("/downloads".$filename,"w+"); // open file to write
@fwrite($file,$result); // write
fclose($file); // close
return $filename;
}
/**
* Messaging Sending
*/
/*
send text message
*/
function sendText($from="admin", $target_type, $target, $content, $ext){
$url=$this->url.'messages';
$body['target_type']=$target_type;
$body['target']=$target;
$options['type']="txt";
$options['msg']=$content;
$body['msg']=$options;
$body['from']=$from;
$body['ext']=$ext;
$encoded_body=json_encode($body);
$header=array($this->getToken());
$result=$this->postCurl($url, $encoded_body, $header);
return $result;
}
/*
send command message
*/
function sendCmd($from="admin", $target_type, $target, $action, $ext){
$url=$this->url.'messages';
$body['target_type']=$target_type;
$body['target']=$target;
$options['type']="cmd";
$options['action']=$action;
$body['msg']=$options;
$body['from']=$from;
$body['ext']=$ext;
$encoded_body=json_encode($body);
$header=array($this->getToken());
//$b=json_encode($body,true);
$result=$this->postCurl($url, $encoded_body, $header);
return $result;
}
/*
send image message
*/
function sendImage($filePath, $from="admin", $target_type, $target, $filename, $ext){
$result=$this->uploadFile($filePath);
$uri=$result['uri'];
$uuid=$result['entities'][0]['uuid'];
$shareSecret=$result['entities'][0]['share-secret'];
$url=$this->url.'messages';
$body['target_type']=$target_type;
$body['target']=$target;
$options['type']="img";
$options['url']=$uri.'/'.$uuid;
$options['filename']=$filename;
$options['secret']=$shareSecret;
$options['size']=array(
"width"=>480,
"height"=>720
);
$body['msg']=$options;
$body['from']=$from;
$body['ext']=$ext;
$encoded_body=json_encode($body);
$header=array($this->getToken());
//$b=json_encode($body, true);
$result=$this->postCurl($url, $encoded_body, $header);
return $result;
}
/*
send audio message
*/
function sendAudio($filePath, $from="admin", $target_type, $target, $filename, $length, $ext){
$result=$this->uploadFile($filePath);
$uri=$result['uri'];
$uuid=$result['entities'][0]['uuid'];
$shareSecret=$result['entities'][0]['share-secret'];
$url=$this->url.'messages';
$body['target_type']=$target_type;
$body['target']=$target;
$options['type']="audio";
$options['url']=$uri.'/'.$uuid;
$options['filename']=$filename;
$options['length']=$length;
$options['secret']=$shareSecret;
$body['msg']=$options;
$body['from']=$from;
$body['ext']=$ext;
$encoded_body=json_encode($body);
$header=array($this->getToken());
//$b=json_encode($body,true);
$result=$this->postCurl($url, $encoded_body, $header);
return $result;
}
/*
send video message
*/
function sendVideo($filePath, $from="admin", $target_type, $target, $filename, $length, $thumb, $thumb_secret, $ext){
$result=$this->uploadFile($filePath);
$uri=$result['uri'];
$uuid=$result['entities'][0]['uuid'];
$shareSecret=$result['entities'][0]['share-secret'];
$url=$this->url.'messages';
$body['target_type']=$target_type;
$body['target']=$target;
$options['type']="video";
$options['url']=$uri.'/'.$uuid;
$options['filename']=$filename;
$options['thumb']=$thumb;
$options['length']=$length;
$options['secret']=$shareSecret;
$options['thumb_secret']=$thumb_secret;
$body['msg']=$options;
$body['from']=$from;
$body['ext']=$ext;
$encoded_body=json_encode($body);
$header=array($this->getToken());
//$b=json_encode($body,true);
$result=$this->postCurl($url, $encoded_body, $header);
return $result;
}
/*
send file message
*/
function sendFile($filePath, $from="admin", $target_type, $target, $filename, $length, $ext){
$result=$this->uploadFile($filePath);
$uri=$result['uri'];
$uuid=$result['entities'][0]['uuid'];
$shareSecret=$result['entities'][0]['share-secret'];
$url=$GLOBALS['base_url'].'messages';
$body['target_type']=$target_type;
$body['target']=$target;
$options['type']="file";
$options['url']=$uri.'/'.$uuid;
$options['filename']=$filename;
$options['length']=$length;
$options['secret']=$shareSecret;
$body['msg']=$options;
$body['from']=$from;
$body['ext']=$ext;
$encoded_body=json_encode($body);
$header=array(getToken());
//$b=json_encode($body,true);
$result=postCurl($url, $encoded_body, $header);
return $result;
}
/**
* Group Operation
*/
/*
get all the groups without pagination, default 10 groups
*/
function getGroups($limit=0){
if(!empty($limit)){
$url=$this->url.'chatgroups?limit='.$limit;
}else{
$url=$this->url.'chatgroups';
}
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header, "GET");
return $result;
}
/*
get all the groups with pagination
*/
function getGroupsForPage($limit=0,$cursor=''){
$url=$this->url.'chatgroups?limit='.$limit.'&cursor='.$cursor;
$header=array($this->getToken());
$result=$this->postCurl($url, '', $header, "GET");
if(!empty($result["cursor"])){
$cursor=$result["cursor"];
$this->writeCursor("groupfile.txt", $cursor);
}
//var_dump($GLOBALS['cursor'].'00000000000000');
return $result;
}
/*
get group(s) details
*/
function getGroupDetail($group_ids){
$g_ids=implode(',',$group_ids);
$url=$this->url.'chatgroups/'.$g_ids;
$header=array($this->getToken());
$result=$this->postCurl($url, '', $header, 'GET');
return $result;
}
/*
create a group
*/
function createGroup($options){
$url=$this->url.'chatgroups';
$header=array($this->getToken());
$body=json_encode($options);
$result=$this->postCurl($url, $body, $header);
return $result;
}
/*
update group description
*/
function modifyGroupInfo($group_id,$options){
$url=$this->url.'chatgroups/'.$group_id;
$body=json_encode($options);
$header=array($this->getToken());
$result=$this->postCurl($url, $body, $header, 'PUT');
return $result;
}
/*
delete a group
*/
function deleteGroup($group_id){
$url=$this->url.'chatgroups/'.$group_id;
$header=array($this->getToken());
$result=$this->postCurl($url, '', $header, 'DELETE');
return $result;
}
/*
get group members
*/
function getGroupUsers($group_id){
$url=$this->url.'chatgroups/'.$group_id.'/users';
$header=array($this->getToken());
$result=$this->postCurl($url, '', $header, 'GET');
return $result;
}
/*
add a user to group
*/
function addGroupMember($group_id,$username){
$url=$this->url.'chatgroups/'.$group_id.'/users/'.$username;
$header=array($this->getToken(),'Content-Type:application/json');
$result=$this->postCurl($url, '', $header);
return $result;
}
/*
add multiple users to group
*/
function addGroupMembers($group_id,$usernames){
$url=$this->url.'chatgroups/'.$group_id.'/users';
$body=json_encode($usernames);
$header=array($this->getToken(),'Content-Type:application/json');
$result=$this->postCurl($url, $body, $header);
return $result;
}
/*
delete a group member
*/
function deleteGroupMember($group_id,$username){
$url=$this->url.'chatgroups/'.$group_id.'/users/'.$username;
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header, 'DELETE');
return $result;
}
/*
delete multiple group members
*/
function deleteGroupMembers($group_id,$usernames){
$url=$this->url.'chatgroups/'.$group_id.'/users/'.$usernames;
//$body=json_encode($usernames);
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header, 'DELETE');
return $result;
}
/*
get a list of groups user joined
*/
function getGroupsForUser($username){
$url=$this->url.'users/'.$username.'/joined_chatgroups';
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header, 'GET');
return $result;
}
/*
transfer group ownership
*/
function changeGroupOwner($group_id,$options){
$url=$this->url.'chatgroups/'.$group_id;
$body=json_encode($options);
$header=array($this->getToken());
$result=$this->postCurl($url, $body, $header, 'PUT');
return $result;
}
/*
get the blacklist of group
*/
function getGroupBlacklist($group_id){
$url=$this->url.'chatgroups/'.$group_id.'/blocks/users';
$header=array($this->getToken());
$result=$this->postCurl($url, '', $header, 'GET');
return $result;
}
/*
block a user (add user to group blacklist)
*/
function addGroupMemberToBlacklist($group_id, $username){
$url=$this->url.'chatgroups/'.$group_id.'/blocks/users/'.$username;
$header=array($this->getToken());
$result=$this->postCurl($url, '', $header);
return $result;
}
/*
block multiple users (add user to group blacklist)
*/
function addGroupMembersToBlacklist($group_id, $usernames){
$url=$this->url.'chatgroups/'.$group_id.'/blocks/users';
$body=json_encode($usernames);
$header=array($this->getToken());
$result=$this->postCurl($url, $body, $header);
return $result;
}
/*
unblock a user (remove user from group blacklist)
*/
function removeGroupMemberFromBlacklist($group_id, $username){
$url=$this->url.'chatgroups/'.$group_id.'/blocks/users/'.$username;
$header=array($this->getToken());
$result=$this->postCurl($url, '', $header, 'DELETE');
return $result;
}
/*
unblock multiple users (remove users from group blacklist)
*/
function removeGroupMembersFromBlacklist($group_id, $usernames){
$url=$this->url.'chatgroups/'.$group_id.'/blocks/users';
$body=json_encode($usernames);
$header=array($this->getToken());
$result=$this->postCurl($url, $body, $header, 'DELETE');
return $result;
}
/**
* Group Operation
*/
/*
create chat room
*/
function createChatRoom($options){
$url=$this->url.'chatrooms';
$header=array($this->getToken());
$body=json_encode($options);
$result=$this->postCurl($url, $body, $header);
return $result;
}
/*
update chat room description
*/
function modifyChatRoom($chatroom_id, $options){
$url=$this->url.'chatrooms/'.$chatroom_id;
$header=array($this->getToken());
$body=json_encode($options);
$result=$this->postCurl($url, $body, $header, 'PUT');
return $result;
}
/*
delete chat room
*/
function deleteChatRoom($chatroom_id){
$url=$this->url.'chatrooms/'.$chatroom_id;
$header=array($this->getToken());
$result=$this->postCurl($url, '', $header, 'DELETE');
return $result;
}
/*
get all the chat rooms
*/
function getChatRooms(){
$url=$this->url.'chatrooms';
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header, "GET");
return $result;
}
/*
get chat room details
*/
function getChatRoomDetail($chatroom_id){
$url=$this->url.'chatrooms/'.$chatroom_id;
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header, 'GET');
return $result;
}
/*
get a list of chat room user joined
*/
function getChatRoomJoined($username){
$url=$this->url.'users/'.$username.'/joined_chatrooms';
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header, 'GET');
return $result;
}
/*
add a member to chat room
*/
function addChatRoomMember($chatroom_id, $username){
$url=$this->url.'chatrooms/'.$chatroom_id.'/users/'.$username;
//$header=array($this->getToken());
$header=array($this->getToken(),'Content-Type:application/json');
$result=$this->postCurl($url,'', $header);
return $result;
}
/*
add multiple user to chat room
*/
function addChatRoomMembers($chatroom_id, $usernames){
$url=$this->url.'chatrooms/'.$chatroom_id.'/users';
$body=json_encode($usernames);
$header=array($this->getToken());
$result=$this->postCurl($url, $body, $header);
return $result;
}
/*
remove a user from chat room
*/
function deleteChatRoomMember($chatroom_id, $username){
$url=$this->url.'chatrooms/'.$chatroom_id.'/users/'.$username;
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header, 'DELETE');
return $result;
}
/*
remove multiple users from chat room
*/
function deleteChatRoomMembers($chatroom_id, $usernames){
$url=$this->url.'chatrooms/'.$chatroom_id.'/users/'.$usernames;
//$body=json_encode($usernames);
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header, 'DELETE');
return $result;
}
/**
* Message History
*/
/*
get chat history without pagination
*/
function getChatRecord($ql){
if(!empty($ql)){
$url=$this->url.'chatmessages?ql='.$ql;
}else{
$url=$this->url.'chatmessages';
}
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header, "GET");
return $result;
}
/*
get chat history with pagination
*/
function getChatRecordForPage($ql, $limit=0, $cursor){
if(!empty($ql)){
$url=$this->url.'chatmessages?ql='.$ql.'&limit='.$limit.'&cursor='.$cursor;
}
$header=array($this->getToken());
$result=$this->postCurl($url,'', $header, "GET");
$cursor=$result["cursor"];
$this->writeCursor("chatfile.txt", $cursor);
//var_dump($GLOBALS['cursor'].'00000000000000');
return $result;
}
/**
* $this->postCurl method
*/
function postCurl($url, $body, $header, $type="POST") {
// 1. create a curl resources
$ch = curl_init();
// 2. set URL and corresponding options
curl_setopt($ch,CURLOPT_URL,$url); // set url
// 1) set header
// array_push($header, 'Accept:application/json');
// array_push($header,'Content-Type:application/json');
// array_push($header, 'http:multipart/form-data');
// set to false to only get response. (true, to get all including header)
curl_setopt($ch,CURLOPT_HEADER,0);
curl_setopt ( $ch, CURLOPT_TIMEOUT,5); // set time limit to prevent infinite loop
// set connection timeout time. value 0 is unlimit waiting
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,5);
// set curl_exec() to use the method of file streaming as return instead of sending directly
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// 2) set request body
if (count($body)>0) {
//$b=json_encode($body,true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $body); // HTTPS and POST
}
// set header
if(count($header)>0){
curl_setopt($ch,CURLOPT_HTTPHEADER,$header);
}
// set file upload settings
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_MAXREDIRS, 3);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // check certificate source
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); // verify certificate SSL encryption
// 3) set request verb
switch($type){
case "GET":
curl_setopt($ch,CURLOPT_HTTPGET,true);
break;
case "POST":
curl_setopt($ch,CURLOPT_POST,true);
break;
case "PUT": // user a self-defined request to replace "GET" or "HEAD" for HTTP request. Can be use to operate "DELETE" or subtle action
curl_setopt($ch,CURLOPT_CUSTOMREQUEST,"PUT");
break;
case "DELETE":
curl_setopt($ch,CURLOPT_CUSTOMREQUEST,"DELETE");
break;
}
// 4) MUST include "User-Agent: " header character string in HTTP request
curl_setopt($ch, CURLOPT_USERAGENT, 'SSTS Browser/1.0');
curl_setopt($ch, CURLOPT_ENCODING, 'gzip');
curl_setopt ( $ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0)' ); // simulate browser
// 3. get URL and send it to browser
$res=curl_exec($ch);
$result=json_decode($res,true);
// 4. close and release curl resourcess
curl_close($ch);
if(empty($result))
return $res;
else
return $result;
}
}
?>