All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jaeksoft.searchlib.webservice.crawler.rest.RestCrawlerImpl Maven / Gradle / Ivy

Go to download

OpenSearchServer is a powerful, enterprise-class, search engine program. Using the web user interface, the crawlers (web, file, database, ...) and the REST/RESTFul API you will be able to integrate quickly and easily advanced full-text search capabilities in your application. OpenSearchServer runs on Windows and Linux/Unix/BSD.

The newest version!
/**   
 * License Agreement for OpenSearchServer
 *
 * Copyright (C) 2011-2013 Emmanuel Keller / Jaeksoft
 * 
 * http://www.open-search-server.com
 * 
 * This file is part of OpenSearchServer.
 *
 * OpenSearchServer is free software: you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 * OpenSearchServer 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 General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with OpenSearchServer. 
 *  If not, see .
 **/
package com.jaeksoft.searchlib.webservice.crawler.rest;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import javax.ws.rs.core.Response.Status;

import com.jaeksoft.searchlib.Client;
import com.jaeksoft.searchlib.ClientFactory;
import com.jaeksoft.searchlib.SearchLibException;
import com.jaeksoft.searchlib.crawler.common.process.CrawlStatus;
import com.jaeksoft.searchlib.crawler.rest.RestCrawlItem;
import com.jaeksoft.searchlib.crawler.rest.RestCrawlThread;
import com.jaeksoft.searchlib.user.Role;
import com.jaeksoft.searchlib.util.Variables;
import com.jaeksoft.searchlib.webservice.CommonListResult;
import com.jaeksoft.searchlib.webservice.CommonResult;
import com.jaeksoft.searchlib.webservice.CommonServices;

public class RestCrawlerImpl extends CommonServices implements SoapRestCrawler,
		RestRestCrawler {

	@Override
	public CommonListResult list(String index, String login, String key) {
		try {
			ClientFactory.INSTANCE.properties.checkApi();
			Client client = getLoggedClientAnyRole(index, login, key,
					Role.GROUP_REST_CRAWLER);
			List nameList = new ArrayList(0);
			RestCrawlItem[] items = client.getRestCrawlList().getArray();
			if (items != null)
				for (RestCrawlItem item : items)
					nameList.add(item.getName());
			return new CommonListResult(nameList);
		} catch (SearchLibException e) {
			throw new CommonServiceException(e);
		} catch (InterruptedException e) {
			throw new CommonServiceException(e);
		} catch (IOException e) {
			throw new CommonServiceException(e);
		}
	}

	@Override
	public CommonResult run(String index, String login, String key,
			String crawl_name, Boolean returnIds, Map variables) {
		try {
			ClientFactory.INSTANCE.properties.checkApi();
			Client client = getLoggedClient(index, login, key,
					Role.REST_CRAWLER_EXECUTE);
			RestCrawlItem restCrawlItem = client.getRestCrawlList().get(
					crawl_name);
			if (restCrawlItem == null)
				throw new CommonServiceException(Status.NOT_FOUND,
						"Crawl item not found: " + crawl_name);
			if (returnIds == null)
				returnIds = false;
			CommonResult result = returnIds ? new CommonListResult(
					new ArrayList(0)) : new CommonResult(true, null);
			RestCrawlThread restCrawlThread = client
					.getRestCrawlMaster()
					.execute(
							client,
							restCrawlItem,
							true,
							variables == null ? null : new Variables(variables),
							result);
			if (restCrawlThread.getStatus() == CrawlStatus.ERROR)
				throw new CommonServiceException(restCrawlThread.getException());
			if (result instanceof CommonListResult)
				((CommonListResult) result).computeInfos();
			return result;
		} catch (SearchLibException e) {
			throw new CommonServiceException(e);
		} catch (InterruptedException e) {
			throw new CommonServiceException(e);
		} catch (IOException e) {
			throw new CommonServiceException(e);
		}

	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy