mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-09 20:53:10 +00:00
5602c96056
Closes #51 Reviewed-on: https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api/pulls/122 Reviewed-by: Inex Code <inex.code@selfprivacy.org> Co-authored-by: Maxim Leshchenko <cnmaks90@gmail.com> Co-committed-by: Maxim Leshchenko <cnmaks90@gmail.com>
35 lines
1,015 B
Python
35 lines
1,015 B
Python
from selfprivacy_api.utils.block_devices import BlockDevices
|
|
from selfprivacy_api.jobs import Jobs, Job
|
|
|
|
from selfprivacy_api.services import get_service_by_id
|
|
from selfprivacy_api.services.tasks import move_service as move_service_task
|
|
|
|
|
|
class ServiceNotFoundError(Exception):
|
|
pass
|
|
|
|
|
|
class VolumeNotFoundError(Exception):
|
|
pass
|
|
|
|
|
|
def move_service(service_id: str, volume_name: str) -> Job:
|
|
service = get_service_by_id(service_id)
|
|
if service is None:
|
|
raise ServiceNotFoundError(f"No such service:{service_id}")
|
|
|
|
volume = BlockDevices().get_block_device(volume_name)
|
|
if volume is None:
|
|
raise VolumeNotFoundError(f"No such volume:{volume_name}")
|
|
|
|
service.assert_can_move(volume)
|
|
|
|
job = Jobs.add(
|
|
type_id=f"services.{service.get_id()}.move",
|
|
name=f"Move {service.get_display_name()}",
|
|
description=f"Moving {service.get_display_name()} data to {volume.get_display_name().lower()}",
|
|
)
|
|
|
|
move_service_task(service, volume, job)
|
|
return job
|