瀏覽代碼

Separate turn server

Bob Mottram 8 年之前
父節點
當前提交
da0e8fbcab
共有 3 個檔案被更改,包括 134 行新增61 行删除
  1. 1
    1
      src/freedombone-app-gnusocial
  2. 22
    60
      src/freedombone-app-matrix
  3. 111
    0
      src/freedombone-utils-turn

+ 1
- 1
src/freedombone-app-gnusocial 查看文件

40
 GNUSOCIAL_COMMIT='7d67eefdf501f492e29f59971ac288e0414dc5b0'
40
 GNUSOCIAL_COMMIT='7d67eefdf501f492e29f59971ac288e0414dc5b0'
41
 GNUSOCIAL_ADMIN_PASSWORD=
41
 GNUSOCIAL_ADMIN_PASSWORD=
42
 GNUSOCIAL_THEME_REPO="https://git.gnu.io/h2p/Qvitter.git"
42
 GNUSOCIAL_THEME_REPO="https://git.gnu.io/h2p/Qvitter.git"
43
-GNUSOCIAL_THEME_COMMIT='474376938b0e55c2e3d0c06d308a44a48d98ba88'
43
+GNUSOCIAL_THEME_COMMIT='a7f82628402db3a7579bb9b2877da3c5737da77b'
44
 GNUSOCIAL_WELCOME_MESSAGE=$'<h1>Welcome to GNU Social – a federated social metwork</h1><p>Another Freedombone site</p>'
44
 GNUSOCIAL_WELCOME_MESSAGE=$'<h1>Welcome to GNU Social – a federated social metwork</h1><p>Another Freedombone site</p>'
45
 GNUSOCIAL_BACKGROUND_IMAGE_URL=
45
 GNUSOCIAL_BACKGROUND_IMAGE_URL=
46
 GNUSOCIAL_MARKDOWN_REPO="https://git.gnu.io/chimo/markdown.git"
46
 GNUSOCIAL_MARKDOWN_REPO="https://git.gnu.io/chimo/markdown.git"

+ 22
- 60
src/freedombone-app-matrix 查看文件

36
 SHOW_ON_ABOUT=1
36
 SHOW_ON_ABOUT=1
37
 
37
 
38
 MATRIX_DATA_DIR='/var/lib/matrix'
38
 MATRIX_DATA_DIR='/var/lib/matrix'
39
-MATRIX_TURN_PORT=3478
40
 MATRIX_PORT=8448
39
 MATRIX_PORT=8448
41
 MATRIX_REPO="https://github.com/matrix-org/synapse"
40
 MATRIX_REPO="https://github.com/matrix-org/synapse"
42
 MATRIX_COMMIT='f5a4001bb116c468cc5e8e0ae04a1c570e2cb171'
41
 MATRIX_COMMIT='f5a4001bb116c468cc5e8e0ae04a1c570e2cb171'
46
                   MATRIX_PASSWORD
45
                   MATRIX_PASSWORD
47
                   DEFAULT_DOMAIN_NAME)
46
                   DEFAULT_DOMAIN_NAME)
48
 
47
 
