blob: 82486f5b2db7b9487594560185b32d25ad88c060 [file] [log] [blame]
Clint Adams4fd874b2016-01-19 18:17:49 -05001#!/bin/bash -ex
2
3# Copyright 2016 Hewlett Packard Enterprise Development Company, L.P.
4#
5# Licensed under the Apache License, Version 2.0 (the "License"); you may
6# not use this file except in compliance with the License. You may obtain
7# a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14# License for the specific language governing permissions and limitations
15# under the License.
16
17# This script is intended to be run as a periodic proposal bot job
18# in OpenStack infrastructure, though you can run it as a one-off.
19#
20# In order to function correctly, the environment in which the
21# script runs must have
Clint Adamse3e80512016-02-18 14:46:35 -050022# * a writable doc/source directory relative to the current
23# working directory
24# AND ( (
Clint Adams4fd874b2016-01-19 18:17:49 -050025# * git
26# * all git repos meant to be searched for plugins cloned and
27# at the desired level of up-to-datedness
Clint Adamse3e80512016-02-18 14:46:35 -050028# * the environment variable git_dir pointing to the location
29# * of said git repositories
30# ) OR (
31# * network access to the review.openstack.org Gerrit API
Clint Adams4fd874b2016-01-19 18:17:49 -050032# working directory
Clint Adamse3e80512016-02-18 14:46:35 -050033# * network access to https://git.openstack.org/cgit
34# ))
Clint Adams4fd874b2016-01-19 18:17:49 -050035#
36# If a file named data/devstack-plugins-registry.header or
37# data/devstack-plugins-registry.footer is found relative to the
38# current working directory, it will be prepended or appended to
39# the generated reStructuredText plugins table respectively.
40
Ian Wienandc10989b2016-03-21 13:03:34 +110041# Print the title underline for a RST table. Argument is the length
42# of the first column, second column is assumed to be "URL"
43function title_underline {
44 local len=$1
45 while [[ $len -gt 0 ]]; do
46 printf "="
47 len=$(( len - 1))
48 done
49 printf " ===\n"
50}
51
Clint Adams4fd874b2016-01-19 18:17:49 -050052(
53declare -A plugins
54
Clint Adamsf3b6feb2016-03-07 01:52:35 -050055if [[ -r data/devstack-plugins-registry.header ]]; then
56 cat data/devstack-plugins-registry.header
57fi
Clint Adams4fd874b2016-01-19 18:17:49 -050058
Clint Adams8ce3faf2016-02-26 08:18:13 -070059sorted_plugins=$(python tools/generate-devstack-plugins-list.py)
Clint Adams4fd874b2016-01-19 18:17:49 -050060
Ian Wienandc10989b2016-03-21 13:03:34 +110061# find the length of the name column & pad
62name_col_len=$(echo "${sorted_plugins}" | wc -L)
63name_col_len=$(( name_col_len + 2 ))
64
65# ====================== ===
66# Plugin Name URL
67# ====================== ===
68# foobar `git://... <http://...>`__
69# ...
70
71title_underline ${name_col_len}
72printf "%-${name_col_len}s %s\n" "Plugin Name" "URL"
73title_underline ${name_col_len}
74
75for plugin in ${sorted_plugins}; do
76 giturl="git://git.openstack.org/openstack/${plugin}"
77 gitlink="https://git.openstack.org/cgit/openstack/${plugin}"
78 printf "%-${name_col_len}s %s\n" "${p}" "\`${giturl} <${gitlink}>\`__"
Clint Adams8ce3faf2016-02-26 08:18:13 -070079done
Clint Adams4fd874b2016-01-19 18:17:49 -050080
Clint Adamsf3b6feb2016-03-07 01:52:35 -050081if [[ -r data/devstack-plugins-registry.footer ]]; then
82 cat data/devstack-plugins-registry.footer
83fi
Clint Adams4fd874b2016-01-19 18:17:49 -050084) > doc/source/plugin-registry.rst
Clint Adamse6f0d8c2016-02-26 08:25:32 -070085
86if [[ -n ${1} ]]; then
87 cp doc/source/plugin-registry.rst ${1}/doc/source/plugin-registry.rst
88fi