merge with branch issue-384

This commit is contained in:
Sebastian Sdorra
2013-04-26 14:46:37 +02:00
17 changed files with 65 additions and 25 deletions

View File

@@ -68,6 +68,7 @@ import java.util.Collections;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.ws.rs.DefaultValue;
import javax.ws.rs.FormParam;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
@@ -131,6 +132,7 @@ public class AuthenticationResource
* @param response the current http response
* @param username the username for the authentication
* @param password the password for the authentication
* @param rememberMe true to remember the user across sessions
*
* @return
*/
@@ -139,7 +141,8 @@ public class AuthenticationResource
@TypeHint(ScmState.class)
public ScmState authenticate(@Context HttpServletRequest request,
@FormParam("username") String username,
@FormParam("password") String password)
@FormParam("password") String password, @FormParam("rememberMe")
@DefaultValue("false") boolean rememberMe)
{
ScmState state = null;
@@ -148,7 +151,7 @@ public class AuthenticationResource
try
{
subject.login(Tokens.createAuthenticationToken(request, username,
password));
password, rememberMe));
state = createState(subject);
}
catch (AuthenticationException ex)
@@ -253,11 +256,16 @@ public class AuthenticationResource
Response response = null;
Subject subject = SecurityUtils.getSubject();
if (subject.isAuthenticated())
if (subject.isAuthenticated() || subject.isRemembered())
{
if (logger.isDebugEnabled())
{
logger.debug("return state for user {}", subject.getPrincipal());
String auth = subject.isRemembered()
? "remembered"
: "authenticated";
logger.debug("return state for {} user {}", auth,
subject.getPrincipal());
}
ScmState state = createState(subject);

View File

@@ -65,6 +65,7 @@ import javax.ws.rs.Produces;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import sonia.scm.security.Role;
/**
*
@@ -137,7 +138,7 @@ public class ChangePasswordResource
Response response = null;
Subject subject = SecurityUtils.getSubject();
if (!subject.isAuthenticated())
if (!subject.hasRole(Role.USER))
{
throw new ScmSecurityException("user is not authenticated");
}

View File

@@ -111,7 +111,7 @@ public class SecurityFilter extends HttpFilter
chain.doFilter(new SecurityHttpServletRequestWrapper(request,
getUser(subject)), response);
}
else if (subject.isAuthenticated())
else if (subject.isAuthenticated() || subject.isRemembered())
{
response.sendError(HttpServletResponse.SC_FORBIDDEN);
}
@@ -142,8 +142,7 @@ public class SecurityFilter extends HttpFilter
*/
protected boolean hasPermission(Subject subject)
{
return ((configuration != null)
&& configuration.isAnonymousAccessEnabled()) || subject.isAuthenticated();
return ((configuration != null) && configuration.isAnonymousAccessEnabled()) || subject.isAuthenticated() || subject.isRemembered();
}
/**
@@ -158,7 +157,7 @@ public class SecurityFilter extends HttpFilter
{
User user = null;
if (subject.isAuthenticated())
if (subject.isAuthenticated() || subject.isRemembered())
{
user = subject.getPrincipals().oneByType(User.class);
}

View File

@@ -55,6 +55,7 @@ import java.util.Collection;
import javax.ws.rs.WebApplicationException;
import javax.ws.rs.core.Response.Status;
import sonia.scm.security.Role;
/**
*
@@ -112,7 +113,7 @@ public class SearchHandler<T>
{
Subject subject = SecurityUtils.getSubject();
if (!subject.isAuthenticated())
if (!subject.hasRole(Role.USER))
{
throw new ScmSecurityException("Authentication is required");
}

View File

@@ -169,7 +169,7 @@ public class DefaultUserManager extends AbstractUserManager
Subject subject = SecurityUtils.getSubject();
if (!subject.isAuthenticated())
if (!subject.hasRole(Role.USER))
{
throw new ScmSecurityException("user is not authenticated");
}

View File

@@ -227,7 +227,7 @@ public class BasicSecurityContext implements WebSecurityContext
T result = null;
Subject subject = SecurityUtils.getSubject();
if (subject.isAuthenticated())
if (subject.isAuthenticated() || subject.isRemembered())
{
PrincipalCollection pc = subject.getPrincipals();

View File

@@ -242,7 +242,7 @@ public class DefaultAdministrationContext implements AdministrationContext
{
String username = null;
if (subject.isAuthenticated())
if (subject.hasRole(Role.USER))
{
username = principal;
}

View File

@@ -88,7 +88,8 @@ if (Sonia.login.Form){
WaitMsgText: 'Übertrage Daten...',
failedMsgText: 'Anmeldung fehlgeschlagen!',
failedDescriptionText: 'Falscher Benutzername, Passwort oder sie haben nicht\n\
genug Berechtigungen. Bitte versuchen sie es erneut.'
genug Berechtigungen. Bitte versuchen sie es erneut.',
rememberMeText: 'Angemeldet bleiben'
});
}

View File

@@ -39,11 +39,12 @@ Sonia.login.Form = Ext.extend(Ext.FormPanel,{
WaitMsgText: 'Sending data...',
failedMsgText: 'Login failed!',
failedDescriptionText: 'Incorrect username, password or not enough permission. Please Try again.',
rememberMeText: 'Remember me',
initComponent: function(){
var config = {
labelWidth: 80,
labelWidth: 120,
url: restUrl + "authentication/login.json",
frame: true,
title: this.titleText,
@@ -76,6 +77,11 @@ Sonia.login.Form = Ext.extend(Ext.FormPanel,{
scope: this
}
}
},{
xtype: 'checkbox',
fieldLabel: this.rememberMeText,
name: 'rememberMe',
inputValue: 'true'
}],
buttons:[{
text: this.cancelText,