mirror of
https://github.com/runcitadel/core.git
synced 2024-11-13 17:30:38 +00:00
177 lines
6.0 KiB
Python
Executable File
177 lines
6.0 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# SPDX-FileCopyrightText: 2021-2022 Citadel and contributors
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import argparse
|
|
import json
|
|
import os
|
|
|
|
from lib.manage import (compose, convert_to_upper, createDataDir, deleteData,
|
|
download, downloadAll, get_var_safe,
|
|
getAvailableUpdates, getUserData, setInstalled,
|
|
setRemoved, update)
|
|
|
|
# Print an error if user is not root
|
|
if os.getuid() != 0:
|
|
print('This script must be run as root!')
|
|
exit(1)
|
|
|
|
# The directory with this script
|
|
scriptDir = os.path.dirname(os.path.realpath(__file__))
|
|
nodeRoot = os.path.join(scriptDir, "..")
|
|
appsDir = os.path.join(nodeRoot, "apps")
|
|
appDataDir = os.path.join(nodeRoot, "app-data")
|
|
userFile = os.path.join(nodeRoot, "db", "user.json")
|
|
legacyScript = os.path.join(nodeRoot, "scripts", "app")
|
|
|
|
parser = argparse.ArgumentParser(description="Manage apps on your Citadel")
|
|
parser.add_argument('action', help='What to do with the app database.', choices=[
|
|
"download", "generate", "update", "list-updates", "ls-installed", "install", "uninstall", "stop", "start", "compose", "restart", "get-ip"])
|
|
parser.add_argument('--verbose', '-v', action='store_true')
|
|
parser.add_argument(
|
|
'app', help='Optional, the app to perform an action on. (For install, uninstall, stop, start and compose)', nargs='?')
|
|
parser.add_argument(
|
|
'other', help='Anything else (For compose)', nargs="*")
|
|
args = parser.parse_args()
|
|
|
|
# If no action is specified, the list action is used
|
|
if args.action is None:
|
|
args.action = 'list'
|
|
|
|
if args.action == "list-updates":
|
|
getAvailableUpdates()
|
|
exit(0)
|
|
elif args.action == 'download':
|
|
downloadAll()
|
|
exit(0)
|
|
elif args.action == 'generate':
|
|
update()
|
|
exit(0)
|
|
elif args.action == 'update':
|
|
if args.app is None:
|
|
downloadAll()
|
|
print("Downloaded all updates")
|
|
else:
|
|
download(args.app)
|
|
print("Downloaded latest {} version".format(args.app))
|
|
update()
|
|
exit(0)
|
|
elif args.action == 'ls-installed':
|
|
# Load the userFile as JSON, check if installedApps is in it, and if so, print the apps
|
|
with open(userFile, "r") as f:
|
|
userData = json.load(f)
|
|
if "installedApps" in userData:
|
|
print("\n".join(userData["installedApps"]))
|
|
else:
|
|
# To match the behavior of the old script, print a newline if there are no apps installed
|
|
print("\n")
|
|
elif args.action == 'install':
|
|
if not args.app:
|
|
print("No app provided")
|
|
exit(1)
|
|
with open(os.path.join(appsDir, "virtual-apps.json"), "r") as f:
|
|
virtual_apps = json.load(f)
|
|
userData = getUserData()
|
|
implements_service = False
|
|
for virtual_app in virtual_apps.keys():
|
|
implementations = virtual_apps[virtual_app]
|
|
if args.app in implementations:
|
|
for implementation in implementations:
|
|
if "installedApps" in userData and implementation in userData["installedApps"]:
|
|
print("Another implementation of {} is already installed: {}. Uninstall it first to install this app.".format(virtual_app, implementation))
|
|
exit(1)
|
|
implements_service = virtual_app
|
|
createDataDir(args.app)
|
|
compose(args.app, "pull")
|
|
compose(args.app, "up --detach")
|
|
setInstalled(args.app)
|
|
if implements_service:
|
|
setInstalled(implements_service)
|
|
update()
|
|
|
|
elif args.action == 'uninstall':
|
|
if not args.app:
|
|
print("No app provided")
|
|
exit(1)
|
|
userData = getUserData()
|
|
if not "installedApps" in userData or args.app not in userData["installedApps"]:
|
|
print("App {} is not installed".format(args.app))
|
|
exit(1)
|
|
print("Stopping app {}...".format(args.app))
|
|
try:
|
|
compose(args.app, "rm --force --stop")
|
|
print("Deleting data...")
|
|
deleteData(args.app)
|
|
except:
|
|
pass
|
|
print("Removing from the list of installed apps...")
|
|
setRemoved(args.app)
|
|
with open(os.path.join(appsDir, "virtual-apps.json"), "r") as f:
|
|
virtual_apps = json.load(f)
|
|
implements_service = False
|
|
for virtual_app in virtual_apps.keys():
|
|
implementations = virtual_apps[virtual_app]
|
|
if args.app in implementations:
|
|
setRemoved(virtual_app)
|
|
update()
|
|
|
|
elif args.action == 'stop':
|
|
if not args.app:
|
|
print("No app provided")
|
|
exit(1)
|
|
userData = getUserData()
|
|
print("Stopping app {}...".format(args.app))
|
|
compose(args.app, "rm --force --stop")
|
|
elif args.action == 'start':
|
|
if not args.app:
|
|
print("No app provided")
|
|
exit(1)
|
|
|
|
userData = getUserData()
|
|
if not "installedApps" in userData or args.app not in userData["installedApps"]:
|
|
print("App {} is not yet installed".format(args.app))
|
|
exit(1)
|
|
compose(args.app, "up --detach")
|
|
|
|
elif args.action == 'restart':
|
|
if not args.app:
|
|
print("No app provided")
|
|
exit(1)
|
|
|
|
userData = getUserData()
|
|
if not "installedApps" in userData or args.app not in userData["installedApps"]:
|
|
print("App {} is not yet installed".format(args.app))
|
|
exit(1)
|
|
compose(args.app, "rm --force --stop")
|
|
compose(args.app, "up --detach")
|
|
|
|
elif args.action == 'compose':
|
|
if not args.app:
|
|
print("No app provided")
|
|
exit(1)
|
|
compose(args.app, " ".join(args.other))
|
|
|
|
elif args.action == "get-ip":
|
|
if args.app == "":
|
|
print("Missing app")
|
|
exit(1)
|
|
with open(os.path.join(appsDir, "virtual-apps.json"), "r") as f:
|
|
virtual_apps = json.load(f)
|
|
userData = getUserData()
|
|
implements_service = False
|
|
if args.app in virtual_apps:
|
|
for implementation in virtual_apps[args.app]:
|
|
if "installedApps" in userData and implementation in userData["installedApps"]:
|
|
print(get_var_safe("APP_{}_SERVICE_IP".format(convert_to_upper(implementation))))
|
|
exit(0)
|
|
else:
|
|
print("Not an virtual app")
|
|
exit(1)
|
|
|
|
else:
|
|
print("Error: Unknown action")
|
|
print("See --help for usage")
|
|
exit(1)
|