-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathApp.cs
139 lines (124 loc) · 4.11 KB
/
App.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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Diagnostics;
using TypeAgent.Core;
namespace TypeAgent;
public class App
{
RootCommand _commands;
EmailExporter _exporter;
MailStats _stats;
public App(Outlook outlook)
{
_exporter = new EmailExporter(outlook);
_stats = new MailStats(outlook);
_commands = new RootCommand("Mail commands");
_commands.AddCommand(Command_Quit());
_commands.AddCommand(Command_Distribution());
_commands.AddCommand(Command_ExportAll());
}
public EmailExporter Exporter => _exporter;
public Command Command_Distribution()
{
Command command = new Command("distribution");
var pathOption = new Option<string>("--outPath", "Output path");
command.AddOption(pathOption);
command.SetHandler<string>((string outPath) =>
{
var (counter, histogram) = _stats.GetSizeDistribution();
ConsoleEx.WriteLineColor(ConsoleColor.Green, $"{counter} items");
string csv = MailStats.PrintHistogram(histogram);
if (!string.IsNullOrEmpty(outPath))
{
File.WriteAllText(outPath, csv);
}
Console.WriteLine(csv);
}, pathOption);
return command;
}
public Command Command_ExportAll()
{
Command command = new Command("exportAll");
var dirPath = new Option<string>("--destDir", "Output path");
var maxMessages = new Option<int>("--maxMessages", () => -1, "Max messages to export");
var bucket = new Option<bool>("--bucket", () => true, "Bucket messages by latest body size");
var includeJson = new Option<bool>("--includeJson", () => true, "Also export to Json");
command.AddOption(dirPath);
command.AddOption(maxMessages);
command.AddOption(bucket);
command.AddOption(includeJson);
command.SetHandler<string, int, bool, bool>((string dirPath, int maxMessages, bool bucket, bool includeJson) =>
{
_exporter.ExportAll(dirPath, maxMessages, bucket, includeJson);
}, dirPath, maxMessages, bucket, includeJson);
return command;
}
Command Command_Quit()
{
Command cmd = new Command("quit");
cmd.SetHandler(() => Environment.Exit(0));
return cmd;
}
static void Main(string[] args)
{
Console.OutputEncoding = Encoding.UTF8;
args = EnsureArgs(args);
if (args == null || args.Length == 0)
{
return;
}
try
{
using Outlook outlook = new Outlook();
var app = new App(outlook);
switch (args[0])
{
default:
if (args[0].StartsWith('@'))
{
RunInteractive(app, args);
}
else
{
app.Exporter.Export(args.ElementAtOrDefault(0), args.ElementAtOrDefault(1));
}
break;
case "--sender":
app.Exporter.ExportFrom(args.GetArg(1));
break;
case "--print":
app.Exporter.PrintEmail(args.GetArg(1));
Console.ReadLine();
return;
}
}
catch (System.Exception ex)
{
ConsoleEx.LogError(ex);
}
finally
{
COMObject.ReleaseAll();
}
}
static void RunInteractive(App app, string[] args)
{
while (true)
{
if (args.Length > 0)
{
args[0] = args[0][1..];
var result = app._commands.Invoke(args);
if (result != 0)
{
Console.WriteLine($"Command returned {result}");
}
}
args = ConsoleEx.GetInput("📬>");
}
}
static string[]? EnsureArgs(string[] args)
{
return args != null && args.Length > 0 ? args : ConsoleEx.GetInput("📬>");
}
}