Each app now carries everything under containers/<app>/: Tools-tab actions in tools/ (declaration <app>.tools.json + function <app>_<tool_id>.sh) and logic helpers in scripts/ (e.g. <app>_auth.sh). The container scan live-sources every .sh under the app (maxdepth 3, prunes only resources/) and webui_tools.sh auto-merges the .tools.json, so an app is a true drop-in — no central edit, no array regen. - Empty the central webui_tools.sh heredoc; all 34 tools across 11 apps now come from per-app declarations (verified byte-identical to the old output). - Retire the orphaned mattermost tool scripts to scripts/unused (there is no containers/mattermost; its install fn already lived in unused). - Update the dispatch comment/error path, the auth-adapter doc, and DEVELOPMENT.md to the new convention. - Regenerate static arrays (files_app.sh no longer lists app/containers/*). Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
25 lines
1.0 KiB
Bash
25 lines
1.0 KiB
Bash
#!/bin/bash
|
|
|
|
# Append a hostname to Nextcloud's trusted_domains array — required for any
|
|
# host Nextcloud should accept HTTP requests on. The index is auto-picked as
|
|
# `last + 1` from the existing array so we never collide.
|
|
|
|
appNextcloudAddTrustedDomain() {
|
|
local args="$1"
|
|
local domain
|
|
domain="$(authToolArg "$args" domain)"
|
|
[[ -z "$domain" ]] && { isError "Domain is required."; return 1; }
|
|
|
|
local current_count
|
|
current_count=$(runFileOp docker exec -u www-data nextcloud-service php occ config:system:get trusted_domains 2>/dev/null | grep -c '^\s*[0-9]')
|
|
[[ -z "$current_count" || "$current_count" -lt 1 ]] && current_count=1
|
|
|
|
local out
|
|
out=$(runFileOp docker exec -u www-data nextcloud-service php occ config:system:set trusted_domains "$current_count" --value="$domain" 2>&1)
|
|
if echo "$out" | grep -qi "system config value\|set to string"; then
|
|
isSuccessful "Nextcloud trusted_domains[$current_count] = $domain"
|
|
return 0
|
|
fi
|
|
isError "Nextcloud add-trusted-domain failed: $out"; return 1
|
|
}
|