UfoController.java 2.55 KB
package com.yoho.search.restapi.ufo;

import com.yoho.search.common.utils.HttpServletRequestUtils;
import com.yoho.search.models.SearchApiResult;
import com.yoho.search.service.scene.shopbrand.UfoAggBrandService;
import com.yoho.search.service.scene.ufo.UfoProductListService;
import com.yoho.search.service.scene.ufo.UfoSelectionsService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.servlet.http.HttpServletRequest;
import java.util.Map;

/**
 * @author wangnan
 * @version 2018/9/14
 */
@Controller
public class UfoController {

    @Autowired
    private UfoProductListService ufoProductListService;
    @Autowired
    private UfoAggBrandService ufoAggBrandService;
    @Autowired
    private UfoSelectionsService ufoSelectionsService;

    @RequestMapping(method = RequestMethod.GET, value = "/ufo/productList")
    @ResponseBody
    public SearchApiResult productList(HttpServletRequest request) {
        Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
        return ufoProductListService.productList(paramMap);
    }

    @RequestMapping(method = RequestMethod.GET, value = "/ufo/brandList")
    @ResponseBody
    public SearchApiResult brandList(HttpServletRequest request) {
        Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
        return ufoAggBrandService.aggAllBrandList(paramMap);
    }

    @RequestMapping(method = RequestMethod.GET, value = "/ufo/selectionList")
    @ResponseBody
    public SearchApiResult selectionList(HttpServletRequest request) {
        Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
        return ufoSelectionsService.getSelectionsForApp(paramMap);
    }

    @RequestMapping(method = RequestMethod.GET, value = "/ufo/recommendList")
    @ResponseBody
    public SearchApiResult recommendList(HttpServletRequest request) {
        Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
        return ufoProductListService.recommendList(paramMap);
    }

    @RequestMapping(method = RequestMethod.GET, value = "/ufo/suggestList")
    @ResponseBody
    public SearchApiResult suggestList(HttpServletRequest request) {
        Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
        return ufoProductListService.suggestList(paramMap);
    }

}