3 # Author: Kevin Wentworth
4 # Author: Chris Koeritz
6 # This script "powers up" a cakephp site by running the database migrations,
7 # cleaning out the ORM cache, and fixing file permissions.
8 # This script is currently highly specific to site avenger.
12 # The naming scheme here is a little complex, but it's basically this...
13 # A git repository is expected to be provided, and we will get all the code
14 # for the web site from there. The repository is expected to have a single
15 # application "name" and one or more "themes". By convention, the name
16 # and the theme are often the same.
17 # For example, let's say our app name is "turtle" and our theme name is "box".
18 # The repo is checked out to a folder called "~/apps/turtle".
19 # This script will want to use "turtle" as the app name.
20 # It will have to be told the theme name, but will assume it's 'Turtle' to
21 # start with. The concept of the theme comes from cakephp.
23 export WORKDIR="$( \cd "$(\dirname "$0")" && \pwd )" # obtain the script's working directory.
24 export FEISTY_MEOW_APEX="$( \cd "$WORKDIR/../.." && \pwd )"
26 source "$FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh"
28 ############################
30 function print_instructions()
33 echo "$(basename $0 .sh) [app dirname] [repository] [theme name] "
36 echo "All parameters are optional, and intelligent guesses for them will be made."
38 echo "app dirname: The folder where the app will be stored."
39 echo "repository: The name of the git repository (short version, no URL)."
40 echo "theme name: The name to use for the cakephp theme."
41 # echo "user name: The name of the user to chown the checkout to."
46 ############################
48 # main body of script.
50 # check for parameters.
51 app_dirname="$1"; shift
53 theme_name="$1"; shift
54 #user_name="$1"; shift
56 #echo "*** user name is $user_name"
58 if [ "$app_dirname" == "-help" -o "$app_dirname" == "--help" ]; then
62 source "$WORKDIR/shared_site_mgr.sh"
66 check_application_dir "$APPLICATION_DIR"
68 # find proper webroot where the site will be initialized.
69 if [ -z "$app_dirname" ]; then
70 # no dir was passed, so guess it.
71 find_app_folder "$APPLICATION_DIR"
73 test_app_folder "$APPLICATION_DIR" "$app_dirname"
76 # where we expect to find our checkout folder underneath.
77 full_app_dir="$APPLICATION_DIR/$app_dirname"
79 # use our default values for the repository and theme if they're not provided.
80 if [ -z "$repo_name" ]; then
81 repo_name="$app_dirname"
83 if [ -z "$theme_name" ]; then
84 theme_name="$(capitalize_first_char ${app_dirname})"
87 echo "Repository: $repo_name"
88 echo "Theme name: $theme_name"
91 echo in powerup before update repo with:
92 var CHECKOUT_DIR_NAME DEFAULT_REPOSITORY_ROOT
94 # this should set the site_store_path variable if everything goes well.
95 update_repo "$full_app_dir" "$CHECKOUT_DIR_NAME" "$DEFAULT_REPOSITORY_ROOT" "$repo_name"
96 test_or_die "Updating the repository storage directory"
98 # update the site to load dependencies.
100 composer_repuff "$site_store_path"
101 test_or_die "Installing site dependencies with composer"
103 # set up the symbolic links needed to achieve siteliness.
106 create_site_links "$site_store_path" "$theme_name"
110 #if [ ! -z "$user_name" ]; then
111 # echo "Chowning the apps folder to be owned by: $user_name"
112 ##hmmm: have to hope for now for standard group named after user
113 # chown -R "$user_name:$user_name" "$APPLICATION_DIR"
114 # test_or_die "Chowning $APPLICATION_DIR to be owned by $user_name"
120 echo "Finished powering up the site in '${app_dirname}'."