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