DoubanMiniblog.php
6.32 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
<?php
/**
* @file DoubanMiniblog.php
* @brief 豆瓣广播API
* @author JonChou <ilorn.mc@gmail.com>
* @date 2012-12-03
*/
class DoubanMiniblog extends DoubanBase {
/**
* @brief 构造函数,初始设置clientId
*
* @param string $clientId
*
* @return void
*/
public function __construct($clientId)
{
$this->clientId = $clientId;
}
/**
* @brief 发送一条豆瓣广播
*
* @return object
*/
public function addMiniblog()
{
$this->uri = '/shuo/v2/statuses/';
$this->type = 'POST';
return $this;
}
/**
* @brief 读取一条广播
*
* @param string $id
*
* @return object
*/
public function getMiniblog($id)
{
$this->uri = '/shuo/v2/statuses/'.$id;
$this->type = 'GET';
return $this;
}
/**
* @brief 删除一条广播
*
* @param string $id
*
* @return object
*/
public function deleteMiniblog($id)
{
$this->uri = '/shuo/v2/statuses/'.$id;
$this->type = 'DELETE';
return $this;
}
/**
* @brief 获取一条广播的回复列表(未测试)
*
* @param string $id
* @param int $start
* @param int $count
*
* @return object
*/
public function getCommentsList($id, $start = 0, $count = 20)
{
$this->uri = '/shuo/v2/statuses/'.$id.'/comments?start='.$start.'&count='.$count;
$this->type = 'GET';
return $this;
}
/**
* @brief 回复某条广播(未测试)
*
* @param string $id
*
* @return object
*/
public function addComment($id)
{
$this->uri = '/shuo/v2/statuses/'.$id.'/comments';
$this->type = 'POST';
return $this;
}
/**
* @brief 获取广播的单条回复(未测试)
*
* @param string $id
*
* @return object
*/
public function getComment($id)
{
$this->uri ='/shuo/v2/statuses/comment/'.$id;
$this->type = 'GET';
return $this;
}
/**
* @brief 删除广播的单条回复
*
* @param string $id
*
* @return object
*/
public function deleleComment($id)
{
$this->uri = '/shuo/v2/statuses/comment/'.$id;
$this->type = 'DELETE';
return $this;
}
/**
* @brief 获取一条广播的转发相关信息(未测试)
*
* @param string $id
*
* @return object
*/
public function getReshare($id)
{
$this->uri = '/shuo/v2/statuses/'.$id.'/reshare';
$this->type = 'GET';
return $this;
}
/**
* @brief 转发一条广播
*
* @param string $id
*
* @return object
*/
public function reshare($id)
{
$this->uri = '/shuo/v2/statuses/'.$id.'/reshare';
$this->type = 'POST';
return $this;
}
/**
* @brief 获取一条广播的赞相关信息(未测试)
*
* @param string $id
*
* @return object
*/
public function getLikers($id)
{
$this->uri = '/shuo/v2/statuses/'.$id.'/like';
$this->type = 'GET';
return $this;
}
/**
* @brief 赞一条广播
*
* @param string $id
*
* @return object
*/
public function like($id)
{
$this->uri = '/shuo/v2/statuses/'.$id.'/like';
$this->type = 'POST';
return $this;
}
/**
* @brief 取消赞(未测试)
*
* @param string $id
*
* @return object
*/
public function dislike($id)
{
$this->uri = '/shuo/v2/statuses/'.$id.'/like';
$this->type = 'DELETE';
return $this;
}
public function following($id)
{
$this->uri = '/shuo/v2/users/'.$id.'/following';
$this->type = 'GET';
return $this;
}
public function followers($id)
{
$this->uri = '/shuo/v2/users/'.$id.'/followers';
$this->type = 'GET';
return $this;
}
public function followInCommon($id)
{
$this->uri = '/shuo/v2/users/'.$id.'/follow_in_common';
$this->type = 'GET';
return $this;
}
public function suggestions($id)
{
$this->uri = '/shuo/v2/users/'.$id.'/following_followers_of';
$this->type = 'GET';
return $this;
}
public function block($id)
{
$this->uri = '/shuo/v2/users/'.$id.'/block';
$this->type = 'POST';
return $this;
}
public function unfollow()
{
$this->uri = '/shuo/v2/friendships/destroy';
$this->type = 'POST';
return $this;
}
public function show($source, $sourceId, $targetId)
{
$params = array(
'source' => $source,
'source_id' => $sourceId,
'target_id' => $targetId
);
$this->uri = '/shuo/v2/friendships/show?'.http_build_query($params);
$this->type = 'GET';
return $this;
}
/**
* @brief 获取当前登录用户及其所关注用户的最新广播(友邻广播)
*
* @param string $sinceId
* @param string $untilId
* @param string $count
* @param string $start
*
* @return object
*/
public function homeTimeline($sinceId = null, $untilId = null, $count = null, $start = null )
{
$params = array(
'since_id' => $sinceId,
'until_id' => $untilId,
'count' => $count,
'start' => $start
);
$this->uri = '/shuo/v2/statuses/home_timeline?'.http_build_query($params);
$this->type = 'GET';
return $this;
}
/**
* @brief 获取用户发布的广播列表
*
* @param string $user
* @param string $sinceId
* @param string $untilId
*
* @return object
*/
public function userTimeline($user, $sinceId = null, $untilId = null)
{
$params = array(
'since_id' => $sinceId,
'until_id' => $untilId
);
$this->uri = '/shuo/v2/statuses/user_timeline/'.$user.'?'.http_build_query($params);
$this->type = 'GET';
return $this;
}
}