-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetBg.cs
89 lines (77 loc) · 2.93 KB
/
SetBg.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Net;
namespace randombg_dotnet{
public static class SetBg{
private static Database _db;
public static void Run(Database db){
_db = db;
ImageRecord selected = GetRandomImageRecord();
CleanDestination();
DownloadImage(selected, Globals.SymlinkToCurrent);
_db.MarkImageDownloaded(selected);
_db.Save();
}
private static ImageRecord GetRandomImageRecord(){
List<ImageRecord> images = _db.GetUnusedImages();
ImageRecord result =
images[new System.Random().Next(images.Count)];
Console.WriteLine($"Random image: {result.Url}");
return result;
}
private static void CleanDestination(){
if (!Globals.KeepOldImages)
foreach(string file in Directory.GetFiles(Globals.PictureDir))
if (!file.EndsWith(_db.DbName) &&
!file.EndsWith(Globals.ConfigFileName))
File.Delete(file);
}
private static void DownloadImage(ImageRecord img, bool createSymlink){
string filename = createSymlink ?
img["Name"] :
$"{DateTime.Now.ToString("yyMMddHHmmss")}.jpg";
if (!Directory.Exists(Globals.PictureDir))
Directory.CreateDirectory(Globals.PictureDir);
Console.WriteLine("Downlaoding image...");
using (WebClient client = new WebClient()){
client.DownloadFile(
img["Url"],
Path.Combine(Globals.PictureDir, filename));
}
if (createSymlink)
CreateSymlink(img);
}
private static void CreateSymlink(ImageRecord img){
Process link = new Process{
StartInfo = new ProcessStartInfo {
# if LINUX
FileName = "ln",
Arguments = String.Format("-sfn {0} {1}",
Path.Combine(
Globals.PictureDir,
img["Name"]),
Path.Combine(
Globals.PictureDir,
"current")),
# else
FileName = "echo",
Arguments =
"Symlinking not supported for this platform. " +
"Skipping.",
# endif
UseShellExecute = false,
RedirectStandardOutput = true,
CreateNoWindow = true
}
};
link.Start();
while (!link.StandardOutput.EndOfStream){
string line = link.StandardOutput.ReadLine();
Console.WriteLine(line);
}
}
}
}