package ${vhGrpcBuilder_packageName}.${vhGrpcBuilder_sprojectName}.config;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Profile;

import com.viewhigh.vhsc.support.config.ProfileNames;

import springfox.documentation.builders.ApiInfoBuilder;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
import springfox.documentation.service.ApiInfo;
import springfox.documentation.spi.DocumentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;


@Profile({ProfileNames.DEFAULT, ProfileNames.DEV})
@Configuration
@EnableSwagger2
public class SwaggerConfig {

    private static final String BASEPACKAGE = "${vhGrpcBuilder_packageName}.${vhGrpcBuilder_sprojectName}.api";
	 
    @Bean
    public Docket createRestApi() {
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.basePackage(BASEPACKAGE))
                .paths(PathSelectors.any())
                .build();
    }

    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                .title("epro-api1")
                .description("restful api")
                .termsOfServiceUrl("http://viewhigh.com/")
                .version("2.0")
                .build();
    }
}
