mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-10 21:13:11 +00:00
114 lines
3.4 KiB
Python
114 lines
3.4 KiB
Python
"""Class representing Jitsi Meet service"""
|
|
|
|
import base64
|
|
import subprocess
|
|
from typing import List
|
|
|
|
from selfprivacy_api.jobs import Job
|
|
from selfprivacy_api.utils.systemd import (
|
|
get_service_status_from_several_units,
|
|
)
|
|
from selfprivacy_api.services.service import Service, ServiceStatus
|
|
from selfprivacy_api.utils.block_devices import BlockDevice
|
|
from selfprivacy_api.services.jitsimeet.icon import JITSI_ICON
|
|
from selfprivacy_api.services.config_item import (
|
|
StringServiceConfigItem,
|
|
ServiceConfigItem,
|
|
)
|
|
from selfprivacy_api.utils.regex_strings import SUBDOMAIN_REGEX
|
|
|
|
|
|
class JitsiMeet(Service):
|
|
"""Class representing Jitsi service"""
|
|
|
|
config_items: dict[str, ServiceConfigItem] = {
|
|
"subdomain": StringServiceConfigItem(
|
|
id="subdomain",
|
|
default_value="meet",
|
|
description="Subdomain",
|
|
regex=SUBDOMAIN_REGEX,
|
|
widget="subdomain",
|
|
),
|
|
"appName": StringServiceConfigItem(
|
|
id="appName",
|
|
default_value="Jitsi Meet",
|
|
description="The name displayed in the web interface",
|
|
),
|
|
}
|
|
|
|
@staticmethod
|
|
def get_id() -> str:
|
|
"""Return service id."""
|
|
return "jitsi-meet"
|
|
|
|
@staticmethod
|
|
def get_display_name() -> str:
|
|
"""Return service display name."""
|
|
return "JitsiMeet"
|
|
|
|
@staticmethod
|
|
def get_description() -> str:
|
|
"""Return service description."""
|
|
return "Jitsi Meet is a free and open-source video conferencing solution."
|
|
|
|
@staticmethod
|
|
def get_svg_icon() -> str:
|
|
"""Read SVG icon from file and return it as base64 encoded string."""
|
|
return base64.b64encode(JITSI_ICON.encode("utf-8")).decode("utf-8")
|
|
|
|
@staticmethod
|
|
def is_movable() -> bool:
|
|
return False
|
|
|
|
@staticmethod
|
|
def is_required() -> bool:
|
|
return False
|
|
|
|
@staticmethod
|
|
def get_backup_description() -> str:
|
|
return "Secrets that are used to encrypt the communication."
|
|
|
|
@staticmethod
|
|
def get_status() -> ServiceStatus:
|
|
return get_service_status_from_several_units(
|
|
["prosody.service", "jitsi-videobridge2.service", "jicofo.service"]
|
|
)
|
|
|
|
@staticmethod
|
|
def stop():
|
|
subprocess.run(
|
|
["systemctl", "stop", "jitsi-videobridge2.service"],
|
|
check=False,
|
|
)
|
|
subprocess.run(["systemctl", "stop", "jicofo.service"], check=False)
|
|
subprocess.run(["systemctl", "stop", "prosody.service"], check=False)
|
|
|
|
@staticmethod
|
|
def start():
|
|
subprocess.run(["systemctl", "start", "prosody.service"], check=False)
|
|
subprocess.run(
|
|
["systemctl", "start", "jitsi-videobridge2.service"],
|
|
check=False,
|
|
)
|
|
subprocess.run(["systemctl", "start", "jicofo.service"], check=False)
|
|
|
|
@staticmethod
|
|
def restart():
|
|
subprocess.run(["systemctl", "restart", "prosody.service"], check=False)
|
|
subprocess.run(
|
|
["systemctl", "restart", "jitsi-videobridge2.service"],
|
|
check=False,
|
|
)
|
|
subprocess.run(["systemctl", "restart", "jicofo.service"], check=False)
|
|
|
|
@staticmethod
|
|
def get_logs():
|
|
return ""
|
|
|
|
@staticmethod
|
|
def get_folders() -> List[str]:
|
|
return ["/var/lib/jitsi-meet"]
|
|
|
|
def move_to_volume(self, volume: BlockDevice) -> Job:
|
|
raise NotImplementedError("jitsi-meet service is not movable")
|