-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathThreadsAPI.php
More file actions
153 lines (141 loc) Β· 4.93 KB
/
Copy pathThreadsAPI.php
File metadata and controls
153 lines (141 loc) Β· 4.93 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
<?php
namespace RocketAPI;
class ThreadsAPI extends RocketAPI
{
public function __construct($token)
{
parent::__construct($token, true);
}
/**
* @throws Exceptions\NotFoundException
* @throws Exceptions\BadResponseException
*/
protected function request($method, $data)
{
$response = parent::request($method, $data);
if ($response['status'] == 'done') {
if ($response['response']['status_code'] == 200 && $response['response']['content_type'] == 'application/json') {
return $response['response']['body'];
} else if ($response['response']['status_code'] == 404) {
throw new Exceptions\NotFoundException('Threads resource not found');
} else {
throw new Exceptions\BadResponseException('Bad response from Threads');
}
} else {
throw new Exceptions\BadResponseException('Bad response from RocketAPI');
}
}
/**
* @throws Exceptions\NotFoundException
* @throws Exceptions\BadResponseException
*/
public function searchUsers($query, $rank_token=null, $page_token=null) {
$payload = [
'query' => $query,
];
if ($rank_token) {
$payload['rank_token'] = $rank_token;
}
if ($page_token) {
$payload['page_token'] = $page_token;
}
return $this->request('threads/search_users', $payload);
}
/**
* @throws Exceptions\NotFoundException
* @throws Exceptions\BadResponseException
*/
public function getUserInfo($user_id) {
return $this->request('threads/user/get_info', [
'id' => $user_id,
]);
}
/**
* @throws Exceptions\NotFoundException
* @throws Exceptions\BadResponseException
*/
public function getUserFeed($user_id, $max_id=null) {
$payload = [
'id' => $user_id,
];
if ($max_id) {
$payload['max_id'] = $max_id;
}
return $this->request('threads/user/get_feed', $payload);
}
/**
* @throws Exceptions\NotFoundException
* @throws Exceptions\BadResponseException
*/
public function getUserReplies($user_id, $max_id=null) {
$payload = [
'id' => $user_id,
];
if ($max_id) {
$payload['max_id'] = $max_id;
}
return $this->request('threads/user/get_replies', $payload);
}
/**
* @throws Exceptions\NotFoundException
* @throws Exceptions\BadResponseException
*/
public function getUserFollowers($user_id, $max_id=null) {
$payload = ['id' => $user_id];
if ($max_id) {
$payload['max_id'] = $max_id;
}
return $this->request('threads/user/get_followers', $payload);
}
/**
* @throws Exceptions\NotFoundException
* @throws Exceptions\BadResponseException
*/
public function getUserFollowing($user_id, $max_id=null)
{
$payload = ['id' => $user_id];
if ($max_id) {
$payload['max_id'] = $max_id;
}
return $this->request('threads/user/get_following', $payload);
}
/**
* @throws Exceptions\NotFoundException
* @throws Exceptions\BadResponseException
*/
public function searchUserFollowers($user_id, $query) {
return $this->request('threads/user/get_followers', [
'id' => $user_id,
'query' => $query,
]);
}
/**
* @throws Exceptions\NotFoundException
* @throws Exceptions\BadResponseException
*/
public function searchUserFollowing($user_id, $query) {
return $this->request('threads/user/get_following', [
'id' => $user_id,
'query' => $query,
]);
}
/**
* @throws Exceptions\NotFoundException
* @throws Exceptions\BadResponseException
*/
public function getThreadReplies($thread_id, $max_id=null) {
$payload = ['id' => $thread_id];
if ($max_id) {
$payload['max_id'] = $max_id;
}
return $this->request('threads/thread/get_replies', $payload);
}
/**
* @throws Exceptions\NotFoundException
* @throws Exceptions\BadResponseException
*/
public function getThreadLikes($thread_id) {
$payload = ['id' => $thread_id];
return $this->request('threads/thread/get_likes', $payload);
}
}