【发布时间】:2017-03-02 21:55:05
【问题描述】:
也许我使用了错误的搜索词,但我找不到任何有关如何让 Aurelia-Authentication 与 ServiceStack 配合使用的信息。我对网站使用的超级复杂的身份验证方案非常不熟悉,所以如果我尝试一些毫无意义的东西,可能是因为我很困惑。我想要做的是允许我的用户使用他们的 Windows 凭据登录,但不让我的 Web 应用程序需要 IIS 进行部署(自托管)。所以我需要传输一个用户名/密码并让 servicestack 返回一些可供 Aurelia 使用的东西来存储经过身份验证的会话信息。现在我倾向于使用 JWT。
这是我在客户端 (Aurelia) 的内容:
main.ts
import { Aurelia } from 'aurelia-framework';
import 'src/helpers/exceptionHelpers'
import config from "./auth-config";
export function configure(aurelia: Aurelia) {
aurelia.use
.standardConfiguration()
.feature('src/resources')
.developmentLogging()
.plugin('aurelia-dialog')
.plugin('aurelia-api', config => {
// Register an authentication hosts
config.registerEndpoint('auth', 'http://localhost:7987/auth/');
})
.plugin('aurelia-authentication', (baseConfig) => {
baseConfig.configure(config);
});
aurelia.start().then(x => x.setRoot('src/app'));
}
auth-config.ts
var config = {
endpoint: 'auth', // use 'auth' endpoint for the auth server
configureEndpoints: ['auth'], // add Authorization header to 'auth' endpoint
// The API specifies that new users register at the POST /users enpoint
signupUrl: null,
// The API endpoint used in profile requests (inc. `find/get` and `update`)
profileUrl: null,
// Logins happen at the POST /sessions/create endpoint
loginUrl: '',
// The API serves its tokens with a key of id_token which differs from
// aurelia-auth's standard
accessTokenName: 'BearerToken',
// Once logged in, we want to redirect the user to the welcome view
loginRedirect: '#/pending',
// The SPA url to which the user is redirected after a successful logout
logoutRedirect: '#/login',
// The SPA route used when an unauthenticated user tries to access an SPA page that requires authentication
loginRoute : '#/help'
};
export default config;
login.ts
import { AuthService } from 'aurelia-authentication';
import { inject, computedFrom } from 'aurelia-framework';
@inject(AuthService)
export class Login {
heading: string;
auth: AuthService;
userName: string;
password: string;
constructor(authService) {
this.auth = authService;
this.heading = 'Login';
}
login() {
var credentials = {
username: this.userName,
password: this.password,
grant_type: "password"
};
return this.auth.login(credentials,
{ headers: { 'Content-Type': 'application/x-www-form-urlencoded' } }
).then(response => {
console.log("success logged " + response);
})
.catch(err => {
console.log("login failure");
});
};
}
AppHost(serviceStack)上的配置:
public override void Configure(Container container)
{
var privateKey = RsaUtils.CreatePrivateKeyParams(RsaKeyLengths.Bit2048);
var publicKey = privateKey.ToPublicRsaParameters();
var privateKeyXml = privateKey.ToPrivateKeyXml();
var publicKeyXml = privateKey.ToPublicKeyXml();
SetConfig(new HostConfig
{
#if DEBUG
DebugMode = true,
WebHostPhysicalPath = Path.GetFullPath(Path.Combine("~".MapServerPath(), "..", "..")),
#endif
});
container.RegisterAs<LDAPAuthProvider, IAuthProvider>();
container.Register<ICacheClient>(new MemoryCacheClient { FlushOnDispose = false });
container.RegisterAs<MemoryCacheClient, ICacheClient>();
Plugins.Add(new AuthFeature(() => new AuthUserSession(),
new[] {
container.Resolve<IAuthProvider>(),
new JwtAuthProvider {
HashAlgorithm = "RS256",
PrivateKeyXml = privateKeyXml,
RequireSecureConnection = false,
}
})
{
HtmlRedirect = "~/#/pending",
IncludeRegistrationService = false,
IncludeAssignRoleServices = false,
MaxLoginAttempts = Settings.Default.MaxLoginAttempts
});
}
我在要限制访问的 ServiceInterface 上有 Authenticate 属性。
最后是 LDAP 提供者:
public class LDAPAuthProvider : CredentialsAuthProvider
{
private readonly IHoldingsManagerSettings _settings;
public LDAPAuthProvider(IHoldingsManagerSettings settings)
{
_settings = settings;
}
public override bool TryAuthenticate(IServiceBase authService, string userName, string password)
{
//Check to see if the username/password combo is valid, an exception will be thrown if the username or password is wrong
try
{
var entry = new DirectoryEntry($"LDAP://{_settings.Domain}", userName, password);
var nativeObject = entry.NativeObject;
using (var identity = new WindowsIdentity(userName))
{
var principal = new WindowsPrincipal(identity);
return principal.IsInRole(_settings.AdminGroupName);
}
}
catch (Exception)
{
//This means the username/password combo failed
return false;
}
}
public override IHttpResult OnAuthenticated(IServiceBase authService,
IAuthSession session,
IAuthTokens tokens,
Dictionary<string, string> authInfo)
{
//Fill IAuthSession with data you want to retrieve in the app eg:
session.DisplayName = "Testy McTesterson";
//...
//Call base method to Save Session and fire Auth/Session callbacks:
return base.OnAuthenticated(authService, session, tokens, authInfo);
//Alternatively avoid built-in behavior and explicitly save session with
//authService.SaveSession(session, SessionExpiry);
//return null;
}
}
到目前为止,当我尝试登录时,我设法到达 ServiceStack 在 LDAP 提供程序中接收请求,身份验证成功,但是当请求返回时,aurelia-authentication 不喜欢任何 ServiceStack 的格式正在返回它的会话信息。
我对这里发生的事情的理解当然还有距离。如果有人可以为我指明正确的方向,我将不胜感激。
编辑 1
将“accessTokenName”更改为“BearerToken”,似乎至少可以设置有效负载。但仍然在客户端获得失败的身份验证。还需要弄清楚如何让 Aurelia-Authentication 将会话存储在 cookie 中。
编辑 2
经过多次调试,似乎一切正常,问题是登录成功后,我被重定向到一个页面,该页面进行了必须经过身份验证的调用。但是,我在使用 servicestack JsonServiceClient 传递经过身份验证的 Jwt 令牌时遇到问题,请参见此处: ServiceStack Javascript JsonServiceClient missing properties
【问题讨论】:
标签: servicestack aurelia