This repository has been archived by the owner on Feb 28, 2023. It is now read-only.
forked from Netflix/genie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdateDocs.sh
executable file
·321 lines (285 loc) · 8.06 KB
/
updateDocs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
#!/bin/bash
##
#
# Copyright 2014 Netflix, Inc.
#
# 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.
#
##
#######################################################################################################
# This script is intended to be run in the master branch to update generated documentation on GitHub. #
#######################################################################################################
###########
# Methods #
###########
cleanup() {
shutdownTomcat
rm -rf /tmp/genie
}
checkIfGitRepo() {
#Make sure current directory is a git repository
echo "Ensuring it's a git repository"
git status
if (( $? !=0 ))
then
echo "This is not a git repository. Unable to continue"
exit 1
fi
echo "It's a git repository"
}
checkOnMasterBranch() {
echo "Making sure this script is being run from master branch"
GIT_BRANCH_COMMAND="git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/'"
BRANCH=`eval ${GIT_BRANCH_COMMAND}`
if [ "$BRANCH" != "master" ]
then
echo "To run this script you must be on the master branch. Currently on $BRANCH"
exit 1
fi
echo "On master branch"
}
checkCatalinaHome() {
echo "Checking to make sure CATALINA_HOME is set and valid"
: ${CATALINA_HOME:?"Need to set CATALINA_HOME non-empty"}
if (( $? != 0 ))
then
exit 1
fi
if [ ! -f "$CATALINA_HOME/bin/startup.sh" ]
then
echo "Not a valid tomcat deployment as $CATALINA_HOME/bin/startup doesn't exist"
exit 1
fi
}
updateCode() {
echo "Updating master to latest"
git pull
if (( $? != 0 ))
then
echo "Unable to update the master branch. Unable to continue"
exit 1
fi
echo "Successfully updated master"
}
checkBuildGradle() {
echo "Checking to make sure gradle build file exists"
if [ ! -f "build.gradle" ]
then
echo "gradlew doesn't exist in current branch"
exit 1
fi
}
checkGradlew() {
echo "Checking to make sure gradle wrapper exists"
if [ ! -f "gradlew" ]
then
echo "gradlew doesn't exist in current branch"
exit 1
fi
}
buildCode() {
echo "Building code"
./gradlew clean build
if (( $? != 0 ))
then
echo "Unable to build code"
exit 1
fi
}
shutdownTomcat() {
echo "Checking if tomcat is running or not"
TOMCAT_PID=$(ps axuw | grep ${CATALINA_HOME}/bin | grep -v grep | awk '{print $2}')
if [ "$TOMCAT_PID" ]
then
echo "Tomcat is running with PID $TOMCAT_PID. Shutting it down"
${CATALINA_HOME}/bin/shutdown.sh
while sleep 1
do
echo "Waiting for Tomcat to shut down"
ps -p ${TOMCAT_PID} > /dev/null || break;
done
echo "Tomcat successfully shut down"
fi
}
deployGenie() {
echo "Checking to make sure deploy script exists"
if [ ! -f "local_deploy.sh" ]
then
echo "local_deploy.sh doesn't exist in master branch"
exit 1
fi
echo "Making sure CATALINA_OPTS is right for OSS local deployment"
export CATALINA_OPTS="-Darchaius.deployment.applicationId=genie -Darchaius.deployment.environment=dev"
echo "CATALINA_OPTS = $CATALINA_OPTS"
echo "Deploying the Genie applicationn"
./local_deploy.sh
echo "Successfully deployed the application"
}
checkoutGhPages() {
pushd /tmp
if [ -d "/tmp/genie" ]
then
rm -rf /tmp/genie
if (( $? != 0 ))
then
"echo genie folder already exists and unable to remove it"
exit 1
fi
fi
git clone [email protected]:Netflix/genie.git
if (( $? != 0 ))
then
echo "Unable to clone Genie code"
exit 1
fi
echo "Successfully checked out genie"
cd genie
git checkout gh-pages
if (( $? != 0 ))
then
echo "Unable to checkout gh-pages branch"
exit 1
fi
popd
}
startTomcat() {
echo "Starting Tomcat"
${CATALINA_HOME}/bin/startup.sh
until [ $(curl -s -o /dev/null -w "%{http_code}" http://localhost:7001) == "200" ];
do
echo "Waiting for Tomcat to start. Sleeping."
sleep 1
done
echo "Tomcat successfully started"
}
updateJavaDocs() {
#Get rid of the old outdated docs
rm -rf /tmp/genie/docs/javadoc/*
mkdir -p /tmp/genie/docs/javadoc/common/
rsync -r genie-common/build/docs/javadoc/* /tmp/genie/docs/javadoc/common/
if (( $? != 0 ))
then
echo "Unable to update commmon javadocs"
cleanup
exit 1
fi
mkdir -p /tmp/genie/docs/javadoc/client/
rsync -r genie-client/build/docs/javadoc/* /tmp/genie/docs/javadoc/client/
if (( $? != 0 ))
then
echo "Unable to update client javadocs"
cleanup
exit 1
fi
mkdir -p /tmp/genie/docs/javadoc/server/
rsync -r genie-server/build/docs/javadoc/* /tmp/genie/docs/javadoc/server/
if (( $? != 0 ))
then
echo "Unable to update server javadocs"
cleanup
exit 1
fi
#Update Git
pushd /tmp/genie
git add --all
git commit -m "Updating Javadocs for latest version of Genie"
popd
}
updateAPIDocs() {
shutdownTomcat
deployGenie
startTomcat
rm -rf /tmp/genie/docs/rest/api-docs/*
#In case it didn't already exist
if [ ! -d "/tmp/genie/docs/rest/api-docs" ]
then
mkdir -p /tmp/genie/docs/rest/api-docs
fi
curl http://localhost:7001/genie/api-docs > /tmp/genie/docs/rest/api-docs/index.html
if (( $? != 0 ))
then
echo "Unable to update root api docs."
cleanup
exit 1
fi
mkdir -p /tmp/genie/docs/rest/api-docs/v2/config
curl http://localhost:7001/genie/api-docs/v2/config/applications > /tmp/genie/docs/rest/api-docs/v2/config/applications
if (( $? != 0 ))
then
echo "Unable to update applications api docs."
cleanup
exit 1
fi
curl http://localhost:7001/genie/api-docs/v2/config/commands > /tmp/genie/docs/rest/api-docs/v2/config/commands
if (( $? != 0 ))
then
echo "Unable to update commands api docs."
cleanup
exit 1
fi
curl http://localhost:7001/genie/api-docs/v2/config/clusters > /tmp/genie/docs/rest/api-docs/v2/config/clusters
if (( $? != 0 ))
then
echo "Unable to update clusters api docs."
cleanup
exit 1
fi
curl http://localhost:7001/genie/api-docs/v2/jobs > /tmp/genie/docs/rest/api-docs/v2/jobs
if (( $? != 0 ))
then
echo "Unable to update jobs api docs."
cleanup
exit 1
fi
#Update Git
pushd /tmp/genie
git add --all
git commit -m "Updating REST API docs for latest version of Genie"
popd
shutdownTomcat
}
updateGit() {
echo "Pushing updated documenation to GitHub"
pushd /tmp/genie
git push
if (( $? != 0 ))
then
echo "Unable to push gh-pages to origin (github). Documentation not updated."
cleanup
exit 1
fi
popd
echo "Successfully pushed updated documenation to GitHub"
}
################
# Begin Script #
################
echo "Beginning process of updating documenation for Genie based on code in master branch"
#Get current code and build/deploy to local Tomcat instance
checkIfGitRepo
checkOnMasterBranch
checkCatalinaHome
updateCode
checkBuildGradle
checkGradlew
#TODO: Web-int tests won't work if tomcat running on same port. Need to fix
shutdownTomcat
buildCode
#Get documentation branch from GitHub and clone it in tmp
checkoutGhPages
#Ok should be ready to update documentation
updateJavaDocs
updateAPIDocs
updateGit
cleanup
exit 0