2018-04-16 16:31:44 +00:00
#!/usr/bin/env bash
2015-07-16 02:46:04 +00:00
2016-06-03 00:25:58 +00:00
# Copyright 2014 The Kubernetes Authors.
2015-07-16 02:46:04 +00:00
#
# Licensed 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.
# Script to generate docs from the latest swagger spec.
set -o errexit
set -o nounset
set -o pipefail
2015-10-27 20:57:42 +00:00
cd /build
2015-07-16 02:46:04 +00:00
2015-10-19 23:57:38 +00:00
# gendocs takes "input.json" as the input swagger spec.
2016-02-09 03:11:06 +00:00
# $1 is expected to be <group>_<version>
2015-10-19 23:57:38 +00:00
cp /swagger-source/" $1 " .json input.json
2015-07-16 02:46:04 +00:00
./gradle-2.5/bin/gradle gendocs --info
#insert a TOC for top level API objects
buf = "== Top Level API Objects\n\n"
2016-06-20 07:21:58 +00:00
top_level_models = $( grep '&[A-Za-z]*{},' /register.go | sed 's/.*&//;s/{},//' )
2016-02-09 03:11:06 +00:00
# check if the top level models exist in the definitions.adoc. If they exist,
# their name will be <version>.<model_name>
VERSION = " ${ 1 #*_ } "
2019-01-18 18:17:16 +00:00
for m in ${ top_level_models }
2015-07-16 02:46:04 +00:00
do
2019-01-19 12:58:58 +00:00
if grep -xq " === ${ VERSION } . ${ m } " ./definitions.adoc
2015-07-16 02:46:04 +00:00
then
2019-01-19 12:58:58 +00:00
buf += " * << ${ VERSION } . ${ m } >>\n "
2015-07-16 02:46:04 +00:00
fi
done
2019-01-19 12:58:58 +00:00
sed -i " 1i ${ buf } " ./definitions.adoc
2015-07-16 02:46:04 +00:00
2016-02-09 03:11:06 +00:00
# fix the links in .adoc, replace <<x.y>> with link:definitions.html#_x_y[x.y], and lowercase the _x_y part
2015-07-16 02:46:04 +00:00
sed -i -e 's|<<\(.*\)\.\(.*\)>>|link:#_\L\1_\2\E[\1.\2]|g' ./definitions.adoc
2016-05-10 22:02:33 +00:00
sed -i -e 's|<<\(.*\)\.\(.*\)>>|link:../definitions#_\L\1_\2\E[\1.\2]|g' ./paths.adoc
2015-07-16 02:46:04 +00:00
2016-02-09 03:11:06 +00:00
# fix the link to <<any>>
2015-07-16 02:46:04 +00:00
sed -i -e 's|<<any>>|link:#_any[any]|g' ./definitions.adoc
2016-05-10 22:02:33 +00:00
sed -i -e 's|<<any>>|link:../definitions#_any[any]|g' ./paths.adoc
2015-07-16 02:46:04 +00:00
2015-10-03 00:20:27 +00:00
# change the title of paths.adoc from "paths" to "operations"
sed -i 's|== Paths|== Operations|g' ./paths.adoc
2015-11-15 22:37:05 +00:00
# $$ has special meaning in asciidoc, we need to escape it
sed -i 's|\$\$|+++$$+++|g' ./definitions.adoc
2015-07-16 02:46:04 +00:00
echo -e "=== any\nRepresents an untyped JSON map - see the description of the field for more info about the structure of this object." >> ./definitions.adoc
asciidoctor definitions.adoc
asciidoctor paths.adoc
cp definitions.html /output/
cp paths.html /output/operations.html
echo "SUCCESS"