X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fsite_avenger%2Fpowerup.sh;h=de9310c10b3b9d067e9a017b59b097b97ea088b7;hb=refs%2Fheads%2Frelease-2.140.132;hp=ff2a99441a825320fc6742edd78d57bf6421439e;hpb=70de25680cc889b69c99a3e2371ab3d2793fef85;p=feisty_meow.git diff --git a/scripts/site_avenger/powerup.sh b/scripts/site_avenger/powerup.sh index ff2a9944..de9310c1 100644 --- a/scripts/site_avenger/powerup.sh +++ b/scripts/site_avenger/powerup.sh @@ -3,8 +3,8 @@ # Author: Kevin Wentworth # Author: Chris Koeritz -# This script "powers up" a cakephp site by running the database migrations, -# cleaning out the ORM cache, and fixing file permissions. +# This script "powers up" a cakephp site by checking out the code from the +# git repository and installing the composer dependencies. # This script is currently highly specific to site avenger. # General Info: @@ -13,15 +13,15 @@ # A git repository is expected to be provided, and we will get all the code # for the web site from there. The repository is expected to have a single # application "name" and one or more "themes". By convention, the name -# and the theme are often the same. +# and the theme are often the same, except the theme is capitalized. # For example, let's say our app name is "turtle" and our theme name is "box". # The repo is checked out to a folder called "~/apps/turtle". # This script will want to use "turtle" as the app name. # It will have to be told the theme name, but will assume it's 'Turtle' to # start with. The concept of the theme comes from cakephp. -export WORKDIR="$( \cd "$(\dirname "$0")" && \pwd )" # obtain the script's working directory. -export FEISTY_MEOW_APEX="$( \cd "$WORKDIR/../.." && \pwd )" +export THISDIR="$( \cd "$(\dirname "$0")" && \pwd )" # obtain the script's working directory. +export FEISTY_MEOW_APEX="$( \cd "$THISDIR/../.." && \pwd )" source "$FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh" @@ -55,11 +55,15 @@ if [ "$app_dirname" == "-help" -o "$app_dirname" == "--help" ]; then print_instructions fi -source "$WORKDIR/shared_site_mgr.sh" +source "$THISDIR/shared_site_mgr.sh" sep -check_application_dir "$BASE_APPLICATION_PATH" +check_apps_root "$app_dirname" + +echo fixing some things here... +echo "apps root is now '$BASE_APPLICATION_PATH'" +echo " => this should be just above the app dir name if we got no parms!" # find proper webroot where the site will be initialized. if [ -z "$app_dirname" ]; then @@ -68,33 +72,39 @@ if [ -z "$app_dirname" ]; then else test_app_folder "$BASE_APPLICATION_PATH" "$app_dirname" fi +exit_on_error "finding and testing app folder" # where we expect to find our checkout folder underneath. full_app_dir="$BASE_APPLICATION_PATH/$app_dirname" # use our default values for the repository and theme if they're not provided. if [ -z "$repo_name" ]; then - repo_name="$app_dirname" + repo_name="$REPO_NAME" + if [ -z "$repo_name" ]; then + repo_name="$app_dirname" + fi fi if [ -z "$theme_name" ]; then - theme_name="$(capitalize_first_char ${app_dirname})" + theme_name="$THEME_NAME" + if [ -z "$theme_name" ]; then + theme_name="$(capitalize_first_char ${app_dirname})" + fi fi echo "Repository: $repo_name" echo "Theme name: $theme_name" sep -echo in powerup before update repo with: -var CHECKOUT_DIR_NAME DEFAULT_REPOSITORY_ROOT +log_feisty_meow_event "in powerup before update repo with: $(var CHECKOUT_DIR_NAME DEFAULT_REPOSITORY_ROOT)" # this should set the site_store_path variable if everything goes well. update_repo "$full_app_dir" "$CHECKOUT_DIR_NAME" "$DEFAULT_REPOSITORY_ROOT" "$repo_name" -test_or_die "Updating the repository storage directory" +exit_on_error "Updating the repository storage directory" # update the site to load dependencies. sep composer_repuff "$site_store_path" -test_or_die "Installing site dependencies with composer" +exit_on_error "Installing site dependencies with composer" # set up the symbolic links needed to achieve siteliness. sep @@ -103,20 +113,5 @@ create_site_links "$site_store_path" "$theme_name" sep -# go with the default user running the script. -user_name=$USER -if [ ! -z "$user_name" -a "$user_name" != "root" ]; then - echo "Chowning the apps folder to be owned by: $user_name" -#hmmm: have to hope for now for standard group named after user - chown -R "$user_name:$user_name" "$BASE_APPLICATION_PATH" - test_or_die "Chowning $BASE_APPLICATION_PATH to be owned by $user_name" - -else -echo "user name failed checks for chowning, was '$user_name'" -fi - -sep - - echo "Finished powering up the site in '${app_dirname}'."