-
Notifications
You must be signed in to change notification settings - Fork 5
/
Scrobbler.php
401 lines (362 loc) · 9.95 KB
/
Scrobbler.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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
<?php
/**
* PHP Scrobbler
*
* VERSION 1.1.2
*
* This class lets you submit tracks to a lastfm account. Curl needed.
*
* Modified by Ben Isaacs (Last.fm) to support:
* * taking clientId and clientVer as params
* * optionally use Web Service Session auth
* * support submission of Now Playing info as well as scrobbles
*
* Basic usage:
*
* <?php
* require('md/Scrobbler.php');
* $scrobbler = new md_Scrobbler('lastfmUser', 'password');
* $scrobbler->add('Jerry Goldsmith', 'The space jockey', 'alien', 289);
* $scrobbler->submit();
* ?>
*
* @author Mickael Desfrenes <desfrenes@gmail.com>
* @author Ben Isaacs <ben@last.fm>
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link http://github.com/ben-xo/PHP-Scrobbler
*/
class md_Scrobbler_Exception extends Exception{}
class md_Scrobbler
{
// change this according to your client id and version
const CLIENT_ID = 'tst';
const CLIENT_VER = '1.0';
protected $clientId;
protected $clientVer;
const SCROBBLER_URL = 'https://post.audioscrobbler.com/?hs=true&p=1.2.1&c=<client-id>&v=<client-ver>&u=<user>&t=<timestamp>&a=<auth>';
const SCROBBLER_WS_URL = 'https://post.audioscrobbler.com/?hs=true&p=1.2.1&c=<client-id>&v=<client-ver>&u=<user>&t=<timestamp>&a=<auth>&api_key=<api_key>&sk=<session_key>';
// curl timeout
const TIMEOUT = 10;
// lastfm user
protected $user;
// lastfm user password
protected $password;
// scrobbler session id
protected $sessionId = '';
// last handshake failure timestamp (0 = no failure)
protected $handShakeFailure = 0;
// number of hard failures
protected $submitFailures = 0;
// store tracks here
protected $queue = array();
protected $nowPlayingUrl;
protected $submissionUrl;
protected $api_key;
protected $api_secret;
protected $api_sk;
public $debug = false;
/**
* New md_Scrobbler
*
* You must supply either a password, or an API Key / Secret / SK combination.
* The combination is preferred according to http://www.last.fm/api/submissions
*
* If you do not supply a client ID and Version, they will be taken from the class
* constants above.
*
* @param string LastFM login
* @param string LastFM password
* @param string LastFM API Key
* @param string LastFM API Secret
* @param string LastFM API Session Key
* @param string Client ID for scrobbling
* @param string Client Version for scrobbling
*/
public function __construct($user, $password=null, $api_key=null, $api_secret=null, $api_sk=null, $clientId=null, $clientVer=null)
{
$this->user = $user;
if(isset($api_key))
{
if(!isset($api_secret) || !isset($api_sk))
{
throw new md_Scrobbler_Exception('You must supply an API Secret and API Session Key to go with the API Key.');
}
$this->api_key = $api_key;
$this->api_secret = $api_secret;
$this->api_sk = $api_sk;
}
elseif(isset($password))
{
$this->password = $password;
}
else
{
throw new md_Scrobbler_Exception('You must supply either a password or an API Key.');
}
if(isset($clientId))
{
$this->clientId = $clientId;
}
else
{
$this->clientId = self::CLIENT_ID;
}
if(isset($clientVer))
{
$this->clientVer = $clientVer;
}
else
{
$this->clientVer = self::CLIENT_VER;
}
}
/**
* Add a track to the queue
*
* @param string artist name
* @param string track title
* @param string album title
* @param integer track length (seconds)
* @param integer track play timestamp
* @param integer track number
* @param string source type (see lastFM API docs)
* @param integer rating
* @param string music brain track ID
* @return boolean
*/
public function add($artist, $track, $album = '', $trackDuration = '', $scrobbleTime = '', $trackNumber = '', $source = 'P', $rating = '', $mbTrackId = '')
{
if($trackDuration === '')
{
throw new RuntimeException("$trackDuration is required");
}
if(empty($scrobbleTime))
{
$scrobbleTime = time();
}
$this->queue[] = array('artist' => $artist,
'track' => $track,
'scrobbleTime' => $scrobbleTime,
'trackDuration' => $trackDuration,
'album' => $album,
'trackNumber' => $trackNumber,
'source' => $source,
'rating' => $rating,
'mbTrackId' => $mbTrackId
);
return true;
}
public function getQueueSize()
{
return count($this->queue);
}
/**
* Submission process
*
* @throws md_Scrobbler_Exception
* @return boolean
*/
public function submit()
{
if(empty($this->queue))
{
throw new md_Scrobbler_Exception('Nothing to submit.');
return false;
}
$data = $this->generatePostData();
if($this->sendSubmission( 'submission' , $data ))
{
$this->queue = array();
}
}
public function nowPlaying($artist, $track, $album = '', $trackDuration = '', $trackNumber = '', $mbTrackId = '')
{
if($trackDuration === '')
{
throw new RuntimeException("$trackDuration is required");
}
$data = $this->generateNowPlayingPostData($artist, $track, $album, $trackDuration, $trackNumber, $mbTrackId);
$this->sendSubmission( 'nowPlaying', $data );
}
protected function sendSubmission($url_type, $post_data)
{
if(empty($this->sessionId) or $this->submitFailures > 2)
{
$this->handShake();
}
// add session id
$post_data = 's=' . $this->sessionId . '&' . $post_data;
if($url_type == 'nowPlaying')
{
$url = $this->nowPlayingUrl;
}
elseif($url_type == 'submission')
{
$url = $this->submissionUrl;
}
$data = $this->doCurl($url, $post_data);
$data = explode("\n", $data);
if($data[0] != 'OK')
{
$this->submitFailures++;
if($data[0] == 'BADSESSION')
{
throw new md_Scrobbler_Exception('Bad session id.');
}
else
{
throw new md_Scrobbler_Exception('Submission failed : ' . $data[0]);
}
return false;
}
else
{
return true;
}
}
protected function doCurl($url, $post_data)
{
if($this->debug)
{
echo "URL: $url\n";
if($post_data)
{
var_dump($post_data);
}
}
$curl = curl_init();
curl_setopt($curl, CURLOPT_TIMEOUT, self::TIMEOUT);
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, self::TIMEOUT);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POSTFIELDS, $post_data);
if(defined('SCROBBLER_LOG')) {
file_put_contents(SCROBBLER_LOG, time() . ' ' . $url . ': ' . $post_data . "\n", FILE_APPEND);
}
$data = curl_exec($curl);
if(defined('SCROBBLER_LOG')) {
file_put_contents(SCROBBLER_LOG, time() . ' ' . $data . "\n", FILE_APPEND);
}
if($this->debug) print "Response: $data\n";
curl_close ($curl);
return $data;
}
protected function handShake()
{
$url = $this->generateScrobblerUrl();
if($this->debug) print "Handshake URL: $url\n";
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_TIMEOUT, self::TIMEOUT);
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, self::TIMEOUT);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, TRUE);
$data = curl_exec($curl);
if($this->debug) print "Handshake Response: $data\n";
curl_close($curl);
$data = explode("\n", $data);
if($data[0] != 'OK')
{
$this->handShakeFailure = time();
switch($data[0])
{
case 'BANNED':
throw new md_Scrobbler_Exception('Client banned: ' . $data[0]);
break;
case 'BADTIME':
throw new md_Scrobbler_Exception('Wrong system clock: ' . $data[0]);
break;
case 'BADAUTH':
throw new md_Scrobbler_Exception('Wrong credentials: ' . $data[0]);
break;
default:
throw new md_Scrobbler_Exception('Unexpected handshake error: ' . $data[0]);
break;
}
return false;
}
else
{
$this->sessionId = trim($data[1]);
$this->nowPlayingUrl = trim($data[2]);
$this->submissionUrl = trim($data[3]);
$this->handShakeFailure = 0;
$this->submitFailures = 0;
return true;
}
return false;
}
protected function generateScrobblerUrl()
{
$stamp = time();
if(isset($this->password))
{
$url = str_replace(
array('<client-id>',
'<client-ver>',
'<user>',
'<timestamp>',
'<auth>'),
array($this->clientId,
$this->clientVer,
$this->user,
$stamp,
md5(md5($this->password) . $stamp)),
self::SCROBBLER_URL
);
}
else
{
$url = str_replace(
array('<client-id>',
'<client-ver>',
'<user>',
'<timestamp>',
'<auth>',
'<api_key>',
'<session_key>'),
array($this->clientId,
$this->clientVer,
$this->user,
$stamp,
md5($this->api_secret . $stamp),
$this->api_key,
$this->api_sk),
self::SCROBBLER_WS_URL
);
}
return $url;
}
protected function generatePostData()
{
$body = '';
$i = 0;
foreach($this->queue as $item)
{
$body .= 'a[' . $i . ']=' . rawurlencode($item['artist']) . '&'
. 't[' . $i . ']=' . rawurlencode($item['track']) . '&'
. 'i[' . $i . ']=' . $item['scrobbleTime'] . '&'
. 'o[' . $i . ']=' . $item['source'] . '&'
. 'r[' . $i . ']=' . $item['rating'] . '&'
. 'l[' . $i . ']=' . $item['trackDuration'] . '&'
. 'b[' . $i . ']=' . rawurlencode($item['album']) . '&'
. 'n[' . $i . ']=' . $item['trackNumber'] . '&'
. 'm[' . $i . ']=' . $item['mbTrackId'] . '&';
$i++;
}
$body = rtrim($body , '&');
return $body;
}
protected function generateNowPlayingPostData($artist, $track, $album = '', $trackDuration = '', $trackNumber = '', $mbTrackId = '')
{
if($trackDuration === '')
{
throw new RuntimeException("$trackDuration is required");
}
$body = 'a=' . rawurlencode((string)$artist) . '&'
. 't=' . rawurlencode((string)$track) . '&'
. 'l=' . $trackDuration . '&'
. 'b=' . rawurlencode($album) . '&'
. 'n=' . $trackNumber . '&'
. 'm=' . $mbTrackId;
return $body;
}
}