/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.store.cmis.test.activator.configuration; import com.liferay.document.library.kernel.store.Store; import com.liferay.osgi.util.ServiceTrackerFactory; import com.liferay.portal.kernel.util.PropsKeys; import com.liferay.portal.kernel.util.PropsUtil; import java.io.IOException; import java.util.Dictionary; import java.util.Hashtable; import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleContext; import org.osgi.framework.ServiceReference; import org.osgi.service.cm.Configuration; import org.osgi.service.cm.ConfigurationAdmin; import org.osgi.util.tracker.ServiceTracker; /** * @author Manuel de la Peña */ public class ConfigurationAdminBundleActivator implements BundleActivator { public static final String CREDENTIALS_PASSWORD = "test"; public static final String CREDENTIALS_USERNAME = "test"; @Override public void start(BundleContext bundleContext) throws Exception { String dlStoreImpl = PropsUtil.get(PropsKeys.DL_STORE_IMPL); if (!dlStoreImpl.equals("com.liferay.portal.store.cmis.CMISStore")) { return; } ServiceReference<ConfigurationAdmin> serviceReference = bundleContext.getServiceReference(ConfigurationAdmin.class); try { ConfigurationAdmin configurationAdmin = bundleContext.getService( serviceReference); Configuration cmisStoreConfiguration = configurationAdmin.getConfiguration( "com.liferay.portal.store.cmis.configuration." + "CMISStoreConfiguration", null); Dictionary<String, Object> properties = new Hashtable<>(); properties.put("credentialsPassword", CREDENTIALS_PASSWORD); properties.put("credentialsUsername", CREDENTIALS_USERNAME); properties.put( "repositoryUrl", "http://alfresco.liferay.org.es/alfresco/service/api/cmis"); properties.put("systemRootDir", "testStore"); cmisStoreConfiguration.update(properties); ServiceTracker<?, ?> serviceTracker = ServiceTrackerFactory.open( bundleContext, "(&(objectClass=" + Store.class.getName() + ")(store.type=com.liferay.portal.store.cmis.CMISStore))"); Object cmisStore = serviceTracker.waitForService(10000); serviceTracker.close(); if (cmisStore == null) { cmisStoreConfiguration.delete(); throw new IllegalStateException( "CMIS store was not registered within 10 seconds"); } } finally { bundleContext.ungetService(serviceReference); } } @Override public void stop(BundleContext bundleContext) throws IOException { ServiceReference<ConfigurationAdmin> serviceReference = bundleContext.getServiceReference(ConfigurationAdmin.class); try { ConfigurationAdmin configurationAdmin = bundleContext.getService( serviceReference); Configuration cmisStoreConfiguration = configurationAdmin.getConfiguration( "com.liferay.portal.store.cmis.configuration." + "CMISStoreConfiguration", null); cmisStoreConfiguration.delete(); } finally { bundleContext.ungetService(serviceReference); } } }