You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
202 lines
6.7 KiB
202 lines
6.7 KiB
7 years ago
|
#!/bin/bash
|
||
|
|
||
7 years ago
|
# default to adding plugins
|
||
7 years ago
|
remove=false
|
||
7 years ago
|
|
||
|
# default to https plugins
|
||
|
ssh=false
|
||
|
|
||
|
# Cd to public html foder
|
||
7 years ago
|
cd ${PWD%/public_html*}/public_html
|
||
7 years ago
|
|
||
|
# Loop through arguments passed
|
||
7 years ago
|
while test $# -gt 0; do
|
||
|
case "$1" in
|
||
|
-h|--help)
|
||
7 years ago
|
#Print help message
|
||
7 years ago
|
echo -e "Aquarius Plugin installer"
|
||
|
echo -e "Adds submodules for commonly used plugins"
|
||
|
echo -e "You can string multiple plugins together"
|
||
|
echo -e "e.g. aquariusPlugin yoast db-migrate blocks"
|
||
|
echo ""
|
||
|
echo -e "-h, --help \t\t\t\t Show this help text"
|
||
|
echo -e "-r, --remove \t\t\t\t Remove any plugins after this flag"
|
||
7 years ago
|
echo ""
|
||
7 years ago
|
echo -e "yoast \t\t\t\t\t install yoast"
|
||
|
echo -e "db-migrate \t\t\t\t install db-migrate"
|
||
|
echo -e "cf7 \t\t\t\t\t install cf7"
|
||
7 years ago
|
echo -e "woo, woocommerce\t\t\t install woocommerce"
|
||
|
echo ""
|
||
7 years ago
|
echo -e "blocks, aquarius-blocks \t\t install aquarius blocks"
|
||
|
echo -e "clients, aquarius-clients \t\t install aquarius clients"
|
||
|
echo -e "news, aquarius-news \t\t\t install aquarius news"
|
||
|
echo -e "people, aquarius-people \t\t install aquarius people"
|
||
|
echo -e "permissions, aquarius-permissions \t install aquarius permissions into mu-plugins"
|
||
|
echo -e "slider, aquarius-slider \t\t install aquarius slider"
|
||
|
echo -e "snippets, aquarius-snippets \t\t install aquarius snippets"
|
||
|
echo -e "widgets, aquarius-widgets \t\t install aquarius widgets"
|
||
|
exit 0
|
||
|
;;
|
||
|
-r|--remove)
|
||
7 years ago
|
#start removing
|
||
7 years ago
|
remove=true
|
||
|
shift
|
||
|
;;
|
||
7 years ago
|
-s|--ssh)
|
||
|
ssh=true
|
||
|
shift
|
||
|
;;
|
||
7 years ago
|
yoast)
|
||
|
if [ "$remove" = true ]; then
|
||
|
echo "attempting to remove yoast"
|
||
|
git-delete-submodule "wp-content/plugins/wordpress-seo"
|
||
|
else
|
||
|
echo "attempting to add yoast"
|
||
7 years ago
|
if [ "$ssh" = true ]; then
|
||
|
git submodule git@bitbucket.org:fellowshipproductionsltd/wordpress-seo.git wp-content/plugins/wordpress-seo
|
||
|
else
|
||
|
git submodule add https://bitbucket.org/fellowshipproductionsltd/wordpress-seo.git wp-content/plugins/wordpress-seo
|
||
|
fi
|
||
7 years ago
|
fi
|
||
|
shift
|
||
|
;;
|
||
|
db-migrate)
|
||
|
if [ "$remove" = true ]; then
|
||
|
git-delete-submodule "wp-content/plugins/wp-migrate-db"
|
||
|
else
|
||
7 years ago
|
if [ "$ssh" = true ]; then
|
||
|
git submodule add git@bitbucket.org:fellowshipproductionsltd/wp-migrate-db.git wp-content/plugins/wp-migrate-db
|
||
|
else
|
||
|
git submodule add https://bitbucket.org/fellowshipproductionsltd/wp-migrate-db.git wp-content/plugins/wp-migrate-db
|
||
|
fi
|
||
7 years ago
|
fi
|
||
|
shift
|
||
|
;;
|
||
|
cf7)
|
||
|
if [ "$remove" = true ]; then
|
||
|
git-delete-submodule "wp-content/plugins/contact-form-7"
|
||
|
else
|
||
7 years ago
|
if [ "$ssh" = true ]; then
|
||
|
git submodule add git@bitbucket.org:fellowshipproductionsltd/contact-form-7.git wp-content/plugins/contact-form-7
|
||
|
else
|
||
|
git submodule add https://bitbucket.org/fellowshipproductionsltd/contact-form-7.git wp-content/plugins/contact-form-7
|
||
|
fi
|
||
|
fi
|
||
|
shift
|
||
|
;;
|
||
|
woocommerce|woo)
|
||
|
if [ "$remove" = true ]; then
|
||
|
git-delete-submodule "wp-content/plugins/woocommerce"
|
||
|
else
|
||
|
if [ "$ssh" = true ]; then
|
||
|
git submodule add git@bitbucket.org:fellowshipproductionsltd/woocommerce.git wp-content/plugins/woocommerce
|
||
|
else
|
||
|
git submodule add https://bitbucket.org/fellowshipproductionsltd/woocommerce.git wp-content/plugins/woocommerce
|
||
|
fi
|
||
7 years ago
|
fi
|
||
|
shift
|
||
|
;;
|
||
|
aquarius-blocks|blocks)
|
||
|
if [ "$remove" = true ]; then
|
||
|
git-delete-submodule "wp-content/plugins/aquarius-blocks"
|
||
|
else
|
||
7 years ago
|
if [ "$ssh" = true ]; then
|
||
|
git submodule add git@bitbucket.org:fellowshipproductionsltd/aquarius-blocks.git wp-content/plugins/aquarius-blocks
|
||
|
else
|
||
|
git submodule add https://bitbucket.org/fellowshipproductionsltd/aquarius-blocks.git wp-content/plugins/aquarius-blocks
|
||
|
fi
|
||
7 years ago
|
fi
|
||
|
shift
|
||
|
;;
|
||
|
aquarius-clients|clients)
|
||
|
if [ "$remove" = true ]; then
|
||
|
git-delete-submodule "wp-content/plugins/aquarius-clients"
|
||
|
else
|
||
7 years ago
|
if [ "$ssh" = true ]; then
|
||
|
git submodule add git@bitbucket.org:fellowshipproductionsltd/aquarius-clients.git wp-content/plugins/aquarius-clients
|
||
|
else
|
||
|
git submodule add https://bitbucket.org/fellowshipproductionsltd/aquarius-clients.git wp-content/plugins/aquarius-clients
|
||
|
fi
|
||
7 years ago
|
fi
|
||
|
shift
|
||
|
;;
|
||
|
aquarius-news|news)
|
||
|
if [ "$remove" = true ]; then
|
||
|
git-delete-submodule "wp-content/plugins/aquarius-news"
|
||
|
else
|
||
7 years ago
|
if [ "$ssh" = true ]; then
|
||
|
git submodule add git@bitbucket.org:fellowshipproductionsltd/aquarius-news.git wp-content/plugins/aquarius-news
|
||
|
else
|
||
|
git submodule add https://bitbucket.org/fellowshipproductionsltd/aquarius-news.git wp-content/plugins/aquarius-news
|
||
|
fi
|
||
7 years ago
|
fi
|
||
|
shift
|
||
|
;;
|
||
|
aquarius-people|people)
|
||
|
if [ "$remove" = true ]; then
|
||
|
git-delete-submodule "wp-content/plugins/aquarius-people"
|
||
|
else
|
||
7 years ago
|
if [ "$ssh" = true ]; then
|
||
|
git submodule add git@bitbucket.org:fellowshipproductionsltd/aquarius-people.git wp-content/plugins/aquarius-people
|
||
|
else
|
||
|
git submodule add https://bitbucket.org/fellowshipproductionsltd/aquarius-people.git wp-content/plugins/aquarius-people
|
||
|
fi
|
||
7 years ago
|
fi
|
||
|
shift
|
||
|
;;
|
||
|
aquarius-permissions|permissions)
|
||
|
if [ "$remove" = true ]; then
|
||
|
git-delete-submodule "wp-content/mu-plugins/aquarius-permissions"
|
||
|
else
|
||
7 years ago
|
if [ "$ssh" = true ]; then
|
||
|
git submodule add git@bitbucket.org:fellowshipproductionsltd/aquarius-permissions.git wp-content/mu-plugins/aquarius-permissions
|
||
|
else
|
||
|
git submodule add https://bitbucket.org/fellowshipproductionsltd/aquarius-permissions.git wp-content/mu-plugins/aquarius-permissions
|
||
|
fi
|
||
7 years ago
|
fi
|
||
|
shift
|
||
|
;;
|
||
|
aquarius-slider|slider)
|
||
|
if [ "$remove" = true ]; then
|
||
|
git-delete-submodule "wp-content/plugins/aquarius-slider"
|
||
|
else
|
||
7 years ago
|
if [ "$ssh" = true ]; then
|
||
|
git submodule add git@bitbucket.org:fellowshipproductionsltd/aquarius-slider.git wp-content/plugins/aquarius-slider
|
||
|
else
|
||
|
git submodule add https://bitbucket.org/fellowshipproductionsltd/aquarius-slider.git wp-content/plugins/aquarius-slider
|
||
|
fi
|
||
7 years ago
|
fi
|
||
|
shift
|
||
|
;;
|
||
|
aquarius-snippets|snippets)
|
||
|
if [ "$remove" = true ]; then
|
||
|
git-delete-submodule "wp-content/plugins/aquarius-snippets"
|
||
|
else
|
||
7 years ago
|
if [ "$ssh" = true ]; then
|
||
|
git submodule add git@bitbucket.org:fellowshipproductionsltd/aquarius-snippets.git wp-content/plugins/aquarius-snippets
|
||
|
else
|
||
|
git submodule add https://bitbucket.org/fellowshipproductionsltd/aquarius-snippets.git wp-content/plugins/aquarius-snippets
|
||
|
fi
|
||
7 years ago
|
fi
|
||
|
shift
|
||
|
;;
|
||
|
aquarius-widgets|widgets)
|
||
|
if [ "$remove" = true ]; then
|
||
|
git-delete-submodule "wp-content/plugins/aquarius-widgets"
|
||
|
else
|
||
7 years ago
|
if [ "$ssh" = true ]; then
|
||
|
git submodule add git@bitbucket.org:fellowshipproductionsltd/aquarius-widgets.git wp-content/plugins/aquarius-widgets
|
||
|
else
|
||
|
git submodule add https://bitbucket.org/fellowshipproductionsltd/aquarius-widgets.git wp-content/plugins/aquarius-widgets
|
||
|
fi
|
||
7 years ago
|
fi
|
||
|
shift
|
||
|
;;
|
||
|
*)
|
||
|
echo "Unknown plugin $1"
|
||
|
exit 0
|
||
|
;;
|
||
|
esac
|
||
|
|
||
|
done
|