-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
69 lines (60 loc) · 2.91 KB
/
Program.cs
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
using System;
using System.Net.Http;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
using Newtonsoft.Json;
using System.Net;
using System.IO;
using System.Drawing;
namespace WinAPODChanger
{
class Program
{
//Import the C++ function to set the windows background from the DLL
[DllImport("APODWinInteraction.dll", CharSet = CharSet.Unicode, SetLastError = true)]
private static extern void SetDesktopBackground(string filepath);
static readonly HttpClient client = new HttpClient();
async static Task Main(string[] args)
{
try
{
//Download the json containing the APOD.
HttpResponseMessage response = await client.GetAsync("https://api.nasa.gov/planetary/apod?api_key=bqNHUv2ah1REfaNSpeW934ewvSx4iPCkB4sm9bpX");
response.EnsureSuccessStatusCode();
//Deserialize the JSON
string responseBody = await response.Content.ReadAsStringAsync();
APOD apod = JsonConvert.DeserializeObject<APOD>(responseBody);
Console.WriteLine("Astronomy Picture Of The Day | Program Created by Weston McNamara\n");
//After displaying that, download the background, and set the desktop background with the new image.
using (var client = new WebClient())
{
Console.WriteLine("Downloading Background...");
client.DownloadFile(apod.hdurl, "bg.jpg");
SetDesktopBackground(Path.GetFullPath("bg.jpg"));
Console.WriteLine("Background Updated!\n");
}
//Ouput the title, date, and an image explanation
Console.WriteLine(apod.title);
Console.WriteLine(apod.date + "\n\n");
Console.WriteLine(apod.explanation + "\n");
}
catch (Exception e)
{
Console.WriteLine("\nThe APOD today is not a format that can be set to a desktop background, such as a video. Please visit the official APOD website to view todays APOD. \n\nhttps://apod.nasa.gov/apod/astropix.html" );
}
Console.WriteLine("\nPress Any Key To Close");
Console.ReadKey();
}
public class APOD
{
[JsonProperty("copyright")] public string copyright { get; set; }
[JsonProperty("date")] public DateTime date { get; set; }
[JsonProperty("explanation")] public string explanation { get; set; }
[JsonProperty("hdurl")] public string hdurl { get; set; }
[JsonProperty("media_type")] public string media_type { get; set; }
[JsonProperty("service_version")] public string service_version { get; set; }
[JsonProperty("title")] public string title { get; set; }
[JsonProperty("url")] public string url { get; set; }
}
}
}