forked from feokuma/MicrosoftGraphPresenceMonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
100 lines (84 loc) · 3.71 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
using System;
using System.Linq;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Flurl.Http;
using Microsoft.Identity.Client;
using Newtonsoft.Json;
namespace MicrosoftToken
{
class Program
{
static async Task Main(string[] args)
{
var tenantId = "[TENANT_ID]";
var clientId = "[CLIENT_ID]";
var scopes = new string[] { "https://graph.microsoft.com/.default", "offline_access"};
var status = 0;
var lastActivity = string.Empty;
var publicClientApplication = PublicClientApplicationBuilder
.Create(clientId)
.WithTenantId(tenantId)
.WithRedirectUri($"http://localhost")
.Build();
var authenticationResult = await publicClientApplication
.AcquireTokenInteractive(scopes)
.WithUseEmbeddedWebView(false)
.ExecuteAsync();
var accounts = await publicClientApplication.GetAccountsAsync();
var presenceUri = "https://graph.microsoft.com/beta/me/presence"
.WithOAuthBearerToken(authenticationResult.AccessToken);
HttpResponseMessage responseMessage;
while (true)
{
try
{
responseMessage = await presenceUri.GetAsync();
var presence = JsonConvert
.DeserializeObject<Presence>(await responseMessage.Content.ReadAsStringAsync());
if (lastActivity != presence.Activity)
{
if (presence.Activity == "Available")
status = 1;
else if(presence.Activity == "Busy")
status = 2;
else if((presence.Activity == "DoNotDisturb")
|| (presence.Activity == "InACall"))
status = 3;
else if((presence.Activity == "Away")
|| (presence.Activity == "BeRightBack")
|| (presence.Activity == "OffWork"))
status = 4;
var data = new { numLeds = 1, status };
_ = await "http://192.168.15.53/leds".PostJsonAsync(data);
lastActivity = presence.Activity;
Console.WriteLine(JsonConvert.SerializeObject(presence, Formatting.Indented));
}
}
catch(FlurlHttpException ex)
{
authenticationResult = await publicClientApplication.AcquireTokenSilent(scopes, accounts.FirstOrDefault())
.WithAuthority(publicClientApplication.Authority)
.ExecuteAsync();
presenceUri = "https://graph.microsoft.com/beta/me/presence"
.WithOAuthBearerToken(authenticationResult.AccessToken);
Console.WriteLine("TOKEN REFRESHED");
}
catch(Exception ex)
{
Console.WriteLine(ex.Message);
}
Thread.Sleep(1000);
}
}
}
internal class Presence
{
[JsonProperty("@odata.context")]
public string DataContext { get; set; }
public string Id { get; set; }
public string Availability { get; set; }
public string Activity { get; set; }
}
}