-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathplugin.sh
More file actions
executable file
·107 lines (90 loc) · 3.74 KB
/
plugin.sh
File metadata and controls
executable file
·107 lines (90 loc) · 3.74 KB
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
#!/bin/bash
#
# -------------------------------------------------------------------------
# {NAME} plugin for GLPI
# Copyright (C) {YEAR} by the {NAME} Development Team.
# -------------------------------------------------------------------------
#
# MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
# --------------------------------------------------------------------------
#
set -e -u -o pipefail
if [[ $# -ne 2 && $# -ne 3 ]]; then
echo $0: usage: plugin.sh name version [destination/path]
exit 1
fi
if [[ $# -eq 3 ]]; then
DIR=$3
if [ ! -d "$DIR" ]; then
echo "Destination directory $DIR does not exists!"
exit
fi
else
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/.."
fi
NAME=$(echo $1|tr -dc '[[:alpha:]]')
LNAME=$(echo "$NAME" | tr '[:upper:]' '[:lower:]')
UNAME=$(echo "$NAME" | tr '[:lower:]' '[:upper:]')
NS_NAME=$(echo "$1" | sed -E 's/\b([a-z])/\U\1/g' | tr -dc '[[:alpha:]]')
VERSION=$2
YEAR=$(date +%Y)
DEST="$DIR/$LNAME"
echo "Creating new $NAME plugin..."
if [ -d "$DEST" ]; then
echo "A directory named $LNAME already exists!"
exit 1
fi
read -r -p "Does your plugin include JS/TS files? [y/N] " has_js
read -r -p "Does your plugin include CSS/SCSS/SASS/LESS files? [y/N] " has_css
mkdir "$DEST"
rsync_excludes=(
--exclude '.git'
--exclude '.github/workflows/continuous-integration.yml'
--exclude '.github/workflows/create-plugin.sh'
--exclude 'plugin.sh'
--exclude 'dist'
--exclude 'README.md'
)
[[ ! "$has_js" =~ ^[Yy]$ ]] && rsync_excludes+=(--exclude 'eslint.config.mjs.tpl')
[[ ! "$has_css" =~ ^[Yy]$ ]] && rsync_excludes+=(--exclude '.stylelintrc.js.tpl')
rsync "${rsync_excludes[@]}" -a . "$DEST"
pushd "$DEST" > /dev/null
# Remove .tpl suffix (current folder and subdirectories)
# Note: the .tpl suffix is used to prevent some files from being detected by
# GLPI (like the setup.php) or github (the ci configuration).
find . -type f -name "*.tpl" -exec bash -c 'mv "$0" "${0%.*}"' {} \;
# move xml file
mv plugin.xml $LNAME.xml
#do replacements
sed \
-e "s/{NAME}/$NAME/g" \
-e "s/{LNAME}/$LNAME/g" \
-e "s/{UNAME}/$UNAME/g" \
-e "s/{NS_NAME}/$NS_NAME/g" \
-e "s/{VERSION}/$VERSION/g" \
-e "s/{YEAR}/$YEAR/g" \
-i setup.php hook.php $LNAME.xml tools/HEADER README.md Makefile .github/workflows/continuous-integration.yml tests/bootstrap.php composer.json rector.php
# Unignore composer lock
sed -i '/^[[:space:]]*composer\.lock[[:space:]]*$/d' .gitignore
popd > /dev/null
echo -e "\033[0;32mPlugin $NAME created under $DEST\033[0m"
echo -e "\033[0;33mDon't forget to add a RELEASE_TOKEN secret in your GitHub repository settings (Settings → Secrets and variables → Actions) with a personal access token having 'contents: write' permission.\033[0m"