freedombone-app-matrix 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # matrix server
  12. #
  13. # https://raw.githubusercontent.com/silvio/docker-matrix
  14. #
  15. # License
  16. # =======
  17. #
  18. # Copyright (C) 2016 Bob Mottram <bob@freedombone.net>
  19. #
  20. # This program is free software: you can redistribute it and/or modify
  21. # it under the terms of the GNU Affero General Public License as published by
  22. # the Free Software Foundation, either version 3 of the License, or
  23. # (at your option) any later version.
  24. #
  25. # This program is distributed in the hope that it will be useful,
  26. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  27. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  28. # GNU Affero General Public License for more details.
  29. #
  30. # You should have received a copy of the GNU Affero General Public License
  31. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  32. VARIANTS='full full-vim chat'
  33. IN_DEFAULT_INSTALL=0
  34. SHOW_ON_ABOUT=1
  35. MATRIX_DATA_DIR='/var/lib/matrix'
  36. MATRIX_PORT=8448
  37. MATRIX_REPO="https://github.com/matrix-org/synapse"
  38. MATRIX_COMMIT='f5a4001bb116c468cc5e8e0ae04a1c570e2cb171'
  39. REPORT_STATS="no"
  40. MATRIX_SECRET=
  41. matrix_variables=(ONION_ONLY
  42. MY_USERNAME
  43. MATRIX_SECRET
  44. DEFAULT_DOMAIN_NAME)
  45. function matrix_generate_synapse_file {
  46. local filepath="${1}"
  47. cd /etc/matrix
  48. python -m synapse.app.homeserver \
  49. --config-path "${filepath}" \
  50. --generate-config \
  51. --report-stats ${REPORT_STATS} \
  52. --server-name ${DEFAULT_DOMAIN_NAME}
  53. }
  54. function matrix_configure_homeserver_yaml {
  55. local turnkey="${1}"
  56. local filepath="${2}"
  57. local ymltemp="$(mktemp)"
  58. awk -v TURNURIES="turn_uris: [\"turn:${DEFAULT_DOMAIN_NAME}:${TURN_PORT}?transport=udp\", \"turn:${DEFAULT_DOMAIN_NAME}:${TURN_PORT}?transport=tcp\"]" \
  59. -v TURNSHAREDSECRET="turn_shared_secret: \"${turnkey}\"" \
  60. -v PIDFILE="pid_file: ${MATRIX_DATA_DIR}/homeserver.pid" \
  61. -v DATABASE="database: \"${MATRIX_DATA_DIR}/homeserver.db\"" \
  62. -v LOGFILE="log_file: \"${MATRIX_DATA_DIR}/homeserver.log\"" \
  63. -v MEDIASTORE="media_store_path: \"${MATRIX_DATA_DIR}/media_store\"" \
  64. '{
  65. sub(/turn_shared_secret: "YOUR_SHARED_SECRET"/, TURNSHAREDSECRET);
  66. sub(/turn_uris: \[\]/, TURNURIES);
  67. sub(/pid_file: \/homeserver.pid/, PIDFILE);
  68. sub(${MATRIX_DATA_DIR}base: "\/homeserver.db"/, DATABASE);
  69. sub(/log_file: "\/homeserver.log"/, LOGFILE);
  70. sub(/media_store_path: "\/media_store"/, MEDIASTORE);
  71. print;
  72. }' "${filepath}" > "${ymltemp}"
  73. mv ${ymltemp} "${filepath}"
  74. }
  75. function matrix_diff {
  76. DIFFPARAMS="${DIFFPARAMS:-Naur}"
  77. DEFAULT_DOMAIN_NAME="${DEFAULT_DOMAIN_NAME:-demo_server_name}"
  78. REPORT_STATS="${REPORT_STATS:-no_or_yes}"
  79. export DEFAULT_DOMAIN_NAME REPORT_STATS
  80. matrix_generate_synapse_file $INSTALL_DIR/homeserver.synapse.yaml
  81. diff -${DIFFPARAMS} $INSTALL_DIR/homeserver.synapse.yaml ${MATRIX_DATA_DIR}/homeserver.yaml
  82. rm $INSTALL_DIR/homeserver.synapse.yaml
  83. }
  84. function matrix_generate {
  85. breakup="0"
  86. [[ -z "${DEFAULT_DOMAIN_NAME}" ]] && echo "STOP! environment variable DEFAULT_DOMAIN_NAME must be set" && breakup="1"
  87. [[ -z "${REPORT_STATS}" ]] && echo "STOP! environment variable REPORT_STATS must be set to 'no' or 'yes'" && breakup="1"
  88. [[ "${breakup}" == "1" ]] && exit 1
  89. [[ "${REPORT_STATS}" != "yes" ]] && [[ "${REPORT_STATS}" != "no" ]] && \
  90. echo "STOP! REPORT_STATS needs to be 'no' or 'yes'" && breakup="1"
  91. matrix_generate_synapse_file ${MATRIX_DATA_DIR}/homeserver.tmp
  92. matrix_configure_homeserver_yaml "${turnkey}" ${MATRIX_DATA_DIR}/homeserver.tmp
  93. mv ${MATRIX_DATA_DIR}/homeserver.tmp ${MATRIX_DATA_DIR}/homeserver.yaml
  94. }
  95. function remove_user_matrix {
  96. remove_username="$1"
  97. ${PROJECT_NAME}-pass -u $remove_username --rmapp matrix
  98. # TODO: There is no user removal script within synapse
  99. }
  100. function add_user_matrix {
  101. new_username="$1"
  102. new_user_password="$2"
  103. ${PROJECT_NAME}-pass -u $new_username -a matrix -p "$new_user_password"
  104. read_config_param 'MATRIX_SECRET'
  105. register_new_matrix_user -c ${MATRIX_DATA_DIR}/homeserver.yaml https://localhost:${MATRIX_PORT} -u "${new_username}" -p "${new_user_password}" -a
  106. if [ ! "$?" = "0" ]; then
  107. echo '1'
  108. else
  109. echo "0"
  110. fi
  111. }
  112. function install_interactive_matrix {
  113. APP_INSTALLED=1
  114. }
  115. function change_password_matrix {
  116. curr_username="$1"
  117. new_user_password="$2"
  118. #${PROJECT_NAME}-pass -u "$curr_username" -a matrix -p "$new_user_password"
  119. }
  120. function reconfigure_matrix {
  121. echo -n ''
  122. }
  123. function upgrade_matrix {
  124. function_check set_repo_commit
  125. set_repo_commit /etc/matrix "matrix commit" "$MATRIX_COMMIT" $MATRIX_REPO
  126. pip install --upgrade --process-dependency-links .
  127. chown -R matrix:matrix /etc/matrix
  128. chown -R matrix:matrix /var/lib/matrix
  129. }
  130. function backup_local_matrix {
  131. source_directory=/etc/matrix
  132. if [ -d $source_directory ]; then
  133. systemctl stop matrix
  134. function_check backup_directory_to_usb
  135. backup_directory_to_usb $source_directory matrix
  136. source_directory=/var/lib/matrix
  137. if [ -d $source_directory ]; then
  138. backup_directory_to_usb $source_directory matrixdata
  139. fi
  140. systemctl start matrix
  141. fi
  142. }
  143. function restore_local_matrix {
  144. if [ -d /etc/matrix ]; then
  145. systemctl stop matrix
  146. temp_restore_dir=/root/tempmatrix
  147. function_check restore_directory_from_usb
  148. restore_directory_from_usb $temp_restore_dir matrix
  149. cp -r $temp_restore_dir/etc/matrix/* /etc/matrix
  150. if [ ! "$?" = "0" ]; then
  151. function_check backup_unmount_drive
  152. backup_unmount_drive
  153. exit 3783
  154. fi
  155. rm -rf $temp_restore_dir
  156. chown -R matrix:matrix /etc/matrix
  157. temp_restore_dir=/root/tempmatrixdata
  158. restore_directory_from_usb $temp_restore_dir matrixdata
  159. cp -r $temp_restore_dir/var/lib/matrix/* /var/lib/matrix
  160. if [ ! "$?" = "0" ]; then
  161. function_check backup_unmount_drive
  162. backup_unmount_drive
  163. exit 78352
  164. fi
  165. rm -rf $temp_restore_dir
  166. chown -R matrix:matrix /var/lib/matrix
  167. systemctl start matrix
  168. fi
  169. }
  170. function backup_remote_matrix {
  171. source_directory=/etc/matrix
  172. if [ -d $source_directory ]; then
  173. systemctl stop matrix
  174. function_check backup_directory_to_friend
  175. backup_directory_to_friend $source_directory matrix
  176. source_directory=/var/lib/matrix
  177. if [ -d $source_directory ]; then
  178. backup_directory_to_friend $source_directory matrixdata
  179. fi
  180. systemctl start matrix
  181. fi
  182. }
  183. function restore_remote_matrix {
  184. if [ -d /etc/matrix ]; then
  185. systemctl stop matrix
  186. temp_restore_dir=/root/tempmatrix
  187. function_check restore_directory_from_friend
  188. restore_directory_from_friend $temp_restore_dir matrix
  189. cp -r $temp_restore_dir/etc/matrix/* /etc/matrix
  190. if [ ! "$?" = "0" ]; then
  191. exit 38935
  192. fi
  193. rm -rf $temp_restore_dir
  194. chown -R matrix:matrix /etc/matrix
  195. temp_restore_dir=/root/tempmatrixdata
  196. restore_directory_from_friend $temp_restore_dir matrixdata
  197. cp -r $temp_restore_dir/var/lib/matrix/* /var/lib/matrix
  198. if [ ! "$?" = "0" ]; then
  199. exit 60923
  200. fi
  201. rm -rf $temp_restore_dir
  202. chown -R matrix:matrix /var/lib/matrix
  203. systemctl start matrix
  204. fi
  205. }
  206. function remove_matrix {
  207. firewall_remove ${MATRIX_PORT}
  208. systemctl stop matrix
  209. function_check remove_turn
  210. remove_turn
  211. systemctl disable matrix
  212. if [ -f /etc/systemd/system/matrix.service ]; then
  213. rm /etc/systemd/system/matrix.service
  214. fi
  215. apt-get -y remove --purge coturn
  216. cd /etc/matrix
  217. pip uninstall .
  218. rm -rf $MATRIX_DATA_DIR
  219. rm -rf /etc/matrix
  220. deluser matrix
  221. delgroup matrix
  222. remove_onion_service matrix ${MATRIX_PORT}
  223. remove_completion_param install_matrix
  224. sed -i '/matrix/d' $COMPLETION_FILE
  225. }
  226. function install_matrix {
  227. if [ ! -d $INSTALL_DIR ]; then
  228. mkdir -p $INSTALL_DIR
  229. fi
  230. if [[ ${ONION_ONLY} == 'no' ]]; then
  231. if [ ! -f /etc/ssl/certs/${DEFAULT_DOMAIN_NAME}.pem ]; then
  232. echo $'Obtaining certificate for the main domain'
  233. create_site_certificate ${DEFAULT_DOMAIN_NAME} 'yes'
  234. fi
  235. fi
  236. export DEBIAN_FRONTEND=noninteractive
  237. apt-get -yq install coreutils \
  238. curl file gcc git libevent-2.0-5 \
  239. libevent-dev libffi-dev libffi6 \
  240. libgnutls28-dev libjpeg62-turbo \
  241. libjpeg62-turbo-dev libldap-2.4-2 \
  242. libldap2-dev libsasl2-dev \
  243. libsqlite3-dev libssl-dev \
  244. libssl1.0.0 libtool libxml2 \
  245. libxml2-dev libxslt1-dev libxslt1.1 \
  246. make python python-dev \
  247. python-pip python-psycopg2 \
  248. python-virtualenv sqlite unzip \
  249. zlib1g zlib1g-dev
  250. pip install --upgrade pip
  251. pip install --upgrade python-ldap
  252. pip install --upgrade lxml
  253. if [ ! -d /etc/matrix ]; then
  254. function_check git_clone
  255. git_clone $MATRIX_REPO /etc/matrix
  256. if [ ! -d /etc/matrix ]; then
  257. echo $'Unable to clone matrix repo'
  258. exit 6724683
  259. fi
  260. fi
  261. cd /etc/matrix
  262. git checkout $MATRIX_COMMIT -b $MATRIX_COMMIT
  263. set_completion_param "matrix commit" "$MATRIX_COMMIT"
  264. if [ ! -d $INSTALL_DIR/matrix ]; then
  265. mkdir -p $INSTALL_DIR/matrix
  266. fi
  267. pip install --upgrade --process-dependency-links . -b $INSTALL_DIR/matrix
  268. if [ ! "$?" = "0" ]; then
  269. exit 782542
  270. fi
  271. function_check install_turn
  272. install_turn
  273. MATRIX_SECRET="${turnkey}"
  274. function_check matrix_generate
  275. matrix_generate
  276. if [ -z ${MATRIX_DATA_DIR}/homeserver.yaml ]; then
  277. echo $'homeserver.yaml is zero size'
  278. exit 783724
  279. fi
  280. groupadd matrix
  281. useradd -c "Matrix system account" -d /var/lib/matrix -m -r -g matrix matrix
  282. chown -R matrix:matrix /etc/matrix
  283. chown -R matrix:matrix /var/lib/matrix
  284. echo '[Unit]' > /etc/systemd/system/matrix.service
  285. echo 'Description=Matrix federated messaging' >> /etc/systemd/system/matrix.service
  286. echo 'After=network.target nginx.target' >> /etc/systemd/system/matrix.service
  287. echo '' >> /etc/systemd/system/matrix.service
  288. echo '[Service]' >> /etc/systemd/system/matrix.service
  289. echo 'Type=simple' >> /etc/systemd/system/matrix.service
  290. echo 'User=matrix' >> /etc/systemd/system/matrix.service
  291. echo "WorkingDirectory=/etc/matrix" >> /etc/systemd/system/matrix.service
  292. echo "ExecStart=/usr/bin/python -m synapse.app.homeserver --config-path ${MATRIX_DATA_DIR}/homeserver.yaml" >> /etc/systemd/system/matrix.service
  293. echo 'Restart=always' >> /etc/systemd/system/matrix.service
  294. echo 'RestartSec=10' >> /etc/systemd/system/matrix.service
  295. echo '' >> /etc/systemd/system/matrix.service
  296. echo '[Install]' >> /etc/systemd/system/matrix.service
  297. echo 'WantedBy=multi-user.target' >> /etc/systemd/system/matrix.service
  298. systemctl enable matrix
  299. systemctl daemon-reload
  300. systemctl start matrix
  301. update_default_domain
  302. firewall_add matrix ${MATRIX_PORT}
  303. MATRIX_ONION_HOSTNAME=$(add_onion_service matrix ${MATRIX_PORT} ${MATRIX_PORT})
  304. if [ ! ${MATRIX_PASSWORD} ]; then
  305. if [ -f ${IMAGE_PASSWORD_FILE} ]; then
  306. MATRIX_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
  307. else
  308. MATRIX_PASSWORD="$(create_password ${MINIMUM_PASSWORD_LENGTH})"
  309. fi
  310. fi
  311. rm -rf ${MATRIX_DATA_DIR}/Maildir
  312. rm -rf ${MATRIX_DATA_DIR}/.mutt
  313. rm -f ${MATRIX_DATA_DIR}/.muttrc
  314. rm -f ${MATRIX_DATA_DIR}/.mutt-alias
  315. rm -f ${MATRIX_DATA_DIR}/.procmailrc
  316. rm -f ${MATRIX_DATA_DIR}/.emacs-mutt
  317. if [[ $(add_user_matrix "${MY_USERNAME}" "${MATRIX_PASSWORD}") != "0" ]]; then
  318. echo $'Failed to add matrix admin user';
  319. exit 879352
  320. fi
  321. APP_INSTALLED=1
  322. }