49
-function matrix_generate_turn_key {
50
-    local turnkey="${1}"
51
-    local filepath="${2}"
52
-
53
-    echo "lt-cred-mech" > "${filepath}"
54
-    echo "use-auth-secret" >> "${filepath}"
55
-    echo "static-auth-secret=${turnkey}" >> "${filepath}"
56
-    echo "realm=turn.${DEFAULT_DOMAIN_NAME}" >> "${filepath}"
57
-    echo "cert=${MATRIX_DATA_DIR}/${DEFAULT_DOMAIN_NAME}.tls.crt" >> "${filepath}"
58
-    echo "pkey=${MATRIX_DATA_DIR}/${DEFAULT_DOMAIN_NAME}.tls.key" >> "${filepath}"
59
-}
60
-
61
 function matrix_generate_synapse_file {
48
 function matrix_generate_synapse_file {
62
     local filepath="${1}"
49
     local filepath="${1}"
63
 
50
 
75
 
62
 
76
     local ymltemp="$(mktemp)"
63
     local ymltemp="$(mktemp)"
77
 
64
 
78
-    awk -v TURNURIES="turn_uris: [\"turn:${DEFAULT_DOMAIN_NAME}:${MATRIX_TURN_PORT}?transport=udp\", \"turn:${DEFAULT_DOMAIN_NAME}:${MATRIX_TURN_PORT}?transport=tcp\"]" \
65
+    awk -v TURNURIES="turn_uris: [\"turn:${DEFAULT_DOMAIN_NAME}:${TURN_PORT}?transport=udp\", \"turn:${DEFAULT_DOMAIN_NAME}:${TURN_PORT}?transport=tcp\"]" \
79
         -v TURNSHAREDSECRET="turn_shared_secret: \"${turnkey}\"" \
66
         -v TURNSHAREDSECRET="turn_shared_secret: \"${turnkey}\"" \
80
         -v PIDFILE="pid_file: ${MATRIX_DATA_DIR}/homeserver.pid" \
67
         -v PIDFILE="pid_file: ${MATRIX_DATA_DIR}/homeserver.pid" \
81
         -v DATABASE="database: \"${MATRIX_DATA_DIR}/homeserver.db\"" \
68
         -v DATABASE="database: \"${MATRIX_DATA_DIR}/homeserver.db\"" \
94
     mv ${ymltemp} "${filepath}"
81
     mv ${ymltemp} "${filepath}"
95
 }
82
 }
96
 
83
 
97
-function matrix_start {
98
-    if [ -f ${MATRIX_DATA_DIR}/turnserver.conf ]; then
99
-        echo "-=> start turn"
100
-        /usr/bin/turnserver --daemon -c ${MATRIX_DATA_DIR}/turnserver.conf
101
-    fi
102
-
103
-    echo "-=> start riot.im client"
104
-    (
105
-        if [ -f ${MATRIX_DATA_DIR}/vector.im.conf ] || [ -f ${MATRIX_DATA_DIR}/riot.im.conf ] ; then
106
-            echo "The riot web client is now handled via silvio/matrix-riot-docker"
107
-        fi
108
-    )
109
-
110
-    echo "-=> start matrix"
111
-    python -m synapse.app.homeserver --config-path ${MATRIX_DATA_DIR}/homeserver.yaml
112
-}
113
-
114
-function matrix_stop {
115
-    echo "-=> stop matrix"
116
-    echo "-=> via docker stop ..."
117
-}
118
-
119
-
120
 function matrix_diff {
84
 function matrix_diff {
121
-    echo "-=> Diff between local configfile and a fresh generated config file"
122
-    echo "-=>      some values are different in technical point of view, like"
123
-    echo "-=>      autogenerated secret keys etc..."
124
-
125
     DIFFPARAMS="${DIFFPARAMS:-Naur}"
85
     DIFFPARAMS="${DIFFPARAMS:-Naur}"
126
     DEFAULT_DOMAIN_NAME="${DEFAULT_DOMAIN_NAME:-demo_server_name}"
86
     DEFAULT_DOMAIN_NAME="${DEFAULT_DOMAIN_NAME:-demo_server_name}"
127
     REPORT_STATS="${REPORT_STATS:-no_or_yes}"
87
     REPORT_STATS="${REPORT_STATS:-no_or_yes}"
128
     export DEFAULT_DOMAIN_NAME REPORT_STATS
88
     export DEFAULT_DOMAIN_NAME REPORT_STATS
129
 
89
 
130
-    matrix_generate_synapse_file /tmp/homeserver.synapse.yaml
131
-    diff -${DIFFPARAMS} /tmp/homeserver.synapse.yaml ${MATRIX_DATA_DIR}/homeserver.yaml
132
-    rm /tmp/homeserver.synapse.yaml
90
+    matrix_generate_synapse_file $INSTALL_DIR/homeserver.synapse.yaml
91
+    diff -${DIFFPARAMS} $INSTALL_DIR/homeserver.synapse.yaml ${MATRIX_DATA_DIR}/homeserver.yaml
92
+    rm $INSTALL_DIR/homeserver.synapse.yaml
133
 }
93
 }
134
 
94
 
