Package org.atomojo.www.apps.login

Source Code of org.atomojo.www.apps.login.ActionResource

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.atomojo.www.apps.login;

import java.util.List;
import org.atomojo.app.client.Link;
import org.atomojo.app.client.LinkSet;
import org.atomojo.www.util.IdentityManager;
import org.restlet.Request;
import org.restlet.data.Reference;
import org.restlet.resource.ServerResource;

/**
*
* @author alex
*/
public class ActionResource extends ServerResource {

   static Reference getReferenceAttribute(Request request,String name,Reference defaultValue)
   {
      Object o = request.getAttributes().get(name);
      return o==null ? defaultValue : (Reference)o;
   }

   String loginType;
   String confCookiePath;
   String confCookieName;
   String loginApp;
   Reference confService;
   IdentityManager idManager;
   /** Creates a new instance of LoginForm */
   public ActionResource()
   {
      setNegotiated(false);
   }

   protected void doInit() {
      super.doInit();
      confService = null;
      idManager = (IdentityManager)getContext().getAttributes().get(IdentityManager.ATTR);
      if (idManager==null) {
         if (getRequest().isConfidential()) {
            getLogger().warning("No identity manager found for login management.");
         }
      } else {
         getLogger().info("Identity Manager: "+idManager);
      }
      LinkSet links = (LinkSet)getContext().getAttributes().get(LoginApplication.LINKS_ATTR);
      if (links!=null) {
         List<Link> services = links.get("auth-service");
         if (services!=null && services.size()>0) {
            confService = new Reference(services.get(0).getLink().toString());
         } else {
            getLogger().warning("The service link is missing login.");
         }
      } else {
         getLogger().warning("The "+LoginApplication.LINKS_ATTR+" attribute is missing for "+this.getClass().getName());
      }
      loginType = getContext().getParameters().getFirstValue("login.type");
      loginApp = getContext().getParameters().getFirstValue("login.name");
      if (loginApp==null) {
         loginApp = "restlet-server";
      }
      confCookiePath = getContext().getParameters().getFirstValue("cookie.path");
      if (confCookiePath==null) {
         confCookiePath = "/";
      }
      confCookieName = getContext().getParameters().getFirstValue("cookie.name");
   }
  
   protected String getCookiePath() {
      Object o = getRequest().getAttributes().get("cookie.path");
      return o==null ? confCookiePath : o.toString();
   }
  
   protected String getCookieName() {
      Object o = getRequest().getAttributes().get("cookie.name");
      return o==null ? confCookieName : o.toString();
   }
}
TOP

Related Classes of org.atomojo.www.apps.login.ActionResource

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.