]> git.sesse.net Git - vlc/blob - modules/misc/audioscrobbler.c
Makefile.am: Put hdiutil into verbose mode in package-macosx creation.
[vlc] / modules / misc / audioscrobbler.c
1 /*****************************************************************************
2  * audioscrobbler.c : audioscrobbler submission plugin
3  *****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Author: Rafaël Carré <funman at videolanorg>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /* audioscrobbler protocol version: 1.2
25  * http://www.audioscrobbler.net/development/protocol/
26  *
27  * TODO:    "Now Playing" feature (not mandatory)
28  */
29 /*****************************************************************************
30  * Preamble
31  *****************************************************************************/
32
33 #if defined( WIN32 )
34 #include <time.h>
35 #endif
36
37 #include <vlc/vlc.h>
38 #include <vlc_interface.h>
39 #include <vlc_meta.h>
40 #include <vlc_md5.h>
41 #include <vlc_block.h>
42 #include <vlc_stream.h>
43 #include <vlc_url.h>
44 #include <vlc_network.h>
45 #include <vlc_interface.h>
46 #include <vlc_playlist.h>
47
48 /*****************************************************************************
49  * Local prototypes
50  *****************************************************************************/
51
52 /* Keeps track of metadata to be submitted */
53 typedef struct audioscrobbler_song_t
54 {
55     char        *psz_a;             /**< track artist     */
56     char        *psz_t;             /**< track title      */
57     char        *psz_b;             /**< track album      */
58     char        *psz_n;             /**< track number     */
59     int         i_l;                /**< track length     */
60     char        *psz_m;             /**< musicbrainz id   */
61     time_t      date;               /**< date since epoch */
62 } audioscrobbler_song_t;
63
64 struct intf_sys_t
65 {
66     audioscrobbler_song_t   p_queue[50];        /**< songs not submitted yet*/
67     int                     i_songs;            /**< number of songs        */
68
69     vlc_mutex_t             lock;               /**< p_sys mutex            */
70
71     /* data about audioscrobbler session */
72     time_t                  next_exchange;      /**< when can we send data  */
73     unsigned int            i_interval;         /**< waiting interval (secs)*/
74
75     /* submission of played songs */
76     char                    *psz_submit_host;   /**< where to submit data   */
77     int                     i_submit_port;      /**< port to which submit   */
78     char                    *psz_submit_file;   /**< file to which submit   */
79
80     /* submission of playing song */
81 #if 0 //NOT USED
82     char                    *psz_nowp_host;     /**< where to submit data   */
83     int                     i_nowp_port;        /**< port to which submit   */
84     char                    *psz_nowp_file;     /**< file to which submit   */
85 #endif
86     vlc_bool_t              b_handshaked;       /**< are we authenticated ? */
87     char                    psz_auth_token[33]; /**< Authentication token */
88
89     /* data about song currently playing */
90     audioscrobbler_song_t   p_current_song;     /**< song being played      */
91
92     time_t                  time_pause;         /**< time when vlc paused   */
93     time_t                  time_total_pauses;  /**< total time in pause    */
94
95     vlc_bool_t              b_submit;           /**< do we have to submit ? */
96
97     vlc_bool_t              b_state_cb;         /**< if we registered the
98                                                  * "state" callback         */
99
100     vlc_bool_t              b_meta_read;        /**< if we read the song's
101                                                  * metadata already         */
102 };
103
104 static int  Open            ( vlc_object_t * );
105 static void Close           ( vlc_object_t * );
106 static void Unload          ( intf_thread_t * );
107 static void Run             ( intf_thread_t * );
108
109 static int ItemChange       ( vlc_object_t *, const char *, vlc_value_t,
110                                 vlc_value_t, void * );
111 static int PlayingChange    ( vlc_object_t *, const char *, vlc_value_t,
112                                 vlc_value_t, void * );
113
114 static int AddToQueue       ( intf_thread_t * );
115 static int Handshake        ( intf_thread_t * );
116 static int ReadMetaData     ( intf_thread_t * );
117 static void DeleteSong      ( audioscrobbler_song_t* );
118 static int ParseURL         ( char *, char **, char **, int * );
119 static void HandleInterval  ( time_t *, unsigned int * );
120
121 /*****************************************************************************
122  * Module descriptor
123  ****************************************************************************/
124
125 #define USERNAME_TEXT       N_("Username")
126 #define USERNAME_LONGTEXT   N_("The username of your last.fm account")
127 #define PASSWORD_TEXT       N_("Password")
128 #define PASSWORD_LONGTEXT   N_("The password of your last.fm account")
129
130 /* This error value is used when last.fm plugin has to be unloaded. */
131 #define VLC_AUDIOSCROBBLER_EFATAL -69
132
133 /* last.fm client identifier */
134 #define CLIENT_NAME     PACKAGE
135 #define CLIENT_VERSION  VERSION
136
137 /* HTTP POST request : to submit data */
138 #define    POST_REQUEST "POST /%s HTTP/1.1\n"                               \
139                         "Accept-Encoding: identity\n"                       \
140                         "Content-length: %u\n"                              \
141                         "Connection: close\n"                               \
142                         "Content-type: application/x-www-form-urlencoded\n" \
143                         "Host: %s\n"                                        \
144                         "User-agent: VLC Media Player/%s\r\n"               \
145                         "\r\n"                                              \
146                         "%s\r\n"                                            \
147                         "\r\n"
148
149 vlc_module_begin();
150     set_category( CAT_INTERFACE );
151     set_subcategory( SUBCAT_INTERFACE_CONTROL );
152     set_shortname( N_( "Audioscrobbler" ) );
153     set_description( N_("Submission of played songs to last.fm") );
154     add_string( "lastfm-username", "", NULL,
155                 USERNAME_TEXT, USERNAME_LONGTEXT, VLC_FALSE );
156     add_password( "lastfm-password", "", NULL,
157                 PASSWORD_TEXT, PASSWORD_LONGTEXT, VLC_FALSE );
158     set_capability( "interface", 0 );
159     set_callbacks( Open, Close );
160 vlc_module_end();
161
162 /*****************************************************************************
163  * Open: initialize and create stuff
164  *****************************************************************************/
165 static int Open( vlc_object_t *p_this )
166 {
167     playlist_t      *p_playlist;
168     intf_thread_t   *p_intf     = ( intf_thread_t* ) p_this;
169     intf_sys_t      *p_sys      = calloc( 1, sizeof( intf_sys_t ) );
170
171     if( !p_sys )
172         return VLC_ENOMEM;
173
174     p_intf->p_sys = p_sys;
175
176     vlc_mutex_init( p_this, &p_sys->lock );
177
178     p_playlist = pl_Yield( p_intf );
179     PL_LOCK;
180     var_AddCallback( p_playlist, "playlist-current", ItemChange, p_intf );
181     PL_UNLOCK;
182     pl_Release( p_playlist );
183
184     p_intf->pf_run = Run;
185
186     return VLC_SUCCESS;
187 }
188
189 /*****************************************************************************
190  * Close: destroy interface stuff
191  *****************************************************************************/
192 static void Close( vlc_object_t *p_this )
193 {
194     playlist_t                  *p_playlist;
195     input_thread_t              *p_input;
196     intf_thread_t               *p_intf = ( intf_thread_t* ) p_this;
197     intf_sys_t                  *p_sys  = p_intf->p_sys;
198
199     p_playlist = pl_Yield( p_intf );
200     PL_LOCK;
201
202     var_DelCallback( p_playlist, "playlist-current", ItemChange, p_intf );
203
204     p_input = p_playlist->p_input;
205     if ( p_input )
206     {
207         vlc_object_yield( p_input );
208
209         if( p_sys->b_state_cb )
210             var_DelCallback( p_input, "state", PlayingChange, p_intf );
211
212         vlc_object_release( p_input );
213     }
214
215     PL_UNLOCK;
216     pl_Release( p_playlist );
217
218     p_intf->b_dead = VLC_TRUE;
219     /* we lock the mutex in case p_sys is being accessed from a callback */
220     vlc_mutex_lock ( &p_sys->lock );
221     int i;
222     for( i = 0; i < p_sys->i_songs; i++ )
223         DeleteSong( &p_sys->p_queue[i] );
224     free( p_sys->psz_submit_host );
225     free( p_sys->psz_submit_file );
226 #if 0 //NOT USED
227     free( p_sys->psz_nowp_host );
228     free( p_sys->psz_nowp_file );
229 #endif
230     vlc_mutex_unlock ( &p_sys->lock );
231     vlc_mutex_destroy( &p_sys->lock );
232     free( p_sys );
233 }
234
235
236 /*****************************************************************************
237  * Unload: Unloads the audioscrobbler when encountering fatal errors
238  *****************************************************************************/
239 static void Unload( intf_thread_t *p_this )
240 {
241     vlc_object_kill( p_this );
242     vlc_object_detach( p_this );
243     if( p_this->p_module )
244         module_Unneed( p_this, p_this->p_module );
245     vlc_mutex_destroy( &p_this->change_lock );
246     vlc_object_destroy( p_this );
247 }
248
249 /*****************************************************************************
250  * Run : call Handshake() then submit songs
251  *****************************************************************************/
252 static void Run( intf_thread_t *p_intf )
253 {
254     char                    *psz_submit, *psz_submit_song, *psz_submit_tmp;
255     int                     i_net_ret;
256     int                     i_song;
257     uint8_t                 p_buffer[1024];
258     char                    *p_buffer_pos;
259     int                     i_post_socket;
260     vlc_bool_t              b_die;
261
262     intf_sys_t *p_sys = p_intf->p_sys;
263
264     /* main loop */
265     while( !p_intf->b_die && !p_intf->p_libvlc->b_die )
266     {
267         /* waiting for data to submit, if waiting interval is elapsed */
268         vlc_object_lock( p_intf );
269         if( time( NULL ) < p_sys->next_exchange )
270             b_die = vlc_object_timedwait( p_intf, p_sys->next_exchange );
271         else
272             b_die = vlc_object_wait( p_intf );
273         vlc_object_unlock( p_intf );
274
275         if( b_die )
276         {
277             msg_Dbg( p_intf, "audioscrobbler is dying");
278             return;
279         }
280
281         /* handshake if needed */
282         if( p_sys->b_handshaked == VLC_FALSE )
283         {
284             msg_Dbg( p_intf, "Handshaking with last.fm ..." );
285
286             switch( Handshake( p_intf ) )
287             {
288                 case VLC_ENOMEM:
289                     Unload( p_intf );
290                     return;
291
292                 case VLC_ENOVAR:
293                     /* username not set */
294                     intf_UserFatal( p_intf, VLC_FALSE,
295                         _("Last.fm username not set"),
296                         _("Please set a username or disable the "
297                         "audioscrobbler plugin, and restart VLC.\n"
298                         "Visit http://www.last.fm/join/ to get an account.")
299                     );
300                     Unload( p_intf );
301                     return;
302
303                 case VLC_SUCCESS:
304                     msg_Dbg( p_intf, "Handshake successfull :)" );
305                     p_sys->b_handshaked = VLC_TRUE;
306                     p_sys->i_interval = 0;
307                     time( &p_sys->next_exchange );
308                     break;
309
310                 case VLC_AUDIOSCROBBLER_EFATAL:
311                     msg_Warn( p_intf, "Unloading..." );
312                     Unload( p_intf );
313                     return;
314
315                 case VLC_EGENERIC:
316                 default:
317                     /* protocol error : we'll try later */
318                     HandleInterval( &p_sys->next_exchange, &p_sys->i_interval );
319                     break;
320             }
321             /* if handshake failed let's restart the loop */
322             if( p_sys->b_handshaked == VLC_FALSE )
323                 continue;
324         }
325
326         msg_Dbg( p_intf, "Going to submit some data..." );
327
328         if( !asprintf( &psz_submit, "s=%s", p_sys->psz_auth_token ) )
329         {   /* Out of memory */
330             Unload( p_intf );
331             return;
332         }
333
334         /* forge the HTTP POST request */
335         vlc_mutex_lock( &p_sys->lock );
336         audioscrobbler_song_t *p_song;
337         for( i_song = 0 ; i_song < p_sys->i_songs ; i_song++ )
338         {
339             p_song = &p_sys->p_queue[i_song];
340             if( !asprintf( &psz_submit_song,
341                     "&a%%5B%d%%5D=%s&t%%5B%d%%5D=%s"
342                     "&i%%5B%d%%5D=%llu&o%%5B%d%%5D=P&r%%5B%d%%5D="
343                     "&l%%5B%d%%5D=%d&b%%5B%d%%5D=%s"
344                     "&n%%5B%d%%5D=%s&m%%5B%d%%5D=%s",
345                     i_song, p_song->psz_a,           i_song, p_song->psz_t,
346                     i_song, (uintmax_t)p_song->date, i_song, i_song,
347                     i_song, p_song->i_l,             i_song, p_song->psz_b,
348                     i_song, p_song->psz_n,           i_song, p_song->psz_m
349             ) )
350             {   /* Out of memory */
351                 vlc_mutex_unlock( &p_sys->lock );
352                 Unload( p_intf );
353                 return;
354             }
355             psz_submit_tmp = psz_submit;
356             if( !asprintf( &psz_submit, "%s%s",
357                     psz_submit_tmp, psz_submit_song ) )
358             {   /* Out of memory */
359                 free( psz_submit_tmp );
360                 free( psz_submit_song );
361                 vlc_mutex_unlock( &p_sys->lock );
362                 Unload( p_intf );
363                 return;
364             }
365             free( psz_submit_song );
366             free( psz_submit_tmp );
367         }
368         vlc_mutex_unlock( &p_sys->lock );
369
370         i_post_socket = net_ConnectTCP( p_intf,
371             p_sys->psz_submit_host, p_sys->i_submit_port );
372
373         if ( i_post_socket == -1 )
374         {
375             /* If connection fails, we assume we must handshake again */
376             HandleInterval( &p_sys->next_exchange, &p_sys->i_interval );
377             p_sys->b_handshaked = VLC_FALSE;
378             free( psz_submit );
379             continue;
380         }
381
382         /* we transmit the data */
383         i_net_ret = net_Printf(
384             VLC_OBJECT( p_intf ), i_post_socket, NULL,
385             POST_REQUEST, p_sys->psz_submit_file,
386             (unsigned)strlen( psz_submit ), p_sys->psz_submit_file,
387             VERSION, psz_submit
388         );
389
390         free( psz_submit );
391         if ( i_net_ret == -1 )
392         {
393             /* If connection fails, we assume we must handshake again */
394             HandleInterval( &p_sys->next_exchange, &p_sys->i_interval );
395             p_sys->b_handshaked = VLC_FALSE;
396             continue;
397         }
398
399         i_net_ret = net_Read( p_intf, i_post_socket, NULL,
400                     p_buffer, 1023, VLC_FALSE );
401         if ( i_net_ret <= 0 )
402         {
403             /* if we get no answer, something went wrong : try again */
404             continue;
405         }
406
407         net_Close( i_post_socket );
408         p_buffer[i_net_ret] = '\0';
409
410         p_buffer_pos = strstr( ( char * ) p_buffer, "FAILED" );
411         if ( p_buffer_pos )
412         {
413             msg_Warn( p_intf, "%s", p_buffer_pos );
414             HandleInterval( &p_sys->next_exchange, &p_sys->i_interval );
415             continue;
416         }
417
418         p_buffer_pos = strstr( ( char * ) p_buffer, "BADSESSION" );
419         if ( p_buffer_pos )
420         {
421             msg_Dbg( p_intf, "Authentication failed (BADSESSION), are you connected to last.fm with another program ?" );
422             p_sys->b_handshaked = VLC_FALSE;
423             HandleInterval( &p_sys->next_exchange, &p_sys->i_interval );
424             continue;
425         }
426
427         p_buffer_pos = strstr( ( char * ) p_buffer, "OK" );
428         if ( p_buffer_pos )
429         {
430             int i;
431             for( i = 0; i < p_sys->i_songs; i++ )
432                 DeleteSong( &p_sys->p_queue[i] );
433             p_sys->i_songs = 0;
434             p_sys->i_interval = 0;
435             time( &p_sys->next_exchange );
436             msg_Dbg( p_intf, "Submission successful!" );
437         }
438         else
439         {
440             msg_Dbg( p_intf, "Authentication failed, handshaking again (%s)", 
441                              p_buffer );
442             p_sys->b_handshaked = VLC_FALSE;
443             HandleInterval( &p_sys->next_exchange, &p_sys->i_interval );
444             continue;
445         }
446     }
447 }
448
449 /*****************************************************************************
450  * PlayingChange: Playing status change callback
451  *****************************************************************************/
452 static int PlayingChange( vlc_object_t *p_this, const char *psz_var,
453                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
454 {
455     intf_thread_t   *p_intf = ( intf_thread_t* ) p_data;
456     intf_sys_t      *p_sys  = p_intf->p_sys;
457
458     VLC_UNUSED( p_this ); VLC_UNUSED( psz_var );
459
460     if( p_intf->b_dead )
461         return VLC_SUCCESS;
462
463     if( p_sys->b_meta_read == VLC_FALSE && newval.i_int == PLAYING_S )
464         ReadMetaData( p_intf );
465
466     if( newval.i_int == END_S || newval.i_int == ERROR_S )
467     {
468         /* We'll try to add the previously playing song in the queue */
469         if( AddToQueue( p_intf ) == VLC_ENOMEM )
470             return VLC_ENOMEM;
471     }
472     else if( oldval.i_int == PLAYING_S && newval.i_int == PAUSE_S )
473         time( &p_sys->time_pause );
474     else if( oldval.i_int == PAUSE_S && newval.i_int == PLAYING_S )
475         p_sys->time_total_pauses += time( NULL ) - p_sys->time_pause;
476
477     return VLC_SUCCESS;
478 }
479
480 /*****************************************************************************
481  * ItemChange: Playlist item change callback
482  *****************************************************************************/
483 static int ItemChange( vlc_object_t *p_this, const char *psz_var,
484                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
485 {
486     playlist_t          *p_playlist;
487     input_thread_t      *p_input;
488     intf_thread_t       *p_intf     = ( intf_thread_t* ) p_data;
489     intf_sys_t          *p_sys      = p_intf->p_sys;
490     input_item_t        *p_item;
491     vlc_value_t         video_val;
492
493     VLC_UNUSED( p_this ); VLC_UNUSED( psz_var );
494     VLC_UNUSED( oldval ); VLC_UNUSED( newval );
495
496     if( p_intf->b_dead )
497         return VLC_SUCCESS;
498
499     p_sys->b_state_cb       = VLC_FALSE;
500     p_sys->b_meta_read      = VLC_FALSE;
501     p_sys->b_submit         = VLC_FALSE;
502
503     p_playlist = pl_Yield( p_intf );
504     PL_LOCK;
505     p_input = p_playlist->p_input;
506
507     if( !p_input || p_input->b_dead )
508     {
509         PL_UNLOCK;
510         pl_Release( p_playlist );
511         return VLC_SUCCESS;
512     }
513
514     vlc_object_yield( p_input );
515     PL_UNLOCK;
516     pl_Release( p_playlist );
517
518     p_item = input_GetItem( p_input );
519     if( !p_item )
520     {
521         vlc_object_release( p_input );
522         return VLC_SUCCESS;
523     }
524
525     var_Change( p_input, "video-es", VLC_VAR_CHOICESCOUNT, &video_val, NULL );
526     if( ( video_val.i_int > 0 ) || p_item->i_type == ITEM_TYPE_NET )
527     {
528         msg_Dbg( p_this, "Not an audio local file, not submitting");
529         vlc_object_release( p_input );
530         return VLC_SUCCESS;
531     }
532
533     p_sys->time_total_pauses = 0;
534     time( &p_sys->p_current_song.date );
535
536     var_AddCallback( p_input, "state", PlayingChange, p_intf );
537     p_sys->b_state_cb = VLC_TRUE;
538
539     if( input_item_IsPreparsed( p_item ) )
540         ReadMetaData( p_intf );
541     /* if the input item was not preparsed, we'll do it in PlayingChange()
542      * callback, when "state" == PLAYING_S */
543
544     vlc_object_release( p_input );
545     return VLC_SUCCESS;
546 }
547
548 /*****************************************************************************
549  * AddToQueue: Add the played song to the queue to be submitted
550  *****************************************************************************/
551 static int AddToQueue ( intf_thread_t *p_this )
552 {
553     time_t                      played_time;
554     intf_sys_t                  *p_sys = p_this->p_sys;
555
556     vlc_mutex_lock( &p_sys->lock );
557     if( !p_sys->b_submit )
558     {
559         DeleteSong( &p_sys->p_current_song );
560         vlc_mutex_unlock( &p_sys->lock );
561         return VLC_SUCCESS;
562     }
563
564     /* wait for the user to listen enough before submitting */
565     time ( &played_time );
566     played_time -= p_sys->p_current_song.date;
567     played_time -= p_sys->time_total_pauses;
568     if( ( played_time < 240 ) &&
569         ( played_time < ( p_sys->p_current_song.i_l / 2 ) ) )
570     {
571         msg_Dbg( p_this, "Song not listened long enough, not submitting" );
572         DeleteSong( &p_sys->p_current_song );
573         vlc_mutex_unlock( &p_sys->lock );
574         return VLC_SUCCESS;
575     }
576
577     if( p_sys->p_current_song.i_l < 30 )
578     {
579         msg_Dbg( p_this, "Song too short (< 30s), not submitting" );
580         DeleteSong( &p_sys->p_current_song );
581         vlc_mutex_unlock( &p_sys->lock );
582         return VLC_SUCCESS;
583     }
584
585     if( !p_sys->p_current_song.psz_a || !*p_sys->p_current_song.psz_a ||
586         !p_sys->p_current_song.psz_t || !*p_sys->p_current_song.psz_t )
587     {
588         msg_Dbg( p_this, "Missing artist or title, not submitting" );
589         DeleteSong( &p_sys->p_current_song );
590         vlc_mutex_unlock( &p_sys->lock );
591         return VLC_SUCCESS;
592     }
593
594     if( p_sys->i_songs == 50 )
595     {
596         msg_Warn( p_this, "Submission queue is full, not submitting" );
597         DeleteSong( &p_sys->p_current_song );
598         vlc_mutex_unlock( &p_sys->lock );
599         return VLC_SUCCESS;
600     }
601
602     msg_Dbg( p_this, "Song will be submitted." );
603
604 #define QUEUE_COPY( a ) \
605     p_sys->p_queue[p_sys->i_songs].a = p_sys->p_current_song.a
606
607 #define QUEUE_COPY_NULL( a ) \
608     QUEUE_COPY( a ); \
609     p_sys->p_current_song.a = NULL
610
611     QUEUE_COPY( i_l );
612     QUEUE_COPY_NULL( psz_n );
613     QUEUE_COPY_NULL( psz_a );
614     QUEUE_COPY_NULL( psz_t );
615     QUEUE_COPY_NULL( psz_b );
616     QUEUE_COPY_NULL( psz_m );
617     QUEUE_COPY( date );
618 #undef QUEUE_COPY_NULL
619 #undef QUEUE_COPY
620
621     p_sys->i_songs++;
622
623     /* signal the main loop we have something to submit */
624     vlc_object_lock( p_this );
625     vlc_cond_signal( &p_this->object_wait );
626     vlc_object_unlock( p_this );
627
628     vlc_mutex_unlock( &p_sys->lock );
629     return VLC_SUCCESS;
630 }
631
632 /*****************************************************************************
633  * ParseURL : Split an http:// URL into host, file, and port
634  *
635  * Example: "62.216.251.205:80/protocol_1.2"
636  *      will be split into "62.216.251.205", 80, "protocol_1.2"
637  *
638  * psz_url will be freed before returning
639  * *psz_file & *psz_host will be freed before use
640  *
641  * Return value:
642  *  VLC_ENOMEM      Out Of Memory
643  *  VLC_EGENERIC    Invalid url provided
644  *  VLC_SUCCESS     Success
645  *****************************************************************************/
646 static int ParseURL( char *psz_url, char **psz_host, char **psz_file,
647                         int *i_port )
648 {
649     int i_pos;
650     int i_len = strlen( psz_url );
651     FREENULL( *psz_host );
652     FREENULL( *psz_file );
653
654     i_pos = strcspn( psz_url, ":" );
655     if( i_pos == i_len )
656         return VLC_EGENERIC;
657
658     *psz_host = strndup( psz_url, i_pos );
659     if( !*psz_host )
660         return VLC_ENOMEM;
661
662     i_pos++; /* skip the ':' */
663     *i_port = atoi( psz_url + i_pos );
664     if( *i_port <= 0 )
665     {
666         FREENULL( *psz_host );
667         return VLC_EGENERIC;
668     }
669
670     i_pos = strcspn( psz_url, "/" );
671
672     if( i_pos == i_len )
673         return VLC_EGENERIC;
674
675     i_pos++; /* skip the '/' */
676     *psz_file = strdup( psz_url + i_pos );
677     if( !*psz_file )
678     {
679         FREENULL( *psz_host );
680         return VLC_ENOMEM;
681     }
682
683     free( psz_url );
684     return VLC_SUCCESS;
685 }
686
687 /*****************************************************************************
688  * Handshake : Init audioscrobbler connection
689  *****************************************************************************/
690 static int Handshake( intf_thread_t *p_this )
691 {
692     char                *psz_username, *psz_password;
693     time_t              timestamp;
694     char                psz_timestamp[33];
695
696     struct md5_s        p_struct_md5;
697
698     stream_t            *p_stream;
699     char                *psz_handshake_url;
700     uint8_t             p_buffer[1024];
701     char                *p_buffer_pos;
702
703     int                 i_ret;
704     char                *psz_url;
705
706     intf_thread_t       *p_intf                 = ( intf_thread_t* ) p_this;
707     intf_sys_t          *p_sys                  = p_this->p_sys;
708
709     psz_username = config_GetPsz( p_this, "lastfm-username" );
710     if( !psz_username )
711         return VLC_ENOMEM;
712
713     psz_password = config_GetPsz( p_this, "lastfm-password" );
714     if( !psz_password )
715     {
716         free( psz_username );
717         return VLC_ENOMEM;
718     }
719
720     /* username or password have not been setup */
721     if ( !*psz_username || !*psz_password )
722     {
723         free( psz_username );
724         free( psz_password );
725         return VLC_ENOVAR;
726     }
727
728     time( &timestamp );
729
730     /* generates a md5 hash of the password */
731     InitMD5( &p_struct_md5 );
732     AddMD5( &p_struct_md5, ( uint8_t* ) psz_password, strlen( psz_password ) );
733     EndMD5( &p_struct_md5 );
734
735     free( psz_password );
736
737     char *psz_password_md5 = psz_md5_hash( &p_struct_md5 );
738     if( !psz_password_md5 )
739     {
740         free( psz_username );
741         return VLC_ENOMEM;
742     }
743
744     snprintf( psz_timestamp, 33, "%llu", (uintmax_t)timestamp );
745
746     /* generates a md5 hash of :
747      * - md5 hash of the password, plus
748      * - timestamp in clear text
749      */
750     InitMD5( &p_struct_md5 );
751     AddMD5( &p_struct_md5, ( uint8_t* ) psz_password_md5, 32 );
752     AddMD5( &p_struct_md5, ( uint8_t* ) psz_timestamp, strlen( psz_timestamp ));
753     EndMD5( &p_struct_md5 );
754     free( psz_password_md5 );
755
756     char *psz_auth_token = psz_md5_hash( &p_struct_md5 );
757     if( !psz_auth_token )
758     {
759         free( psz_username );
760         return VLC_ENOMEM;
761     }
762     strncpy( &p_sys->psz_auth_token[0], psz_auth_token, 33 );
763     free( psz_auth_token );
764
765     if( !asprintf( &psz_handshake_url,
766     "http://post.audioscrobbler.com/?hs=true&p=1.2&c=%s&v=%s&u=%s&t=%s&a=%s",
767         CLIENT_NAME, CLIENT_VERSION, psz_username, psz_timestamp,
768         p_sys->psz_auth_token ) )
769     {
770         free( psz_username );
771         return VLC_ENOMEM;
772     }
773     free( psz_username );
774
775     /* send the http handshake request */
776     p_stream = stream_UrlNew( p_intf, psz_handshake_url );
777     free( psz_handshake_url );
778
779     if( !p_stream )
780         return VLC_EGENERIC;
781
782     /* read answer */
783     i_ret = stream_Read( p_stream, p_buffer, 1023 );
784     if( i_ret == 0 )
785     {
786         stream_Delete( p_stream );
787         return VLC_EGENERIC;
788     }
789     p_buffer[i_ret] = '\0';
790     stream_Delete( p_stream );
791
792     p_buffer_pos = strstr( ( char* ) p_buffer, "FAILED " );
793     if ( p_buffer_pos )
794     {
795         /* handshake request failed, sorry */
796         msg_Warn( p_this, "last.fm handshake failed: %s", p_buffer_pos + 7 );
797         return VLC_EGENERIC;
798     }
799
800     p_buffer_pos = strstr( ( char* ) p_buffer, "BADAUTH" );
801     if ( p_buffer_pos )
802     {
803         /* authentication failed, bad username/password combination */
804         intf_UserFatal( p_this, VLC_FALSE,
805             _("last.fm: Authentication failed"),
806             _("last.fm username or password is incorrect. "
807               "Please verify your settings and relaunch VLC." ) );
808         return VLC_AUDIOSCROBBLER_EFATAL;
809     }
810
811     p_buffer_pos = strstr( ( char* ) p_buffer, "BANNED" );
812     if ( p_buffer_pos )
813     {
814         /* oops, our version of vlc has been banned by last.fm servers */
815         msg_Err( p_intf, "This version of VLC has been banned by last.fm. "
816                          "You should upgrade VLC, or disable the last.fm plugin." );
817         return VLC_AUDIOSCROBBLER_EFATAL;
818     }
819
820     p_buffer_pos = strstr( ( char* ) p_buffer, "BADTIME" );
821     if ( p_buffer_pos )
822     {
823         /* The system clock isn't good */
824         msg_Err( p_intf, "last.fm handshake failed because your clock is too "
825                          "much shifted. Please correct it, and relaunch VLC." );
826         return VLC_AUDIOSCROBBLER_EFATAL;
827     }
828
829     p_buffer_pos = strstr( ( char* ) p_buffer, "OK" );
830     if ( !p_buffer_pos )
831         goto proto;
832
833     p_buffer_pos = strstr( p_buffer_pos, "\n" );
834     if( !p_buffer_pos || strlen( p_buffer_pos ) < 34 )
835         goto proto;
836     p_buffer_pos++; /* we skip the '\n' */
837
838     /* save the session ID */
839     snprintf( &p_sys->psz_auth_token[0], 33, "%s", p_buffer_pos );
840
841     p_buffer_pos = strstr( p_buffer_pos, "http://" );
842     if( !p_buffer_pos || strlen( p_buffer_pos ) == 7 )
843         goto proto;
844
845     /* We need to read the nowplaying url */
846     p_buffer_pos += 7; /* we skip "http://" */
847 #if 0 //NOT USED
848     psz_url = strndup( p_buffer_pos, strcspn( p_buffer_pos, "\n" ) );
849     if( !psz_url )
850         goto oom;
851
852     switch( ParseURL( psz_url, &p_sys->psz_nowp_host,
853                 &p_sys->psz_nowp_file, &p_sys->i_nowp_port ) )
854     {
855         case VLC_ENOMEM:
856             goto oom;
857         case VLC_EGENERIC:
858             goto proto;
859         case VLC_SUCCESS:
860         default:
861             break;
862     }
863 #endif
864     p_buffer_pos = strstr( p_buffer_pos, "http://" );
865     if( !p_buffer_pos || strlen( p_buffer_pos ) == 7 )
866         goto proto;
867
868     /* We need to read the submission url */
869     p_buffer_pos += 7; /* we skip "http://" */
870     psz_url = strndup( p_buffer_pos, strcspn( p_buffer_pos, "\n" ) );
871     if( !psz_url )
872         goto oom;
873
874     switch( ParseURL( psz_url, &p_sys->psz_submit_host,
875                 &p_sys->psz_submit_file, &p_sys->i_submit_port ) )
876     {
877         case VLC_ENOMEM:
878             goto oom;
879         case VLC_EGENERIC:
880             goto proto;
881         case VLC_SUCCESS:
882         default:
883             break;
884     }
885
886     return VLC_SUCCESS;
887
888 oom:
889     return VLC_ENOMEM;
890
891 proto:
892     msg_Warn( p_intf, "Handshake: can't recognize server protocol" );
893     return VLC_EGENERIC;
894 }
895
896 /*****************************************************************************
897  * DeleteSong : Delete the char pointers in a song
898  *****************************************************************************/
899 static void DeleteSong( audioscrobbler_song_t* p_song )
900 {
901     FREENULL( p_song->psz_a );
902     FREENULL( p_song->psz_b );
903     FREENULL( p_song->psz_t );
904     FREENULL( p_song->psz_m );
905     FREENULL( p_song->psz_n );
906 }
907
908 /*****************************************************************************
909  * ReadMetaData : Read meta data when parsed by vlc
910  *****************************************************************************/
911 static int ReadMetaData( intf_thread_t *p_this )
912 {
913     playlist_t          *p_playlist;
914     input_thread_t      *p_input;
915     input_item_t        *p_item;
916
917     intf_sys_t          *p_sys = p_this->p_sys;
918
919     p_playlist = pl_Yield( p_this );
920     PL_LOCK;
921     p_input = p_playlist->p_input;
922     if( !p_input )
923     {
924         PL_UNLOCK;
925         pl_Release( p_playlist );
926         return( VLC_SUCCESS );
927     }
928
929     vlc_object_yield( p_input );
930     PL_UNLOCK;
931     pl_Release( p_playlist );
932
933     p_item = input_GetItem( p_input );
934     if( !p_item )
935         return VLC_SUCCESS;
936
937     char *psz_meta;
938 #define ALLOC_ITEM_META( a, b ) \
939     psz_meta = input_item_Get##b( p_item ); \
940     if( psz_meta && *psz_meta ) \
941     { \
942         a = encode_URI_component( psz_meta ); \
943         if( !a ) \
944         { \
945             free( psz_meta ); \
946             return VLC_ENOMEM; \
947         } \
948         free( psz_meta ); \
949     }
950
951     vlc_mutex_lock( &p_sys->lock );
952
953     p_sys->b_meta_read = VLC_TRUE;
954
955     ALLOC_ITEM_META( p_sys->p_current_song.psz_a, Artist )
956     else
957     {
958         vlc_mutex_unlock( &p_sys->lock );
959         msg_Dbg( p_this, "No artist.." );
960         vlc_object_release( p_input );
961         free( psz_meta );
962         return VLC_EGENERIC;
963     }
964
965     ALLOC_ITEM_META( p_sys->p_current_song.psz_t, Title )
966     else
967     {
968         vlc_mutex_unlock( &p_sys->lock );
969         msg_Dbg( p_this, "No track name.." );
970         vlc_object_release( p_input );
971         free( p_sys->p_current_song.psz_a );
972         free( psz_meta );
973         return VLC_EGENERIC;
974     }
975
976     /* Now we have read the mandatory meta data, so we can submit that info */
977     p_sys->b_submit = VLC_TRUE;
978
979     ALLOC_ITEM_META( p_sys->p_current_song.psz_b, Album )
980     else
981         p_sys->p_current_song.psz_b = calloc( 1, 1 );
982
983     ALLOC_ITEM_META( p_sys->p_current_song.psz_m, TrackID )
984     else
985         p_sys->p_current_song.psz_m = calloc( 1, 1 );
986
987     p_sys->p_current_song.i_l = input_item_GetDuration( p_item ) / 1000000;
988
989     ALLOC_ITEM_META( p_sys->p_current_song.psz_n, TrackNum )
990     else
991         p_sys->p_current_song.psz_n = calloc( 1, 1 );
992 #undef ALLOC_ITEM_META
993
994     msg_Dbg( p_this, "Meta data registered" );
995
996     vlc_mutex_unlock( &p_sys->lock );
997     vlc_object_release( p_input );
998     return VLC_SUCCESS;
999
1000 }
1001
1002 static void HandleInterval( time_t *next, unsigned int *i_interval )
1003 {
1004     if( *i_interval == 0 )
1005     {
1006         /* first interval is 1 minute */
1007         *i_interval = 60;
1008     }
1009     else
1010     {
1011         /* else we double the previous interval, up to 120 minutes */
1012         *i_interval = *i_interval * 2;
1013         if( *i_interval > 60*120 )
1014             *i_interval = 60*120;
1015     }
1016     *next = time( NULL ) + *i_interval;
1017 }
1018