This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
forked from olds/phpbrainz
-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpBrainz.class.php
374 lines (323 loc) · 11.1 KB
/
phpBrainz.class.php
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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
<?php
/*
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
phpBrainz is a php class for querying the musicbrainz web service.
Copyright (c) 2007 Jeff Sherlock
*/
/**
* Contains most of the querying and processing
* methods for communicating with the musicbrainz
* XML webservice.
*
* @author Jeff Sherlock
* @copyright Jeff Sherlock 2007
* @package phpBrainz
* @name phpBrainz
*
*/
error_reporting(E_ALL);
define('ARTIST_URL', "http://musicbrainz.org/ws/1/artist/");
define('RELEASE_URL', "http://musicbrainz.org/ws/1/release/");
define('TRACK_URL', "http://musicbrainz.org/ws/1/track/");
define('LABEL_URL', "http://musicbrainz.org/ws/1/label/");
$curdir = dirname(__FILE__)."/";
require($curdir."phpBrainz.abstractFilter.class.php");
require($curdir."phpBrainz.releaseFilter.class.php");
require($curdir."phpBrainz.trackFilter.class.php");
require($curdir."phpBrainz.artistFilter.class.php");
require($curdir."phpBrainz.artist.class.php");
require($curdir."phpBrainz.track.class.php");
require($curdir."phpBrainz.release.class.php");
class phpBrainz{
//Holds the valid "include" types for album lookups
private $validAlbumInc = array(
"artist",
"counts",
"release-events",
"discs",
"tracks",
"artist-rels",
"label-rels",
"release-rels",
"track-rels",
"url-rels",
"track-level-rels",
"labels"
);
//Holds the valid "include" types for track lookups
private $validTrackInc = array(
"artist",
"releases",
"puids",
"artist-rels",
"label-rels",
"release-rels",
"track-rels",
"url-rels"
);
//Holds the valid "include" types for artist lookups
private $validArtistInc = array(
"aliases",
"release-groups",
"artist-rels",
"label-rels",
"release-rels",
"track-rels",
"url-rels",
"tags",
"ratings",
"user-tags",
"user-ratings",
"counts",
"release-events",
"discs",
"labels"
);
/**
* Performs a query based on the parameters
* supplied in the ReleaseFilter object. Returns
* an array of possible matches with scores, as
* returned by the musicBrainz XML web service.
* Note that these types of queries only return some
* information, and not all the information available
* about a particular release is available using
* this type of query. You will need to get the
* MusicBrainz id (mbid) and perform a lookup with
* getRelease to return complete information about
* a release.
*
* @return array
* @param phpBrainz_ReleaseFilter
*
*/
public function findRelease(phpBrainz_ReleaseFilter $releaseFilterObj){
if(sizeof($releaseFilterObj->createParameters())<1){
throw new Exception('The release filter object needs
at least 1 argument to create a query.');
}
$queryStr = RELEASE_URL."?type=xml";
$args = $releaseFilterObj->createParameters();
foreach($args as $key=>$value){
$args[$key] = utf8_encode($value);
}
$queryStr .= "&".http_build_query($args);
$xml = simplexml_load_file($queryStr);
if($xml === false){
throw new Exception("Unable to load XML file. URL: ".$queryStr);
}
if(empty($xml->{'release-list'}))
return array();
$releases = array();
foreach($xml->{'release-list'}->release as $release){
$releaseObj = $this->parseReleaseXML($release);
$releases[] = $releaseObj;
}
return $releases;
}
/**
* Performs a query based on the parameters
* supplied in the TrackFilter object. Returns
* an array of possible matches with scores, as
* returned by the musicBrainz XML web service.
* Note that these types of queries only return some
* information, and not all the information available
* about a particular track is available using
* this type of query. You will need to get the
* MusicBrainz id (mbid) and perform a lookup with
* getTrack to return complete information about
* a release. This method returns an array of
* Track objects that are possible matches.
*
* @param phpBrainz_TrackFilter $trackFilterObj
* @return array
*/
public function findTrack(phpBrainz_TrackFilter $trackFilterObj){
if(sizeof($trackFilterObj->createParameters())<1){
throw new Exception('The release filter object needs
at least 1 argument to create a query.');
}
$queryStr = TRACK_URL."?type=xml";
$args = $trackFilterObj->createParameters();
foreach($args as $key=>$value){
$args[$key] = utf8_encode($value);
}
$queryStr .= "&".http_build_query($args);
$xml = simplexml_load_file($queryStr);
if($xml === false){
throw new Exception("Unable to load XML file. URL: ".$queryStr);
}
if(empty($xml->{'track-list'}))
return array();
$tracks = array();
foreach($xml->{'track-list'}->track as $track){
# Must specify the namespace
$attrNS = $track->attributes("http://musicbrainz.org/ns/ext-1.0#");
$trackRels = array();
foreach($track->{'release-list'}->release as $release){
$trackRels[] = $this->parseReleaseXML($release);
}
$newTrack = $this->parseTrackXML($track);
$tracks[] = $newTrack;
}
return $tracks;
}
/**
* Retrieves a track given the musicbrainz id
* and an array of items to retrieve.
*
* @param string $mbid
* @param array $trackIncludes
* @return phpBrainz_Track
*/
public function getTrack($mbid, $trackIncludes=null){
if(!is_array($trackIncludes) && !is_null($trackIncludes)){
die(print("getTrack only takes 1 mbid and, if you wish, 1 array."));
}
if (is_null($trackIncludes)) {
$url = TRACK_URL.$mbid."?type=xml";
} else {
$url = TRACK_URL.$mbid."?type=xml&inc=";
$url .= implode("+",$trackIncludes);
}
$xml = simplexml_load_file($url);
if($xml === false){
throw new Exception("Unable to load XML file. URL: ".$url);
}
$track = $this->parseTrackXML($xml->track);
return $track;
}
/**
* Retrieves a release given the musicbrainz id
* and an array of items to retrieve.
*
* @param string $mbid
* @param array $albumIncludes
* @return phpBrainz_Release
*/
public function getRelease($mbid, $albumIncludes=null){
if(!is_array($albumIncludes) && !is_null($albumIncludes)){
die(print("getRelease only takes 1 mbid and, if you wish, 1 array."));
}
if (is_null($albumIncludes)) {
$url = RELEASE_URL.$mbid."?type=xml";
} else {
$url = RELEASE_URL.$mbid."?type=xml&inc=";
$url .= implode("+",$albumIncludes);
}
$xml = simplexml_load_file($url);
if($xml === false){
throw new Exception("Unable to load XML file. URL: ".$url);
}
$release = $this->parseReleaseXML($xml->release);
return $release;
}
/**
* Retrieves an artist given the musicbrainz id
* and an array of items to retrieve.
*
* @param string $mbid
* @param array $artistIncludes
* @return phpBrainz_Artist
*/
public function getArtist($mbid, $artistIncludes=null){
if(!is_array($artistIncludes) && !is_null($artistIncludes)){
die(print("getArtist only takes 1 mbid and, if you wish, 1 array."));
}
if (is_null($artistIncludes)) {
$url = ARTIST_URL.$mbid."?type=xml";
} else {
$url = ARTIST_URL.$mbid."?type=xml&inc=";
$url .= implode("+",$artistIncludes);
}
$xml = simplexml_load_file($url);
if($xml === false){
throw new Exception("Unable to load XML file. URL: ".$url);
}
$artist = $this->parseArtistXML($xml->artist);
return $artist;
}
/**
* Tests whether the input string
* has the same form of a valid
* musicbrainz id. Does not check to
* see if the id exists in the
* musicbrainz database.
*
* @param string $str
* @return boolean
*/
public static function isValidMBID($str){
$strArray = explode("-",$str);
if(
sizeof($strArray) !=5 ||
strlen($strArray[0])!=8 ||
strlen($strArray[1])!=4 ||
strlen($strArray[2])!=4 ||
strlen($strArray[3])!=4 ||
strlen($strArray[4])!=12)
{
return false;
}
return true;
}
private function parseArtistXML($artist){
$newArtist = new phpBrainz_Artist();
$newArtist->setName((string)$artist->name);
$newArtist->setSortName((string)$artist->{'sort-name'});
$newArtist->setId((string)$artist['id']);
$newArtist->setBeginDate((string)$artist->{'life-span'}['begin']);
$newArtist->setEndDate((string)$artist->{'life-span'}['end']);
return $newArtist;
}
private function parseTrackXML($track){
$newTrack = new phpBrainz_Track();
$newArtist = $this->parseArtistXML($track->artist);
$attrNS = $track->attributes("http://musicbrainz.org/ns/ext-1.0#");
$newTrack->setArtist($newArtist);
$newTrack->setId((string)$track['id']);
$newTrack->setDuration((intval((string)$track->duration)));
$newTrack->setTitle((string)$track->title);
$newTrack->setScore((string)$attrNS->score);
if(isset($track->{'puid-list'})){
foreach($track->{'puid-list'}->puid as $puid){
$newTrack->addPuid((string)$puid['id']);
}
}
if(isset($track->{'release-list'}->release)){
$newRelease = $this->parseReleaseXML($track->{'release-list'}->release);
$newTrack->addRelease($newRelease);
}
return $newTrack;
}
private function parseReleaseXML($release){
$releaseObj = new phpBrainz_Release();
$artistObj = $this->parseArtistXML($release->artist);
$attrNS = $release->attributes("http://musicbrainz.org/ns/ext-1.0#");
$releaseObj->setScore((string)$attrNS->score);
$releaseObj->setArtist($artistObj);
$releaseObj->setId((string)$release['id']);
$releaseObj->setTitle((string)$release->title);
$releaseObj->setTracksCount((string)$release->{'track-list'}['count']);
$releaseObj->setTracksOffset((string)$release->{'track-list'}['offset']);
$releaseObj->setDiscCount((string)$release->{'disc-list'}['count']);
if(isset($release->{'track-list'})){
foreach($release->{'track-list'}->track as $trackXML){
$releaseObj->addTrack($this->parseTrackXML($trackXML));
}
}
if(isset($release->asin)){
$releaseObj->setASIN((string)$release->asin);
}
return $releaseObj;
}
}