-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOAuthHelper.cs
95 lines (82 loc) · 3.46 KB
/
OAuthHelper.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
using System;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
namespace Sypht
{
class OAuthHelper
{
private const string SYPHT_AUTH_ENDPOINT = "https://login.sypht.com/oauth/token";
private String clientId = null;
private String clientSecret = null;
private HttpClient httpClient = new HttpClient();
public OAuthHelper()
{
var syphtApiKey = Environment.GetEnvironmentVariable("SYPHT_API_KEY");
if (syphtApiKey != null)
{
clientId = syphtApiKey.Split(":")[0];
clientSecret = syphtApiKey.Split(":")[1];
}
}
private string AuthenticationEndpoint {
get {
string value = Environment.GetEnvironmentVariable("SYPHT_AUTH_ENDPOINT");
if (string.IsNullOrEmpty(value))
{
return SYPHT_AUTH_ENDPOINT;
}
return value;
}
}
private string base64Encode(string value)
{
byte[] data = System.Text.ASCIIEncoding.ASCII.GetBytes(value);
return System.Convert.ToBase64String(data);
}
private async Task<string> authAuth0()
{
httpClient.BaseAddress = new Uri("https://login.sypht.com");
httpClient.DefaultRequestHeaders.Accept.Clear();
httpClient.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/json"));
var content = new StringContent("{" +
"\"client_id\":\"" + clientId + "\"," +
"\"client_secret\":\"" + clientSecret + "\"," +
"\"audience\":\"https://api.sypht.com\"," +
"\"grant_type\":\"client_credentials\"" +
"}", Encoding.UTF8, "application/json");
var response = await this.httpClient.PostAsync("/oauth/token", content);
response.EnsureSuccessStatusCode();
var auth0Response = await response.Content.ReadAsStringAsync();
return JObject.Parse(auth0Response)["access_token"].ToObject<string>();
}
private async Task<string> authCognito()
{
httpClient.BaseAddress = new Uri("https://auth.sypht.com");
httpClient.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", base64Encode($"{clientId}:{clientSecret}"));
httpClient.DefaultRequestHeaders.Accept.Clear();
httpClient.DefaultRequestHeaders.Accept.Add(
new MediaTypeWithQualityHeaderValue("application/json"));
var dict = new Dictionary<string, string>();
dict.Add("client_id", clientId);
dict.Add("grant_type", "client_credentials");
var response = await this.httpClient.PostAsync("/oauth2/token", new FormUrlEncodedContent(dict));
response.EnsureSuccessStatusCode();
var auth0Response = await response.Content.ReadAsStringAsync();
return JObject.Parse(auth0Response)["access_token"].ToObject<string>();
}
public async Task<string> login()
{
if (AuthenticationEndpoint.Contains("/oauth2/token"))
{
return await authCognito();
} else {
return await authAuth0();
}
}
}
}