-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCore.cs
387 lines (358 loc) · 14.7 KB
/
Core.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
using System;
using System.Collections.Generic;
using System.Linq;
using OpenQA.Selenium;
using OpenQA.Selenium.Chrome;
using OpenQA.Selenium.Support.UI;
namespace MS_Teams_API
{
public class Core
{
private EnvironmentVariableTarget chromeOptions;
private IWebDriver driver;
private string currentURL;
private WebDriverWait wait;
private string teamsURL;
private bool headless;
private string username;
private string password;
private IList<IWebElement> teamNameElements;
private string[] teamNames;
private IList<IWebElement> channelNameElements;
private string[] channelNames;
private string command;
private string[] localArgs;
private bool running;
private int selectedTeam;
private int selectedChannel;
public Core(string[] args)
{
Console.WriteLine("Creating Teams API WebDriver Core");
Console.WriteLine();
// this.driver = new ChromeDriver("D:\\Source\\Libraries");
this.currentURL = "";
this.teamsURL = "http://teams.microsoft.com/";
this.headless = true;
this.username = "";
this.password = "";
this.command = "";
this.running = true;
this.selectedTeam = 0;
this.selectedChannel = 0;
this.HandleArgs(args);
this.StartDriver();
Console.WriteLine("Created WebDriver Core");
Console.WriteLine();
}
public int StartDriver()
{
if (!this.headless)
{
this.driver = new ChromeDriver();
}
else
{
var chromeOptions = new ChromeOptions();
chromeOptions.AddArguments("headless");
chromeOptions.AddArgument("--log-level=3");
this.driver = new ChromeDriver(chromeOptions);
}
this.wait = new WebDriverWait(this.driver, TimeSpan.FromSeconds(20));
return 0;
}
public int Help()
{
Console.WriteLine("Welcome to the (work in progress) alternate Microsoft Teams Client! At the moment, functionality is very limited.");
Console.WriteLine("In the future there will be environment settings to be configured, but currently your email and password must be supplied with command line arguments");
Console.WriteLine("Use the `/cred` switch and then provide your email and password. Ex. `MS_Teams_CLI /cred myEmail myPassword");
Console.WriteLine("For debugging, you can view the Web Driver using the switch /head.");
Console.WriteLine();
Console.WriteLine("List of commands: ");
Console.WriteLine("SetupSession - Starts Microsoft Teams and loads the home page.");
Console.WriteLine("GetTeamNames - Gets the names of all teams you are in.");
Console.WriteLine("DisplayTeamNames - Displays the names of all the teams you are in.");
Console.WriteLine("Quit - Exits the application.");
Console.WriteLine();
return 0;
}
public int HandleArgs(string[] args)
{
int returnValue = 0;
Console.WriteLine();
switch (args.Length) {
case 0:
returnValue = 0;
break;
case 1:
if (args[0] == "/cred")
{
Console.WriteLine("No credentials provided with /cred switch.");
returnValue = 1;
}
else if (args[0] == "/head")
{
Console.WriteLine("Not running with headless configurations.");
this.headless = false;
returnValue = 0;
}
break;
case 2:
if (args[0] == "/cred")
{
Console.WriteLine("Incorrect format for /cred switch. You most likely forgot to give either the username or password.");
returnValue = 1;
}
else if (args[0] == "/head")
{
Console.WriteLine("Switch /head does not take any arguments. Try again without `" + args[1] + "`.");
returnValue = 1;
}
break;
case 3:
if (args[0] == "/cred")
{
Console.WriteLine("Setting username and password for this session to `" + args[1] + "` and `" + args[2] + "`.");
this.username = args[1];
this.password = args[2];
returnValue = 0;
}
else if (args[0] == "/head")
{
Console.WriteLine("Switch /head does not take any arguments. Try again without `" + args[1] + "and `" + args[2] + "`.");
returnValue = 1;
}
break;
case 4:
if (args[0] == "/cred")
{
Console.WriteLine("Setting username and password for this session to `" + args[1] + "` and `" + args[2] + "`.");
this.username = args[1];
this.password = args[2];
if (args[3] == "/head")
{
this.headless = false;
returnValue = 0;
}
else
{
Console.WriteLine("Switch `/cred` takes two arguments, not three. Try again without `" + args[3] + "`.");
returnValue = 1;
}
}
if (args[0] == "/head")
{
Console.WriteLine("Not running with headless configurations.");
this.headless = false;
if (args[1] == "/cred")
{
Console.WriteLine("Setting username and password for this session to `" + args[1] + "` and `" + args[2] + "`.");
this.username = args[1];
this.password = args[2];
returnValue = 0;
}
else
{
Console.WriteLine("Switch `/head` takes no arguments. Try again without `" + args[1] + "`, `" + args[2] + "`, and " + args[3] + "`.");
returnValue = 1;
}
}
else
{
Console.WriteLine("Bad switches(s)");
returnValue = 1;
}
break;
default:
returnValue = 1;
break;
}
return returnValue;
}
public int Run()
{
while (this.running)
{
Console.WriteLine();
Console.Write("~$ ");
this.localArgs= Console.ReadLine().Split(" ");
this.command = localArgs[0];
switch (this.command)
{
case ("Help"):
this.Help();
break;
case ("SetupSession"):
this.SetupSession();
break;
case ("GetTeamNames"):
this.GetTeamNames();
break;
case ("DisplayTeamNames"):
this.DisplayTeamNames();
break;
case ("SelectTeam"):
this.SelectTeam(Int32.Parse(this.localArgs[1]));
break;
case ("OpenSelectedTeam"):
this.OpenSelectedTeam();
break;
case ("GetChannelNames"):
this.GetChannelNames();
break;
case ("DisplayChannelNames"):
this.DisplayChannelNames();
break;
case ("SelectChannel"):
this.SelectChannel(Int32.Parse(this.localArgs[1]));
break;
case ("OpenSelectedChannel"):
this.OpenSelectedChannel();
break;
case ("SendMessage"):
string message = "";
for (int i = 1; i < localArgs.Count(); i++)
{
message += localArgs[i];
message += " ";
}
Console.WriteLine(message);
this.SendMessage(message);
break;
case ("SendEmoji"):
string emoji = "";
for (int i = 1; i < localArgs.Count(); i++)
{
emoji += localArgs[i];
emoji += " ";
}
Console.WriteLine(emoji);
this.SendEmoji(emoji);
break;
case ("Quit"):
this.running = false;
break;
default:
Console.WriteLine("`" + this.command + "` is not a recognised command.");
break;
}
}
return 0;
}
public int SetupSession()
{
Console.WriteLine("Setting up session...");
this.GoToTeams();
this.EnterEmail();
this.EnterPassword();
this.wait.Until(SeleniumExtras.WaitHelpers.ExpectedConditions.ElementExists(By.ClassName("team-name-text")));
Console.WriteLine("Done!");
return 0;
}
public int GoToTeams()
{
Console.WriteLine("Loading teams");
driver.Navigate().GoToUrl(this.teamsURL);
this.currentURL = this.teamsURL;
return 0;
}
public int EnterEmail()
{
Console.WriteLine("Entering email");
this.wait.Until(SeleniumExtras.WaitHelpers.ExpectedConditions.ElementExists(By.Name("loginfmt")));
driver.FindElement(By.Name("loginfmt")).SendKeys(this.username + Keys.Enter);
return 0;
}
public int EnterPassword()
{
Console.WriteLine("Entering password");
this.wait.Until(SeleniumExtras.WaitHelpers.ExpectedConditions.ElementExists(By.Name("Password")));;
driver.FindElement(By.Name("Password")).SendKeys(this.password + Keys.Enter);
return 0;
}
public int GetTeamNames()
{
this.driver.Navigate().GoToUrl("https://teams.microsoft.com/_#/school//?ctx=teamsGrid");
this.wait.Until(SeleniumExtras.WaitHelpers.ExpectedConditions.ElementExists(By.ClassName("team-name-text")));
this.teamNameElements = driver.FindElements(By.ClassName("team-name-text"));
this.teamNames = new String[teamNameElements.Count];
int i = 0;
foreach (IWebElement element in teamNameElements)
{
teamNames[i++] = element.Text;
}
return 0;
}
public int DisplayTeamNames()
{
int i = 0;
foreach (string teamName in this.teamNames)
{
Console.WriteLine(i.ToString() + " - " + teamName);
i++;
}
return 0;
}
public int SelectTeam(int team)
{
this.selectedTeam = team;
return 0;
}
public int OpenSelectedTeam()
{
this.driver.Navigate().GoToUrl("https://teams.microsoft.com/_#/school//?ctx=teamsGrid");
this.wait.Until(SeleniumExtras.WaitHelpers.ExpectedConditions.ElementExists(By.ClassName("team-name-text")));
this.driver.FindElement(By.CssSelector("[data-tid='team-" + this.teamNames[this.selectedTeam] + "'")).Click();
return 0;
}
public int GetChannelNames()
{
this.OpenSelectedTeam();
this.channelNameElements = driver.FindElements(By.ClassName("name-channel-type"));
this.channelNames = new String[channelNameElements.Count];
int i = 0;
foreach (IWebElement element in channelNameElements)
{
channelNames[i++] = element.Text;
}
return 0;
}
public int DisplayChannelNames()
{
int i = 0;
foreach (string channelName in this.channelNames)
{
Console.WriteLine(i.ToString() + " - " + channelName);
i++;
}
return 0;
}
public int SelectChannel(int channel)
{
this.selectedChannel = channel;
return 0;
}
public int OpenSelectedChannel()
{
this.OpenSelectedTeam();
this.wait.Until(SeleniumExtras.WaitHelpers.ExpectedConditions.ElementExists(By.ClassName("name-channel-type")));
this.driver.FindElement(By.CssSelector("[data-tid='team-" + this.teamNames[this.selectedTeam] + "-channel-" + this.channelNames[this.selectedChannel] + "'")).Click();
return 0;
}
public int SendMessage(string message)
{
this.OpenSelectedTeam();
this.OpenSelectedChannel();
this.wait.Until(SeleniumExtras.WaitHelpers.ExpectedConditions.ElementExists(By.CssSelector("[data-tid='ckeditor-newConversation']")));
this.driver.FindElement(By.CssSelector("[data-tid='ckeditor-newConversation']")).SendKeys(message + Keys.Enter);
return 0;
}
public int SendEmoji(string message)
{
this.OpenSelectedTeam();
this.OpenSelectedChannel();
this.wait.Until(SeleniumExtras.WaitHelpers.ExpectedConditions.ElementExists(By.CssSelector("[data-tid='ckeditor-newConversation']")));
this.driver.FindElement(By.CssSelector("[data-tid='ckeditor-newConversation']")).SendKeys(message + Keys.Enter + Keys.Enter);
return 0;
}
}
}