From 12a4f0f44958a4a321e5314e3f6248de1139b6d0 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Wed, 29 Nov 2017 14:35:59 +0100 Subject: Refactored .gitlab-ci.yml, added deploy to production --- .gitlab-ci.yml | 112 ++++++++++++++++++++++++++++++++++----------------------- deploy.sh | 58 ++++++++++++++++++++++++++++++ 2 files changed, 126 insertions(+), 44 deletions(-) create mode 100755 deploy.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6dde2330..bc5eb2e6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,28 +12,35 @@ variables: MYSQL_USER: engel MYSQL_PASSWORD: engelsystem MYSQL_HOST: mariadb - COMPOSER_HOME: .composer MYSQL_RANDOM_ROOT_PASSWORD: "yes" + COMPOSER_HOME: .composer before_script: # Fix permissions after gitlab messed them up - - find . -type f -exec chmod 644 {} \; - - find . -type d -exec chmod 755 {} \; + - &before_fix_permissions |- + find . -type f -exec chmod 644 {} \; + find . -type d -exec chmod 755 {} \; # Install required Packages - - apt update -yqq - - apt install -yqq git unzip mariadb-client - - docker-php-ext-install pdo pdo_mysql gettext + - &before_install_packages |- + apt update -yqq + apt install -yqq git unzip + docker-php-ext-install pdo pdo_mysql gettext # Install xdebug - - pecl install xdebug - - docker-php-ext-enable xdebug + - &before_install_xdebug |- + pecl install xdebug + docker-php-ext-enable xdebug # MySQL DB - - mysql -h "$MYSQL_HOST" -u "$MYSQL_USER" -p"$MYSQL_PASSWORD" "$MYSQL_DATABASE" < db/install.sql - - mysql -h "$MYSQL_HOST" -u "$MYSQL_USER" -p"$MYSQL_PASSWORD" "$MYSQL_DATABASE" < db/update.sql + - &before_setup_mysql |- + apt install -yqq mariadb-client + mysql -h "$MYSQL_HOST" -u "$MYSQL_USER" -p"$MYSQL_PASSWORD" "$MYSQL_DATABASE" < db/install.sql + mysql -h "$MYSQL_HOST" -u "$MYSQL_USER" -p"$MYSQL_PASSWORD" "$MYSQL_DATABASE" < db/update.sql # Install Composer - - curl -sS https://getcomposer.org/installer | php -- --no-ansi --install-dir /usr/local/bin/ --filename composer - - /usr/local/bin/composer --no-ansi install + - &before_install_composer |- + curl -sS https://getcomposer.org/installer | php -- --no-ansi --install-dir /usr/local/bin/ --filename composer + /usr/local/bin/composer --no-ansi install .test_template: &test_definition + stage: test artifacts: name: "${CI_JOB_NAME}_${CI_PROJECT_ID}_${PHP_VERSION}" expire_in: 1 week @@ -43,49 +50,66 @@ before_script: script: vendor/bin/phpunit --colors=never --coverage-text --coverage-html ./coverage/ test:7.0: - image: php:7.0 <<: *test_definition + image: php:7.0 test:7.1: - image: php:7.1 <<: *test_definition + image: php:7.1 -deploy_staging: +.deploy_template: &deploy_definition + services: [] stage: deploy only: - master + before_script: + - *before_fix_permissions + - *before_install_packages + - *before_install_composer + +.deploy_template_script: + # Configure SSH + - &deployment_ssh |- + mkdir -p ~/.ssh + echo "$SSH_PRIVATE_KEY" | sed -e 's/\r//g' > ~/.ssh/id_ed25519 + chmod 600 ~/.ssh/id_ed25519 + + # Install project and dependencies + - &deployment_dependencies |- + chmod +x ./deploy.sh + apt update && apt install -yqq rsync openssh-client + /usr/local/bin/composer --no-ansi install --no-dev + /usr/local/bin/composer --no-ansi dump-autoload --optimize + +deploy_staging: + <<: *deploy_definition + environment: + name: staging script: + # Check if deployment variables where set - |- - if [ -z "${SSH_PRIVATE_KEY}" ] || [ -z "${REMOTE}" ] || [ -z "${REMOTE_PATH}" ]; then + if [ -z "${SSH_PRIVATE_KEY}" ] || [ -z "${STAGING_REMOTE}" ] || [ -z "${STAGING_REMOTE_PATH}" ]; then echo "Skipping deployment"; exit fi - - mkdir -p ~/.ssh - - echo "$SSH_PRIVATE_KEY" | sed -e 's/\r//g' > ~/.ssh/id_ed25519 - - chmod 600 ~/.ssh/id_ed25519 - - apt update && apt install -yqq rsync openssh-client - - /usr/local/bin/composer --no-ansi install --no-dev - - /usr/local/bin/composer --no-ansi dump-autoload --optimize - - echo "syncing ${PWD}/ to ${REMOTE}:${REMOTE_PATH}/${CI_JOB_ID}-${CI_COMMIT_SHA}/" - - |- - rsync -vAax --exclude '.git*' --exclude .composer/ \ - -e "ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" \ - ./ "${REMOTE}:${REMOTE_PATH}/${CI_JOB_ID}-${CI_COMMIT_SHA}/" - - |- - ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no "${REMOTE}" " - set -e - - if [[ -f \"${REMOTE_PATH}/current/config/config.php\" ]]; then - echo \"Config backup\" - cp \"${REMOTE_PATH}/current/config/config.php\" config.php - fi - - echo \"Changing symlink\" - unlink \"${REMOTE_PATH}/current\" - ln -s \"${REMOTE_PATH}/${CI_JOB_ID}-${CI_COMMIT_SHA}\" \"${REMOTE_PATH}/current\" + - *deployment_ssh + - *deployment_dependencies + # Deploy to server + - ./deploy.sh -h "${STAGING_REMOTE}" -p "${STAGING_REMOTE_PATH}" -i "${CI_JOB_ID}-${CI_COMMIT_SHA}" - if [[ -f config.php ]]; then - echo \"Restoring config\" - cp config.php \"${REMOTE_PATH}/current/config/config.php\" - fi - " +deploy_production: + <<: *deploy_definition + environment: + name: production + when: manual + script: + # Check if deployment variables where set + - |- + if [ -z "${SSH_PRIVATE_KEY}" ] || [ -z "${PRODUCTION_REMOTE}" ] || [ -z "${PRODUCTION_REMOTE_PATH}" ]; then + echo "Skipping deployment"; + exit + fi + - *deployment_ssh + - *deployment_dependencies + # Deploy to server + - ./deploy.sh -h "${PRODUCTION_REMOTE}" -p "${PRODUCTION_REMOTE_PATH}" -i "${CI_JOB_ID}-${CI_COMMIT_SHA}" diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 00000000..18808041 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,58 @@ +#!/usr/bin/env bash + +set -e + +remote_host= +remote_path= +deploy_id= + +while getopts ":h:p:i:" opt; do + case ${opt} in + h) + remote_host="$OPTARG" + ;; + p) + remote_path="$OPTARG" + ;; + i) + deploy_id="$OPTARG" + ;; + \?) + echo "Invalid option: -$OPTARG" >&2 + exit 1 + ;; + :) + echo "The option -$OPTARG requires an argument" >&2 + exit 1 + ;; + esac +done + +if [ -z "${remote_host}" ] || [ -z "${remote_path}" ] || [ -z "${deploy_id}" ]; then + echo "Please specify -h[remote host], -p[remote path] and -i[deploy id]" >&2 + exit 1 +fi + +echo "syncing ${PWD}/ to ${remote_host}:${remote_path}/${deploy_id}/" + +rsync -vAax --exclude '.git*' --exclude .composer/ \ + -e "ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no" \ + ./ "${remote_host}:${remote_path}/${deploy_id}/" + +ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no "${remote_host}" " + set -e + + if [[ -f \"${remote_path}/current/config/config.php\" ]]; then + echo \"Config backup\" + cp \"${remote_path}/current/config/config.php\" \"${deploy_id}-config.php\" + fi + + echo \"Changing symlink\" + unlink \"${remote_path}/current\" + ln -s \"${remote_path}/${deploy_id}\" \"${remote_path}/current\" + + if [[ -f \"${deploy_id}-config.php\" ]]; then + echo \"Restoring config\" + cp \"${deploy_id}-config.php\" \"${remote_path}/current/config/config.php\" + fi +" -- cgit v1.2.3-54-g00ecf From 64f6dfeb7f7b07a91cc8fee8005ae0bc12a96e25 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Mon, 4 Dec 2017 13:25:44 +0100 Subject: Added dokumentation for tests, gitlab and deployments --- .gitlab-ci.yml | 4 ++-- README.md | 52 ++++++++++++++++++++++++++++++++++++++++++++++------ deploy.sh | 22 ++++++++++++++++++---- 3 files changed, 66 insertions(+), 12 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bc5eb2e6..7b645edc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -95,7 +95,7 @@ deploy_staging: - *deployment_ssh - *deployment_dependencies # Deploy to server - - ./deploy.sh -h "${STAGING_REMOTE}" -p "${STAGING_REMOTE_PATH}" -i "${CI_JOB_ID}-${CI_COMMIT_SHA}" + - ./deploy.sh -r "${STAGING_REMOTE}" -p "${STAGING_REMOTE_PATH}" -i "${CI_JOB_ID}-${CI_COMMIT_SHA}" deploy_production: <<: *deploy_definition @@ -112,4 +112,4 @@ deploy_production: - *deployment_ssh - *deployment_dependencies # Deploy to server - - ./deploy.sh -h "${PRODUCTION_REMOTE}" -p "${PRODUCTION_REMOTE_PATH}" -i "${CI_JOB_ID}-${CI_COMMIT_SHA}" + - ./deploy.sh -r "${PRODUCTION_REMOTE}" -p "${PRODUCTION_REMOTE_PATH}" -i "${CI_JOB_ID}-${CI_COMMIT_SHA}" diff --git a/README.md b/README.md index 2b61ebe8..b5716436 100644 --- a/README.md +++ b/README.md @@ -5,19 +5,30 @@ Please visit https://engelsystem.de for a feature list. +To report bugs use [engelsystem/issues](https://github.com/engelsystem/engelsystem/issues) + ## Installation ### Requirements: * PHP >= 7.0.0 - * MySQL-Server >= 5.5.x + * MySQL-Server >= 5.5 or MariaDB-Server >= 5.5 * Webserver, i.e. lighttpd, nginx, or Apache ### Directions: * Clone the master branch: `git clone https://github.com/engelsystem/engelsystem.git` * Install [Composer](https://getcomposer.org/download/) - * Install project dependencies: `composer install` - * Webserver must have write access to the 'import' directory and read access for all other directories - * Webserver must point to the public directory. + * Install project dependencies: + ```bash + composer install + ``` + On production systems it is recommended to use + ```bash + composer install --no-dev + composerdump-autoload --optimize + ``` + to install the engelsystem + * The webserver must have write access to the 'import' directory and read access for all other directories + * The webserver must point to the public directory. * Recommended: Directory Listing should be disabled. * There must a be MySQL database created with a user who has full rights to that database. @@ -31,12 +42,41 @@ Engelsystem can now be used. * Make sure the config allows for sessions. * Both Apache and Nginx allow for different VirtualHost configurations. -Report Bugs: https://github.com/engelsystem/engelsystem/issues - ## Development Since the engelsystem is open source, you can help to improve the system. We really love to get pull requests containing fixes or implementations of our Github issues. Please create single pull requests for every feature instead of creating one big monster of pull request containing a complete rewrite. +### Testing +To run the unit tests use +```bash +vendor/bin/phpunit --testsuite Unit +``` + +If a database is configured and the engelsystem is allowed to mess around with some files, you can run feature tests. The tests can potentially delete some database entries, so they should never be run on a production system! +```bash +vendor/bin/phpunit --testsuite Feature +# or for unit- and feature tests: +vendor/bin/phpunit +``` + +### CI & Build Pipeline +The engelsystem can be tested and automatically deployed to a testing/staging/production environment. +This functionality requires a [GitLab](https://about.gitlab.com/) server with a running docker minion. + +To use the deployment features the following secret variables need to be defined (if undefined the step will be skipped): +```bash +SSH_PRIVATE_KEY # The ssh private key +STAGING_REMOTE # The staging server, e.g. user@remote.host +STAGING_REMOTE_PATH # The psth on the remote server, e.g. /var/www/engelsystem +PRODUCTION_REMOTE # Same as STAGING_REMOTE but for the production environment +PRODUCTION_REMOTE_PATH # Same as STAGING_REMOTE_PATH but for the production environment +``` + +#### deploy.sh +The `deploy.sh` script can be used to deploy the engelsystem. It uses rsync to deploy the application to a server over ssh. + +For usage see `./deploy.sh -h` + ### Codestyle Please ensure that your pull requests follow [PSR-2](http://www.php-fig.org/psr/psr-2/) and [PSR-4](http://www.php-fig.org/psr/psr-4/). diff --git a/deploy.sh b/deploy.sh index 18808041..f1569a61 100755 --- a/deploy.sh +++ b/deploy.sh @@ -6,9 +6,24 @@ remote_host= remote_path= deploy_id= -while getopts ":h:p:i:" opt; do +show_help(){ + echo "Usage: $0 [OPTION]..." >&2 + echo "Deploys a software with rsync over ssh" >&2 + echo "The options -i, -p and -r are required" >&2 + echo "" >&2 + echo " -h Display this help screen" >&2 + echo " -i Sets the id, a unique name for the deployment" >&2 + echo " -p Define the base path on the server" >&2 + echo " -r The remote server name and user" >&2 +} + +while getopts ":hi:p:r:" opt; do case ${opt} in h) + show_help + exit 1 + ;; + r) remote_host="$OPTARG" ;; p) @@ -29,7 +44,7 @@ while getopts ":h:p:i:" opt; do done if [ -z "${remote_host}" ] || [ -z "${remote_path}" ] || [ -z "${deploy_id}" ]; then - echo "Please specify -h[remote host], -p[remote path] and -i[deploy id]" >&2 + show_help exit 1 fi @@ -48,8 +63,7 @@ ssh -q -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no "${remote_hos fi echo \"Changing symlink\" - unlink \"${remote_path}/current\" - ln -s \"${remote_path}/${deploy_id}\" \"${remote_path}/current\" + unlink \"${remote_path}/current\" && ln -s \"${remote_path}/${deploy_id}\" \"${remote_path}/current\" if [[ -f \"${deploy_id}-config.php\" ]]; then echo \"Restoring config\" -- cgit v1.2.3-54-g00ecf