-
Notifications
You must be signed in to change notification settings - Fork 1
/
picasa_import.js
executable file
·61 lines (48 loc) · 1.32 KB
/
picasa_import.js
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
#!/usr/bin/env node
/**
* Skrypt importujący wybrane zdjęcie z Google Picasa
*/
var bot = require('nodemw'),
client = new bot('config.js'),
URL = process.argv[2],
DEST = process.argv[3];
if (!URL || !DEST) {
console.log('Podaj link obrazka do importu i nazwę docelową');
console.log(process.argv[1] + ' <URL> <nazwa docelowa>');
process.exit(1);
}
URL = URL.replace('?feat=directlink', '');
client.log('Import: ' + URL);
client.log('Plik: ' + DEST);
client.fetchUrl(URL, function(err, resp) {
if (err) {
console.error(err);
return;
}
// pobierz opis i link do oryginału zdjęcia
matches = resp.match(/{'preload': (.*)},\n/);
if (!matches) {
console.error('JSON info not found!');
return;
}
// parsuj JSON z feed'em
var preload = JSON.parse(matches[1]),
feed = preload.feed;
//client.logData(feed);
var desc = feed.htmlCaption.trim(),
imageUrl = feed.media.thumbnail[0].url;
client.log('Zdjęcie: ' + imageUrl);
client.log('Opis: ' + desc);
// upload
client.logIn(function() {
var params = {
comment: 'Import z Google Picasa',
text: ('{{Picasa|' + URL +'}}\n\n' + desc).trim()
};
client.log('Wrzucam plik <' + imageUrl + '> jako <' + DEST + '>...');
// dodaj zdjęcie
client.uploadByUrl(DEST, imageUrl, params, function(res) {
console.log('Import zakończony');
});
});
});