|
@@ -4,11 +4,30 @@ import com.macro.mall.search.dao.EsProductDao;
|
|
|
import com.macro.mall.search.domain.EsProduct;
|
|
|
import com.macro.mall.search.repository.EsProductRepository;
|
|
|
import com.macro.mall.search.service.EsProductService;
|
|
|
+import org.elasticsearch.index.query.BoolQueryBuilder;
|
|
|
+import org.elasticsearch.index.query.QueryBuilders;
|
|
|
+import org.elasticsearch.index.query.functionscore.FunctionScoreQueryBuilder;
|
|
|
+import org.elasticsearch.index.query.functionscore.ScoreFunctionBuilders;
|
|
|
+import org.elasticsearch.search.sort.SortBuilder;
|
|
|
+import org.elasticsearch.search.sort.SortBuilders;
|
|
|
+import org.elasticsearch.search.sort.SortOrder;
|
|
|
+import org.slf4j.Logger;
|
|
|
+import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.data.domain.Page;
|
|
|
+import org.springframework.data.domain.PageRequest;
|
|
|
+import org.springframework.data.domain.Pageable;
|
|
|
+import org.springframework.data.elasticsearch.core.query.NativeSearchQuery;
|
|
|
+import org.springframework.data.elasticsearch.core.query.NativeSearchQueryBuilder;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
+import org.springframework.util.CollectionUtils;
|
|
|
+import org.springframework.util.StringUtils;
|
|
|
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Iterator;
|
|
|
import java.util.List;
|
|
|
|
|
|
+
|
|
|
/**
|
|
|
* 商品搜索管理Service实现类
|
|
|
* Created by macro on 2018/6/19.
|
|
@@ -19,10 +38,107 @@ public class EsProductServiceImpl implements EsProductService {
|
|
|
private EsProductDao productDao;
|
|
|
@Autowired
|
|
|
private EsProductRepository productRepository;
|
|
|
+ private static final Logger LOGGER = LoggerFactory.getLogger(EsProductServiceImpl.class);
|
|
|
@Override
|
|
|
- public Object importAll() {
|
|
|
- List<EsProduct> esProductList = productDao.getAllEsProductList();
|
|
|
+ public int importAll() {
|
|
|
+ List<EsProduct> esProductList = productDao.getAllEsProductList(null);
|
|
|
Iterable<EsProduct> esProductIterable = productRepository.save(esProductList);
|
|
|
- return esProductIterable;
|
|
|
+ Iterator<EsProduct> iterator = esProductIterable.iterator();
|
|
|
+ int result = 0;
|
|
|
+ while (iterator.hasNext()) {
|
|
|
+ result++;
|
|
|
+ iterator.next();
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void delete(Long id) {
|
|
|
+ productRepository.delete(id);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public EsProduct create(Long id) {
|
|
|
+ EsProduct result = null;
|
|
|
+ List<EsProduct> esProductList = productDao.getAllEsProductList(id);
|
|
|
+ if (esProductList.size() > 0) {
|
|
|
+ EsProduct esProduct = esProductList.get(0);
|
|
|
+ result = productRepository.save(esProduct);
|
|
|
+ }
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void delete(List<Long> ids) {
|
|
|
+ if (!CollectionUtils.isEmpty(ids)) {
|
|
|
+ List<EsProduct> esProductList = new ArrayList<>();
|
|
|
+ for (Long id : ids) {
|
|
|
+ EsProduct esProduct = new EsProduct();
|
|
|
+ esProduct.setId(id);
|
|
|
+ esProductList.add(esProduct);
|
|
|
+ }
|
|
|
+ productRepository.delete(esProductList);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Page<EsProduct> search(String keyword, Integer pageNum, Integer pageSize) {
|
|
|
+ Pageable pageable = new PageRequest(pageNum, pageSize);
|
|
|
+ return productRepository.findByNameOrSubTitleOrKeywords(keyword, keyword, keyword, pageable);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Page<EsProduct> search(String keyword, Long brandId, Long productCategoryId, Integer pageNum, Integer pageSize,Integer sort) {
|
|
|
+ Pageable pageable = new PageRequest(pageNum, pageSize);
|
|
|
+ NativeSearchQueryBuilder nativeSearchQueryBuilder = new NativeSearchQueryBuilder();
|
|
|
+ //分页
|
|
|
+ nativeSearchQueryBuilder.withPageable(pageable);
|
|
|
+ //过滤
|
|
|
+ if (brandId != null || productCategoryId != null) {
|
|
|
+ BoolQueryBuilder boolQueryBuilder = QueryBuilders.boolQuery();
|
|
|
+ if (brandId != null) {
|
|
|
+ boolQueryBuilder.must(QueryBuilders.termQuery("brandId", brandId));
|
|
|
+ }
|
|
|
+ if (productCategoryId != null) {
|
|
|
+ boolQueryBuilder.must(QueryBuilders.termQuery("productCategoryId", productCategoryId));
|
|
|
+ }
|
|
|
+ nativeSearchQueryBuilder.withFilter(boolQueryBuilder);
|
|
|
+ }
|
|
|
+ //搜索
|
|
|
+ FunctionScoreQueryBuilder functionScoreQueryBuilder = QueryBuilders.functionScoreQuery()
|
|
|
+ .add(QueryBuilders.matchPhraseQuery("name", keyword),
|
|
|
+ ScoreFunctionBuilders.weightFactorFunction(1000))
|
|
|
+ .add(QueryBuilders.matchPhraseQuery("subTitle", keyword),
|
|
|
+ ScoreFunctionBuilders.weightFactorFunction(500))
|
|
|
+ .add(QueryBuilders.matchPhraseQuery("keywords", keyword),
|
|
|
+ ScoreFunctionBuilders.weightFactorFunction(200))
|
|
|
+ .scoreMode("sum").setMinScore(10f);
|
|
|
+ if (StringUtils.isEmpty(keyword)) {
|
|
|
+ nativeSearchQueryBuilder.withQuery(QueryBuilders.matchAllQuery());
|
|
|
+ } else {
|
|
|
+ nativeSearchQueryBuilder.withQuery(functionScoreQueryBuilder);
|
|
|
+ }
|
|
|
+ //排序
|
|
|
+ if(sort==1){
|
|
|
+ //按新品从新到旧
|
|
|
+ nativeSearchQueryBuilder.withSort(SortBuilders.fieldSort("id").order(SortOrder.DESC));
|
|
|
+ }else if(sort==2){
|
|
|
+ //按销量从高到低
|
|
|
+ nativeSearchQueryBuilder.withSort(SortBuilders.fieldSort("sale").order(SortOrder.DESC));
|
|
|
+ }else if(sort==3){
|
|
|
+ //按价格从低到高
|
|
|
+ nativeSearchQueryBuilder.withSort(SortBuilders.fieldSort("price").order(SortOrder.ASC));
|
|
|
+ }else if(sort==4){
|
|
|
+ //按价格从高到低
|
|
|
+ nativeSearchQueryBuilder.withSort(SortBuilders.fieldSort("price").order(SortOrder.DESC));
|
|
|
+ }else{
|
|
|
+ //按相关度
|
|
|
+ nativeSearchQueryBuilder.withSort(SortBuilders.scoreSort().order(SortOrder.DESC));
|
|
|
+ }
|
|
|
+ nativeSearchQueryBuilder.withSort(SortBuilders.scoreSort().order(SortOrder.DESC));
|
|
|
+ nativeSearchQueryBuilder.withSort(SortBuilders.scoreSort().order(SortOrder.DESC));
|
|
|
+ NativeSearchQuery searchQuery = nativeSearchQueryBuilder.build();
|
|
|
+// LOGGER.info("DSL:{}", searchQuery.getQuery().toString());
|
|
|
+ return productRepository.search(searchQuery);
|
|
|
}
|
|
|
}
|