fix
wzy
2022-08-07 ef5505e22c84a63d966f35cee78afa544ece57df
src/main/java/com/xcong/farmer/cms/core/node/Template.java
@@ -24,22 +24,15 @@
    private String path = "";
    private Document document;
    private Map<String, Map<String, Object>> params = new HashMap<>();
    private Map<String, Object> system;
    private List<PartNode> partNodes = new ArrayList<>();
    // 页面中包含的标签
    public static Set<String> TAGS;
    public static boolean HAS_PAGING = false;
    public volatile static boolean HAS_PAGING = false;
    public Template() {
        TAGS = new HashSet<>();
    }
    public Template(File file, Map<String, Object> system) {
        TAGS = new HashSet<>();
        Document document = null;
        try {
            document = Jsoup.parse(file, "utf-8");
@@ -63,21 +56,33 @@
        if ("article".equals(templateType)) {
            Object templateName = system.get("templateName");
            if (templateName != null) {
                this.name = (String) templateName;
                this.name = String.valueOf(templateName);
            }
        } else if ("column".equals(templateType)) {
            Object page = system.get("page");
            if (!new Integer(1).equals(page)) {
                this.name = name + "_" + page;
            }
        } else {
        } else if ("search".equals(templateType)){
            Object templateName = system.get("templateName");
            if (templateName != null) {
                this.name = String.valueOf(templateName);
            } else {
                this.name = "search";
            }
        } else if ("message".equals(templateType)) {
            Object templateName = system.get("templateName");
            if (templateName != null) {
                this.name = String.valueOf(templateName);
            } else {
                this.name = "message";
            }
        }
    }
    public void parser() {
        Elements children = document.body().children();
        Elements children = document.children();
        if (CollUtil.isNotEmpty(children)) {
            for (Element child : children) {
                PartNode partNode = new PartNode(child, this.system);
@@ -96,8 +101,8 @@
        for (PartNode partNode : partNodes) {
            sb.append(partNode.getHtml());
        }
        document.body().empty().html(sb.toString());
        String outPath = path(outputPath);
        document = Jsoup.parse(sb.toString());
        String outPath = path(outputPath) + system.get("companyCode");
        String html = document.html();
        try {
@@ -107,7 +112,7 @@
                file.mkdirs();
            }
            FileOutputStream outputStream = new FileOutputStream(path +this.name + suffix);
            FileOutputStream outputStream = new FileOutputStream(path + this.name + suffix);
            outputStream.write(html.getBytes());
            outputStream.close();
        } catch (IOException e) {
@@ -144,14 +149,6 @@
    public List<PartNode> getPartNodes() {
        return partNodes;
    }
    public Map<String, Map<String, Object>> getParams() {
        return params;
    }
    public void putParams(String key, Map<String, Object> value) {
        this.params.put(key, value);
    }
    public void systemData(Map<String, Object> data) {