/* * ModeShape (http://www.modeshape.org) * * 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.modeshape.web.server.impl; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; import javax.jcr.Credentials; import javax.jcr.SimpleCredentials; import javax.naming.InitialContext; import javax.naming.NamingException; import javax.servlet.ServletContext; import org.modeshape.common.logging.Logger; import org.modeshape.jcr.ModeShapeEngine; import org.modeshape.web.shared.RemoteException; import org.modeshape.web.server.Connector; import org.modeshape.web.server.LRepository; import org.modeshape.web.shared.RepositoryName; /** * * @author kulikov */ public class ConnectorImpl implements Connector { private final static String JNDI_PREFIX_PARAM = "jndi-prefix"; private final static String DEFAULT_JNDI_PREFIX = "jcr"; //this object will be serialized by user session but //we do not want to serialize any data so mark everything as transient private static final long serialVersionUID = 1L; private transient HashMap<String, LRepository> repositories = new HashMap<>(); //names of the available repositories private transient Collection<RepositoryName> repositoryNames; //user's credentials private transient Credentials credentials; private transient String userName; private transient ModeShapeEngine engine; private transient RepositoryList repoList; //reference to the server's env private transient ServletContext context; private final static Logger logger = Logger.getLogger(ConnectorImpl.class); public ConnectorImpl() { } @Override public void start(ServletContext context) throws RemoteException { this.context = context; String jndiPrefix = context.getInitParameter(JNDI_PREFIX_PARAM); if (jndiPrefix == null) jndiPrefix = DEFAULT_JNDI_PREFIX; try { InitialContext ic = new InitialContext(); engine = (ModeShapeEngine) ic.lookup(jndiPrefix); repoList = new RepositoryList(engine); repositoryNames = repoList.getRepositories(null); } catch (NamingException | RemoteException e) { throw new RemoteException(e.getMessage()); } } @Override public void login( String username, String password ) throws RemoteException { this.userName = username; if (username == null) { credentials = null; } if (password == null) { credentials = new SimpleCredentials(username, null); } else { credentials = new SimpleCredentials(username, password.toCharArray()); } try { repositoryNames = repoList.getRepositories(credentials); } catch (Exception e) { throw new RemoteException(e.getMessage()); } } @Override public void logout() { credentials = null; userName = null; try { repositoryNames = repoList.getRepositories(null); } catch (RemoteException e) { repositoryNames.clear(); } } @Override public String userName() { return userName; } @Override public Collection<RepositoryName> getRepositories() { return repositoryNames; } @Override public LRepository find(String name) throws RemoteException { if (!repositories.containsKey(name)) { try { logger.debug("Starting repository: " + name); repositories.put(name, new LRepositoryImpl(context, engine.getRepository(name), credentials)); } catch (Exception e) { logger.debug("Could not start repository " + name, e); throw new RemoteException(e.getMessage()); } } return repositories.get(name); } @Override public Collection<RepositoryName> search(String name) { ArrayList<RepositoryName> list = new ArrayList<>(); for (RepositoryName n : repositoryNames) { if (n.getName().contains(name) || n.getDescriptor().contains(name)) { list.add(n); } } return list; } }