Bob Mottram пре 8 година
родитељ
комит
7a966bb0a9
1 измењених фајлова са 28 додато и 46 уклоњено
  1. 28
    46
      src/freedombone-app-matrix

+ 28
- 46
src/freedombone-app-matrix Прегледај датотеку

37
 
37
 
38
 MATRIX_DATA_DIR='/var/lib/matrix'
38
 MATRIX_DATA_DIR='/var/lib/matrix'
39
 MATRIX_PORT=8448
39
 MATRIX_PORT=8448
40
-MATRID_ID_PORT=8090
40
+MATRID_ID_PORT=8081
41
 MATRIX_REPO="https://github.com/matrix-org/synapse"
41
 MATRIX_REPO="https://github.com/matrix-org/synapse"
42
 MATRIX_COMMIT='f5a4001bb116c468cc5e8e0ae04a1c570e2cb171'
42
 MATRIX_COMMIT='f5a4001bb116c468cc5e8e0ae04a1c570e2cb171'
43
 SYDENT_REPO="https://github.com/matrix-org/sydent"
43
 SYDENT_REPO="https://github.com/matrix-org/sydent"
187
            --server-name ${DEFAULT_DOMAIN_NAME}
187
            --server-name ${DEFAULT_DOMAIN_NAME}
188
 }
188
 }
189
 
189
 
190
-function matrix_generate_identityserver_file {
191
-    local filepath="${1}"
192
-
193
-    cd /etc/sydent
194
-    python -m sydent.sydent \
195
-           --config-path "${filepath}" \
196
-           --generate-config \
197
-           --report-stats ${REPORT_STATS} \
198
-           --server-name ${DEFAULT_DOMAIN_NAME}
199
-}
200
-
201
 function matrix_configure_homeserver_yaml {
190
 function matrix_configure_homeserver_yaml {
202
     local turnkey="${1}"
191
     local turnkey="${1}"
203
     local filepath="${2}"
192
     local filepath="${2}"
232
     sed -i "s|log_file:.*|log_file: \"/dev/null\"|g" "${filepath}"
221
     sed -i "s|log_file:.*|log_file: \"/dev/null\"|g" "${filepath}"
233
 }
222
 }
234
 
223
 
235
-function matrix_configure_identityserver_yaml {
236
-    local filepath="${1}"
224
+function matrix_configure_identityserver {
225
+    local filepath=/etc/sydent/sydent.conf
237
 
226
 
238
-    sed -i "s|http.port:.*|http.port: $MATRIX_ID_PORT|g" "${filepath}"
239
-    sed -i "s|db.file:.*|db.file: \"${MATRIX_DATA_DIR}/identityserver.db\"|g" "${filepath}"
240
-    sed -i "s|Sydent Validation|Freedombone Matrix Account Validation|g" "${filepath}"
241
-    sed -i "s|pidfile.path:.*|pidfile.path: \"${MATRIX_DATA_DIR}/identityserver.pid\"|g" "${filepath}"
242
-    sed -i "s|log.path:.*|log.path: \"/dev/null\"|g" "${filepath}"
227
+    sed -i "s|http.port.*|http.port = $MATRIX_ID_PORT|g" ${filepath}
228
+    sed -i "s|db.file.*|db.file = /etc/sydent/sydent.db|g" ${filepath}
229
+    sed -i "s|Sydent Validation|Freedombone Matrix Account Validation|g" ${filepath}
230
+    sed -i "s|pidfile.path.*|pidfile.path = /etc/sydent/sydent.pid|g" ${filepath}
231
+    sed -i "s|log.path.*|log.path = /dev/null|g" ${filepath}
232
+    sed -i "s|server.name.*|server.name = ${DEFAULT_DOMAIN_NAME}|g" ${filepath}
243
 }
233
 }
244
 
234
 
245
 function matrix_diff {
235
 function matrix_diff {
270
     matrix_configure_homeserver_yaml "${turnkey}" $homeserver_config
260
     matrix_configure_homeserver_yaml "${turnkey}" $homeserver_config
271
 }
261
 }
272
 
262
 
