-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.js
executable file
·164 lines (159 loc) · 4.98 KB
/
app.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
#!/usr/bin/env node
const fs = require('fs');
const childProcess = require('child_process');
const axios = require('axios');
const yargs = require('yargs');
const argv = yargs
.options({
'n': {
alias: 'nasa',
describe: 'Choose NASA photo',
type: 'boolean'
},
'N': {
alias: 'ng',
describe: 'Choose National Geographic photo',
type: 'boolean'
},
'b': {
alias: 'before',
describe: 'Bing date option (# of days before)',
type: 'number',
default: 0,
choices: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]
},
'l': {
alias: 'locale',
describe: 'Bing locale option',
type: 'string',
default: 'en-US',
choices: ['ar-XA', 'bg-BG', 'cs-CZ', 'da-DK', 'de-AT', 'de-CH', 'de-DE', 'el-GR', 'en-AU', 'en-CA', 'en-GB', 'en-ID', 'en-IE', 'en-IN', 'en-MY', 'en-NZ', 'en-PH', 'en-SG', 'en-US', 'en-XA', 'en-ZA', 'es-AR', 'es-CL', 'es-ES', 'es-MX', 'es-US', 'es-XL', 'et-EE', 'fi-FI', 'fr-BE', 'fr-CA', 'fr-CH', 'fr-FR', 'he-IL', 'hr-HR', 'hu-HU', 'it-IT', 'ja-JP', 'ko-KR', 'lt-LT', 'lv-LV', 'nb-NO', 'nl-BE', 'nl-NL', 'pl-PL', 'pt-BR', 'pt-PT', 'ro-RO', 'ru-RU', 'sk-SK', 'sl-SL', 'sv-SE', 'th-TH', 'tr-TR', 'uk-UA', 'zh-CN', 'zh-HK', 'zh-TW']
},
'r': {
alias: 'resolution',
describe: 'Bing resolution option',
type: 'string',
default: '1920x1080',
choices: ['800x600', '1024x768', '1280x720', '1280x768', '1366x768', '1920x1080', '1920x1200']
},
'k': {
alias: 'key',
describe: 'NASA API key',
type: 'string',
default: 'DEMO_KEY'
},
'd': {
alias: 'date',
describe: 'NASA date option (YYYY-mm-dd)',
type: 'string',
default: new Date().toISOString().slice(0, 10)
},
'R': {
alias: 'random',
describe: 'NASA random option',
type: 'boolean'
},
'o': {
alias: 'option',
describe: 'Linux background display option',
type: 'string',
default: 'zoom',
choices: ['none', 'wallpaper', 'centered', 'scaled', 'stretched', 'zoom', 'spanned']
}
})
.help()
.alias('help', 'h')
.version()
.alias('version', 'v')
.check(argv => {
return argv.d.length === 10 && !isNaN(new Date(argv.d)) && new Date(argv.d).toISOString().slice(0, 10) === argv.d;
})
.argv;
const main = async () => {
let linux;
if (process.platform === 'linux') {
linux = true;
} else if (process.platform === 'darwin') {
linux = false;
} else {
console.error('Your platform is not supported yet.');
process.exitCode = 1;
}
let searchUrl;
if (argv.N) {
searchUrl = 'https://www.nationalgeographic.com/photography/photo-of-the-day/_jcr_content/.gallery.json';
} else if (argv.n) {
searchUrl = `https://api.nasa.gov/planetary/apod?api_key=${argv.k}&hd=True&${argv.R ? 'count=1' : `date=${argv.d}`}`;
} else {
let idx = 0;
let n = 1;
if (argv.b <= 7) {
idx = argv.b;
n = 1;
} else {
idx = 7;
n = argv.b - 6;
}
searchUrl = `https://www.bing.com/HPImageArchive.aspx?format=js&idx=${idx}&n=${n}&mkt=${argv.l}`;
}
let photo;
let photoUrl;
let photoName;
let photoDir = '/Pictures/';
await axios(searchUrl)
.then(res => {
if (argv.N) {
photo = res.data.items[0];
photoUrl = photo.originalUrl;
photoName = `${photo.title}.jpg`;
photoDir += 'National Geographic/';
} else if (argv.n) {
photo = argv.R ? res.data[0] : res.data;
if (photo.hdurl) {
photoUrl = photo.hdurl;
photoName = photoUrl.slice(photoUrl.lastIndexOf('/') + 1);
photoDir += 'NASA/';
} else {
console.error('There is no photo today.');
process.exitCode = 1;
}
} else {
photo = `${res.data.images[res.data.images.length - 1].urlbase}_${argv.r}.jpg`;
photoUrl = `https://www.bing.com${photo}`;
photoName = photo.slice(photo.indexOf('.') + 1);
photoDir += 'Bing/';
}
})
.catch(err => {
console.error(err);
process.exitCode = 1;
});
const directory = (linux ? '/home/' : '/Users/') + process.env.USER + photoDir;
const fileName = directory + photoName;
await fs.promises.mkdir(directory, { recursive: true })
.catch(err => {
console.error(err);
process.exitCode = 1;
});
await axios({ url: photoUrl, responseType: 'stream', timeout: 20000 })
.then(res => {
res.data.pipe(fs.createWriteStream(fileName));
})
.catch(err => {
console.error(err);
process.exitCode = 1;
});
let command;
if (linux) {
command = `gsettings set org.gnome.desktop.background picture-options "${argv.o}" & gsettings set org.gnome.desktop.background picture-uri "file://${fileName}"`;
} else {
command = `osascript -e 'tell application "Finder" to set desktop picture to POSIX file "${fileName}"'`;
}
childProcess.exec(command, (err, stdout, stderr) => {
if (err) {
console.error(err);
process.exitCode = 1;
}
});
};
main();