org.onexus.ui.api.OnexusWebSession.java Source code

Java tutorial

Introduction

Here is the source code for org.onexus.ui.api.OnexusWebSession.java

Source

/**
 *  Copyright 2012 Universitat Pompeu Fabra.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 *
 *
 */
package org.onexus.ui.api;

import org.apache.wicket.Session;
import org.apache.wicket.authroles.authentication.AbstractAuthenticatedWebSession;
import org.apache.wicket.authroles.authorization.strategies.role.Roles;
import org.apache.wicket.request.Request;
import org.apache.wicket.util.string.Strings;
import org.onexus.resource.api.session.IAuthenticatedSession;
import org.onexus.resource.api.session.LoginContext;
import org.onexus.ui.authentication.persona.PersonaRoles;

import javax.security.auth.Subject;
import javax.security.auth.callback.Callback;
import javax.security.auth.callback.CallbackHandler;
import javax.security.auth.callback.NameCallback;
import javax.security.auth.callback.PasswordCallback;
import javax.security.auth.callback.UnsupportedCallbackException;
import javax.security.auth.login.LoginException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import java.io.IOException;
import java.security.Principal;

public class OnexusWebSession extends AbstractAuthenticatedWebSession implements IAuthenticatedSession {

    public static final String APPLICATION_POLICY_NAME = "onexus";

    public OnexusWebSession(Request request) {
        super(request);

        HttpServletRequest webRequest = (HttpServletRequest) request.getContainerRequest();
        HttpSession session = webRequest.getSession();

        if (session != null && LoginContext.get(session.getId()) != null) {
            LoginContext.set(LoginContext.get(session.getId()), null);
        } else {
            LoginContext.set(LoginContext.ANONYMOUS_CONTEXT, null);
        }
    }

    @Override
    public Roles getRoles() {
        Roles roles = new Roles();
        roles.addAll(LoginContext.get().getRoles());
        return roles;
    }

    @Override
    public boolean isSignedIn() {
        return LoginContext.get().getUserName() != null;
    }

    public static OnexusWebSession get() {
        return (OnexusWebSession) Session.get();
    }

    public boolean authenticate(String username, String password) {

        if (OnexusWebApplication.get().usePersonSignIn()) {
            return authenticatePersona(username);
        }

        boolean authenticated = false;
        LoginCallbackHandler handler = new LoginCallbackHandler(username, password);
        try {
            javax.security.auth.login.LoginContext javaCtx = new javax.security.auth.login.LoginContext(
                    APPLICATION_POLICY_NAME, handler);
            javaCtx.login();
            authenticated = true;

            LoginContext ctx = new LoginContext(username);

            Subject subject = javaCtx.getSubject();
            if (subject != null) {
                for (Principal p : subject.getPrincipals()) {
                    ctx.addRole(p.getName());
                }
            }

            LoginContext.set(ctx, getId());

        } catch (LoginException e) {
            // You'll get a LoginException on a failed username/password combo.
            authenticated = false;
            LoginContext.set(LoginContext.ANONYMOUS_CONTEXT, null);
        }
        return authenticated;
    }

    private boolean authenticatePersona(String username) {
        if (!Strings.isEmpty(username)) {
            LoginContext ctx = new LoginContext(username);
            for (String role : PersonaRoles.getPersonaRoles(username)) {
                ctx.addRole(role);
            }
            LoginContext.set(ctx, getId());

            return true;
        }

        LoginContext.set(LoginContext.ANONYMOUS_CONTEXT, null);
        return false;
    }

    private class LoginCallbackHandler implements CallbackHandler {

        private String username;
        private String password;

        public LoginCallbackHandler(String username, String password) {
            this.username = username;
            this.password = password;
        }

        public void handle(Callback[] callbacks) throws IOException, UnsupportedCallbackException {
            for (int i = 0; i < callbacks.length; i++) {
                Callback callback = callbacks[i];
                if (callback instanceof NameCallback) {
                    ((NameCallback) callback).setName(username);
                } else if (callback instanceof PasswordCallback) {
                    PasswordCallback pwCallback = (PasswordCallback) callback;
                    pwCallback.setPassword(password.toCharArray());
                } else {
                    throw new UnsupportedCallbackException(callbacks[i], "Callback type not supported");
                }
            }
        }
    }

}