Update swagger generator to OpenAPI 3.0
[netconf.git] / restconf / sal-rest-docgen-maven / src / main / java / org / opendaylight / netconf / sal / rest / doc / maven / StaticDocGenerator.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.netconf.sal.rest.doc.maven;
9
10 import com.fasterxml.jackson.databind.ObjectMapper;
11 import com.fasterxml.jackson.databind.SerializationFeature;
12 import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
13 import java.io.BufferedWriter;
14 import java.io.File;
15 import java.io.FileWriter;
16 import java.io.IOException;
17 import java.util.ArrayList;
18 import java.util.Collection;
19 import java.util.List;
20 import java.util.Map;
21 import java.util.Optional;
22 import java.util.Set;
23 import java.util.function.Function;
24 import javax.ws.rs.core.UriInfo;
25 import org.apache.maven.project.MavenProject;
26 import org.opendaylight.netconf.sal.rest.doc.impl.ApiDocServiceImpl;
27 import org.opendaylight.netconf.sal.rest.doc.impl.ApiDocServiceImpl.URIType;
28 import org.opendaylight.netconf.sal.rest.doc.impl.BaseYangSwaggerGeneratorDraft02;
29 import org.opendaylight.netconf.sal.rest.doc.swagger.Resource;
30 import org.opendaylight.netconf.sal.rest.doc.swagger.ResourceList;
31 import org.opendaylight.netconf.sal.rest.doc.swagger.SwaggerObject;
32 import org.opendaylight.yangtools.yang.model.api.EffectiveModelContext;
33 import org.opendaylight.yangtools.yang.model.api.Module;
34 import org.opendaylight.yangtools.yang2sources.spi.BasicCodeGenerator;
35 import org.opendaylight.yangtools.yang2sources.spi.MavenProjectAware;
36 import org.slf4j.Logger;
37 import org.slf4j.LoggerFactory;
38
39 /**
40  * This class gathers all yang defined {@link Module}s and generates Swagger compliant documentation.
41  */
42 public class StaticDocGenerator extends BaseYangSwaggerGeneratorDraft02
43         implements BasicCodeGenerator, MavenProjectAware {
44     private static final Logger LOG = LoggerFactory.getLogger(StaticDocGenerator.class);
45
46     private static final String DEFAULT_OUTPUT_BASE_DIR_PATH = "target" + File.separator + "generated-resources"
47         + File.separator + "swagger-api-documentation";
48
49     public StaticDocGenerator() {
50         super(Optional.empty());
51     }
52
53     @Override
54     @SuppressFBWarnings("DM_DEFAULT_ENCODING")
55     public Collection<File> generateSources(final EffectiveModelContext context, final File outputBaseDir,
56             final Set<Module> currentModules, final Function<Module, Optional<String>> moduleResourcePathResolver)
57                     throws IOException {
58         final List<File> result = new ArrayList<>();
59
60         // Create Base Directory
61         final File outputDir;
62         if (outputBaseDir == null) {
63             outputDir = new File(DEFAULT_OUTPUT_BASE_DIR_PATH);
64         } else {
65             outputDir = outputBaseDir;
66         }
67
68         if (!outputDir.mkdirs()) {
69             throw new IOException("Could not create directory " + outputDir);
70         }
71
72         // Create Resources directory
73         final File resourcesDir = new File(outputDir, "resources");
74         if (!resourcesDir.mkdirs()) {
75             throw new IOException("Could not create directory " + resourcesDir);
76         }
77
78         // Create JS file
79         final File resourcesJsFile = new File(outputDir, "resources.js");
80         if (!resourcesJsFile.createNewFile()) {
81             LOG.info("File {} already exists.", resourcesJsFile);
82         }
83
84         try (BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(resourcesJsFile))) {
85             final ObjectMapper mapper = new ObjectMapper();
86             mapper.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);
87
88             // Write resource listing to JS file
89             final ResourceList resourceList = super.getResourceListing(null, context, "", URIType.DRAFT02,
90                     ApiDocServiceImpl.OAversion.V2_0);
91             String resourceListJson = mapper.writeValueAsString(resourceList);
92             resourceListJson = resourceListJson.replace("\'", "\\\'").replace("\\n", "\\\\n");
93             bufferedWriter.write("function getSpec() {\n\treturn \'" + resourceListJson + "\';\n}\n\n");
94
95             // Write resources/APIs to JS file and to disk
96             bufferedWriter.write("function jsonFor(resource) {\n\tswitch(resource) {\n");
97             for (final Resource resource : resourceList.getApis()) {
98                 final int revisionIndex = resource.getPath().indexOf('(');
99                 final String name = resource.getPath().substring(0, revisionIndex);
100                 final String revision =
101                         resource.getPath().substring(revisionIndex + 1, resource.getPath().length() - 1);
102                 final SwaggerObject swaggerObject = super.getApiDeclaration(name, revision, null, context, "",
103                     URIType.DRAFT02, ApiDocServiceImpl.OAversion.V2_0);
104                 String json = mapper.writeValueAsString(swaggerObject);
105                 // Manually insert models because org.json.JSONObject cannot be serialized by ObjectMapper
106                 json = json.replace(
107                         "\"models\":{}", "\"models\":"
108                                 + swaggerObject.getDefinitions().toString().replace("\\\"", "\""));
109                 // Escape single quotes and new lines
110                 json = json.replace("\'", "\\\'").replace("\\n", "\\\\n");
111                 bufferedWriter.write("\t\tcase \"" + name + "(" + revision + ")\": return \'" + json + "\';\n");
112
113                 final File resourceFile = new File(resourcesDir, name + "(" + revision + ").json");
114
115                 try (BufferedWriter resourceFileWriter = new BufferedWriter(new FileWriter(resourceFile))) {
116                     resourceFileWriter.write(json);
117                 }
118
119                 result.add(resourceFile);
120             }
121             bufferedWriter.write("\t}\n\treturn \"\";\n}");
122         }
123
124         result.add(resourcesJsFile);
125         return result;
126     }
127
128     @Override
129     public String generatePath(final UriInfo uriInfo, final String name, final String revision) {
130         if (uriInfo == null) {
131             return name + "(" + revision + ")";
132         }
133         return super.generatePath(uriInfo, name, revision);
134     }
135
136     @Override
137     public void setAdditionalConfig(final Map<String, String> additionalConfig) {
138     }
139
140     @Override
141     public void setResourceBaseDir(final File resourceBaseDir) {
142     }
143
144     @Override
145     public void setMavenProject(final MavenProject mavenProject) {
146     }
147 }