Procházet zdrojové kódy

Fix identity server

Bob Mottram před 8 roky
rodič
revize
7a966bb0a9
1 změnil soubory, kde provedl 28 přidání a 46 odebrání
  1. 28
    46
      src/freedombone-app-matrix

+ 28
- 46
src/freedombone-app-matrix Zobrazit soubor

@@ -37,7 +37,7 @@ SHOW_ON_ABOUT=1
37 37
 
38 38
 MATRIX_DATA_DIR='/var/lib/matrix'
39 39
 MATRIX_PORT=8448
40
-MATRID_ID_PORT=8090
40
+MATRID_ID_PORT=8081
41 41
 MATRIX_REPO="https://github.com/matrix-org/synapse"
42 42
 MATRIX_COMMIT='f5a4001bb116c468cc5e8e0ae04a1c570e2cb171'
43 43
 SYDENT_REPO="https://github.com/matrix-org/sydent"
@@ -187,17 +187,6 @@ function matrix_generate_homeserver_file {
187 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 190
 function matrix_configure_homeserver_yaml {
202 191
     local turnkey="${1}"
203 192
     local filepath="${2}"
@@ -232,14 +221,15 @@ function matrix_configure_homeserver_yaml {
232 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 235
 function matrix_diff {
@@ -270,23 +260,6 @@ function matrix_generate {
270 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 263
 function remove_user_matrix {
291 264
     remove_username="$1"
292 265
 
@@ -473,15 +446,20 @@ function install_identity_server {
473 446
         exit 798362
474 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 458
         echo $'Matrix identity server config was not generated'
481 459
         exit 82352
482 460
     fi
483 461
 
484
-    chmod -R 700 $MATRIX_DATA_DIR/identityserver.yaml
462
+    chmod -R 700 /etc/sydent/sydent.conf
485 463
     chown -R matrix:matrix /etc/sydent
486 464
 
487 465
     echo '[Unit]' > /etc/systemd/system/sydent.service
@@ -492,7 +470,7 @@ function install_identity_server {
492 470
     echo 'Type=simple' >> /etc/systemd/system/sydent.service
493 471
     echo 'User=matrix' >> /etc/systemd/system/sydent.service
494 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 474
     echo 'Restart=always' >> /etc/systemd/system/sydent.service
497 475
     echo 'RestartSec=10' >> /etc/systemd/system/sydent.service
498 476
     echo '' >> /etc/systemd/system/sydent.service
@@ -504,11 +482,11 @@ function install_identity_server {
504 482
 
505 483
     sleep 4
506 484
 
507
-    if [ ! -f $MATRIX_DATA_DIR/identityserver.db ]; then
485
+    if [ ! -f /etc/sydent/sydent.db ]; then
508 486
         echo $'No matrix identity server database was created'
509 487
         exit 7354383
510 488
     fi
511
-    chmod -R 700 $MATRIX_DATA_DIR/identityserver.db
489
+    chmod -R 700 /etc/sydent/sydent.db
512 490
 }
513 491
 
514 492
 function install_home_server {
@@ -533,6 +511,13 @@ function install_home_server {
533 511
         exit 782542
534 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 521
     function_check install_turn
537 522
     install_turn
538 523
     MATRIX_SECRET="${turnkey}"
@@ -545,9 +530,6 @@ function install_home_server {
545 530
         exit 783724
546 531
     fi
547 532
 
548
-    groupadd matrix
549
-    useradd -c "Matrix system account" -d $MATRIX_DATA_DIR -m -r -g matrix matrix
550
-
551 533
     chmod -R 700 $MATRIX_DATA_DIR/homeserver.yaml
552 534
     chown -R matrix:matrix /etc/matrix
553 535
     chown -R matrix:matrix $MATRIX_DATA_DIR