user.php
39.2 KB
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
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
<?php
/**
* @package Joomla.Platform
* @subpackage Facebook
*
* @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE
*/
defined('JPATH_PLATFORM') or die();
/**
* Facebook API User class for the Joomla Platform.
*
* @link http://developers.facebook.com/docs/reference/api/user/
* @since 3.2.0
* @deprecated 4.0 Use the `joomla/facebook` package via Composer instead
*/
class JFacebookUser extends JFacebookObject
{
/**
* Method to get the specified user's details. Authentication is required only for some fields.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getUser($user)
{
return $this->get($user);
}
/**
* Method to get the specified user's friends. Requires authentication.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getFriends($user, $limit = 0, $offset = 0)
{
return $this->getConnection($user, 'friends', '', $limit, $offset);
}
/**
* Method to get the user's incoming friend requests. Requires authentication and read_requests permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getFriendRequests($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'friendrequests', '', $limit, $offset, $until, $since);
}
/**
* Method to get the user's friend lists. Requires authentication and read_friendlists permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getFriendLists($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'friendlists', '', $limit, $offset, $until, $since);
}
/**
* Method to get the user's wall. Requires authentication and read_stream permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getFeed($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'feed', '', $limit, $offset, $until, $since);
}
/**
* Method to get the user's news feed. Requires authentication and read_stream permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param string $filter User's stream filter.
* @param boolean $location Retreive only posts with a location attached.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getHome($user, $filter = null, $location = false, $limit = 0, $offset = 0, $until = null, $since = null)
{
$extra_fields = '';
if ($filter != null)
{
$extra_fields = '?filter=' . $filter;
}
if ($location == true)
{
$extra_fields .= (strpos($extra_fields, '?') === false) ? '?with=location' : '&with=location';
}
return $this->getConnection($user, 'home', $extra_fields, $limit, $offset, $until, $since);
}
/**
* Method to see if a user is a friend of the current user. Requires authentication.
*
* @param mixed $current_user Either an integer containing the user ID or a string containing the username for the current user.
* @param mixed $user Either an integer containing the user ID or a string containing the username for the user.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function hasFriend($current_user, $user)
{
return $this->getConnection($current_user, 'friends/' . $user);
}
/**
* Method to get mutual friends of one user and the current user. Requires authentication.
*
* @param mixed $current_user Either an integer containing the user ID or a string containing the username for the current user.
* @param mixed $user Either an integer containing the user ID or a string containing the username for the user.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getMutualFriends($current_user, $user, $limit = 0, $offset = 0)
{
return $this->getConnection($current_user, 'mutualfriends/' . $user, '', $limit, $offset);
}
/**
* Method to get the user's profile picture. Requires authentication.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param boolean $redirect If false this will return the URL of the profile picture without a 302 redirect.
* @param string $type To request a different photo use square | small | normal | large.
*
* @return string The URL to the user's profile picture.
*
* @since 3.2.0
*/
public function getPicture($user, $redirect = true, $type = null)
{
$extra_fields = '';
if ($redirect == false)
{
$extra_fields = '?redirect=false';
}
if ($type != null)
{
$extra_fields .= (strpos($extra_fields, '?') === false) ? '?type=' . $type : '&type=' . $type;
}
return $this->getConnection($user, 'picture', $extra_fields);
}
/**
* Method to get the user's family relationships. Requires authentication and user_relationships permission..
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getFamily($user, $limit = 0, $offset = 0)
{
return $this->getConnection($user, 'family', '', $limit, $offset);
}
/**
* Method to get the user's notifications. Requires authentication and manage_notifications permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param boolean $read Enables you to see notifications that the user has already read.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getNotifications($user, $read = null, $limit = 0, $offset = 0, $until = null, $since = null)
{
if ($read == true)
{
$read = '?include_read=1';
}
// Send the request.
return $this->getConnection($user, 'notifications', $read, $limit, $offset, $until, $since);
}
/**
* Method to mark a notification as read. Requires authentication and manage_notifications permission.
*
* @param string $notification The notification id.
*
* @return boolean Returns true if successful, and false otherwise.
*
* @since 3.2.0
*/
public function updateNotification($notification)
{
$data['unread'] = 0;
return $this->createConnection($notification, null, $data);
}
/**
* Method to get the user's permissions. Requires authentication.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getPermissions($user, $limit = 0, $offset = 0)
{
return $this->getConnection($user, 'permissions', '', $limit, $offset);
}
/**
* Method to revoke a specific permission on behalf of a user. Requires authentication.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param string $permission The permission to revoke. If none specified, then this will de-authorize the application completely.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function deletePermission($user, $permission = '')
{
return $this->deleteConnection($user, 'permissions', '?permission=' . $permission);
}
/**
* Method to get the user's albums. Requires authentication and user_photos or friends_photos permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getAlbums($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'albums', '', $limit, $offset, $until, $since);
}
/**
* Method to create an album for a user. Requires authentication and publish_stream permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param string $name Album name.
* @param string $description Album description.
* @param string $privacy A JSON-encoded object that defines the privacy setting for the album.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function createAlbum($user, $name, $description = null, $privacy = null)
{
// Set POST request parameters.
$data = array();
$data['name'] = $name;
$data['description'] = $description;
$data['privacy'] = $privacy;
return $this->createConnection($user, 'albums', $data);
}
/**
* Method to get the user's checkins. Requires authentication and user_checkins or friends_checkins permission
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getCheckins($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'checkins', '', $limit, $offset, $until, $since);
}
/**
* Method to create a checkin for a user. Requires authentication and publish_checkins permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param string $place Id of the Place Page.
* @param string $coordinates A JSON-encoded string containing latitute and longitude.
* @param string $tags Comma separated list of USER_IDs.
* @param string $message A message to add to the checkin.
* @param string $link A link to add to the checkin.
* @param string $picture A picture to add to the checkin.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function createCheckin($user, $place, $coordinates, $tags = null, $message = null, $link = null, $picture = null)
{
// Set POST request parameters.
$data = array();
$data['place'] = $place;
$data['coordinates'] = $coordinates;
$data['tags'] = $tags;
$data['message'] = $message;
$data['link'] = $link;
$data['picture'] = $picture;
return $this->createConnection($user, 'checkins', $data);
}
/**
* Method to get the user's likes. Requires authentication and user_likes or friends_likes permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getLikes($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'likes', '', $limit, $offset, $until, $since);
}
/**
* Method to see if a user likes a specific Page. Requires authentication.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param string $page Facebook ID of the Page.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function likesPage($user, $page)
{
return $this->getConnection($user, 'likes/' . $page);
}
/**
* Method to get the current user's events. Requires authentication and user_events or friends_events permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getEvents($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'events', '', $limit, $offset, $until, $since);
}
/**
* Method to create an event for a user. Requires authentication create_event permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param string $name Event name.
* @param string $start_time Event start time as UNIX timestamp.
* @param string $end_time Event end time as UNIX timestamp.
* @param string $description Event description.
* @param string $location Event location.
* @param string $location_id Facebook Place ID of the place the Event is taking place.
* @param string $privacy_type Event privacy setting, a string containing 'OPEN' (default), 'CLOSED', or 'SECRET'.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function createEvent($user, $name, $start_time, $end_time = null, $description = null,
$location = null, $location_id = null, $privacy_type = null)
{
// Set POST request parameters.
$data = array();
$data['start_time'] = $start_time;
$data['name'] = $name;
$data['end_time'] = $end_time;
$data['description'] = $description;
$data['location'] = $location;
$data['location_id'] = $location_id;
$data['privacy_type'] = $privacy_type;
return $this->createConnection($user, 'events', $data);
}
/**
* Method to edit an event. Requires authentication create_event permission.
*
* @param mixed $event Event ID.
* @param string $name Event name.
* @param string $start_time Event start time as UNIX timestamp.
* @param string $end_time Event end time as UNIX timestamp.
* @param string $description Event description.
* @param string $location Event location.
* @param string $location_id Facebook Place ID of the place the Event is taking place.
* @param string $privacy_type Event privacy setting, a string containing 'OPEN' (default), 'CLOSED', or 'SECRET'.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function editEvent($event, $name = null, $start_time = null, $end_time = null, $description = null,
$location = null, $location_id = null, $privacy_type = null)
{
// Set POST request parameters.
$data = array();
$data['start_time'] = $start_time;
$data['name'] = $name;
$data['end_time'] = $end_time;
$data['description'] = $description;
$data['location'] = $location;
$data['location_id'] = $location_id;
$data['privacy_type'] = $privacy_type;
return $this->createConnection($event, null, $data);
}
/**
* Method to delete an event. Note: you can only delete the event if it was created by the same app. Requires authentication create_event permission.
*
* @param string $event Event ID.
*
* @return boolean Returns true if successful, and false otherwise.
*
* @since 3.2.0
*/
public function deleteEvent($event)
{
return $this->deleteConnection($event);
}
/**
* Method to get the groups that the user belongs to. Requires authentication and user_groups or friends_groups permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getGroups($user, $limit = 0, $offset = 0)
{
return $this->getConnection($user, 'groups', '', $limit, $offset);
}
/**
* Method to get the user's posted links. Requires authentication and user_groups or friends_groups permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getLinks($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'links', '', $limit, $offset, $until, $since);
}
/**
* Method to post a link on user's feed. Requires authentication and publish_stream permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param string $link Link URL.
* @param string $message Link message.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function createLink($user, $link, $message = null)
{
// Set POST request parameters.
$data = array();
$data['link'] = $link;
$data['message'] = $message;
return $this->createConnection($user, 'feed', $data);
}
/**
* Method to delete a link. Requires authentication and publish_stream permission.
*
* @param mixed $link The Link ID.
*
* @return boolean Returns true if successful, and false otherwise.
*
* @since 3.2.0
*/
public function deleteLink($link)
{
return $this->deleteConnection($link);
}
/**
* Method to get the user's notes. Requires authentication and user_groups or friends_groups permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getNotes($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'notes', '', $limit, $offset, $until, $since);
}
/**
* Method to create a note on the behalf of the user.
* Requires authentication and publish_stream permission, user_groups or friends_groups permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param string $subject The subject of the note.
* @param string $message Note content.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function createNote($user, $subject, $message)
{
// Set POST request parameters.
$data = array();
$data['subject'] = $subject;
$data['message'] = $message;
return $this->createConnection($user, 'notes', $data);
}
/**
* Method to get the user's photos. Requires authentication and user_groups or friends_groups permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getPhotos($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'photos', '', $limit, $offset, $until, $since);
}
/**
* Method to post a photo on user's wall. Requires authentication and publish_stream permission, user_groups or friends_groups permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param string $source Path to photo.
* @param string $message Photo description.
* @param string $place Facebook ID of the place associated with the photo.
* @param boolean $no_story If set to 1, optionally suppresses the feed story that is automatically
* generated on a user’s profile when they upload a photo using your application.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function createPhoto($user, $source, $message = null, $place = null, $no_story = null)
{
// Set POST request parameters.
$data = array();
$data[basename($source)] = '@' . realpath($source);
$data['message'] = $message;
$data['place'] = $place;
$data['no_story'] = $no_story;
return $this->createConnection($user, 'photos', $data, array('Content-Type' => 'multipart/form-data'));
}
/**
* Method to get the user's posts. Requires authentication and read_stream permission for non-public posts.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param boolean $location Retreive only posts with a location attached.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getPosts($user, $location = false, $limit = 0, $offset = 0, $until = null, $since = null)
{
if ($location == true)
{
$location = '?with=location';
}
// Send the request.
return $this->getConnection($user, 'posts', $location, $limit, $offset, $until, $since);
}
/**
* Method to post on a user's wall. Message or link parameter is required. Requires authentication and publish_stream permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param string $message Post message.
* @param string $link Post URL.
* @param string $picture Post thumbnail image (can only be used if link is specified)
* @param string $name Post name (can only be used if link is specified).
* @param string $caption Post caption (can only be used if link is specified).
* @param string $description Post description (can only be used if link is specified).
* @param array $actions Post actions array of objects containing name and link.
* @param string $place Facebook Page ID of the location associated with this Post.
* @param string $tags Comma-separated list of Facebook IDs of people tagged in this Post.
* For example: 1207059,701732. You cannot specify this field without also specifying a place.
* @param string $privacy Post privacy settings (can only be specified if the Timeline being posted
* on belongs to the User creating the Post).
* @param string $object_attachment Facebook ID for an existing picture in the User's photo albums to use as the thumbnail image.
* The User must be the owner of the photo, and the photo cannot be part of a message attachment.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function createPost($user, $message = null, $link = null, $picture = null, $name = null, $caption = null,
$description = null, $actions = null, $place = null, $tags = null, $privacy = null, $object_attachment = null)
{
// Set POST request parameters.
$data = array();
$data['message'] = $message;
$data['link'] = $link;
$data['name'] = $name;
$data['caption'] = $caption;
$data['description'] = $description;
$data['actions'] = $actions;
$data['place'] = $place;
$data['tags'] = $tags;
$data['privacy'] = $privacy;
$data['object_attachment'] = $object_attachment;
$data['picture'] = $picture;
return $this->createConnection($user, 'feed', $data);
}
/**
* Method to delete a post. Note: you can only delete the post if it was created by the current user. Requires authentication
*
* @param string $post The Post ID.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function deletePost($post)
{
return $this->deleteConnection($post);
}
/**
* Method to get the user's statuses. Requires authentication read_stream permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getStatuses($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'statuses', '', $limit, $offset, $until, $since);
}
/**
* Method to post a status message on behalf of the user. Requires authentication publish_stream permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param string $message Status message content.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function createStatus($user, $message)
{
// Set POST request parameters.
$data = array();
$data['message'] = $message;
return $this->createConnection($user, 'feed', $data);
}
/**
* Method to delete a status. Note: you can only delete the post if it was created by the current user.
* Requires authentication publish_stream permission.
*
* @param string $status The Status ID.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function deleteStatus($status)
{
return $this->deleteConnection($status);
}
/**
* Method to get the videos the user has been tagged in. Requires authentication and user_videos or friends_videos permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getVideos($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'videos', '', $limit, $offset, $until, $since);
}
/**
* Method to post a video on behalf of the user. Requires authentication and publish_stream permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param string $source Path to video.
* @param string $title Video title.
* @param string $description Video description.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function createVideo($user, $source, $title = null, $description = null)
{
// Set POST request parameters.
$data = array();
$data[basename($source)] = '@' . realpath($source);
$data['title'] = $title;
$data['description'] = $description;
return $this->createConnection($user, 'videos', $data, array('Content-Type' => 'multipart/form-data'));
}
/**
* Method to get the posts the user has been tagged in. Requires authentication and user_videos or friends_videos permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getTagged($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'tagged', '', $limit, $offset, $until, $since);
}
/**
* Method to get the activities listed on the user's profile. Requires authentication and user_activities or friends_activities permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getActivities($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'activities', '', $limit, $offset, $until, $since);
}
/**
* Method to get the books listed on the user's profile. Requires authentication and user_likes or friends_likes permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getBooks($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'books', '', $limit, $offset, $until, $since);
}
/**
* Method to get the interests listed on the user's profile. Requires authentication.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getInterests($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'interests', '', $limit, $offset, $until, $since);
}
/**
* Method to get the movies listed on the user's profile. Requires authentication and user_likes or friends_likes permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getMovies($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'movies', '', $limit, $offset, $until, $since);
}
/**
* Method to get the television listed on the user's profile. Requires authentication and user_likes or friends_likes permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getTelevision($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'television', '', $limit, $offset, $until, $since);
}
/**
* Method to get the music listed on the user's profile. Requires authentication user_likes or friends_likes permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
* @param string $until A unix timestamp or any date accepted by strtotime.
* @param string $since A unix timestamp or any date accepted by strtotime.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getMusic($user, $limit = 0, $offset = 0, $until = null, $since = null)
{
return $this->getConnection($user, 'music', '', $limit, $offset, $until, $since);
}
/**
* Method to get the user's subscribers. Requires authentication and user_subscriptions or friends_subscriptions permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getSubscribers($user, $limit = 0, $offset = 0)
{
return $this->getConnection($user, 'subscribers', '', $limit, $offset);
}
/**
* Method to get the people the user is subscribed to. Requires authentication and user_subscriptions or friends_subscriptions permission.
*
* @param mixed $user Either an integer containing the user ID or a string containing the username.
* @param integer $limit The number of objects per page.
* @param integer $offset The object's number on the page.
*
* @return mixed The decoded JSON response or false if the client is not authenticated.
*
* @since 3.2.0
*/
public function getSubscribedTo($user, $limit = 0, $offset = 0)
{
return $this->getConnection($user, 'subscribedto', '', $limit, $offset);
}
}