2022-07-25 14:08:31 +00:00
|
|
|
"""Storage queries."""
|
|
|
|
# pylint: disable=too-few-public-methods
|
|
|
|
import typing
|
|
|
|
import strawberry
|
|
|
|
|
2022-08-25 17:03:56 +00:00
|
|
|
from selfprivacy_api.graphql.common_types.service import (
|
|
|
|
StorageVolume,
|
|
|
|
)
|
|
|
|
from selfprivacy_api.utils.block_devices import BlockDevices
|
2022-07-25 14:08:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
@strawberry.type
|
|
|
|
class Storage:
|
2022-07-30 14:48:33 +00:00
|
|
|
"""GraphQL queries to get storage information."""
|
|
|
|
|
2022-07-25 14:08:31 +00:00
|
|
|
@strawberry.field
|
|
|
|
def volumes(self) -> typing.List[StorageVolume]:
|
|
|
|
"""Get list of volumes"""
|
|
|
|
return [
|
|
|
|
StorageVolume(
|
2022-07-30 14:48:33 +00:00
|
|
|
total_space=str(volume.fssize)
|
|
|
|
if volume.fssize is not None
|
|
|
|
else str(volume.size),
|
2022-07-25 14:17:57 +00:00
|
|
|
free_space=str(volume.fsavail),
|
|
|
|
used_space=str(volume.fsused),
|
2023-07-28 00:14:50 +00:00
|
|
|
root=volume.is_root(),
|
2022-07-25 14:08:31 +00:00
|
|
|
name=volume.name,
|
2022-07-30 14:48:33 +00:00
|
|
|
model=volume.model,
|
|
|
|
serial=volume.serial,
|
|
|
|
type=volume.type,
|
2022-07-25 14:08:31 +00:00
|
|
|
)
|
|
|
|
for volume in BlockDevices().get_block_devices()
|
|
|
|
]
|