Skip to content

Commit

Permalink
filter openapi
Browse files Browse the repository at this point in the history
  • Loading branch information
shalousun committed Dec 6, 2020
1 parent ebf9eee commit a19b349
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 68 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public boolean ignoreArtifactById(CustomArtifact artifact) {
case "mysql-connector-java":
case "classmate":
case "commons-lang3":
case "commons-text":
case "spring-web":
case "spring-webmvc":
case "hibernate-validator":
Expand All @@ -66,7 +67,6 @@ public boolean ignoreArtifactById(CustomArtifact artifact) {
case "gson":
case "annotations":
case "spring-aop":
case "springdoc-openapi-ui":
return true;
default:
return this.ignore(filterChain, artifact);
Expand Down
135 changes: 68 additions & 67 deletions src/main/java/com/smartdoc/gradle/chain/StartsWithFilterChain.java
Original file line number Diff line number Diff line change
@@ -1,67 +1,68 @@
/*
* smart-doc https://github.com/shalousun/smart-doc
*
* Copyright (C) 2018-2020 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.smartdoc.gradle.chain;

import com.smartdoc.gradle.model.CustomArtifact;

import java.util.HashSet;
import java.util.Set;

/**
* @author yu 2020/1/13.
*/
public class StartsWithFilterChain implements FilterChain {

private final static Set<String> PREFIX_SET = new HashSet<>();

private FilterChain filterChain;

static {
PREFIX_SET.add("maven");
PREFIX_SET.add("asm");
PREFIX_SET.add("tomcat");
PREFIX_SET.add("jboss");
PREFIX_SET.add("undertow");
PREFIX_SET.add("jackson");
PREFIX_SET.add("micrometer");
PREFIX_SET.add("spring-boot-actuator");
PREFIX_SET.add("sharding");
PREFIX_SET.add("mybatis-spring-boot-starter");
PREFIX_SET.add("flexmark");
PREFIX_SET.add("hibernate-core");
}

@Override
public void setNext(FilterChain nextInChain) {
this.filterChain = nextInChain;
}

@Override
public boolean ignoreArtifactById(CustomArtifact artifact) {
String artifactId = artifact.getArtifactId();
if (PREFIX_SET.stream().anyMatch(artifactId::startsWith)) {
return true;
}
return this.ignore(filterChain, artifact);
}
}
/*
* smart-doc https://github.com/shalousun/smart-doc
*
* Copyright (C) 2018-2020 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.smartdoc.gradle.chain;

import com.smartdoc.gradle.model.CustomArtifact;

import java.util.HashSet;
import java.util.Set;

/**
* @author yu 2020/1/13.
*/
public class StartsWithFilterChain implements FilterChain {

private final static Set<String> PREFIX_SET = new HashSet<>();

private FilterChain filterChain;

static {
PREFIX_SET.add("maven");
PREFIX_SET.add("asm");
PREFIX_SET.add("tomcat");
PREFIX_SET.add("jboss");
PREFIX_SET.add("undertow");
PREFIX_SET.add("jackson");
PREFIX_SET.add("micrometer");
PREFIX_SET.add("spring-boot-actuator");
PREFIX_SET.add("sharding");
PREFIX_SET.add("mybatis-spring-boot-starter");
PREFIX_SET.add("flexmark");
PREFIX_SET.add("hibernate-core");
PREFIX_SET.add("springdoc-openapi");
}

@Override
public void setNext(FilterChain nextInChain) {
this.filterChain = nextInChain;
}

@Override
public boolean ignoreArtifactById(CustomArtifact artifact) {
String artifactId = artifact.getArtifactId();
if (PREFIX_SET.stream().anyMatch(artifactId::startsWith)) {
return true;
}
return this.ignore(filterChain, artifact);
}
}

0 comments on commit a19b349

Please sign in to comment.