本文整理汇总了C#中IUserService.GetUserByClaim方法的典型用法代码示例。如果您正苦于以下问题:C# IUserService.GetUserByClaim方法的具体用法?C# IUserService.GetUserByClaim怎么用?C# IUserService.GetUserByClaim使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IUserService
的用法示例。
在下文中一共展示了IUserService.GetUserByClaim方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Authenticate
public async Task<AuthenticationResult> Authenticate(Dictionary<string, string> authenticationCtx, IUserService userService)
{
if (authenticationCtx["provider"] != Provider_Name)
{
return null;
}
string ticket;
if (!authenticationCtx.TryGetValue("ticket", out ticket) || string.IsNullOrWhiteSpace(ticket))
{
return AuthenticationResult.CreateFailure("Steam session ticket must not be empty.", Provider_Name, authenticationCtx);
}
var steamId = await _authenticator.AuthenticateUserTicket(ticket);
if (!steamId.HasValue)
{
return AuthenticationResult.CreateFailure("Invalid steam session ticket.", Provider_Name, authenticationCtx);
}
var steamIdString = steamId.GetValueOrDefault().ToString();
var user = await userService.GetUserByClaim(Provider_Name, ClaimPath, steamIdString);
if (user == null)
{
var uid = Provider_Name + "-" + steamIdString;
user = await userService.CreateUser(uid, new JObject());
user = await userService.AddAuthentication(user, Provider_Name, JObject.FromObject(new { CLAIMPATH = steamIdString }));
}
return AuthenticationResult.CreateSuccess(user, Provider_Name, authenticationCtx);
}
示例2: Authenticate
public async Task<AuthenticationResult> Authenticate(Dictionary<string, string> authenticationCtx, IUserService _userService)
{
if (authenticationCtx["provider"] != PROVIDER_NAME)
{
return null;
}
string login;
authenticationCtx.TryGetValue("login", out login);
string password;
authenticationCtx.TryGetValue("password", out password);
if (string.IsNullOrWhiteSpace(login) || string.IsNullOrWhiteSpace(password))
{
return AuthenticationResult.CreateFailure("Login and password must be non empty.", PROVIDER_NAME, authenticationCtx);
}
var user = await _userService.GetUserByClaim(PROVIDER_NAME, "login", login);
if (user == null)
{
return AuthenticationResult.CreateFailure("No user found that matches the provided login/password.", PROVIDER_NAME, authenticationCtx);
}
dynamic authData = user.Auth[PROVIDER_NAME];
string salt = authData.salt;
string hash = authData.password;
var candidateHash = HashPassword(password, salt);
if (hash != candidateHash)
{
return AuthenticationResult.CreateFailure("No user found that matches the provided login/password.", PROVIDER_NAME, authenticationCtx);
}
return AuthenticationResult.CreateSuccess(user, PROVIDER_NAME, authenticationCtx);
}
开发者ID:Falanwe,项目名称:Stormancer-AuthenticationPlugin,代码行数:36,代码来源:LoginPasswordAuthenticationProvider.cs