package com.jeecms.cms.lucene;
import java.io.IOException;
import java.util.Date;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.lucene.index.CorruptIndexException;
import org.apache.lucene.queryParser.ParseException;
import org.apache.lucene.store.LockObtainFailedException;
import org.json.JSONException;
import org.json.JSONObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import com.jeecms.cms.entity.main.Channel;
import com.jeecms.cms.entity.main.CmsSite;
import com.jeecms.cms.manager.main.ChannelMng;
import com.jeecms.cms.web.CmsUtils;
import com.jeecms.common.web.ResponseUtils;
@Controller
public class LuceneContentAct {
private static final Logger log = LoggerFactory
.getLogger(LuceneContentAct.class);
@RequestMapping(value = "/lucene/v_index.do")
public String index(HttpServletRequest request, ModelMap model) {
CmsSite site = CmsUtils.getSite(request);
List<Channel> topList = channelMng.getTopList(site.getId(), true);
List<Channel> channelList = Channel.getListForSelect(topList, null,
true);
model.addAttribute("site", site);
model.addAttribute("channelList", channelList);
return "lucene/index";
}
@RequestMapping(value = "/lucene/o_create.do")
public void create(Integer siteId, Integer channelId, Date startDate,
Date endDate, Integer startId, Integer max,
HttpServletRequest request, HttpServletResponse response,
ModelMap model) throws JSONException {
try {
Integer lastId = luceneContentSvc.createIndex(siteId, channelId,
startDate, endDate, startId, max);
JSONObject json = new JSONObject();
json.put("success", true);
if (lastId != null) {
json.put("lastId", lastId);
}
ResponseUtils.renderJson(response, json.toString());
} catch (CorruptIndexException e) {
JSONObject json = new JSONObject();
json.put("success", false).put("msg", e.getMessage());
ResponseUtils.renderJson(response, json.toString());
log.error("", e);
} catch (LockObtainFailedException e) {
JSONObject json = new JSONObject();
json.put("success", false).put("msg", e.getMessage());
ResponseUtils.renderJson(response, json.toString());
log.error("", e);
} catch (IOException e) {
JSONObject json = new JSONObject();
json.put("success", false).put("msg", e.getMessage());
ResponseUtils.renderJson(response, json.toString());
log.error("", e);
} catch (ParseException e) {
JSONObject json = new JSONObject();
json.put("success", false).put("msg", e.getMessage());
ResponseUtils.renderJson(response, json.toString());
log.error("", e);
}
}
@Autowired
private LuceneContentSvc luceneContentSvc;
@Autowired
private ChannelMng channelMng;
}