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

cn.lyjuan.dictauto.demo.service.PromotionService Maven / Gradle / Ivy

package cn.lyjuan.dictauto.demo.service;

import cn.hutool.core.collection.CollUtil;
import cn.lyjuan.dictauto.demo.annotation.InjectPromotionName;
import cn.lyjuan.dictauto.demo.consts.DemoConst;
import io.github.chad2li.autoinject.core.dto.InjectKey;
import io.github.chad2li.autoinject.core.strategy.AutoInjectStrategy;
import org.springframework.stereotype.Service;

import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;

/**
 * 活动服务
 *
 * @author chad
 * @copyright 2023 chad
 * @since created at 2023/9/16 10:24
 */
@Service
public class PromotionService implements AutoInjectStrategy {
    @Override
    public String strategy() {
        return DemoConst.PROMOTION_NAME;
    }

    @Override
    public Map list(List> injectKeys) {
        if (CollUtil.isEmpty(injectKeys)) {
            return Collections.emptyMap();
        }
        Set idSet = injectKeys.stream()
                .flatMap(it -> it.getIdSet().stream())
                .collect(Collectors.toSet());
        // 移除无效的值
        idSet.remove(0L);
        idSet.remove(null);
        if (CollUtil.isEmpty(idSet)) {
            return Collections.emptyMap();
        }
        // 这里是mock的值,实际情况应该是查数据库或缓存
        Map promotionIdNameMap = new HashMap<>(idSet.size());
        for (Long id : idSet) {
            promotionIdNameMap.put(id, "这是一个测试活动-" + id);
        }
        return promotionIdNameMap;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy