DoubanMovie.php
1.98 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
<?php
/**
* @file DoubanMovie.php
* @brief 豆瓣电影API接口
* @author JonChou <ilorn.mc@gmail.com>
* @date 2012-12-05
*/
class DoubanMovie extends DoubanBase {
/**
* @brief 构造函数,初始设置clientId
*
* @param string $clientId
*
* @return void
*/
public function __construct($clientId)
{
$this->clientId = $clientId;
}
/**
* @brief 获取电影信息
*
* @param string $id
*
* @return object
*/
public function get($id)
{
$this->uri = '/v2/movie/'.$id;
$this->type = 'GET';
return $this;
}
/**
* @brief 根据imdb号获取电影信息
*
* @param string $name
*
* @return object
*/
public function imdb($name)
{
$this->uri = '/v2/movie/imdb/'.$name;
$this->type = 'GET';
return $this;
}
public function search($q, $tag, $start = 0, $count = 20)
{
$params = array(
'q' => $q,
'tag' => $tag,
'start' => $start,
'count' => $count
);
$this->uri = '/v2/movie/search?'.http_build_query($params);
$this->type = 'GET';
return $this;
}
public function movieTags($id)
{
$this->uri = '/v2/movie/'.$id.'/tags';
$this->type = 'GET';
return $this;
}
public function userTags($id)
{
$this->uri = '/v2/movie/user_tags/'.$id;
$this->type = 'GET';
return $this;
}
public function addReview()
{
$this->uri = '/v2/movie/reviews';
$this->type = 'POST';
return $this;
}
public function editReview($id)
{
$this->uri = '/v2/movie/review/'.$id;
$this->type = 'PUT';
return $this;
}
public function deleteReview($id)
{
$this->uri = '/v2/movie/review/'.$id;
$this->type = 'DELETE';
return $this;
}
}