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
|
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <limits.h>
#include "artwork.h"
#include "escape.h"
#define BASE_URL "http://ws.audioscrobbler.com/2.0/"
#define API_KEY "6b33c8ae4d598a9aff8fe63e334e6e86"
//#define trace(...) { fprintf(stderr, __VA_ARGS__); }
#define trace(...)
extern DB_functions_t *deadbeef;
int
fetch_from_lastfm (const char *artist, const char *album, const char *dest)
{
char url [1024];
char *artist_url = uri_escape (artist, 0);
char *album_url = uri_escape (album, 0);
snprintf (url, sizeof (url), BASE_URL "?method=album.getinfo&api_key=" API_KEY "&artist=%s&album=%s", artist_url, album_url);
free (artist_url);
free (album_url);
DB_FILE *fp = deadbeef->fopen (url);
if (!fp) {
trace ("fetch_from_lastfm: failed to open %s\n", url);
return -1;
}
current_file = fp;
const char searchstr[] = "<image size=\"extralarge\">";
char buffer[1000];
memset (buffer, 0, sizeof (buffer));
char *img = NULL;
int size = deadbeef->fread (buffer, 1, sizeof (buffer)-1, fp);
if (size > 0) {
img = strstr (buffer, searchstr);
}
current_file = NULL;
deadbeef->fclose (fp);
if (!img) {
trace ("fetch_from_lastfm: image url not found in response from %s\n", url);
return -1;
}
img += sizeof (searchstr)-1;
char *end = strstr (img, "</image>");
if (!end || end == img) {
trace ("fetch_from_lastfm: bad xml (or image not found) from %s\n", url);
return -1;
}
*end = 0;
fp = deadbeef->fopen (img);
if (!fp) {
trace ("fetch_from_lastfm: failed to open %s\n", img);
return -1;
}
current_file = fp;
char temp[PATH_MAX];
snprintf (temp, sizeof (temp), "%s.part", dest);
FILE *out = fopen (temp, "w+b");
if (!out) {
trace ("fetch_from_lastfm: failed to open %s for writing\n", temp);
deadbeef->fclose (fp);
current_file = NULL;
return -1;
}
char *writebuffer[4096];
int len;
int error = 0;
while ((len = deadbeef->fread (writebuffer, 1, sizeof (writebuffer), fp)) > 0) {
if (fwrite (writebuffer, 1, len, out) != len) {
trace ("fetch_from_lastfm: failed to write to %s\n", dest);
error = 1;
break;
}
}
fclose (out);
current_file = NULL;
deadbeef->fclose (fp);
if (error) {
unlink (temp);
return -1;
}
if (rename (temp, dest) != 0) {
unlink (temp);
unlink (dest);
return -1;
}
return 0;
}
|