]> git.sesse.net Git - vlc/blob - modules/meta_engine/musicbrainz.c
25a0af901f28662492dd3560b6d0805d8c43f005
[vlc] / modules / meta_engine / musicbrainz.c
1 /*****************************************************************************
2  * musicbrainz.c
3  *****************************************************************************
4  * Copyright (C) 2006 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc/vlc.h>
33 #include <vlc_interface.h>
34 #include <vlc_input.h>
35 #include <vlc_playlist.h>
36 #include <vlc_meta.h>
37
38 #include "musicbrainz/mb_c.h"
39
40 /*****************************************************************************
41  * Local prototypes
42  *****************************************************************************/
43 static int FindArt( vlc_object_t * );
44
45 /*****************************************************************************
46  * Module descriptor
47  *****************************************************************************/
48
49 vlc_module_begin();
50     set_shortname( N_( "MusicBrainz" ) );
51     set_description( _("MusicBrainz meta data") );
52
53     /* This art finder module fetches the album ID from musicbrainz and
54      * uses it to fetch the amazon ASIN from musicbrainz.
55      * TODO:
56      *  - Add ability to reuse MB album ID if we already have it
57      */
58     set_capability( "art finder", 80 );
59     set_callbacks( FindArt, NULL );
60 vlc_module_end();
61
62 /*****************************************************************************
63  *****************************************************************************/
64
65 static int GetData( vlc_object_t *p_obj, input_item_t *p_item,
66                     bool b_art )
67 {
68     char psz_buf[256];
69     char psz_data[256];
70     char i_album_count, i;
71     char *ppsz_args[4];
72     bool b_art_found = false;
73
74     char *psz_artist;
75     char *psz_album;
76
77     psz_artist = input_item_GetArtist( p_item );
78     psz_album = input_item_GetAlbum( p_item );
79
80     if( !psz_artist || !psz_album )
81     {
82         free( psz_artist );
83         free( psz_album );
84         return VLC_EGENERIC;
85     }
86
87     musicbrainz_t p_mb;
88
89     p_mb = mb_New();
90 #ifdef WIN32
91     mb_WSAInit( p_mb );
92 #endif
93
94     mb_SetDepth( p_mb, 2 );
95     ppsz_args[0] = psz_album;
96     ppsz_args[1] = psz_artist;
97     ppsz_args[2] = NULL;
98     if( !mb_QueryWithArgs( p_mb,
99         "<mq:FindAlbum>\n" \
100         "   <mq:depth>@DEPTH@</mq:depth>\n" \
101         "   <mq:maxItems>@MAX_ITEMS@</mq:maxItems>\n" \
102         "   <mq:albumName>@1@</mq:albumName>\n" \
103         "   <mq:artistName>@2@</mq:artistName>\n" \
104         "</mq:FindAlbum>\n", ppsz_args ) )
105     {
106         mb_GetQueryError( p_mb, psz_buf, 256 );
107         msg_Err( p_obj, "Query failed: %s", psz_buf );
108         mb_Delete( p_mb );
109         free( psz_artist );
110         free( psz_album );
111         return VLC_EGENERIC;
112     }
113     free( psz_artist );
114     free( psz_album );
115
116     i_album_count = mb_GetResultInt( p_mb, MBE_GetNumAlbums );
117     if( i_album_count < 1 )
118     {
119         mb_Delete( p_mb );
120         return VLC_EGENERIC;
121     }
122
123     /** \todo Get the MB Track ID and store it */
124     msg_Dbg( p_obj, "found %d albums.\n", i_album_count );
125
126     for( i = 1; i <= i_album_count; i++ )
127     {
128         mb_Select( p_mb, MBS_Rewind );
129         mb_Select1( p_mb, MBS_SelectAlbum, i );
130
131         mb_GetResultData( p_mb, MBE_AlbumGetAlbumId, psz_data, 256 );
132         mb_GetIDFromURL( p_mb, psz_data, psz_buf, 256 );
133         msg_Dbg( p_obj, "album Id: %s", psz_buf );
134
135
136         if( !b_art )
137             break;
138
139         if( mb_GetResultData( p_mb, MBE_AlbumGetAmazonAsin, psz_buf, 256 ) )
140         {
141             msg_Dbg( p_obj, "Amazon ASIN: %s", psz_buf );
142             snprintf( psz_data, 255,
143                     "http://images.amazon.com/images/P/%s.01._SCLZZZZZZZ_.jpg",
144                     psz_buf );
145             msg_Dbg( p_obj, "Album art URL: %s", psz_data );
146             input_item_SetArtURL( p_item, psz_data );
147             b_art_found = true;
148             break;
149         }
150     }
151 #ifdef WIN32
152     mb_WSAInit( p_mb );
153 #endif
154     mb_Delete( p_mb );
155
156     if( !b_art )
157         return VLC_SUCCESS;
158     else
159         return b_art_found ? VLC_SUCCESS : VLC_EGENERIC;
160 }
161
162 static int FindArt( vlc_object_t *p_this )
163 {
164     playlist_t *p_playlist = (playlist_t *)p_this;
165     input_item_t *p_item = (input_item_t *)(p_playlist->p_private);
166     assert( p_item );
167
168     return GetData( VLC_OBJECT(p_playlist), p_item, true );
169 }