我正在构建一个使用 RESTful API (Jersey) 的 AngularJS 网络应用程序。
在服务器端,我使用的是 Java 应用程序服务器(详细为 Glassfish 4)。
我的设置如下:
- AngularJS webapp 作为单个war 文件部署到Java EE 应用程序服务器。
- RESTfulAPI(和后端逻辑)也作为war 文件部署到同一个Java EE 应用程序服务器。
- AngularJS webapp 调用 REST API 来获取它需要的数据。
- RESTful API:
/api/public/*
对于公共不受限制的访问(例如 /api/public/users/signup 注册为新用户)。任何用户都可以访问该区域。无需登录/api/private/*
用于受限访问(例如 /api/private/account/{id} 以检索某些帐户特定数据)
- 私有资源受到 Java EE 内部安全概念的保护(有关 web.xml 的详细信息,请参见下文)。
Web.xml
<security-constraint>
<web-resource-collection>
<web-resource-name>PRIVATE REST API</web-resource-name>
<url-pattern>/private/*</url-pattern>
<http-method>GET</http-method>
<http-method>POST</http-method>
<http-method>HEAD</http-method>
<http-method>PUT</http-method>
<http-method>OPTIONS</http-method>
<http-method>TRACE</http-method>
<http-method>DELETE</http-method>
</web-resource-collection>
<auth-constraint>
<description>Have to be a USER</description>
<role-name>USERS</role-name>
</auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>userauth</realm-name>
</login-config>
<security-role>
<description/>
<role-name>USERS</role-name>
</security-role>
此设置适用于我,但前提是我在浏览器中手动调用 URL。如果我未通过身份验证并访问安全区域,浏览器会要求输入用户名和密码。如果提供的凭据有效,我从那里可以访问禁区:好的。
但是我如何使用 AngularJS 来实现它呢?要登录,有一个 POST API 调用:/api/public/users/login
您必须在其中提供来自表单的凭据(用户名和密码)。
客户端代码为:
ctrls.controller('LoginController', function($scope, $http, $log, $location, UserService, RemoteServerHelperService) {
$scope.loginDataWrong = undefined;
$scope.login = function(credentials) {
$http.post(RemoteServerHelperService.buildURL('/public/users/login'), credentials)
.success(function (data, status) {
UserService.setLoggedIn(credentials.email);
$scope.loginDataWrong = undefined;
$location.path('/app');
$log.info("login attempt: successfull. User.loggedIn:" + UserService.isLoggedIn());
}).error(function (data, status, headers, config) {
UserService.invalidate();
$scope.loginDataWrong = true;
$log.info("login attempt: failed. User.loggedIn:" + UserService.isLoggedIn());
});
};
});
客户端代码似乎工作。我也有一些路由来保护客户端的内容,等等。有几篇文章详细描述了客户端代码。所以这个“片段”应该足够了。
服务器端代码为:
@POST
@Path("/login")
@Consumes(MediaType.APPLICATION_JSON)
public Response login(Credentials credentials, @Context HttpServletRequest request) {
if (isAlreadyAuthenticated(request)) {
try {
request.logout();
} catch (ServletException ex) {
return Response.status(Status.CONFLICT).build();
}
}
// not authenticated
try {
request.login(credentials.getEmail(), credentials.getPassword());
return Response.ok().build();
} catch (ServletException ex) {
return Response.status(Status.CONFLICT).build();
}
}
但是,这并没有“验证”客户端的进一步请求。当我在成功登录后对受限区域进行 API 调用时,我会收到403 FORBIDDEN
来自服务器端的响应。所以我认为我做错了什么。您对如何向服务器验证客户端以获取更多请求有任何想法吗?
一个可能的解决方案可能是切换到基于 FORM 的身份验证并简单地使用 j_username 和 j_password 调用 j_security_check,但现在我想坚持使用 BASIC-Authentication 并通过 RESTful API 手动执行身份验证。
该设置$httpProvider.defaults.withCredentials = true;
似乎没有任何效果。
更新:
感谢lossleader的提示,我解决了这个问题。我删除了该login()
方法,因为我希望 Java EE-Server 负责身份验证。
要访问安全区域,AngularJS webapp 必须正确设置 HTTP-Header。在我的情况下$http.defaults.headers.common['Authorization'] = 'Basic <username:pw>';
,username:password
必须进行 Base64 编码。
正确设置标题后,不会显示密码提示,AngularJS webapp 可以访问 REST API。