-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathLoginService.cs
133 lines (109 loc) · 4.53 KB
/
LoginService.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
// Copyright (c) MASA Stack All rights reserved.
// Licensed under the MIT License. See LICENSE.txt in the project root for license information.
namespace Masa.Contrib.StackSdks.Auth.Service;
public class LoginService : ILoginService
{
readonly IHttpClientFactory _httpClientFactory;
public LoginService(IHttpClientFactory httpClientFactory)
{
_httpClientFactory = httpClientFactory;
}
public async Task<TokenModel> LoginByPasswordAsync(LoginByPasswordModel login)
{
var httpClient = CreateHttpClient();
var request = new PasswordTokenRequest()
{
ClientId = login.ClientId,
ClientSecret = login.ClientSecret,
GrantType = GrantType.RESOURCE_OWNER_PASSWORD,
UserName = login.Account,
Password = login.Password,
Scope = string.Join(' ', login.Scope),
};
var tokenResponse = await httpClient.RequestPasswordTokenAsync(request);
return ToModel(tokenResponse);
}
public async Task<TokenModel> LoginByPhoneNumberAsync(LoginByPhoneNumberFromSsoModel login)
{
var client = CreateHttpClient();
var paramter = new Dictionary<string, string>
{
["client_Id"] = login.ClientId,
["client_secret"] = login.ClientSecret,
["grant_type"] = GrantType.PHONE_CODE,
["scope"] = string.Join(' ', login.Scope),
["PhoneNumber"] = login.PhoneNumber,
["code"] = login.Code
};
var tokenResponse = await RequestTokenRawAsync(client, paramter);
return ToModel(tokenResponse);
}
public async Task<LoginByThirdPartyIdpResultModel> LoginByThirdPartyIdpAsync(LoginByThirdPartyIdpModel login)
{
var client = CreateHttpClient();
var paramter = new Dictionary<string, string>
{
["client_Id"] = login.ClientId,
["client_secret"] = login.ClientSecret,
["grant_type"] = GrantType.THIRD_PARTY_IDP,
["scope"] = string.Join(' ', login.Scope),
["scheme"] = login.Scheme,
["code"] = login.Code ?? "",
["idToken"] = login.IdToken ?? "",
};
var tokenResponse = await RequestTokenRawAsync(client, paramter);
var tokenModel = ToModel(tokenResponse);
var thirdPartyUser = tokenResponse.Json.GetProperty("thirdPartyUserData").Deserialize<ThirdPartyIdentityModel>();
var registerSuccess = tokenResponse.Json.TryGetBoolean("registerSuccess");
return new LoginByThirdPartyIdpResultModel
{
ThirdPartyIdpLoginResultType = registerSuccess is true ? ThirdPartyIdpLoginResultTypes.Success : ThirdPartyIdpLoginResultTypes.NotRegister,
Token = tokenModel,
ThirdPartyIdentity = thirdPartyUser
};
}
public async Task<TokenModel> LoginByLdapAsync(LoginByLdapModel login)
{
var client = CreateHttpClient();
var paramter = new Dictionary<string, string>
{
["client_Id"] = login.ClientId,
["client_secret"] = login.ClientSecret,
["grant_type"] = GrantType.LDAP,
["scope"] = string.Join(' ', login.Scope),
["userName"] = login.UserName,
["scheme"] = login.Scheme
};
var tokenResponse = await RequestTokenRawAsync(client, paramter);
return ToModel(tokenResponse);
}
HttpClient CreateHttpClient()
{
return _httpClientFactory.CreateClient(DEFAULT_SSO_CLIENT_NAME);
}
static async Task<DiscoveryDocumentResponse> GetDiscoveryDocumentAsync(HttpClient httpClient)
{
var disco = await httpClient.GetDiscoveryDocumentAsync();
if (disco.IsError)
throw new UserFriendlyException(disco.Error);
return disco;
}
static async Task<TokenResponse> RequestTokenRawAsync(HttpClient httpClient, Dictionary<string, string> paramter)
{
var disco = await GetDiscoveryDocumentAsync(httpClient);
var tokenResponse = await httpClient.RequestTokenRawAsync(disco.TokenEndpoint, new Parameters(paramter));
return tokenResponse;
}
static TokenModel ToModel(TokenResponse tokenResponse)
{
if (tokenResponse.IsError)
throw new UserFriendlyException(tokenResponse.Error);
return new TokenModel
{
AccessToken = tokenResponse.AccessToken,
IdentityToken = tokenResponse.IdentityToken,
RefreshToken = tokenResponse.RefreshToken,
ExpiresIn = tokenResponse.ExpiresIn,
};
}
}