Skip to content

Commit c1e4b33

Browse files
committed
Add random option for NASA
1 parent ceaf7a5 commit c1e4b33

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Downloads [Bing Photo of the Day](https://www.bing.com), [NASA Astronomy Picture
1515
* Set date, locale & resolution for Bing photos.
1616
* Use custom API key for NASA.
1717
* Set date for NASA photos.
18+
* Choose a random photo from NASA.
1819
* Set background display option for Linux.
1920
* Stores all photos in _~/Pictures/Bing_ & _~/Pictures/NASA_.
2021
* Runs at startup automatically.
@@ -58,6 +59,7 @@ Flag | Short | Description | Usage
5859
`--resolution` | `-r` | Set resolution for Bing | `-r 1920x1200`
5960
`--key` | `-k` | Set API key for NASA | `-k SOME_API_KEY`
6061
`--date` | `-d` | Set date for NASA (YYYY-mm-dd) | `-d 2019-06-19`
62+
`--random` | `-R` | Choose a random photo from NASA | `-R`
6163
`--option` | `-o` | Set background display option for Linux | `-o centered`
6264

6365
## Examples
@@ -73,6 +75,7 @@ Example | Description
7375
`$ potd -b 1 -l en-GB -r 1920x1200` | Sets wallpaper as Bing from yesterday and Great Britain with 1920x1200 resolution
7476
`$ potd -n -k SOME_API_KEY` | Sets wallpaper as NASA using specified API key
7577
`$ potd -n -d 2019-06-18` | Sets wallpaper as NASA from 2019-06-18
78+
`$ potd -n -R` | Sets wallpaper as a random NASA photo
7679
`$ potd -n -k SOME_API_KEY -d 2019-06-18` | Sets wallpaper as NASA from 2019-06-18 using specified API key
7780
`$ potd -o centered` | Wallpaper centered on desktop
7881

@@ -87,6 +90,7 @@ Example | Description
8790
* [x] Resolution option for Bing
8891
* [x] Custom API key for NASA
8992
* [x] Date option for NASA
93+
* [x] Random option for NASA
9094
* [x] Background display option for Linux
9195
* [ ] Windows 10
9296
* [x] Mac OS X

app.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ const argv = yargs
5151
type: 'string',
5252
default: new Date().toISOString().slice(0, 10)
5353
},
54+
'R': {
55+
alias: 'random',
56+
describe: 'NASA random option',
57+
type: 'boolean'
58+
},
5459
'o': {
5560
alias: 'option',
5661
describe: 'Linux background display option',
@@ -79,7 +84,7 @@ const main = async () => {
7984
if (argv.N) {
8085
searchUrl = 'https://www.nationalgeographic.com/photography/photo-of-the-day/_jcr_content/.gallery.json';
8186
} else if (argv.n) {
82-
searchUrl = `https://api.nasa.gov/planetary/apod?api_key=${argv.k}&hd=True&date=${argv.d}`;
87+
searchUrl = `https://api.nasa.gov/planetary/apod?api_key=${argv.k}&hd=True&${argv.R ? 'count=1' : `date=${argv.d}`}`;
8388
} else {
8489
let idx = 0;
8590
let n = 1;
@@ -104,7 +109,7 @@ const main = async () => {
104109
photoName = `${photo.title}.jpg`;
105110
photoDir += 'National Geographic/';
106111
} else if (argv.n) {
107-
photo = res.data;
112+
photo = argv.R ? res.data[0] : res.data;
108113
if (photo.hdurl) {
109114
photoUrl = photo.hdurl;
110115
photoName = photoUrl.slice(photoUrl.lastIndexOf('/') + 1);

index.md

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Downloads [Bing Photo of the Day](https://www.bing.com), [NASA Astronomy Picture
88
* Set date, locale & resolution for Bing photos.
99
* Use custom API key for NASA.
1010
* Set date for NASA photos.
11+
* Choose a random photo from NASA.
1112
* Set background display option for Linux.
1213
* Stores all photos in _~/Pictures/Bing_ & _~/Pictures/NASA_.
1314
* Runs at startup automatically.
@@ -51,6 +52,7 @@ Flag | Short | Description | Usage
5152
`--resolution` | `-r` | Set resolution for Bing | `-r 1920x1200`
5253
`--key` | `-k` | Set API key for NASA | `-k SOME_API_KEY`
5354
`--date` | `-d` | Set date for NASA (YYYY-mm-dd) | `-d 2019-06-19`
55+
`--random` | `-R` | Choose a random photo from NASA | `-R`
5456
`--option` | `-o` | Set background display option for Linux | `-o centered`
5557

5658
## Examples
@@ -66,5 +68,6 @@ Example | Description
6668
`$ potd -b 1 -l en-GB -r 1920x1200` | Sets wallpaper as Bing from yesterday and Great Britain with 1920x1200 resolution
6769
`$ potd -n -k SOME_API_KEY` | Sets wallpaper as NASA using specified API key
6870
`$ potd -n -d 2019-06-18` | Sets wallpaper as NASA from 2019-06-18
71+
`$ potd -n -R` | Sets wallpaper as a random NASA photo
6972
`$ potd -n -k SOME_API_KEY -d 2019-06-18` | Sets wallpaper as NASA from 2019-06-18 using specified API key
7073
`$ potd -o centered` | Wallpaper centered on desktop

0 commit comments

Comments
 (0)