diff options
author | Cullum Smith <cullum@sacredheartsc.com> | 2025-03-25 21:24:12 -0400 |
---|---|---|
committer | Cullum Smith <cullum@sacredheartsc.com> | 2025-03-25 21:24:12 -0400 |
commit | d58dac1bb32b87e79e16a2e9777a6dced701aa3b (patch) | |
tree | f273075417e09566ec6d7a63d1627429909295a1 /scripts | |
parent | 9ffc950b5296374f387bfc689806d7af717bb78a (diff) | |
download | infrastructure-d58dac1bb32b87e79e16a2e9777a6dced701aa3b.tar.gz |
add mollysocket support to xmpp server
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/hostclass/xmpp_server/10-prosody (renamed from scripts/hostclass/xmpp_server) | 5 | ||||
-rw-r--r-- | scripts/hostclass/xmpp_server/20-mollysocket | 61 |
2 files changed, 65 insertions, 1 deletions
diff --git a/scripts/hostclass/xmpp_server b/scripts/hostclass/xmpp_server/10-prosody index 621f688..3383282 100644 --- a/scripts/hostclass/xmpp_server +++ b/scripts/hostclass/xmpp_server/10-prosody @@ -35,13 +35,16 @@ prosody_https_cacert="${acme_cert_dir}/nginx.ca.crt" prosody_https_cert="${acme_cert_dir}/nginx.crt" prosody_https_key="${acme_cert_dir}/nginx.key" +mollysocket_local_port=8081 + # Install required packages. pkg install -y \ prosody \ prosody-modules \ lua54-luadbi \ lua54-lualdap \ - nginx + nginx \ + ca_root_nss # Create ZFS dataset for HTTP upload files. create_dataset -o "mountpoint=${prosody_db_dir}" "${state_dataset}/prosody" diff --git a/scripts/hostclass/xmpp_server/20-mollysocket b/scripts/hostclass/xmpp_server/20-mollysocket new file mode 100644 index 0000000..9bed162 --- /dev/null +++ b/scripts/hostclass/xmpp_server/20-mollysocket @@ -0,0 +1,61 @@ +#!/bin/sh + +# mollysocket allows sending push notifications to Molly (Signal clone) +# via UnifiedPush. + +: ${mollysocket_repo='https://github.com/mollyim/mollysocket'} +: ${mollysocket_branch='1.6.0'} +: ${mollysocket_vapid_key='changeme'} + +mollysocket_username=mollysocket +mollysocket_uid=794 +mollysocket_home=/usr/local/mollysocket +mollysocket_repo_dir="${mollysocket_home}/mollysocket.git" +mollysocket_db_dir=/var/db/mollysocket +mollysocket_conf_file=/usr/local/etc/mollysocket.conf + +# Install required packages. +pkg install -y \ + git-lite \ + rust \ + sqlite3 + +# Add local mollysocket user. +add_user \ + -u "$mollysocket_uid" \ + -c "Mollysocket User" \ + -d "$mollysocket_home" \ + -s /usr/sbin/nologin \ + "$mollysocket_username" + +# Create persistent ZFS dataset for mollysocket's sqlite db. +create_dataset -o "mountpoint=${mollysocket_db_dir}" "${state_dataset}/mollysocket" + +# Set permissions on the mollysocket db directory. +install_directory -m 0770 -o "$mollysocket_username" -g "$mollysocket_username" "$mollysocket_db_dir" + +# Create mollysocket home directory. +install_directory -o "$mollysocket_username" -g "$mollysocket_username" -m 0775 "$mollysocket_home" + +# Clone mollysocket git repo. +[ -d "${mollysocket_repo_dir}" ] || su -m "$mollysocket_username" -c \ + "git clone ${mollysocket_repo} ${mollysocket_repo_dir}" + +# Update mollysocket git repo. +su -m "$mollysocket_username" -c "git -C ${mollysocket_repo_dir} fetch" +su -m "$mollysocket_username" -c "git -C ${mollysocket_repo_dir} switch --detach ${mollysocket_branch}" + +# Build mollysocket. +( cd "$mollysocket_repo_dir" + su -m "$mollysocket_username" -c "HOME=${mollysocket_home} RUSTFLAGS=-L/usr/local/lib cargo build --release" +) + +# Copy mollysocket rc.d script. +install_file -m 0555 /usr/local/etc/rc.d/mollysocket + +# Copy mollysocket config file. +install_template -m 0640 -g "$mollysocket_username" "$mollysocket_conf_file" + +# Enable and start mollysocket. +sysrc -v mollysocket_enable=YES +service mollysocket restart |