273
-function identity_server_generate {
274
-    breakup="0"
275
-    [[ -z "${DEFAULT_DOMAIN_NAME}" ]] && echo "STOP! environment variable DEFAULT_DOMAIN_NAME must be set" && breakup="1"
276
-    [[ -z "${REPORT_STATS}" ]] && echo "STOP! environment variable REPORT_STATS must be set to 'no' or 'yes'" && breakup="1"
277
-    [[ "${breakup}" == "1" ]] && exit 1
278
-
279
-    [[ "${REPORT_STATS}" != "yes" ]] && [[ "${REPORT_STATS}" != "no" ]] && \
280
-        echo "STOP! REPORT_STATS needs to be 'no' or 'yes'" && breakup="1"
281
-
282
-    identityserver_config=${MATRIX_DATA_DIR}/identityserver.yaml
283
-    if [ -f $identityserver_config ]; then
284
-        rm $identityserver_config
285
-    fi
286
-    matrix_generate_identityserver_file $identityserver_config
287
-    matrix_configure_identityserver_yaml $identityserver_config
288
-}
289
-
290
 function remove_user_matrix {
263
 function remove_user_matrix {
291
     remove_username="$1"
264
     remove_username="$1"
292
 
265
 
473
         exit 798362
446
         exit 798362
474
     fi
447
     fi
475
 
448
 
476
-    function_check identity_server_generate
477
-    identity_server_generate
449
+    if [ ! -f /etc/sydent/sydent.conf ]; then
450
+        echo $'Matrix identity server configuration not generated'
451
+        exit 72528
452
+    fi
453
+
454
+    function_check matrix_configure_identityserver
455
+    matrix_configure_identityserver
478
 
456
 
479
-    if [ ! -f $MATRIX_DATA_DIR/identityserver.yaml ]; then
457
+    if [ ! -f /etc/sydent/sydent.conf ]; then
480
         echo $'Matrix identity server config was not generated'
458
         echo $'Matrix identity server config was not generated'
481
         exit 82352
459
         exit 82352
482
     fi
460
     fi
483
 
461
 
484
-    chmod -R 700 $MATRIX_DATA_DIR/identityserver.yaml
462
+    chmod -R 700 /etc/sydent/sydent.conf
485
     chown -R matrix:matrix /etc/sydent
463
     chown -R matrix:matrix /etc/sydent
486
 
464
 
487
     echo '[Unit]' > /etc/systemd/system/sydent.service
465
     echo '[Unit]' > /etc/systemd/system/sydent.service
492
     echo 'Type=simple' >> /etc/systemd/system/sydent.service
470
     echo 'Type=simple' >> /etc/systemd/system/sydent.service
493
     echo 'User=matrix' >> /etc/systemd/system/sydent.service
471
     echo 'User=matrix' >> /etc/systemd/system/sydent.service
494
     echo "WorkingDirectory=/etc/sydent" >> /etc/systemd/system/sydent.service
472
     echo "WorkingDirectory=/etc/sydent" >> /etc/systemd/system/sydent.service
495
-    echo "ExecStart=/usr/bin/python -m sydent.sydent --config-path ${MATRIX_DATA_DIR}/identityserver.yaml" >> /etc/systemd/system/sydent.service
473
+    echo "ExecStart=/usr/bin/python -m sydent.sydent --config-path /etc/sydent/sydent.conf" >> /etc/systemd/system/sydent.service
496
     echo 'Restart=always' >> /etc/systemd/system/sydent.service
474
     echo 'Restart=always' >> /etc/systemd/system/sydent.service
497
     echo 'RestartSec=10' >> /etc/systemd/system/sydent.service
475
     echo 'RestartSec=10' >> /etc/systemd/system/sydent.service
498
     echo '' >> /etc/systemd/system/sydent.service
476
     echo '' >> /etc/systemd/system/sydent.service
504
 
482
 
505
     sleep 4
483
     sleep 4
506
 
484
 
507
-    if [ ! -f $MATRIX_DATA_DIR/identityserver.db ]; then
485
+    if [ ! -f /etc/sydent/sydent.db ]; then
508
         echo $'No matrix identity server database was created'
486
         echo $'No matrix identity server database was created'
509
         exit 7354383
487
         exit 7354383
510
     fi
488
     fi
511
-    chmod -R 700 $MATRIX_DATA_DIR/identityserver.db
489
+    chmod -R 700 /etc/sydent/sydent.db
512
 }
490
 }
513
 
491
 
514
 function install_home_server {
492
 function install_home_server {
533
         exit 782542
511
         exit 782542
534
     fi
512
     fi
535
 
513
 
514
+    if [ ! -d $MATRIX_DATA_DIR ]; then
515
+        mkdir $MATRIX_DATA_DIR
516
+    fi
517
+
518
+    groupadd matrix
519
+    useradd -c "Matrix system account" -d $MATRIX_DATA_DIR -m -r -g matrix matrix
520
+
536
     function_check install_turn
521
     function_check install_turn
537
     install_turn
522
     install_turn
538
     MATRIX_SECRET="${turnkey}"
523
     MATRIX_SECRET="${turnkey}"
545
         exit 783724
530
         exit 783724
546
     fi
531
     fi
547
 
532
 
548
-    groupadd matrix
549
-    useradd -c "Matrix system account" -d $MATRIX_DATA_DIR -m -r -g matrix matrix
550
-
551
     chmod -R 700 $MATRIX_DATA_DIR/homeserver.yaml
533
     chmod -R 700 $MATRIX_DATA_DIR/homeserver.yaml
552
     chown -R matrix:matrix /etc/matrix
534
     chown -R matrix:matrix /etc/matrix
553
     chown -R matrix:matrix $MATRIX_DATA_DIR
535
     chown -R matrix:matrix $MATRIX_DATA_DIR