-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMarvelAPI_Characters.php
More file actions
266 lines (219 loc) · 7 KB
/
Copy pathMarvelAPI_Characters.php
File metadata and controls
266 lines (219 loc) · 7 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
<?php
/**
* Marvel API - Events Wrapper.
*
* @see http://developer.marvel.com/docs
*/
require_once 'MarvelAPI.php';
require_once 'MarvelAPI_Curl.php';
class MarvelAPI_Events extends MarvelAPI {
/**
* End Point for Series.
* @var unknown
*/
private $charactersEndPoint = '/v1/public/characters';
/**
* Search for a specific event.
*
* @param unknown $name
* @param string $modifiedSince
* @param string $comics
* @param string $series
* @param string $events
* @param string $creators
* @param string $characters
* @param string $stories
* @param string $orderBy
* @param string $limit
* @param string $offset
* @return unknown
*/
public function search($name, $modifiedSince=NULL, $comics=NULL, $series=NULL, $events=NULL, $stories=NULL,
$orderBy=NULL, $limit=NULL, $offset=NULL){
//Create the call. Parameters Keys from the API Specs.
$params['name'] = $name;
$params['modifiedSince'] = $modifiedSince;
$params['comics'] = $comics;
$params['stories'] = $stories;
$params['series'] = $series;
$params['orderBy'] = $orderBy;
$params['limit'] = $limit;
$params['offset'] = $offset;
$params['events'] = $events;
$url = parent::initCall($this->charactersEndPoint, $params);
//Send the call.
$response = MarvelAPI_Curl::doCall($url);
return $response;
}
/**
* Fetch a specific character by id.
*
* @param int $eventId
*/
public function fetchById($id){
if(!ctype_digit($id)){
throw new Exception("Supplied character id is not valid.");
}
$url = parent::initCall($this->characterEndPoint."/$id");
//Send the call.
$response = MarvelAPI_Curl::doCall($url);
return $response;
}
/**
* Fetch the comics for a specific event.
*
* @param unknown $seriesId
* @param string $format
* @param string $formatType
* @param string $noVariants
* @param string $dateDescriptor
* @param string $dateRange
* @param string $hasDigitalIssue
* @param string $modifiedSince
* @param string $creators
* @param string $characters
* @param string $events
* @param string $stories
* @param string $sharedAppearances
* @param string $collaborators
* @param string $orderBy
* @param string $limit
* @param string $offset
* @throws Exception
* @return unknown
*/
public function fetchComics($id, $format=NULL, $formatType=NULL,
$noVariants=NULL, $dateDescriptor=NULL, $dateRange=NULL, $hasDigitalIssue=NULL,
$modifiedSince=NULL, $creators=NULL, $series=NULL, $events=NULL, $stories=NULL,
$sharedAppearances=NULL, $collaborators=NULL, $orderBy=NULL, $limit=NULL, $offset=NULL){
//Create the call. Parameters Keys from the API Specs.
$params['format'] = $format;
$params['formatType'] = $formatType;
$params['noVariants'] = $noVariants;
$params['dateDescriptors'] = $dateDescriptor;
$params['dateRange'] = $dateRange;
$params['hasDigitalIssue'] = $hasDigitalIssue;
$params['modifiedSince'] = $modifiedSince;
$params['creators'] = $creators;
$params['events'] = $events;
$params['series'] = $series;
$params['sharedAppearances'] = $sharedAppearances;
$params['collaborators'] = $collaborators;
$params['orderBy'] = $orderBy;
$params['limit'] = $limit;
$params['offset'] = $offset;
$url = parent::initCall($this->charactersEndPoint."/$id/comics", $params);
//Send the call.
$response = MarvelAPI_Curl::doCall($url);
return $response;
}
/**
* Fetch events for a specific story.
*
* @param unknown $storyId
* @param string $name
* @param string $modifiedSince
* @param string $creators
* @param string $characters
* @param string $comics
* @param string $series
* @param string $orderBy
* @param string $limit
* @param string $offset
* @throws Exception
* @return unknown
*/
public function fetchEvents($id, $name=NULL, $modifiedSince=NULL, $creators=NULL, $series=NULL, $comics=NULL,
$stories=NULL, $orderBy=NULL, $limit=NULL, $offset=NULL){
if(!ctype_digit($storyId)){
throw new Exception("Supplied story id not valid.");
}
//Create the call. Parameters Keys from the API Specs.
$params['name'] = $name;
$params['modifiedSince'] = $modifiedSince;
$params['comics'] = $comics;
$params['series'] = $series;
$params['creators'] = $creators;
$params['orderBy'] = $orderBy;
$params['limit'] = $limit;
$params['offset'] = $offset;
$params['stories'] = $stories;
$url = parent::initCall($this->charactersEndPoint."/$id/events", $params);
//Send the call.
$response = MarvelAPI_Curl::doCall($url);
return $response;
}
/**
* Fetch events for a specific story.
*
* @param unknown $storyId
* @param string $name
* @param string $modifiedSince
* @param string $creators
* @param string $characters
* @param string $comics
* @param string $series
* @param string $orderBy
* @param string $limit
* @param string $offset
* @throws Exception
* @return unknown
*/
public function fetchSeries($id, $title=NULL, $modifiedSince=NULL, $comics=NULL, $stories=NULL, $events=NULL, $creators=NULL,
$seriesType=NULL, $contains=NULL, $orderBy=NULL, $limit=NULL, $offset=NULL){
if(!ctype_digit($id)){
throw new Exception("Supplied id is not valid.");
}
//Create the call. Parameters Keys from the API Specs.
$params['title'] = $title;
$params['modifiedSince'] = $modifiedSince;
$params['comics'] = $comics;
$params['stories'] = $stories;
$params['creators'] = $creators;
$params['events'] = $events;
$params['seriesType'] = $seriesType;
$params['contains'] = $contains;
$params['orderBy'] = $orderBy;
$params['limit'] = $limit;
$params['offset'] = $offset;
$url = parent::initCall($this->charactersEndPoint."/$id/series", $params);
//Send the call.
$response = MarvelAPI_Curl::doCall($url);
return $response;
}
/**
* Fetch the stories for a specific series.
*
* @param int $seriesId
* @param string $modifiedSince
* @param string $comics
* @param string $events
* @param string $creators
* @param string $characters
* @param string $orderBy
* @param string $limit
* @param string $offset
* @throws Exception
* @return unknown
*/
public function fetchStories($id, $modifiedSince=NULL, $comics=NULL, $series=NULL, $events=NULL, $creators=NULL,
$orderBy=NULL, $limit=NULL, $offset=NULL){
if(!ctype_digit($id)){
throw new Exception("Supplied id not valid.");
}
//Create the call. Parameters Keys from the API Specs.
$params['modifiedSince'] = $modifiedSince;
$params['comics'] = $comics;
$params['series'] = $series;
$params['creators'] = $creators;
$params['characters'] = $characters;
$params['orderBy'] = $orderBy;
$params['limit'] = $limit;
$params['offset'] = $offset;
$params['events'] = $events;
$url = parent::initCall($this->charactersEndPoint."/$id/stories", $params);
//Send the call.
$response = MarvelAPI_Curl::doCall($url);
return $response;
}
}