DoubanEvent.php
2.35 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
<?php
/**
* @file DoubanEvent.php
* @brief 豆瓣同城API接口
* @author JonChou <ilorn.mc@gmail.com>
* @date 2012-12-05
*/
class DoubanEvent extends DoubanBase {
/**
* @brief 构造函数,初始设置clientId
*
* @param string $clientId
*
* @return void
*/
public function __construct($clientId)
{
$this->clientId = $clientId;
}
public function get($id)
{
$this->uri = '/v2/event/'.$id;
$this->type = 'GET';
return $this;
}
public function participants($id)
{
$this->uri = '/v2/event/'.$id.'/participants';
$this->type = 'GET';
return $this;
}
public function wishers($id)
{
$this->uri = '/v2/event/'.$id.'/wishers';
$this->type = 'GET';
return $this;
}
public function userCreated($id)
{
$this->uri = '/v2/event/user_created/'.$id;
$this->type = 'GET';
return $this;
}
public function userParticipated($id)
{
$this->uri = '/v2/event/user_participated/'.$id;
$this->type = 'GET';
return $this;
}
public function userWished($id)
{
$this->uri = '/v2/event/user_wished/'.$id;
$this->type = 'GET';
return $this;
}
public function eventList()
{
$this->uri = '/v2/event/list';
$this->type = 'GET';
return $this;
}
public function loc($id)
{
$this->uri = '/v2/loc/'.$id;
$this->type = 'GET';
return $this;
}
public function locList()
{
$this->uri = '/v2/loc/list';
$this->type = 'GET';
return $this;
}
public function join($id)
{
$this->uri = '/v2/event/'.$id.'/participants';
$this->type = 'POST';
return $this;
}
public function quit($id)
{
$this->uri = '/v2/event/'.$id.'/participants';
$this->type = 'DELETE';
return $this;
}
public function wish($id)
{
$this->uri = '/v2/event/'.$id.'/wishers';
$this->type = 'POST';
return $this;
}
public function unwish($id)
{
$this->uri = '/v2/event/'.$id.'/wishers';
$this->type = 'DELETE';
return $this;
}
}