freedombone-app-matrix 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  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(/database: "\/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. if [[ $ONION_ONLY != 'no' ]]; then
  75. sed -i 's|no_tls: .*|no_tls: True|g' "${filepath}"
  76. fi
  77. sed -i 's|enable_registration_captcha.*|enable_registration_captcha: False|g' "${filepath}"
  78. }
  79. function matrix_diff {
  80. DIFFPARAMS="${DIFFPARAMS:-Naur}"
  81. DEFAULT_DOMAIN_NAME="${DEFAULT_DOMAIN_NAME:-demo_server_name}"
  82. REPORT_STATS="${REPORT_STATS:-no_or_yes}"
  83. export DEFAULT_DOMAIN_NAME REPORT_STATS
  84. matrix_generate_synapse_file $INSTALL_DIR/homeserver.synapse.yaml
  85. diff -${DIFFPARAMS} $INSTALL_DIR/homeserver.synapse.yaml ${MATRIX_DATA_DIR}/homeserver.yaml
  86. rm $INSTALL_DIR/homeserver.synapse.yaml
  87. }
  88. function matrix_generate {
  89. breakup="0"
  90. [[ -z "${DEFAULT_DOMAIN_NAME}" ]] && echo "STOP! environment variable DEFAULT_DOMAIN_NAME must be set" && breakup="1"
  91. [[ -z "${REPORT_STATS}" ]] && echo "STOP! environment variable REPORT_STATS must be set to 'no' or 'yes'" && breakup="1"
  92. [[ "${breakup}" == "1" ]] && exit 1
  93. [[ "${REPORT_STATS}" != "yes" ]] && [[ "${REPORT_STATS}" != "no" ]] && \
  94. echo "STOP! REPORT_STATS needs to be 'no' or 'yes'" && breakup="1"
  95. if [ -f ${MATRIX_DATA_DIR}/homeserver.yaml ]; then
  96. rm ${MATRIX_DATA_DIR}/homeserver.yaml
  97. fi
  98. matrix_generate_synapse_file ${MATRIX_DATA_DIR}/homeserver.yaml
  99. matrix_configure_homeserver_yaml "${turnkey}" ${MATRIX_DATA_DIR}/homeserver.yaml
  100. }
  101. function remove_user_matrix {
  102. remove_username="$1"
  103. ${PROJECT_NAME}-pass -u $remove_username --rmapp matrix
  104. # TODO: There is no user removal script within synapse
  105. }
  106. function add_user_matrix {
  107. new_username="$1"
  108. new_user_password="$2"
  109. ${PROJECT_NAME}-pass -u $new_username -a matrix -p "$new_user_password"
  110. read_config_param 'MATRIX_SECRET'
  111. register_new_matrix_user -c ${MATRIX_DATA_DIR}/homeserver.yaml https://localhost:${MATRIX_PORT} -u "${new_username}" -p "${new_user_password}" -a
  112. if [ ! "$?" = "0" ]; then
  113. echo '1'
  114. else
  115. echo "0"
  116. fi
  117. }
  118. function install_interactive_matrix {
  119. APP_INSTALLED=1
  120. }
  121. function change_password_matrix {
  122. curr_username="$1"
  123. new_user_password="$2"
  124. #${PROJECT_NAME}-pass -u "$curr_username" -a matrix -p "$new_user_password"
  125. }
  126. function reconfigure_matrix {
  127. echo -n ''
  128. }
  129. function upgrade_matrix {
  130. function_check set_repo_commit
  131. set_repo_commit /etc/matrix "matrix commit" "$MATRIX_COMMIT" $MATRIX_REPO
  132. pip install --upgrade --process-dependency-links .
  133. chown -R matrix:matrix /etc/matrix
  134. chown -R matrix:matrix $MATRIX_DATA_DIR
  135. }
  136. function backup_local_matrix {
  137. source_directory=/etc/matrix
  138. if [ -d $source_directory ]; then
  139. systemctl stop matrix
  140. function_check backup_directory_to_usb
  141. backup_directory_to_usb $source_directory matrix
  142. source_directory=$MATRIX_DATA_DIR
  143. if [ -d $source_directory ]; then
  144. backup_directory_to_usb $source_directory matrixdata
  145. fi
  146. systemctl start matrix
  147. fi
  148. }
  149. function restore_local_matrix {
  150. if [ -d /etc/matrix ]; then
  151. systemctl stop matrix
  152. temp_restore_dir=/root/tempmatrix
  153. function_check restore_directory_from_usb
  154. restore_directory_from_usb $temp_restore_dir matrix
  155. cp -r $temp_restore_dir/etc/matrix/* /etc/matrix
  156. if [ ! "$?" = "0" ]; then
  157. function_check backup_unmount_drive
  158. backup_unmount_drive
  159. exit 3783
  160. fi
  161. rm -rf $temp_restore_dir
  162. chown -R matrix:matrix /etc/matrix
  163. temp_restore_dir=/root/tempmatrixdata
  164. restore_directory_from_usb $temp_restore_dir matrixdata
  165. cp -r $temp_restore_dir$MATRIX_DATA_DIR/* $MATRIX_DATA_DIR
  166. if [ ! "$?" = "0" ]; then
  167. function_check backup_unmount_drive
  168. backup_unmount_drive
  169. exit 78352
  170. fi
  171. rm -rf $temp_restore_dir
  172. chown -R matrix:matrix $MATRIX_DATA_DIR
  173. systemctl start matrix
  174. fi
  175. }
  176. function backup_remote_matrix {
  177. source_directory=/etc/matrix
  178. if [ -d $source_directory ]; then
  179. systemctl stop matrix
  180. function_check backup_directory_to_friend
  181. backup_directory_to_friend $source_directory matrix
  182. source_directory=$MATRIX_DATA_DIR
  183. if [ -d $source_directory ]; then
  184. backup_directory_to_friend $source_directory matrixdata
  185. fi
  186. systemctl start matrix
  187. fi
  188. }
  189. function restore_remote_matrix {
  190. if [ -d /etc/matrix ]; then
  191. systemctl stop matrix
  192. temp_restore_dir=/root/tempmatrix
  193. function_check restore_directory_from_friend
  194. restore_directory_from_friend $temp_restore_dir matrix
  195. cp -r $temp_restore_dir/etc/matrix/* /etc/matrix
  196. if [ ! "$?" = "0" ]; then
  197. exit 38935
  198. fi
  199. rm -rf $temp_restore_dir
  200. chown -R matrix:matrix /etc/matrix
  201. temp_restore_dir=/root/tempmatrixdata
  202. restore_directory_from_friend $temp_restore_dir matrixdata
  203. cp -r $temp_restore_dir$MATRIX_DATA_DIR/* $MATRIX_DATA_DIR
  204. if [ ! "$?" = "0" ]; then
  205. exit 60923
  206. fi
  207. rm -rf $temp_restore_dir
  208. chown -R matrix:matrix $MATRIX_DATA_DIR
  209. systemctl start matrix
  210. fi
  211. }
  212. function remove_matrix {
  213. firewall_remove ${MATRIX_PORT}
  214. systemctl stop matrix
  215. function_check remove_turn
  216. remove_turn
  217. systemctl disable matrix
  218. if [ -f /etc/systemd/system/matrix.service ]; then
  219. rm /etc/systemd/system/matrix.service
  220. fi
  221. apt-get -y remove --purge coturn
  222. cd /etc/matrix
  223. pip uninstall .
  224. rm -rf $MATRIX_DATA_DIR
  225. rm -rf /etc/matrix
  226. deluser matrix
  227. delgroup matrix
  228. remove_onion_service matrix ${MATRIX_PORT}
  229. remove_completion_param install_matrix
  230. sed -i '/matrix/d' $COMPLETION_FILE
  231. }
  232. function install_matrix {
  233. if [ ! -d $INSTALL_DIR ]; then
  234. mkdir -p $INSTALL_DIR
  235. fi
  236. if [[ ${ONION_ONLY} == 'no' ]]; then
  237. if [ ! -f /etc/ssl/certs/${DEFAULT_DOMAIN_NAME}.pem ]; then
  238. echo $'Obtaining certificate for the main domain'
  239. create_site_certificate ${DEFAULT_DOMAIN_NAME} 'yes'
  240. fi
  241. fi
  242. export DEBIAN_FRONTEND=noninteractive
  243. apt-get -yq install coreutils \
  244. curl file gcc git libevent-2.0-5 \
  245. libevent-dev libffi-dev libffi6 \
  246. libgnutls28-dev libjpeg62-turbo \
  247. libjpeg62-turbo-dev libldap-2.4-2 \
  248. libldap2-dev libsasl2-dev \
  249. libsqlite3-dev libssl-dev \
  250. libssl1.0.0 libtool libxml2 \
  251. libxml2-dev libxslt1-dev libxslt1.1 \
  252. make python python-dev \
  253. python-pip python-psycopg2 \
  254. python-virtualenv sqlite unzip \
  255. zlib1g zlib1g-dev
  256. pip install --upgrade pip
  257. pip install --upgrade python-ldap
  258. pip install --upgrade lxml
  259. if [ ! -d /etc/matrix ]; then
  260. function_check git_clone
  261. git_clone $MATRIX_REPO /etc/matrix
  262. if [ ! -d /etc/matrix ]; then
  263. echo $'Unable to clone matrix repo'
  264. exit 6724683
  265. fi
  266. fi
  267. cd /etc/matrix
  268. git checkout $MATRIX_COMMIT -b $MATRIX_COMMIT
  269. set_completion_param "matrix commit" "$MATRIX_COMMIT"
  270. if [ ! -d $INSTALL_DIR/matrix ]; then
  271. mkdir -p $INSTALL_DIR/matrix
  272. fi
  273. pip install --upgrade --process-dependency-links . -b $INSTALL_DIR/matrix
  274. if [ ! "$?" = "0" ]; then
  275. exit 782542
  276. fi
  277. function_check install_turn
  278. install_turn
  279. MATRIX_SECRET="${turnkey}"
  280. function_check matrix_generate
  281. matrix_generate
  282. if [[ -z ${MATRIX_DATA_DIR}/homeserver.yaml ]]; then
  283. echo $'homeserver.yaml is zero size'
  284. exit 783724
  285. fi
  286. groupadd matrix
  287. useradd -c "Matrix system account" -d $MATRIX_DATA_DIR -m -r -g matrix matrix
  288. chown -R matrix:matrix /etc/matrix
  289. chown -R matrix:matrix $MATRIX_DATA_DIR
  290. echo '[Unit]' > /etc/systemd/system/matrix.service
  291. echo 'Description=Synapse Matrix homeserver' >> /etc/systemd/system/matrix.service
  292. echo 'After=network.target nginx.target' >> /etc/systemd/system/matrix.service
  293. echo '' >> /etc/systemd/system/matrix.service
  294. echo '[Service]' >> /etc/systemd/system/matrix.service
  295. echo 'Type=simple' >> /etc/systemd/system/matrix.service
  296. echo 'User=matrix' >> /etc/systemd/system/matrix.service
  297. echo "WorkingDirectory=/etc/matrix" >> /etc/systemd/system/matrix.service
  298. echo "ExecStart=source /var/lib/matrix/.synapse/bin/activate && /usr/bin/python -m synapse.app.homeserver --config-path ${MATRIX_DATA_DIR}/homeserver.yaml" >> /etc/systemd/system/matrix.service
  299. echo 'Restart=always' >> /etc/systemd/system/matrix.service
  300. echo 'RestartSec=10' >> /etc/systemd/system/matrix.service
  301. echo '' >> /etc/systemd/system/matrix.service
  302. echo '[Install]' >> /etc/systemd/system/matrix.service
  303. echo 'WantedBy=multi-user.target' >> /etc/systemd/system/matrix.service
  304. systemctl enable matrix
  305. systemctl daemon-reload
  306. systemctl start matrix
  307. update_default_domain
  308. firewall_add matrix ${MATRIX_PORT}
  309. MATRIX_ONION_HOSTNAME=$(add_onion_service matrix ${MATRIX_PORT} ${MATRIX_PORT})
  310. if [ ! ${MATRIX_PASSWORD} ]; then
  311. if [ -f ${IMAGE_PASSWORD_FILE} ]; then
  312. MATRIX_PASSWORD="$(printf `cat $IMAGE_PASSWORD_FILE`)"
  313. else
  314. MATRIX_PASSWORD="$(create_password ${MINIMUM_PASSWORD_LENGTH})"
  315. fi
  316. fi
  317. rm -rf ${MATRIX_DATA_DIR}/Maildir
  318. rm -rf ${MATRIX_DATA_DIR}/.mutt
  319. rm -f ${MATRIX_DATA_DIR}/.muttrc
  320. rm -f ${MATRIX_DATA_DIR}/.mutt-alias
  321. rm -f ${MATRIX_DATA_DIR}/.procmailrc
  322. rm -f ${MATRIX_DATA_DIR}/.emacs-mutt
  323. #if [[ $(add_user_matrix "${MY_USERNAME}" "${MATRIX_PASSWORD}") != "0" ]]; then
  324. # echo $'Failed to add matrix admin user';
  325. # exit 879352
  326. #fi
  327. APP_INSTALLED=1
  328. }