135
 function matrix_generate {
95
 function matrix_generate {
141
     [[ "${REPORT_STATS}" != "yes" ]] && [[ "${REPORT_STATS}" != "no" ]] && \
101
     [[ "${REPORT_STATS}" != "yes" ]] && [[ "${REPORT_STATS}" != "no" ]] && \
142
         echo "STOP! REPORT_STATS needs to be 'no' or 'yes'" && breakup="1"
102
         echo "STOP! REPORT_STATS needs to be 'no' or 'yes'" && breakup="1"
143
 
103
 
144
-    echo "-=> generate turn config"
145
-    turnkey=$(pwgen -s 64 1)
146
-    matrix_generate_turn_key $turnkey ${MATRIX_DATA_DIR}/turnserver.conf
147
-
148
-    echo "-=> generate synapse config"
149
     matrix_generate_synapse_file ${MATRIX_DATA_DIR}/homeserver.tmp
104
     matrix_generate_synapse_file ${MATRIX_DATA_DIR}/homeserver.tmp
150
-
151
-    echo "-=> configure some settings in homeserver.yaml"
152
     matrix_configure_homeserver_yaml $turnkey ${MATRIX_DATA_DIR}/homeserver.tmp
105
     matrix_configure_homeserver_yaml $turnkey ${MATRIX_DATA_DIR}/homeserver.tmp
153
 
106
 
154
     mv ${MATRIX_DATA_DIR}/homeserver.tmp ${MATRIX_DATA_DIR}/homeserver.yaml
107
     mv ${MATRIX_DATA_DIR}/homeserver.tmp ${MATRIX_DATA_DIR}/homeserver.yaml
286
 
239
 
287
 function remove_matrix {
240
 function remove_matrix {
288
     firewall_remove ${MATRIX_PORT}
241
     firewall_remove ${MATRIX_PORT}
289
-    firewall_remove ${MATRIX_TURN_PORT}
290
     systemctl stop matrix
242
     systemctl stop matrix
291
-    systemcrl disable matrix
243
+
244
+    function_check remove_turn
245
+    remove_turn
246
+
247
+    systemctl disable matrix
292
     if [ -f /etc/systemd/system/matrix.service ]; then
248
     if [ -f /etc/systemd/system/matrix.service ]; then
293
         rm /etc/systemd/system/matrix.service
249
         rm /etc/systemd/system/matrix.service
294
     fi
250
     fi
306
 }
262
 }
307
 
263
 
308
 function install_matrix {
264
 function install_matrix {
265
+    if [ ! -d $INSTALL_DIR ]; then
266
+        mkdir -p $INSTALL_DIR
267
+    fi
268
+
309
     if [[ ${ONION_ONLY} == 'no' ]]; then
269
     if [[ ${ONION_ONLY} == 'no' ]]; then
310
-        # obtain a cert for the default domain
311
-        if [[ "$(cert_exists ${DEFAULT_DOMAIN_NAME} pem)" == "0" ]]; then
270
+        if [ ! -f /etc/ssl/certs/${DEFAULT_DOMAIN_NAME}.pem ]; then
312
             echo $'Obtaining certificate for the main domain'
271
             echo $'Obtaining certificate for the main domain'
313
             create_site_certificate ${DEFAULT_DOMAIN_NAME} 'yes'
272
             create_site_certificate ${DEFAULT_DOMAIN_NAME} 'yes'
314
         fi
273
         fi
315
     fi
274
     fi
316
 
275
 
317
-    REBUILD=1
318
     export DEBIAN_FRONTEND=noninteractive
276
     export DEBIAN_FRONTEND=noninteractive
319
-    apt-get -yq install coreutils coturn \
277
+    apt-get -yq install coreutils \
320
             curl file gcc git libevent-2.0-5 \
278
             curl file gcc git libevent-2.0-5 \
321
             libevent-dev libffi-dev libffi6 \
279
             libevent-dev libffi-dev libffi6 \
322
             libgnutls28-dev libjpeg62-turbo \
280
             libgnutls28-dev libjpeg62-turbo \
325
             libsqlite3-dev libssl-dev \
283
             libsqlite3-dev libssl-dev \
326
             libssl1.0.0 libtool libxml2 \
284
             libssl1.0.0 libtool libxml2 \
327
             libxml2-dev libxslt1-dev libxslt1.1 \
285
             libxml2-dev libxslt1-dev libxslt1.1 \
328
-            make pwgen python python-dev \
286
+            make python python-dev \
329
             python-pip python-psycopg2 \
287
             python-pip python-psycopg2 \
330
             python-virtualenv sqlite unzip \
288
             python-virtualenv sqlite unzip \
331
             zlib1g zlib1g-dev
289
             zlib1g zlib1g-dev
357
     chown -R matrix:matrix /etc/matrix
315
     chown -R matrix:matrix /etc/matrix
358
     chown -R matrix:matrix /var/lib/matrix
316
     chown -R matrix:matrix /var/lib/matrix
359
 
317
 
318
+    function_check install_turn
319
+    install_turn
320
+
321
+    function_check matrix_generate
322
+    matrix_generate
323
+
360
     echo '[Unit]' > /etc/systemd/system/matrix.service
324
     echo '[Unit]' > /etc/systemd/system/matrix.service
361
     echo 'Description=Matrix federated messaging' >> /etc/systemd/system/matrix.service
325
     echo 'Description=Matrix federated messaging' >> /etc/systemd/system/matrix.service
362
     echo '' >> /etc/systemd/system/matrix.service
326
     echo '' >> /etc/systemd/system/matrix.service
364
     echo 'Type=simple' >> /etc/systemd/system/matrix.service
328
     echo 'Type=simple' >> /etc/systemd/system/matrix.service
365
     echo 'User=matrix' >> /etc/systemd/system/matrix.service
329
     echo 'User=matrix' >> /etc/systemd/system/matrix.service
366
     echo "WorkingDirectory=/etc/matrix" >> /etc/systemd/system/matrix.service
330
     echo "WorkingDirectory=/etc/matrix" >> /etc/systemd/system/matrix.service
367
-    echo "ExecStart=/usr/bin/turnserver --daemon -c ${MATRIX_DATA_DIR}/turnserver.conf" >> /etc/systemd/system/matrix.service
368
     echo "ExecStart=/usr/bin/python -m synapse.app.homeserver --config-path ${MATRIX_DATA_DIR}/homeserver.yaml" >> /etc/systemd/system/matrix.service
331
     echo "ExecStart=/usr/bin/python -m synapse.app.homeserver --config-path ${MATRIX_DATA_DIR}/homeserver.yaml" >> /etc/systemd/system/matrix.service
369
     echo 'Restart=always' >> /etc/systemd/system/matrix.service
332
     echo 'Restart=always' >> /etc/systemd/system/matrix.service
370
     echo 'RestartSec=10' >> /etc/systemd/system/matrix.service
333
     echo 'RestartSec=10' >> /etc/systemd/system/matrix.service
378
     update_default_domain
341
     update_default_domain
379
 
342
 
380
     firewall_add matrix ${MATRIX_PORT}
343
     firewall_add matrix ${MATRIX_PORT}
381
-    firewall_add matrix-turn ${MATRIX_TURN_PORT}
382
 
344
 
383
     MATRIX_ONION_HOSTNAME=$(add_onion_service matrix ${MATRIX_PORT} ${MATRIX_PORT})
345
     MATRIX_ONION_HOSTNAME=$(add_onion_service matrix ${MATRIX_PORT} ${MATRIX_PORT})
384
     if [ ! ${MATRIX_PASSWORD} ]; then
346
     if [ ! ${MATRIX_PASSWORD} ]; then

+ 111
- 0
src/freedombone-utils-turn 查看文件

1
+#!/bin/bash
2
+#
3
+# .---.                  .              .
4
+# |                      |              |
5
+# |--- .--. .-.  .-.  .-.|  .-. .--.--. |.-.  .-. .--.  .-.
6
+# |    |   (.-' (.-' (   | (   )|  |  | |   )(   )|  | (.-'
7
+# '    '     --'  --'  -' -  -' '  '   -' -'   -' '   -  --'
8
+#
9
+#                    Freedom in the Cloud
10
+#
11
+# TURN server functions
12
+#
13
+# License
14
+# =======
15
+#
16
+# Copyright (C) 2016 Bob Mottram <bob@freedombone.net>
17
+#
18
+# This program is free software: you can redistribute it and/or modify
19
+# it under the terms of the GNU Affero General Public License as published by
20
+# the Free Software Foundation, either version 3 of the License, or
21
+# (at your option) any later version.
22
+#
23
+# This program is distributed in the hope that it will be useful,
24
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
25
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26
+# GNU Affero General Public License for more details.
27
+#
28
+# You should have received a copy of the GNU Affero General Public License
29
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
30
+
31
+TURN_PORT=3478
32
+
33
+function generate_turn_key {
34
+    local turnkey="${1}"
35
+    local filepath="${2}"
36
+
37
+    echo "lt-cred-mech" > "${filepath}"
38
+    echo "use-auth-secret" >> "${filepath}"
39
+    echo "static-auth-secret=${turnkey}" >> "${filepath}"
40
+    echo "realm=turn.${DEFAULT_DOMAIN_NAME}" >> "${filepath}"
41
+    if [ -f /etc/ssl/certs/${DEFAULT_DOMAIN_NAME}.pem ]; then
42
+        echo "cert=/etc/ssl/certs/${DEFAULT_DOMAIN_NAME}.pem" >> "${filepath}"
43
+    else
44
+        echo "cert=/etc/ssl/certs/${DEFAULT_DOMAIN_NAME}.crt" >> "${filepath}"
45
+    fi
46
+    echo "pkey=/etc/ssl/private/${DEFAULT_DOMAIN_NAME}.key" >> "${filepath}"
47
+}
48
+
49
+function remove_turn {
50
+    firewall_remove ${TURN_PORT}
51
+}
52
+
53
+function remove_turn {
54
+    firewall_remove ${TURN_PORT}
55
+    systemctl stop turn
56
+    systemctl disable turn
57
+    if [ -f /etc/systemd/system/turn.service ]; then
58
+        rm /etc/systemd/system/turn.service
59
+    fi
60
+    apt-get -y remove coturn
61
+    rm -rf /var/lib/turn
62
+}
63
+
64
+function install_turn {
65
+    export DEBIAN_FRONTEND=noninteractive
66
+    apt-get -yq install coreutils coturn \
67
+            curl file gcc git libevent-2.0-5 \
68
+            libevent-dev libffi-dev libffi6 \
69
+            libgnutls28-dev libjpeg62-turbo \
70
+            libjpeg62-turbo-dev libldap-2.4-2 \
71
+            libldap2-dev libsasl2-dev \
72
+            libsqlite3-dev libssl-dev \
73
+            libssl1.0.0 libtool libxml2 \
74
+            libxml2-dev libxslt1-dev libxslt1.1 \
75
+            make python python-dev \
76
+            python-pip python-psycopg2 \
77
+            python-virtualenv sqlite unzip \
78
+            zlib1g zlib1g-dev
79
+
80
+    pip install --upgrade pip
81
+    pip install --upgrade python-ldap
82
+    pip install --upgrade lxml
83
+
84
+    if [ ! -d /var/lib/turn ]; then
85
+        mkdir /var/lib/turn
86
+    fi
87
+
88
+    turnkey="$(create_password 30)"
89
+    generate_turn_key $turnkey /var/lib/turn/turnserver.conf
90
+
91
+    chown -R matrix:matrix /var/lib/turn
92
+
93
+    echo '' >> /etc/systemd/system/turn.service
94
+    echo '[Service]' >> /etc/systemd/system/turn.service
95
+    echo 'Type=simple' >> /etc/systemd/system/turn.service
96
+    echo 'User=matrix' >> /etc/systemd/system/turn.service
97
+    echo "WorkingDirectory=/var/lib/turn" >> /etc/systemd/system/turn.service
98
+    echo "ExecStart=/usr/bin/turnserver -c /var/lib/turn/turnserver.conf" >> /etc/systemd/system/turn.service
99
+    echo 'Restart=always' >> /etc/systemd/system/turn.service
100
+    echo 'RestartSec=10' >> /etc/systemd/system/turn.service
101
+    echo '' >> /etc/systemd/system/turn.service
102
+    echo '[Install]' >> /etc/systemd/system/turn.service
103
+    echo 'WantedBy=multi-user.target' >> /etc/systemd/system/turn.service
104
+    systemctl enable turn
105
+    systemctl daemon-reload
106
+    systemctl start turn
107
+
108
+    firewall_add turn ${TURN_PORT}
109
+}
110
+
111
+# NOTE: deliberately no exit 0