2022-08-25 17:03:56 +00:00
|
|
|
"""Class representing Nextcloud service."""
|
2024-07-26 19:59:44 +00:00
|
|
|
|
2022-08-25 17:03:56 +00:00
|
|
|
import base64
|
|
|
|
import subprocess
|
2024-07-26 15:33:04 +00:00
|
|
|
from typing import List
|
2024-06-26 11:21:26 +00:00
|
|
|
|
2024-02-18 23:58:00 +00:00
|
|
|
from selfprivacy_api.services.owned_path import OwnedPath
|
2024-03-05 08:55:52 +00:00
|
|
|
from selfprivacy_api.utils.systemd import get_service_status
|
2024-03-01 00:21:31 +00:00
|
|
|
from selfprivacy_api.services.service import Service, ServiceStatus
|
2024-02-18 23:58:00 +00:00
|
|
|
|
2022-08-25 17:03:56 +00:00
|
|
|
from selfprivacy_api.services.pleroma.icon import PLEROMA_ICON
|
|
|
|
|
|
|
|
|
|
|
|
class Pleroma(Service):
|
|
|
|
"""Class representing Pleroma service."""
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_id() -> str:
|
|
|
|
return "pleroma"
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_display_name() -> str:
|
|
|
|
return "Pleroma"
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_description() -> str:
|
|
|
|
return "Pleroma is a microblogging service that offers a web interface and a desktop client."
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_svg_icon() -> str:
|
|
|
|
return base64.b64encode(PLEROMA_ICON.encode("utf-8")).decode("utf-8")
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def is_movable() -> bool:
|
|
|
|
return True
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def is_required() -> bool:
|
|
|
|
return False
|
|
|
|
|
2023-06-29 11:27:08 +00:00
|
|
|
@staticmethod
|
|
|
|
def get_backup_description() -> str:
|
|
|
|
return "Your Pleroma accounts, posts and media."
|
|
|
|
|
2022-08-25 17:03:56 +00:00
|
|
|
@staticmethod
|
|
|
|
def get_status() -> ServiceStatus:
|
|
|
|
return get_service_status("pleroma.service")
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def stop():
|
|
|
|
subprocess.run(["systemctl", "stop", "pleroma.service"])
|
|
|
|
subprocess.run(["systemctl", "stop", "postgresql.service"])
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def start():
|
|
|
|
subprocess.run(["systemctl", "start", "pleroma.service"])
|
|
|
|
subprocess.run(["systemctl", "start", "postgresql.service"])
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def restart():
|
|
|
|
subprocess.run(["systemctl", "restart", "pleroma.service"])
|
|
|
|
subprocess.run(["systemctl", "restart", "postgresql.service"])
|
|
|
|
|
2024-07-26 15:33:04 +00:00
|
|
|
@classmethod
|
|
|
|
def get_configuration(cls):
|
2022-08-25 17:03:56 +00:00
|
|
|
return {}
|
|
|
|
|
2024-07-26 15:33:04 +00:00
|
|
|
@classmethod
|
|
|
|
def set_configuration(cls, config_items):
|
2022-08-25 17:03:56 +00:00
|
|
|
return super().set_configuration(config_items)
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def get_logs():
|
|
|
|
return ""
|
|
|
|
|
2023-04-17 13:47:49 +00:00
|
|
|
@staticmethod
|
2024-03-01 00:21:31 +00:00
|
|
|
def get_owned_folders() -> List[OwnedPath]:
|
2023-04-19 11:34:14 +00:00
|
|
|
"""
|
|
|
|
Get a list of occupied directories with ownership info
|
2024-02-18 23:58:00 +00:00
|
|
|
Pleroma has folders that are owned by different users
|
2023-04-19 11:34:14 +00:00
|
|
|
"""
|
|
|
|
return [
|
|
|
|
OwnedPath(
|
|
|
|
path="/var/lib/pleroma",
|
|
|
|
owner="pleroma",
|
|
|
|
group="pleroma",
|
|
|
|
),
|
|
|
|
OwnedPath(
|
|
|
|
path="/var/lib/postgresql",
|
|
|
|
owner="postgres",
|
|
|
|
group="postgres",
|
|
|
|
),
|
|
|
|
]
|