-
Notifications
You must be signed in to change notification settings - Fork 1
/
Program.cs
464 lines (393 loc) · 18.4 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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
using FluentFTP;
using Flurl.Http;
using Microsoft.Extensions.Configuration;
using Serilog;
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Net;
using System.Threading;
using System.Threading.Tasks;
namespace AllParcels
{
class Program
{
// GOAL:
// Ingest Parcel data from primary sources on a daily basis.
// Download the data
// Unzip the files
// *** Everything above this line is reality ***
// Merge the data into a single file using GDAL's ogr2ogr tool.
// Use Tippecanoe to generate MBTiles of the data.
// Use Protomaps to generate PTiles from the MBTiles.
// Host the static tiles on Github pages site.
static async Task Main()
{
Log.Logger = new LoggerConfiguration().WriteTo.Console()
.WriteTo.File("/", rollingInterval: RollingInterval.Day, rollOnFileSizeLimit: true, buffered: true)
.CreateLogger();
var config = new ConfigurationBuilder()
.AddJsonFile("appsettings.json")
.Build();
Log.Information(AppContext.BaseDirectory);
// This is the output folder.
var targetFolderPath = Path.Combine(AppContext.BaseDirectory, "WA");
Log.Information($"Ingested artifacts will be saved to {targetFolderPath}");
// Verify that the output directory exists, and create it otherwise.
if (!Directory.Exists(targetFolderPath))
{
Directory.CreateDirectory(targetFolderPath);
}
// Load county specific information from the JSON file.
var counties = new List<County>();
var appsettings = config.GetSection("Counties").GetChildren();
foreach (var item in appsettings)
{
var y = item.GetChildren().ToList();
var name = y.Where(x => x.Key == "Name").Select(x => x.Value).FirstOrDefault();
var dataSource = y.Where(x => x.Key == "DataSource").Select(x => x.Value).FirstOrDefault();
var parcelDetails = y.Where(x => x.Key == "ParcelDetails").Select(x => x.Value).FirstOrDefault();
var parcelViewer = y.Where(x => x.Key == "ParcelViewer").Select(x => x.Value).FirstOrDefault();
if (!string.IsNullOrWhiteSpace(dataSource))
{
// Create an object to represent each county.
counties.Add(new County
{
Name = name,
DataSource = dataSource,
ParcelDetails = parcelDetails,
ParcelViewer = parcelViewer,
ResultFilePath = targetFolderPath,
RawFilePath = string.Empty,
Downloaded = false,
Succeeded = false,
Zipped = false
});
}
}
Log.Information($"Found {counties.Count} counties to retrieve parcels from.");
await Parallel.ForEachAsync(counties, async (county, cancellationToken) =>
{
await GetParcelsAsync(county, cancellationToken);
});
if (File.Exists(Path.Combine(AppContext.BaseDirectory, "WA.zip")))
{
File.Delete(Path.Combine(AppContext.BaseDirectory, "WA.zip"));
}
// This step is now redundant because Github actions automatically compress artifacts.
// Zip up the output files.
//ZipFile.CreateFromDirectory(targetFolderPath, Path.Combine(AppContext.BaseDirectory, "WA.zip"));
Log.Information($"Successfully download parcels from {counties.Where(x => x.Succeeded == true).Count()} of {counties.Count} counties attempted.");
var failed = counties.Where(x => x.Succeeded == false).ToArray();
if (failed is not null && failed.Any())
{
Log.Error($"Failed to download parcels from these counties:");
var output = string.Empty;
foreach (var fail in failed)
{
Log.Error($"{fail?.Name} - {fail?.DataSource}");
}
}
Log.Information($"Ingested data can be found at:");
Log.Information(targetFolderPath);
static async Task GetParcelsAsync(County county, CancellationToken cancellationToken)
{
if (!string.IsNullOrWhiteSpace(county.DataSource))
{
// Download the data.
county.Downloaded = await county.TryDownloadFile().ConfigureAwait(false);
if (!county.Downloaded)
{
county.Downloaded = await county.TryDownloadFTPFile().ConfigureAwait(false);
}
// Wait and then retry failed requests.
if (!county.Downloaded)
{
await Task.Delay(1000);
county.Downloaded = await county.TryDownloadFile().ConfigureAwait(false);
}
if (!county.Downloaded)
{
await Task.Delay(1000);
county.Downloaded = await county.TryDownloadFTPFile().ConfigureAwait(false);
}
// Unzip the data.
if (county.Zipped && county.Downloaded)
{
var checkUnzip = TryUnzipFile(county);
Log.Information($"Unzipped {county.Name}");
}
else if (county.Downloaded)
{
if (Directory.Exists(county.RawFilePath))
{
string[] files = Directory.GetFiles(county.RawFilePath);
// Copy the files and overwrite destination files if they already exist.
foreach (string s in files)
{
// Use static Path methods to extract only the file name from the path.
var fileName = Path.GetFileName(s);
var destFile = Path.Combine(county.ResultFilePath, fileName);
File.Copy(s, destFile, true);
}
}
else
{
county.Succeeded = false;
Log.Error("Source path does not exist!");
}
}
// Grab only the files that we need.
if (county.Downloaded)
{
// ESRI shapefiles have mandatory and optional files.
// The mandatory file extensions needed for a shapefile are .shp, .shx and .dbf.
// The optional files are: .prj, .xml, .sbn and .sbx.
// .prj files are very helpful as they discribe the projection of the data.
// https://desktop.arcgis.com/en/arcmap/10.3/manage-data/shapefiles/shapefile-file-extensions.htm
var fileNames = new List<string>();
fileNames.AddRange(Directory.GetFiles(Path.GetDirectoryName(county.RawFilePath), "*.shp", SearchOption.AllDirectories));
fileNames.AddRange(Directory.GetFiles(Path.GetDirectoryName(county.RawFilePath), "*.shx", SearchOption.AllDirectories));
fileNames.AddRange(Directory.GetFiles(Path.GetDirectoryName(county.RawFilePath), "*.dbf", SearchOption.AllDirectories));
fileNames.AddRange(Directory.GetFiles(Path.GetDirectoryName(county.RawFilePath), "*.prj", SearchOption.AllDirectories));
// Copy the data to the output folder.
foreach (var file in fileNames)
{
FileInfo currentFile = new(Path.Combine(county.RawFilePath, file));
if (currentFile.Exists)
{
File.Copy(currentFile.FullName, Path.Combine(county.ResultFilePath, county.Name + currentFile.Extension), true);
}
}
Log.Information($"Copied {fileNames.Count} {county.Name} County files to the Parcels folder.");
}
static bool TryUnzipFile(County county)
{
try
{
ZipFile.ExtractToDirectory(county.RawFilePath, Path.GetDirectoryName(county.RawFilePath), true);
county.Succeeded = true;
return true;
}
catch (Exception ex)
{
Log.Error($"Failed to unzip: {county.RawFilePath}");
Log.Error(ex.Message);
county.Succeeded = false;
return false;
}
}
}
}
}
public class County
{
public string Name { get; set; }
public string State { get; set; }
public string DataSource { get; set; }
public string ParcelViewer { get; set; }
public string ParcelDetails { get; set; }
public string RawFilePath { get; set; }
public string ResultFilePath { get; set; }
public bool Zipped { get; set; }
public bool Downloaded { get; set; }
public bool Succeeded { get; set; }
public NetworkCredential Credential { get; set; }
public async Task<bool> TryDownloadFTPDirectory()
{
var address = new Uri(DataSource);
var host = address.Host;
var scheme = address.Scheme;
var sourceFolder = address.AbsolutePath;
// Bail if its not an FTP address.
if (scheme != Uri.UriSchemeFtp)
{
return false;
}
// Create an FTP client
var client = new AsyncFtpClient(host);
// Handle optional ftp credentials.
if (Credential is not null)
{
client = new AsyncFtpClient()
{
Host = host,
Credentials = Credential
};
}
var root = Path.GetDirectoryName(AppContext.BaseDirectory);
var sink = Path.Combine(root, host, DateTime.Now.ToString("yyyy-MM-dd"));
// Verify that the sink directory exists, and create it otherwise.
if (!Directory.Exists(sink))
{
Directory.CreateDirectory(sink);
}
await client.AutoConnect();
// Verify that the source directory exists, bail if it doesn't.
var checkExists = await client.DirectoryExists(sourceFolder);
if (!checkExists)
{
return false;
}
var results = await client.DownloadDirectory(sink, sourceFolder, FtpFolderSyncMode.Update);
// Verify that we we successfully captured all of the files, and retry the download if we didn't.
foreach (var result in results)
{
var check = await client.CompareFile(result.LocalPath, result.RemotePath);
if (!(check == FtpCompareResult.Equal || check == FtpCompareResult.ChecksumNotSupported))
{
await client.DownloadFile(result.LocalPath, result.RemotePath);
var recheck = await client.CompareFile(result.LocalPath, result.RemotePath);
if (!(recheck == FtpCompareResult.Equal || recheck == FtpCompareResult.ChecksumNotSupported))
{
Log.Error($"Failed to retrive {result.RemotePath}- {recheck}");
}
else
{
Log.Information($"Retrived {result.RemotePath} - {recheck}");
}
}
else
{
Log.Information($"Retrived {result.RemotePath} - {check}");
}
}
await client.Disconnect();
return true;
}
public async Task<bool> TryDownloadFTPFile()
{
var address = new Uri(DataSource);
var host = address.Host;
var scheme = address.Scheme;
var sourceFile = address.AbsolutePath;
var fileName = address.Segments.LastOrDefault();
// Bail if its not an FTP address.
if (scheme != Uri.UriSchemeFtp)
{
return false;
}
// Create an FTP client
var client = new AsyncFtpClient(host);
// Handle optional ftp credentials.
if (Credential is not null)
{
client = new AsyncFtpClient()
{
Host = host,
Credentials = Credential
};
}
var root = Path.GetDirectoryName(AppContext.BaseDirectory);
var sink = Path.Combine(root, Name.Trim(), DateTime.Now.ToString("yyyy-MM-dd"));
// Verify that the sink directory exists, and create it otherwise.
if (!Directory.Exists(sink))
{
Directory.CreateDirectory(sink);
}
sink = Path.Combine(sink, fileName);
try
{
await client.Connect().ConfigureAwait(false);
}
catch (Exception ex)
{
Log.Error($"Failed to connect to {host} via FTP.");
Log.Error($"{ex.Message} {ex.StackTrace} {ex.TargetSite}");
Downloaded = false;
Succeeded = false;
return false;
};
// Verify that the source directory exists, bail if it doesn't.
var checkExists = await client.FileExists(sourceFile).ConfigureAwait(false);
if (!checkExists)
{
Downloaded = false;
return false;
}
var result = await client.DownloadFile(sink, sourceFile).ConfigureAwait(false);
if (result is FtpStatus.Failed || result is FtpStatus.Skipped)
{
Downloaded = false;
Succeeded = false;
return false;
}
else
{
RawFilePath = sink;
}
// Verify that we we successfully captured all of the files, and retry the download if we didn't.
var check = await client.CompareFile(sink, sourceFile);
if (!(check == FtpCompareResult.Equal || check == FtpCompareResult.ChecksumNotSupported))
{
_ = await client.DownloadFile(sink, sourceFile);
var recheck = await client.CompareFile(sink, sourceFile);
if (!(recheck == FtpCompareResult.Equal || recheck == FtpCompareResult.ChecksumNotSupported))
{
Log.Error($"Failed to retrive {sourceFile} - {recheck}");
}
else
{
Log.Information($"Retrived {sourceFile} - {recheck}");
Downloaded = true;
}
}
else
{
Log.Information($"Retrived {sourceFile} - {check}");
Downloaded = true;
}
await client.Disconnect();
var fileExtension = Path.GetExtension(sink);
if (fileExtension == ".zip")
{
Zipped = true;
}
return true;
}
public async Task<bool> TryDownloadFile()
{
var address = new Uri(DataSource);
//var host = address.Host;
var scheme = address.Scheme;
// Bail if its not a file.
if (!((scheme == Uri.UriSchemeHttp) || (scheme == Uri.UriSchemeHttps)))
{
Downloaded = false;
return false;
}
var root = Path.GetDirectoryName(AppContext.BaseDirectory);
var sink = Path.Combine(root, Name.Trim(), DateTime.Now.ToString("yyyy-MM-dd"));
// Verify that the sink directory exists, and create it otherwise.
if (!Directory.Exists(sink))
{
Directory.CreateDirectory(sink);
}
try
{
RawFilePath = await DataSource.DownloadFileAsync(sink).ConfigureAwait(false);
}
catch (Exception ex)
{
Log.Error($"Failed to download data from {Name}.");
Log.Error(ex.Message);
Log.Error(ex.StackTrace.ToString());
}
Log.Information(RawFilePath);
var fileExtension = Path.GetExtension(RawFilePath);
if (fileExtension == ".zip" || string.IsNullOrWhiteSpace(fileExtension))
{
Zipped = true;
Downloaded = true;
}
else
{
Downloaded = true;
}
return !string.IsNullOrWhiteSpace(RawFilePath);
}
}
}
}