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

com.binfast.adpter.openapi.utils.OpenApiSchemaUtil Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
/*
 * smart-doc https://github.com/shalousun/smart-doc
 *
 * Copyright (C) 2018-2022 smart-doc
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package com.binfast.adpter.openapi.utils;

import com.power.common.util.CollectionUtil;
import com.power.common.util.StringUtil;
import com.binfast.adpter.openapi.model.ApiParam;

import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

/**
 * @author yu 2020/11/29.
 */
public class OpenApiSchemaUtil {

    public final static String NO_BODY_PARAM = "NO_BODY_PARAM";
    final static Pattern p = Pattern.compile("[A-Z]\\w+.*?|[A-Z]");

    public static Map primaryTypeSchema(String primaryType) {
        Map map = new HashMap<>();
        map.put("type", DocUtil.javaTypeToOpenApiTypeConvert(primaryType));
        return map;
    }

    public static Map mapTypeSchema(String primaryType) {
        Map map = new LinkedHashMap<>();
        map.put("type", "object");
        Map items = new HashMap<>();
        items.put("type", DocUtil.javaTypeToOpenApiTypeConvert(primaryType));
        map.put("additionalProperties", items);
        return map;
    }

    public static Map arrayTypeSchema(String primaryType) {
        Map map = new HashMap<>();
        map.put("type", "array");
        Map items = new HashMap<>();
        items.put("type", DocUtil.javaTypeToOpenApiTypeConvert(primaryType));
        map.put("items", items);
        return map;
    }

    public static Map returnSchema(String returnGicName) {
        if (StringUtil.isEmpty(returnGicName)) {
            return null;
        }
        returnGicName = returnGicName.replace(">", "");
        String[] types = returnGicName.split("<");
        StringBuilder builder = new StringBuilder();
        for (String str : types) {
            builder.append(DocClassUtil.getSimpleName(str).replace(",", ""));
        }
        Map map = new HashMap<>();
        map.put("$ref", builder.toString());
        return map;
    }

    public static String getClassNameFromParams(List apiParams) {
        // if array[Primitive] or Primitive
        if (CollectionUtil.isNotEmpty(apiParams) && apiParams.size() == 1
            && CollectionUtil.isEmpty(apiParams.get(0).getChildren())) {
            return "string";
        }
        for (ApiParam a : apiParams) {
            if (StringUtil.isNotEmpty(a.getClassName())) {
                return OpenApiSchemaUtil.delClassName(a.getClassName());
            }
        }
        return NO_BODY_PARAM;
    }

    public static String delClassName(String className) {
        return String.join("", getPatternResult(p, className));
    }

    public static List getPatternResult(Pattern p, String content) {
        List matchers = new ArrayList<>();
        Matcher m = p.matcher(content);
        while (m.find()) {
            matchers.add(m.group());
        }
        return matchers;
    }

    public static List getPatternResult(String rex, String content) {
        Pattern p = Pattern.compile(rex);
        List matchers = new ArrayList<>();
        Matcher m = p.matcher(content);
        while (m.find()) {
            matchers.add(m.group());
        }
        return matchers;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy