lib.sh 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. #!/bin/bash
  2. # NOTE: This file is sourced in CI across different repos (e.g. snuba),
  3. # thus, renaming this file or any functions can break CI!
  4. #
  5. # Module containing code shared across various shell scripts
  6. # Execute functions from this module via the script do.sh
  7. # shellcheck disable=SC2034 # Unused variables
  8. # shellcheck disable=SC2001 # https://github.com/koalaman/shellcheck/wiki/SC2001
  9. # This block is a safe-guard since in CI calling tput will fail and abort scripts
  10. if [ -z "${CI+x}" ]; then
  11. bold="$(tput bold)"
  12. red="$(tput setaf 1)"
  13. green="$(tput setaf 2)"
  14. yellow="$(tput setaf 3)"
  15. reset="$(tput sgr0)"
  16. fi
  17. venv_name=".venv"
  18. # XDG paths' standardized defaults:
  19. # (see https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html#variables )
  20. export XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}"
  21. export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"
  22. export XDG_STATE_HOME="${XDG_STATE_HOME:-$HOME/.local/state}"
  23. export XDG_DATA_DIRS="${XDG_DATA_DIRS:-/usr/local/share/:/usr/share/}"
  24. export XDG_CONFIG_DIRS="${XDG_CONFIG_DIRS:-/etc/xdg}"
  25. export XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}"
  26. export XDG_RUNTIME_DIR="${XDG_RUNTIME_DIR:-/var/run}"
  27. # Check if a command is available
  28. require() {
  29. command -v "$1" >/dev/null 2>&1
  30. }
  31. configure-sentry-cli() {
  32. if [ -z "${SENTRY_DEVENV_NO_REPORT+x}" ]; then
  33. if ! require sentry-cli; then
  34. if [ -f "${venv_name}/bin/pip" ]; then
  35. pip-install sentry-cli
  36. else
  37. curl -sL https://sentry.io/get-cli/ | SENTRY_CLI_VERSION=2.14.4 bash
  38. fi
  39. fi
  40. fi
  41. }
  42. query-valid-python-version() {
  43. python_version=$(python3 -V 2>&1 | awk '{print $2}')
  44. if [[ -n "${SENTRY_PYTHON_VERSION:-}" ]]; then
  45. if [ "$python_version" != "$SENTRY_PYTHON_VERSION" ]; then
  46. cat <<EOF
  47. ${red}${bold}
  48. ERROR: You have explicitly set a non-recommended Python version (${SENTRY_PYTHON_VERSION}),
  49. but it doesn't match the value of python's version: ${python_version}
  50. You should create a new ${SENTRY_PYTHON_VERSION} virtualenv by running "rm -rf ${venv_name} && direnv allow".
  51. ${reset}
  52. EOF
  53. return 1
  54. else
  55. cat <<EOF
  56. ${yellow}${bold}
  57. You have explicitly set a non-recommended Python version (${SENTRY_PYTHON_VERSION}). You're on your own.
  58. ${reset}
  59. EOF
  60. return 0
  61. fi
  62. else
  63. minor=$(echo "${python_version}" | sed 's/[0-9]*\.\([0-9]*\)\.\([0-9]*\)/\1/')
  64. patch=$(echo "${python_version}" | sed 's/[0-9]*\.\([0-9]*\)\.\([0-9]*\)/\2/')
  65. if [ "$minor" -ne 11 ] || [ "$patch" -lt 6 ]; then
  66. cat <<EOF
  67. ${red}${bold}
  68. ERROR: You're running a virtualenv with Python ${python_version}.
  69. We only support >= 3.11.6, < 3.12.
  70. Either run "rm -rf ${venv_name} && direnv allow" to
  71. OR set SENTRY_PYTHON_VERSION=${python_version} to an .env file to bypass this check."
  72. EOF
  73. return 1
  74. fi
  75. fi
  76. }
  77. sudo-askpass() {
  78. if [ -z "${sudo-askpass-x}" ]; then
  79. sudo --askpass "$@"
  80. else
  81. sudo "$@"
  82. fi
  83. }
  84. pip-install() {
  85. pip install --constraint requirements-dev-frozen.txt "$@"
  86. }
  87. upgrade-pip() {
  88. pip-install pip
  89. }
  90. install-py-dev() {
  91. upgrade-pip
  92. # It places us within top src dir to be at the same path as setup.py
  93. # This helps when getsentry calls into this script
  94. cd "${HERE}/.." || exit
  95. echo "--> Installing Sentry (for development)"
  96. # pip doesn't do well with swapping drop-ins
  97. pip uninstall -qqy djangorestframework-stubs django-stubs
  98. pip-install -r requirements-dev-frozen.txt
  99. # SENTRY_LIGHT_BUILD=1 disables webpacking during setup.py.
  100. # Webpacked assets are only necessary for devserver (which does it lazily anyways)
  101. # and acceptance tests, which webpack automatically if run.
  102. python3 -m tools.fast_editable --path .
  103. }
  104. setup-git-config() {
  105. git config --local branch.autosetuprebase always
  106. git config --local core.ignorecase false
  107. git config --local blame.ignoreRevsFile .git-blame-ignore-revs
  108. }
  109. setup-git() {
  110. setup-git-config
  111. # if hooks are explicitly turned off do nothing
  112. if [[ "$(git config core.hooksPath)" == '/dev/null' ]]; then
  113. echo "--> core.hooksPath set to /dev/null. Skipping git hook setup"
  114. echo ""
  115. return
  116. fi
  117. echo "--> Installing git hooks"
  118. mkdir -p .git/hooks && cd .git/hooks && ln -sf ../../config/hooks/* ./ && cd - || exit
  119. # shellcheck disable=SC2016
  120. python3 -c '' || (
  121. echo 'Please run `make setup-pyenv` to install the required Python 3 version.'
  122. exit 1
  123. )
  124. if ! require pre-commit; then
  125. pip-install -r requirements-dev.txt
  126. fi
  127. pre-commit install --install-hooks
  128. echo ""
  129. }
  130. node-version-check() {
  131. # Checks to see if node's version matches the one specified in package.json for Volta.
  132. node -pe "process.exit(Number(!(process.version == 'v' + require('./.volta.json').volta.node )))" ||
  133. (
  134. echo 'Unexpected node version. Recommended to use https://github.com/volta-cli/volta'
  135. echo 'Run `volta install node` and `volta install yarn` to update your toolchain.'
  136. echo 'If you do not have volta installed run `curl https://get.volta.sh | bash` or visit https://volta.sh'
  137. exit 1
  138. )
  139. }
  140. install-js-dev() {
  141. node-version-check
  142. echo "--> Installing Yarn packages (for development)"
  143. # Use NODE_ENV=development so that yarn installs both dependencies + devDependencies
  144. NODE_ENV=development yarn install --frozen-lockfile
  145. # A common problem is with node packages not existing in `node_modules` even though `yarn install`
  146. # says everything is up to date. Even though `yarn install` is run already, it doesn't take into
  147. # account the state of the current filesystem (it only checks .yarn-integrity).
  148. # Add an additional check against `node_modules`
  149. yarn check --verify-tree || yarn install --check-files
  150. }
  151. develop() {
  152. install-js-dev
  153. install-py-dev
  154. setup-git
  155. }
  156. init-config() {
  157. sentry init --dev
  158. }
  159. run-dependent-services() {
  160. sentry devservices up
  161. }
  162. create-db() {
  163. container_name=${POSTGRES_CONTAINER:-sentry_postgres}
  164. echo "--> Creating 'sentry' database"
  165. docker exec "${container_name}" createdb -h 127.0.0.1 -U postgres -E utf-8 sentry || true
  166. echo "--> Creating 'control' and 'region' database"
  167. docker exec "${container_name}" createdb -h 127.0.0.1 -U postgres -E utf-8 control || true
  168. docker exec "${container_name}" createdb -h 127.0.0.1 -U postgres -E utf-8 region || true
  169. }
  170. apply-migrations() {
  171. echo "--> Applying migrations"
  172. sentry upgrade --noinput
  173. }
  174. create-superuser() {
  175. echo "--> Creating a superuser account"
  176. if [[ -n "${GITHUB_ACTIONS+x}" ]]; then
  177. sentry createuser --superuser --email foo@tbd.com --no-password --no-input
  178. else
  179. sentry createuser --superuser --email admin@sentry.io --password admin --no-input
  180. echo "Password is admin."
  181. fi
  182. }
  183. build-platform-assets() {
  184. echo "--> Building platform assets"
  185. echo "from sentry.utils.integrationdocs import sync_docs; sync_docs(quiet=True)" | sentry exec
  186. # make sure this didn't silently do nothing
  187. test -f src/sentry/integration-docs/android.json
  188. }
  189. bootstrap() {
  190. develop
  191. init-config
  192. run-dependent-services
  193. create-db
  194. apply-migrations
  195. create-superuser
  196. # Load mocks requires a superuser
  197. bin/load-mocks
  198. build-platform-assets
  199. echo "--> Finished bootstrapping. Have a nice day."
  200. }
  201. clean() {
  202. echo "--> Cleaning static cache"
  203. rm -rf dist/* src/sentry/static/sentry/dist/*
  204. echo "--> Cleaning integration docs cache"
  205. rm -rf src/sentry/integration-docs
  206. echo "--> Cleaning pyc files"
  207. find . -name "*.pyc" -delete
  208. echo "--> Cleaning python build artifacts"
  209. rm -rf build/ dist/ src/sentry/assets.json
  210. echo ""
  211. }
  212. drop-db() {
  213. container_name=${POSTGRES_CONTAINER:-sentry_postgres}
  214. echo "--> Dropping existing 'sentry' database"
  215. docker exec "${container_name}" dropdb --if-exists -h 127.0.0.1 -U postgres sentry
  216. echo "--> Dropping 'control' and 'region' database"
  217. docker exec "${container_name}" dropdb --if-exists -h 127.0.0.1 -U postgres control
  218. docker exec "${container_name}" dropdb --if-exists -h 127.0.0.1 -U postgres region
  219. }
  220. reset-db() {
  221. drop-db
  222. create-db
  223. apply-migrations
  224. create-superuser
  225. echo 'Finished resetting database. To load mock data, run `./bin/load-mocks`'
  226. }
  227. prerequisites() {
  228. if [ -z "${CI+x}" ]; then
  229. brew update -q && brew bundle -q
  230. else
  231. HOMEBREW_NO_AUTO_UPDATE=on brew install pyenv
  232. fi
  233. }
  234. direnv-help() {
  235. cat >&2 <<EOF
  236. If you're a Sentry employee and you're stuck or have questions, ask in #discuss-dev-infra.
  237. If you're not, please file an issue under https://github.com/getsentry/sentry/issues/new/choose and mention @getsentry/owners-sentry-dev
  238. You can configure the behaviour of direnv by adding the following variables to a .env file:
  239. - SENTRY_DIRENV_DEBUG=1: This will allow printing debug messages
  240. - SENTRY_DEVENV_NO_REPORT=1: Do not report development environment errors to Sentry.io
  241. EOF
  242. }