DoubanNote.php
2.15 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
<?php
/**
* @file DoubanNote.php
* @brief 豆瓣日记API接口
* @author JonChou <ilorn.mc@gmail.com>
* @date 2012-12-05
*/
class DoubanNote extends DoubanBase {
/**
* @brief 构造函数,初始设置clientId
*
* @param string $clientId
*
* @return void
*/
public function __construct($clientId)
{
$this->clientId = $clientId;
}
/**
* @brief 获取一条日记
*
* @param $id
* @param $format
*
* @return object
*/
public function getNote($id, $format = 'text')
{
$this->uri = '/v2/note/'.$id.'?format='.$format;
$this->type = 'GET';
return $this;
}
public function addNote()
{
$this->uri = '/v2/notes';
$this->type = 'POST';
return $this;
}
public function editNote($id)
{
$this->uri = '/v2/note/'.$id;
$this->type = 'PUT';
return $this;
}
public function deleteNote($id)
{
$this->uri = '/v2/note/'.$id;
$this->type = 'DELETE';
return $this;
}
public function like($id)
{
$this->uri = '/v2/note/'.$id.'/like';
$this->type = 'POST';
return $this;
}
public function dislike($id)
{
$this->uri = '/v2/note/'.$id.'/like';
$this->type = 'DELETE';
return $this;
}
public function image($id)
{
$this->uri = '/v2/note/'.$id;
$this->type = 'POST';
return $this;
}
public function getCommentsList($id)
{
$this->uri = '/v2/note/'.$id.'/comments';
$this->type = 'GET';
return $this;
}
public function reply($id)
{
$this->uri = '/v2/note/'.$id.'/comments';
$this->type = 'POST';
return $this;
}
public function getComment($noteId, $commentId)
{
$this->uri = '/v2/note/'.$noteId.'/comment/'.$commentId;
$this->type = 'GET';
return $this;
}
public function deleteComment($noteId, $commentId)
{
$this->uri = '/v2/note/'.$noteId.'/comment/'.$id;
$this->type = 'DELETE';
return $this;
}
}