changelog/changelog.sh

121 lines
3.1 KiB
Bash
Raw Normal View History

2020-05-12 08:20:41 +00:00
#!/bin/bash
#Manages an /etc/changelog
2020-05-17 23:10:06 +00:00
# %CONFIG% This comment is used to build custom scripts
2020-05-12 08:20:41 +00:00
CHANGELOG=/etc/changelog
2020-05-17 23:10:06 +00:00
[[ -w /etc/changelog ]] || {
echo -e "\nYou cannot write to $CHANGELOG... This doesn't look serious!\n"
read -e -i y -n 1 -p "Run as sudo [Yn]? : "
[[ "Y" == ${REPLY^} ]] && sudo -E $0
exit 0
}
2020-05-15 09:46:56 +00:00
2020-05-12 08:20:41 +00:00
# functions
msg(){ echo -e "$@"; }
panic(){ msg "${@} Exiting."; exit 1;}
ENTRY_FILE=$(mktemp)
2020-05-12 08:20:41 +00:00
change(){
TMP="$1"
2020-05-12 08:20:41 +00:00
while true ; do
echo -e "\nType the nature of the change.\nExample: > mysql: do not start on boot\n"
read -e -p "> " SUB
2020-05-15 09:46:56 +00:00
echo -e "* $SUB" >> $TMP
echo -e "\nTime for some details."
for (( ; ; )); do
echo "Select number or x to quit"
2020-05-17 23:10:06 +00:00
for (( i=0; i<${#PLUGIN_CONTENT_MENU[@]}; i++)) ; do
echo "$i) ${PLUGIN_CONTENT_MENU[$i]}"
2020-05-15 09:46:56 +00:00
done
echo "x) No more details."
read -e -n 1 -p "Your choice? :" REPLY
if [[ "x" == ${REPLY,,} ]]; then
break
2020-05-17 23:10:06 +00:00
elif [[ -z "${PLUGIN_CONTENT[$REPLY]}" ]] ; then
2020-05-15 09:46:56 +00:00
echo "Unknown Key."
else
2020-05-17 23:10:06 +00:00
${PLUGIN_CONTENT[$REPLY]} $TMP
2020-05-15 09:46:56 +00:00
fi
done
read -e -i "n" -p "Another section? [yN]:" END
2020-05-12 08:20:41 +00:00
[[ "${END^^}" == "N" ]] && break
done
echo -e "\nHere is the content you are about to add.\n\n$(cat $TMP)\n"
read -e -p "OK? [Yn]: " -i y RETURN
2020-05-17 23:10:06 +00:00
[[ "N" == ${RETURN^^} ]] && return 1
2020-05-12 08:20:41 +00:00
}
2020-05-15 09:46:56 +00:00
hookContentComment(){
[[ -z "$1" ]] && echo "Enter a simple comment. Ex: systemctl disable nginx" && return
TMP="$1"
read -e -p "Your comment: " CONTENT
echo "$CONTENT" >> $TMP
}
hookOutputFile(){
[[ -z "$1" ]] && echo "Writing a local changelog entry to $CHANGELOG" && return
local t=$(mktemp)
TMP="$1"
cat << HEREDOC >$t
2020-05-17 23:10:06 +00:00
$(date "+%Y-%m-%d %H:%M") $CHANGELOG_USERNAME
$( echo -e "$@"|sed 's/^/ /' )
HEREDOC
[[ -f $CHANGELOG ]] && cat /etc/changelog >> $t
cat "$t" > $CHANGELOG
rm -f "$t"
}
2020-05-15 09:46:56 +00:00
# Build the hook content menu
2020-05-17 23:10:06 +00:00
PLUGIN_CONTENT+=("hookContentComment")
declare -a PLUGIN_CONTENT_MENU
2020-05-15 09:46:56 +00:00
# Build the hook content menu
2020-05-17 23:10:06 +00:00
PLUGIN_OUTPUT+=("hookOutputFile")
declare -a PLUGIN_OUTPUT_MENU
# %PLUGIN% This comment is used to build custom scripts
[[ -d "plugins-enabled" ]] && [[ -n "plugins-enabled/*" ]] && source plugins-enabled/*
2020-05-17 23:10:06 +00:00
for (( i = 0; i < ${#PLUGIN_OUTPUT[@]} ; i++ )); do
TXT=$( ${PLUGIN_OUTPUT[$i]} )
PLUGIN_OUTPUT_MENU+=("$( ${PLUGIN_OUTPUT[$i]} )")
done
for (( i = 0; i < ${#PLUGIN_CONTENT[@]} ; i++ )); do
TXT=$( ${PLUGIN_CONTENT[$i]} )
PLUGIN_CONTENT_MENU+=("$( ${PLUGIN_CONTENT[$i]} )")
done
2020-05-15 09:46:56 +00:00
2020-05-17 23:10:06 +00:00
# Exec
2020-05-15 09:46:56 +00:00
2020-05-12 08:20:41 +00:00
echo -e "\nWelcome to Serious Changelogs Inc. Do you have something for me?\n"
# set environment variables
[[ -z "$CHANGELOG_USERNAME" ]] && read -e -p "Your name? " NAME&& read -e -p "Your email? " EMAIL && CHANGELOG_USERNAME="${NAME^} <$EMAIL>" && echo "export CHANGELOG_USERNAME=\"$CHANGELOG_USERNAME\""
[[ " <>" == "$CHANGELOG_USERNAME" ]] && panic "srs.ly?"
# check changelog exists
[[ ! -f $CHANGELOG ]] && template "* Changelog: Added $CHANGELOG file\nIt was not serious. Fixed!\n\n"
# parse command
change "$ENTRY_FILE"
2020-05-17 23:10:06 +00:00
[[ $? -eq 0 ]] && exit
for (( i=0; i<${#PLUGIN_OUTPUT_MENU[@]}; i++)) ; do
echo "${PLUGIN_OUTPUT_MENU[$i]}"
${PLUGIN_OUTPUT[$i]} $ENTRY_FILE
done
2020-05-12 08:20:41 +00:00
rm "$ENTRY_FILE"