This repository was archived by the owner on Mar 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathProgram.cs
More file actions
372 lines (296 loc) · 12.3 KB
/
Program.cs
File metadata and controls
372 lines (296 loc) · 12.3 KB
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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security;
using System.Text;
using Hyperfish.ImportExport.AD;
using Hyperfish.ImportExport.O365;
using Newtonsoft.Json;
using static Hyperfish.ImportExport.Log;
namespace Hyperfish.ImportExport
{
class Program
{
private const string ReadPrompt = "> ";
private const string ManifestFilename = "UserList.json";
private static Dictionary<string, ImportExportRecord> _peopleList;
static void Main(string[] args)
{
MainMenu();
}
static void MainMenu()
{
do
{
Console.Clear();
WriteToConsole($"Hyperfish Export/Export tool" + Environment.NewLine);
WriteToConsole($"About:");
WriteToConsole($"This tool exports user profile photos from SharePoint Online and Exchange Online {Environment.NewLine}and can import photos to Active Directory. Photos are saved in /photos." + Environment.NewLine);
WriteToConsole($"Options:");
WriteToConsole($"1) Export photos from SharePoint Online");
WriteToConsole($"2) Export photos from Exchange Online");
WriteToConsole($"3) Import photos into Active Directory");
WriteToConsole($"4) Import photos into SharePoint Online");
WriteToConsole($"5) Import photos into Exchange Online");
WriteToConsole($"6) Test import photos into Active Directory for one user");
WriteToConsole($"7) Exit" + Environment.NewLine);
var consoleInput = ReadFromConsole();
if (string.IsNullOrWhiteSpace(consoleInput)) continue;
try
{
int option;
if (Int32.TryParse(consoleInput, out option))
{
switch (option)
{
// import
case 1:
ExportFromO365(O365Service.Spo);
break;
case 2:
ExportFromO365(O365Service.Exo);
break;
// export
case 3:
ImportToActiveDirectory(false);
break;
case 4:
ImportToO365(O365Service.Spo);
break;
case 5:
ImportToO365(O365Service.Exo);
break;
case 6:
ImportToActiveDirectory(true);
break;
case 7:
WriteToConsole("Exiting ... ");
return;
}
}
}
catch (Exception ex)
{
// OOPS! Something went wrong - Write out the problem:
WriteToConsole(ex.Message);
WriteToConsole("Press any key to continue");
var input = ReadFromConsole();
}
} while (true);
}
static void ExportFromO365(O365Service service)
{
try
{
Logger.Debug($"Starting Export from {service}");
WriteToConsole($"O365 Tenant name [e.g. \"Contoso\", from {{contoso}}.onmicrosoft.com]: ");
var tenantName = ReadFromConsole();
WriteToConsole($"O365 Administrator username [e.g. admin@contoso.onmicrosoft.com]: ");
var username = ReadFromConsole();
WriteToConsole($"O365 Administrator password: ");
var password = ReadSensitiveFromConsole();
Logger.Debug($"Tenant: {tenantName}");
Logger.Debug($"Username: {username}");
var settings = new O365Settings()
{
Username = username,
Password = password,
TenantName = tenantName
};
Logger.Debug($"Initializing O365 worker");
var worker = new O365Worker(settings);
var newPeopleList = worker.Export(service);
// merge
MergeAndSavePeopleLists(newPeopleList);
Logger.Debug($"Completed export from {service}");
WriteToConsole();
WriteToConsole($"Completed export of photos. Press any key to return to main menu.");
ReadFromConsole();
}
catch (Exception e)
{
WriteToConsole($"Problem exporting: {e.Message}");
WriteToConsole("Press any key to continue");
var input = ReadFromConsole();
}
}
private static void MergeAndSavePeopleLists(Dictionary<string, ImportExportRecord> list)
{
foreach (var person in list)
{
if (!PeopleList.ContainsKey(person.Value.Upn))
{
// add them
PeopleList[person.Value.Upn] = person.Value;
}
else
{
// else update their photo location
PeopleList[person.Value.Upn].PhotoLocation = person.Value.PhotoLocation;
}
}
SaveManifest(PeopleList);
}
private static void ImportToActiveDirectory(bool promptForUsersToImport)
{
try
{
Logger.Debug($"Starting import to AD");
var testUser = string.Empty;
if (promptForUsersToImport)
{
WriteToConsole($"Upn for test user to import [e.g. aaron@contoso.com]: ");
testUser = ReadFromConsole();
}
WriteToConsole($"Active Directory domain contoller [e.g. 192.168.1.10, or domaincontroller.contoso.com]: ");
var dc = ReadFromConsole();
WriteToConsole($"Administrator username [e.g. administrator]: ");
var username = ReadFromConsole();
WriteToConsole($"Administrator password: ");
var password = ReadSensitiveFromConsole();
WriteToConsole($"Account domain [e.g. CORP]: ");
var domain = ReadFromConsole();
Logger.Debug($"Domain controller: {dc}");
Logger.Debug($"Username: {username}");
Logger.Debug($"Domain: {domain}");
var settings = new AdSettings()
{
AdServer = dc,
AdCredentials = new AdConnectionCredentials(username, password, domain)
};
Logger.Debug($"Initializing AD worker");
var worker = new AdWorker(settings);
if (promptForUsersToImport)
{
if (!PeopleList.ContainsKey(testUser))
{
WriteToConsole($"Test user specified not found in user list.");
}
else
{
// make a small list
var testList = new Dictionary<string, ImportExportRecord>();
testList[testUser] = PeopleList[testUser];
// just import the test list
worker.ImportPicsToAd(testList);
}
}
else
{
worker.ImportPicsToAd(PeopleList);
}
WriteToConsole();
WriteToConsole($"Completed import of photos to AD. Press any key to return to main menu.");
ReadFromConsole();
}
catch (Exception e)
{
WriteToConsole($"Problem importing: {e.Message}");
WriteToConsole("Press any key to continue");
var input = ReadFromConsole();
}
}
private static void ImportToO365(O365Service service)
{
try
{
Logger.Debug($"Starting Import to from {service}");
WriteToConsole($"O365 Tenant name [e.g. \"Contoso\", from {{contoso}}.onmicrosoft.com]: ");
var tenantName = ReadFromConsole();
WriteToConsole($"O365 Administrator username [e.g. admin@contoso.onmicrosoft.com]: ");
var username = ReadFromConsole();
WriteToConsole($"O365 Administrator password: ");
var password = ReadSensitiveFromConsole();
Logger.Debug($"Tenant: {tenantName}");
Logger.Debug($"Username: {username}");
var settings = new O365Settings()
{
Username = username,
Password = password,
TenantName = tenantName
};
Logger.Debug($"Initializing O365 worker");
var worker = new O365Worker(settings);
worker.Import(PeopleList, service);
Logger.Debug($"Completed import to {service}");
WriteToConsole();
WriteToConsole($"Completed import of photos. Press any key to return to main menu.");
ReadFromConsole();
}
catch (Exception e)
{
WriteToConsole($"Problem importing: {e.Message}");
WriteToConsole("Press any key to continue");
var input = ReadFromConsole();
}
}
private static string ReadFromConsole(string promptMessage = "")
{
// Show a prompt, and get input:
Console.Write(ReadPrompt + promptMessage);
return Console.ReadLine();
}
private static SecureString ReadSensitiveFromConsole(string promptMessage = "")
{
SecureString text = new SecureString();
Console.Write(ReadPrompt + promptMessage);
ConsoleKeyInfo key;
do
{
key = Console.ReadKey(true);
// Backspace Should Not Work
if (key.Key != ConsoleKey.Backspace && key.Key != ConsoleKey.Enter)
{
text.AppendChar(key.KeyChar);
Console.Write("*");
}
else
{
Console.Write("\b");
}
}
// Stops Receving Keys Once Enter is Pressed
while (key.Key != ConsoleKey.Enter);
Console.WriteLine();
return text;
}
private static void WriteToConsole(string message = "")
{
if (message.Length > 0)
{
Console.WriteLine(message);
}
}
private static Dictionary<string, ImportExportRecord> LoadManifest()
{
if (File.Exists(ManifestFilename))
{
var list = JsonConvert.DeserializeObject<Dictionary<string, ImportExportRecord>>(File.ReadAllText(ManifestFilename));
return list;
}
else
{
var list = new Dictionary<string, ImportExportRecord>();
SaveManifest(list);
return list;
}
}
private static void SaveManifest(Dictionary<string, ImportExportRecord> userList)
{
var json = JsonConvert.SerializeObject(userList, Formatting.Indented);
File.WriteAllText(ManifestFilename, json, Encoding.UTF8);
}
private static Dictionary<string, ImportExportRecord> PeopleList
{
get
{
if(_peopleList == null)
{
_peopleList = LoadManifest();
}
return _peopleList;
}
}
}
}