#!/bin/bash # Module containing code shared across various shell scripts # Execute functions from this module via the script do.sh # Check if a command is available require() { command -v "$1" >/dev/null 2>&1 } configure-sentry-cli() { if [ -n "${SENTRY_DSN+x}" ] && [ -z "${SENTRY_DEVENV_NO_REPORT+x}" ]; then if ! require sentry-cli; then curl -sL https://sentry.io/get-cli/ | bash fi eval "$(sentry-cli bash-hook)" fi } query-mac() { [[ $(uname -s) = 'Darwin' ]] } query_big_sur() { if require sw_vers && sw_vers -productVersion | grep -E "11\." > /dev/null; then return 0 fi return 1 } sudo-askpass() { if [ -z "${sudo-askpass-x}" ]; then sudo --askpass "$@" else sudo "$@" fi } # After using homebrew to install docker, we need to do some magic to remove the need to interact with the GUI # See: https://github.com/docker/for-mac/issues/2359#issuecomment-607154849 for why we need to do things below init-docker() { # Need to start docker if it was freshly installed (docker server is not running) if query-mac && ! require docker && [ -d "/Applications/Docker.app" ]; then echo "Making some changes to complete Docker initialization" # allow the app to run without confirmation xattr -d -r com.apple.quarantine /Applications/Docker.app # preemptively do docker.app's setup to avoid any gui prompts sudo-askpass /bin/mkdir -p /Library/PrivilegedHelperTools sudo-askpass /bin/chmod 754 /Library/PrivilegedHelperTools sudo-askpass /bin/cp /Applications/Docker.app/Contents/Library/LaunchServices/com.docker.vmnetd /Library/PrivilegedHelperTools/ sudo-askpass /bin/cp /Applications/Docker.app/Contents/Resources/com.docker.vmnetd.plist /Library/LaunchDaemons/ sudo-askpass /bin/chmod 544 /Library/PrivilegedHelperTools/com.docker.vmnetd sudo-askpass /bin/chmod 644 /Library/LaunchDaemons/com.docker.vmnetd.plist sudo-askpass /bin/launchctl load /Library/LaunchDaemons/com.docker.vmnetd.plist fi start-docker } # This is mainly to be used by CI # We need this for Mac since the executable docker won't work properly # until the app is opened once start-docker() { if query-mac && ! docker system info &>/dev/null; then echo "About to open Docker.app" # At a later stage in the script, we're going to execute # ensure_docker_server which waits for it to be ready open -g -a Docker.app fi } upgrade-pip() { # pip versions before 20.1 do not have `pip cache` as a command which is necessary for the CI pip install --no-cache-dir --upgrade "pip>=20.1" # The Python version installed via pyenv does not come with wheel pre-installed # Installing wheel will speed up installation of Python dependencies require wheel || pip install wheel } install-py-dev() { upgrade-pip # It places us within top src dir to be at the same path as setup.py # This helps when getsentry calls into this script cd "${HERE}/.." || exit echo "--> Installing Sentry (for development)" # In Big Sur, versions of pip before 20.3 require SYSTEM_VERSION_COMPAT set if query_big_sur && python -c 'from sys import exit; import pip; from pip._vendor.packaging.version import parse; exit(1 if parse(pip.__version__) < parse("20.3") else 0)'; then SENTRY_LIGHT_BUILD=1 SYSTEM_VERSION_COMPAT=1 pip install -e '.[dev]' else # SENTRY_LIGHT_BUILD=1 disables webpacking during setup.py. # Webpacked assets are only necessary for devserver (which does it lazily anyways) # and acceptance tests, which webpack automatically if run. SENTRY_LIGHT_BUILD=1 pip install -e '.[dev]' fi } setup-git-config() { git config --local branch.autosetuprebase always git config --local core.ignorecase false git config --local blame.ignoreRevsFile .git-blame-ignore-revs } setup-git() { setup-git-config echo "--> Installing git hooks" mkdir -p .git/hooks && cd .git/hooks && ln -sf ../../config/hooks/* ./ && cd - || exit # shellcheck disable=SC2016 python3 -c '' || (echo 'Please run `make setup-pyenv` to install the required Python 3 version.'; exit 1) pip install -r requirements-pre-commit.txt pre-commit install --install-hooks echo "" } node-version-check() { # Checks to see if node's version matches the one specified in package.json for Volta. node -pe "process.exit(Number(!(process.version == 'v' + require('./package.json').volta.node )))" || \ (echo 'Unexpected node version. Recommended to use https://github.com/volta-cli/volta'; exit 1) } install-js-dev() { node-version-check echo "--> Installing Yarn packages (for development)" # Use NODE_ENV=development so that yarn installs both dependencies + devDependencies NODE_ENV=development yarn install --frozen-lockfile # A common problem is with node packages not existing in `node_modules` even though `yarn install` # says everything is up to date. Even though `yarn install` is run already, it doesn't take into # account the state of the current filesystem (it only checks .yarn-integrity). # Add an additional check against `node_modules` yarn check --verify-tree || yarn install --check-files } develop() { setup-git install-js-dev install-py-dev } init-config() { sentry init --dev } run-dependent-services() { sentry devservices up } create-db() { # shellcheck disable=SC2155 local CREATEDB=$(command -v createdb 2> /dev/null) if [[ -z "$CREATEDB" ]]; then CREATEDB="docker exec sentry_postgres createdb" fi echo "--> Creating 'sentry' database" ${CREATEDB} -h 127.0.0.1 -U postgres -E utf-8 sentry || true } apply-migrations() { echo "--> Applying migrations" sentry upgrade --noinput } create-user() { if [[ -n "$GITHUB_ACTIONS" ]]; then sentry createuser --superuser --email foo@tbd.com --no-password else sentry createuser --superuser fi } build-platform-assets() { echo "--> Building platform assets" echo "from sentry.utils.integrationdocs import sync_docs; sync_docs(quiet=True)" | sentry exec } bootstrap() { develop init-config run-dependent-services create-db apply-migrations create-user build-platform-assets } clean() { echo "--> Cleaning static cache" rm -rf dist/* static/dist/* echo "--> Cleaning integration docs cache" rm -rf src/sentry/integration-docs echo "--> Cleaning pyc files" find . -name "*.pyc" -delete echo "--> Cleaning python build artifacts" rm -rf build/ dist/ src/sentry/assets.json echo "" } drop-db() { # shellcheck disable=SC2155 local DROPDB=$(command -v dropdb 2> /dev/null) if [[ -z "$DROPDB" ]]; then DROPDB="docker exec sentry_postgres dropdb" fi echo "--> Dropping existing 'sentry' database" ${DROPDB} -h 127.0.0.1 -U postgres sentry || true } reset-db() { drop-db create-db apply-migrations }