Skip to content

core

This module implement a database as a local file structure.

Assuming that the FSDB root database directory is dbroot/, there is a Scan with 'myscan_001' as Scan.id and there are some metadata (see below), you should have the following file structure:

    dbroot/                            # base directory of the database
    ├── myscan_001/                    # scan dataset directory, id=`myscan_001`
    │   ├── files.json                 # JSON file referencing the all files for the dataset
    │   ├── images/                    # `Fileset` gathering the 'images'
    │   │   ├── scan_img_01.jpg        # 'image' `File` 01
    │   │   ├── scan_img_02.jpg        # 'image' `File` 02
    │   │   ├── [...]                  #
    │   │   └── scan_img_99.jpg        # 'image' `File` 99
    │   ├── metadata/                  # metadata directory
    │   │   ├── images                 # 'images' metadata directory
    │   │   │   ├── scan_img_01.json   # JSON metadata attached to this file
    │   │   │   ├── scan_img_02.json   #
    │   │   │   [...]                  #
    │   │   │   └── scan_img_99.json   #
    │   │   ├── Task_A/                # optional, only present if metadata attached to one of the outputs from `Task_A`
    │   │   │   └── outfile.json       # optional metadata attached to the output file from `Task_A`
    │   │   └── (metadata.json)        # optional metadata attached to the dataset
    │   ├── task_A/                    # `Fileset` gathering the outputs of `Task_A`
    │   │   └── outfile.ext            # output file from `Task_A`
    │   └── (measures.json)            # optional manual measurements file
    ├── myscan_002/                    # scan dataset directory, id=`myscan_002`
    :
    ├── users.json                     # user registry
    └── MARKER_FILE_NAME               # ROMI DB marker file

The myscan_001/files.json file then contains the following structure:

{
    "filesets": [
        {
            "id": "images",
            "files": [
                {
                    "id": "scan_img_01",
                    "file": "scan_img_01.jpg"
                },
                {
                    "id": "scan_img_02",
                    "file": "scan_img_02.jpg"
                },
                [...]
                {
                    "id": "scan_img_99",
                    "file": "scan_img_99.jpg"
                }
            ]
        }
    ]
}

The metadata of the scan (metadata.json), of the set of 'images' files (<Fileset.id>.json) and of each 'image' files (<File.id>.json) are all stored as JSON files in a separate directory:

myscan_001/metadata/
myscan_001/metadata/metadata.json
myscan_001/metadata/images.json
myscan_001/metadata/images/scan_img_01.json
myscan_001/metadata/images/scan_img_02.json
[...]
myscan_001/metadata/images/scan_img_99.json

FSDB Link

Bases: DB

Implement a local File System DataBase version of abstract class db.DB.

Implement as a simple local file structure with the following directory structure and marker files: * directory ${FSDB.basedir} as the database root directory; * marker file MARKER_FILE_NAME at the database root directory;

Attributes:

Name Type Description
basedir Path

The absolute path to the base directory hosting the database.

scans dict[str, Scan]

The dictionary of Scan instances attached to the database, indexed by their identifier.

is_connected bool

True if the database is connected (locked directory), else False.

required_filesets List[str]

A list of required filesets to consider a scan valid. Set it to None to accept any subdirectory of basedir as a valid scan. Defaults to ['metadata'].

logger Logger

An instance to use for logging. Defaults to the module logger.

session_manager Union[SingleSessionManager, SessionManager, JWTSessionManager]

The session manager to use for session authentication.

lock_manager ScanLockManager

Manager for scanning lock operations.

rbac_manager RBACManager

Manager for role-based access control.

Notes

Requires the marker file MARKER_FILE_NAME at the given basedir.

See Also

plantdb.commons.db.DB plantdb.commons.fsdb.core.MARKER_FILE_NAME

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> # EXAMPLE 1: Use a temporary dummy local database:
>>> db = dummy_db()
>>> print(type(db))
<class 'plantdb.commons.fsdb.core.FSDB'>
>>> print(db.path())
/tmp/romidb_********
>>> # Create a new `Scan`:
>>> new_scan = db.create_scan("007")
>>> print(type(new_scan))
<class 'plantdb.commons.fsdb.core.Scan'>
>>> db.disconnect()  # clean up (delete) the temporary dummy database
>>> # EXAMPLE 2: Use a local database with a :
>>> import os
>>> from plantdb.commons.fsdb.core import FSDB
>>> db = FSDB(os.environ.get('ROMI_DB', "/data/ROMI/DB/"), log_level="DEBUG")
>>> db.connect()
>>> token = db.login('guest', 'guest')
>>> scan_ids = db.list_scans(owner_only=False, token=token)
>>> [scan.id for scan in db.get_scans(token=token)]  # list scan ids found in database
>>> scan = db.get_scans()[1]
>>> [fs.id for fs in scan.get_filesets()]  # list fileset ids found in scan
>>> db.disconnect()  # clean up (delete) the temporary dummy database

Database constructor.

Check the given basedir directory exists and load accessible Scan objects.

Parameters:

Name Type Description Default

basedir Link

str or Path

The path to the root directory of the database.

required

required_filesets Link

list of str

A list of required filesets to consider a scan valid. By default, None, will set it to ['metadata'] to define as a "scan" the subdirectories with a 'metadata' directory. Use [] to accept any subdirectory of basedir as a valid "scan".

None

logger Link

Logger

Logger instance to use for logging. Defaults to the module logger.

None

session_manager Link

SessionManager

The session manager to use for session authentication. Defaults to NoAuthSessionManager if 'no_auth' kwarg is set to `True, elseSingleSessionManager``.

None

session_timeout Link

int

Session timeout in seconds. Defaults to 3600 (1 hour).

3600

lockout_duration Link

int

The number of seconds to wait for a lockout before giving up. Defaults to 900 seconds (15 minutes).

900

max_login_attempts Link

int

The maximum number of attempts to login before locking up. Defaults to 3.

3

max_concurrent_sessions Link

int

The maximum number of concurrent sessions to login before locking up. Defaults to 10.

10

Other Parameters:

Name Type Description
log_level str

A logging level to set for the logger. Defaults to INFO.

no_auth bool

A boolean flag to switch between session managers. If True, use NoAuthSessionManager else use SingleSessionManager.

Raises:

Type Description
NotADirectoryError

If the given basedir is not an existing directory.

NotAnFSDBError

If the MARKER_FILE_NAME is missing from the basedir.

See Also

plantdb.commons.fsdb.core.MARKER_FILE_NAME

Source code in plantdb/commons/fsdb/core.py
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
def __init__(self, basedir: Union[str, Path],
             required_filesets: Optional[List[str]] = None,
             logger: Optional[logging.Logger] = None,
             session_manager: SessionManager = None,
             session_timeout: int = 3600, max_login_attempts: int = 3,
             lockout_duration: int = 900, max_concurrent_sessions: int = 10, **kwargs):
    """Database constructor.

    Check the given `` basedir `` directory exists and load accessible ``Scan`` objects.

    Parameters
    ----------
    basedir : str or pathlib.Path
        The path to the root directory of the database.
    required_filesets : list of str, optional
        A list of required filesets to consider a scan valid.
        By default, ``None``, will set it to ``['metadata']`` to define as a "scan" the subdirectories with a 'metadata' directory.
        Use `[]` to accept any subdirectory of `basedir` as a valid "scan".
    logger : logging.Logger, optional
        Logger instance to use for logging. Defaults to the module logger.
    session_manager : SessionManager, optional
        The session manager to use for session authentication.
        Defaults to ``NoAuthSessionManager`` if ``'no_auth'`` kwarg is set to `True``, else ``SingleSessionManager``.
    session_timeout : int, optional
        Session timeout in seconds.
        Defaults to 3600 (1 hour).
    lockout_duration : int, optional
        The number of seconds to wait for a lockout before giving up.
        Defaults to 900 seconds (15 minutes).
    max_login_attempts : int, optional
        The maximum number of attempts to login before locking up.
        Defaults to 3.
    max_concurrent_sessions : int, optional
        The maximum number of concurrent sessions to login before locking up.
        Defaults to 10.

    Other Parameters
    ----------------
    log_level : str
        A logging level to set for the logger. Defaults to ``INFO``.
    no_auth : bool
        A boolean flag to switch between session managers.
        If ``True``, use `NoAuthSessionManager` else use `SingleSessionManager`.

    Raises
    ------
    NotADirectoryError
        If the given `basedir` is not an existing directory.
    NotAnFSDBError
        If the `MARKER_FILE_NAME` is missing from the `basedir`.

    See Also
    --------
    plantdb.commons.fsdb.core.MARKER_FILE_NAME
    """
    super().__init__()
    self.logger = logger or get_logger(__class__.__name__,
                                       log_level=kwargs.get('log_level', DEFAULT_LOG_LEVEL))

    basedir = Path(basedir)
    # Check the given path to the root directory of the database is a directory:
    if not basedir.is_dir():
        raise NotADirectoryError(f"Directory {basedir} does not exists!")
    self.basedir = Path(basedir).resolve()
    self.scans = {}
    self.is_connected: bool = False
    self.required_filesets = required_filesets or ['metadata']

    # Initialize lock manager
    self.lock_manager = LockManager(basedir)

    # Initialize the session manager
    if session_manager is None:
        if kwargs.get('no_auth', False):
            self.session_manager = NoAuthSessionManager(session_timeout=session_timeout)
        else:
            self.session_manager = SingleSessionManager(session_timeout=session_timeout)
    elif isinstance(session_manager,
                    (SingleSessionManager, SessionManager, JWTSessionManager, NoAuthSessionManager)):
        self.session_manager = session_manager
    else:
        raise ValueError(
            f"session_manager must be an instance of 'SingleSessionManager', 'SessionManager', "
            f" 'JWTSessionManager' or 'NoAuthSessionManager', got {type(session_manager)}"
        )

    if isinstance(self.session_manager, NoAuthSessionManager):
        # Create a temporary directory with empty to avoid enabling access to real user & groups data
        manager_dir = Path(tempfile.mkdtemp(prefix='plantdb-'))
    else:
        # Will use/create the real users & groups JSON files in basedir
        manager_dir = basedir

    # Initialize RBAC manager with users & groups files
    users_file = manager_dir / "users.json"
    users_file.touch(exist_ok=True)  # create the file if missing
    groups_file = manager_dir / "groups.json"
    groups_file.touch(exist_ok=True)  # create the file if missing
    self.rbac_manager = RBACManager(users_file, groups_file, max_login_attempts, lockout_duration)

add_user_to_group Link

add_user_to_group(group_name, user, current_user=None, **kwargs)

Add a user to a group.

Parameters:

Name Type Description Default

group_name Link

str

Name of the group to add the user to.

required

user Link

str

Name of the user to add to the group.

required

Other Parameters:

Name Type Description
username str

The username formulating the request.

token str

A token referring to the username formulating the request.

Returns:

Type Description
bool

True if the user was successfully added to the group, False otherwise.

Raises:

Type Description
PermissionError

If no user is authenticated. If the authenticated user lacks permission to modify the group.

Examples:

>>> from plantdb.commons.auth.models import Role
>>> from plantdb.commons.test_database import test_database
>>> db = test_database()
>>> db.connect()
>>> token = db.login('admin', 'admin')
>>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
>>> group_a = db.create_group('groupA', ['batman'], description="The group A.")
>>> print(group_a.users)
{'admin', 'batman'}
>>> db.create_user('hquinn', 'Harley Quinn', 'joker', roles=Role.READER)
>>> db.add_user_to_group('groupA', 'hquinn')
>>> print(group_a.users)
{'hquinn', 'batman', 'admin'}
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
@get_authentication
@require_authentication
def add_user_to_group(self, group_name, user, current_user=None, **kwargs):
    """Add a user to a group.

    Parameters
    ----------
    group_name : str
        Name of the group to add the user to.
    user : str
        Name of the user to add to the group.

    Other Parameters
    ----------------
    username : str
        The username formulating the request.
    token : str
        A token referring to the username formulating the request.

    Returns
    -------
    bool
        ``True`` if the `user` was successfully added to the group, ``False`` otherwise.

    Raises
    ------
    PermissionError
        If no user is authenticated.
        If the authenticated user lacks permission to modify the group.

    Examples
    --------
    >>> from plantdb.commons.auth.models import Role
    >>> from plantdb.commons.test_database import test_database
    >>> db = test_database()
    >>> db.connect()
    >>> token = db.login('admin', 'admin')
    >>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
    >>> group_a = db.create_group('groupA', ['batman'], description="The group A.")
    >>> print(group_a.users)
    {'admin', 'batman'}
    >>> db.create_user('hquinn', 'Harley Quinn', 'joker', roles=Role.READER)
    >>> db.add_user_to_group('groupA', 'hquinn')
    >>> print(group_a.users)
    {'hquinn', 'batman', 'admin'}
    >>> db.disconnect()
    """
    if not self.rbac_manager.add_user_to_group(current_user, group_name, user):
        raise PermissionError("Insufficient permissions or operation failed")
    return True

cleanup_scan_locks Link

cleanup_scan_locks()

Emergency cleanup of all scan locks. Use with caution - only call when you're sure no operations are in progress.

Source code in plantdb/commons/fsdb/core.py
1176
1177
1178
1179
1180
1181
def cleanup_scan_locks(self) -> None:
    """Emergency cleanup of all scan locks.
    Use with caution - only call when you're sure no operations are in progress.
    """
    self.lock_manager.cleanup_all_locks()
    self.logger.warning("All scan locks have been cleaned up")

connect Link

connect()

Connect the database by loading the scans' dataset.

Source code in plantdb/commons/fsdb/core.py
707
708
709
710
711
712
713
714
715
716
717
718
def connect(self) -> bool:
    """Connect the database by loading the scans' dataset."""
    try:
        # Initialize scan discovery
        self.scans = _load_scans(self)
        self.is_connected = True
        self.logger.info("Successfully connected to the database")
    except Exception as e:
        self.logger.error(f"Failed to connect to database: {e}")
        raise

    return True

create_api_token Link

create_api_token(token_exp, datasets, current_user=None, **kwargs)

Creates an API token for the current user with optional dataset permissions.

This method generates a new API token using the session manager, which must be an instance of JWTSessionManager. The token is valid for a specified expiration duration and optionally includes permissions for datasets. The generated token can be used for authenticated API access.

Parameters:

Name Type Description Default

token_exp Link

int

The expiration duration of the API token in seconds.

required

datasets Link

dict[str, list[Permission] | Permission]

A dictionary where the keys are dataset names, and the values are either a tuple of Permission instances or a single Permission instance defining the access levels for each dataset.

required

current_user Link

User

The user object representing the currently authenticated user. The username from this object is used to associate the API token.

None

Other Parameters:

Name Type Description
token str

The token to use to authenticate against the JWTSessionManager.

Returns:

Type Description
str

The generated API token.

Examples:

>>> from plantdb.commons.test_database import test_database
>>> from plantdb.commons.auth.session import JWTSessionManager
>>> from plantdb.commons.auth.models import Permission
>>> db = test_database(session_manager=JWTSessionManager())
>>> db.connect()
>>> access_token, refresh_token = db.login('admin', 'admin')
>>> api_token = db.create_api_token(3600, {'real_plant_analyzed': [Permission.WRITE]}, token=access_token)
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
@require_connected_db
@get_authentication
@require_authentication
def create_api_token(
        self, token_exp: int,
        datasets: dict[str, list[Permission] | Permission],
        current_user: User | None = None, **kwargs
) -> str:
    """
    Creates an API token for the current user with optional dataset permissions.

    This method generates a new API token using the session manager, which must
    be an instance of `JWTSessionManager`. The token is valid for a specified
    expiration duration and optionally includes permissions for datasets. The
    generated token can be used for authenticated API access.

    Parameters
    ----------
    token_exp : int
        The expiration duration of the API token in seconds.
    datasets : dict[str, list[Permission] | Permission]
        A dictionary where the keys are dataset names, and the values are either
        a tuple of `Permission` instances or a single `Permission` instance
        defining the access levels for each dataset.
    current_user : plantdb.commons.fsdb.auth.models.User, optional
        The user object representing the currently authenticated user. The username
        from this object is used to associate the API token.

    Other Parameters
    ----------------
    token : str
        The token to use to authenticate against the ``JWTSessionManager``.

    Returns
    -------
    str
        The generated API token.

    Examples
    --------
    >>> from plantdb.commons.test_database import test_database
    >>> from plantdb.commons.auth.session import JWTSessionManager
    >>> from plantdb.commons.auth.models import Permission
    >>> db = test_database(session_manager=JWTSessionManager())
    >>> db.connect()
    >>> access_token, refresh_token = db.login('admin', 'admin')
    >>> api_token = db.create_api_token(3600, {'real_plant_analyzed': [Permission.WRITE]}, token=access_token)
    >>> db.disconnect()
    """
    if not isinstance(self.session_manager, JWTSessionManager):
        raise RuntimeError("Session manager must be an instance of JWTSessionManager.")

    return self.session_manager.create_api_token(current_user.username, token_exp, datasets)

create_group Link

create_group(name, users=None, description=None, current_user=None, **kwargs)

Create a new group.

Parameters:

Name Type Description Default

name Link

str

Unique name for the group.

required

users Link

set

Initial set of users to add to the group.

None

description Link

str

An optional description of the group.

None

Other Parameters:

Name Type Description
username str

The username formulating the request.

token str

A token referring to the username formulating the request.

Returns:

Type Description
Optional[Group]

The created group object if successful, None otherwise.

Raises:

Type Description
PermissionError

If no user is authenticated. If the user lacks permission to create groups.

ValueError

If the group already exists.

Examples:

>>> from plantdb.commons.auth.models import Role
>>> from plantdb.commons.test_database import test_database
>>> db = test_database()
>>> db.connect()
>>> token = db.login('admin', 'admin')
>>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
>>> group_a = db.create_group('groupA', ['batman'], description="The group A.")
>>> print(group_a.users)
{'admin', 'batman'}
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
@get_authentication
@require_authentication
def create_group(self, name, users=None, description=None, current_user=None, **kwargs) -> Optional[Group]:
    """Create a new group.

    Parameters
    ----------
    name : str
        Unique name for the group.
    users : set, optional
        Initial set of users to add to the group.
    description : str, optional
        An optional description of the group.

    Other Parameters
    ----------------
    username : str
        The username formulating the request.
    token : str
        A token referring to the username formulating the request.

    Returns
    -------
    Optional[Group]
        The created group object if successful, ``None`` otherwise.

    Raises
    ------
    PermissionError
        If no user is authenticated.
        If the user lacks permission to create groups.
    ValueError
        If the group already exists.

    Examples
    --------
    >>> from plantdb.commons.auth.models import Role
    >>> from plantdb.commons.test_database import test_database
    >>> db = test_database()
    >>> db.connect()
    >>> token = db.login('admin', 'admin')
    >>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
    >>> group_a = db.create_group('groupA', ['batman'], description="The group A.")
    >>> print(group_a.users)
    {'admin', 'batman'}
    >>> db.disconnect()
    """
    if isinstance(users, str):
        users = [users]
    if isinstance(users, Iterable):
        users = set(users)

    return self.rbac_manager.create_group(current_user, name, users, description)

create_scan Link

create_scan(scan_id, metadata=None, current_user=None, **kwargs)

Create a new Scan instance in the local database.

Parameters:

Name Type Description Default

scan_id Link

str

The identifier of the scan to create. It should contain only alphanumeric characters, underscores, dashes and dots. It should be non-empty and not longer than 255 characters It should not exist in the local database

required

metadata Link

dict

A dictionary of metadata to append to the new Scan instance. The key 'owner' will be added/updated using the currently connected user. Default is None.

None

Returns:

Type Description
Optional[Scan]

The Scan instance created in the local database.

Raises:

Type Description
PermissionError

If no user is authenticated. If the user lacks permission to create groups.

ScanExistsError

If the scan_id already exists in the local database.

ValueError

If the given scan_id is invalid.

See Also

plantdb.commons.fsdb.validation._is_valid_id plantdb.commons.fsdb.file_ops._make_scan

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db()
>>> new_scan = db.create_scan('007', metadata={'project': 'GoldenEye'})  # create a new scan dataset
>>> print(new_scan.get_metadata('owner'))  # default user 'admin' for dummy database
admin
>>> print(new_scan.get_metadata('project'))
GoldenEye
>>> scan = db.create_scan('007')  # attempt to create an existing scan dataset
plantdb.commons.fsdb.exceptions.ScanExistsError: Scan id '007' already exists in database '/tmp/ROMI_DB_bx519w11'!
>>> scan = db.create_scan('0/07')  # attempt to create a scan dataset using invalid characters
ValueError: Invalid scan identifier '0/07'!
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
@require_connected_db
@get_authentication
@require_authentication
@requires_permission(Permission.CREATE, check_scan_access=False)
def create_scan(self, scan_id, metadata=None, current_user=None, **kwargs):
    """Create a new ``Scan`` instance in the local database.

    Parameters
    ----------
    scan_id : str
        The identifier of the scan to create.
        It should contain only alphanumeric characters, underscores, dashes and dots.
        It should be non-empty and not longer than 255 characters
        It should not exist in the local database
    metadata : dict, optional
        A dictionary of metadata to append to the new ``Scan`` instance.
        The key 'owner' will be added/updated using the currently connected user.
        Default is ``None``.

    Returns
    -------
    Optional[plantdb.commons.fsdb.core.Scan]
        The ``Scan`` instance created in the local database.

    Raises
    ------
    PermissionError
        If no user is authenticated.
        If the user lacks permission to create groups.
    ScanExistsError
        If the ``scan_id`` already exists in the local database.
    ValueError
        If the given ``scan_id`` is invalid.

    See Also
    --------
    plantdb.commons.fsdb.validation._is_valid_id
    plantdb.commons.fsdb.file_ops._make_scan

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db()
    >>> new_scan = db.create_scan('007', metadata={'project': 'GoldenEye'})  # create a new scan dataset
    >>> print(new_scan.get_metadata('owner'))  # default user 'admin' for dummy database
    admin
    >>> print(new_scan.get_metadata('project'))
    GoldenEye
    >>> scan = db.create_scan('007')  # attempt to create an existing scan dataset
    plantdb.commons.fsdb.exceptions.ScanExistsError: Scan id '007' already exists in database '/tmp/ROMI_DB_bx519w11'!
    >>> scan = db.create_scan('0/07')  # attempt to create a scan dataset using invalid characters
    ValueError: Invalid scan identifier '0/07'!
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    # Verify if the given `fs_id` is valid
    if not _is_valid_id(scan_id):
        raise ValueError(f"Invalid scan identifier '{scan_id}'!")
    # Verify if the given `scan_id` already exists in the local database
    if self.scan_exists(scan_id):
        raise ScanExistsError(self, scan_id)

    # Prepare metadata with ownership
    if metadata is None:
        metadata = {}

    # Set basic metadata
    metadata['owner'] = current_user.username
    now = iso_date_now()
    metadata['created'] = now  # creation timestamp
    metadata['last_modified'] = now  # modification timestamp
    metadata['created_by'] = current_user.fullname

    # Validate sharing groups if specified
    if 'sharing' in metadata:
        sharing_groups = metadata['sharing']
        if isinstance(sharing_groups, str):
            sharing_groups = [sharing_groups]
        if not isinstance(sharing_groups, list):
            raise ValueError("Sharing field must be a list of group names")
        if not self.rbac_manager.validate_sharing_groups(sharing_groups):
            raise ValueError("One or more sharing groups do not exist")

    # Use exclusive lock for scan creation
    self.logger.debug(f"Creating a scan '{scan_id}' as user '{current_user.username}'...")
    with self.lock_manager.acquire_lock(scan_id, LockType.EXCLUSIVE, current_user.username, LockLevel.SCAN):
        # Initialize scan object
        scan = Scan(self, scan_id)  # Initialize a new Scan instance
        scan_path = _make_scan(scan)  # Create directory structure
        # Cannot use scan.set_metadata(initial_metadata) here as ownership is not granted yet!
        _set_metadata(scan.metadata, metadata, None)  # add metadata dictionary to the new scan
        _store_scan_metadata(scan)
        scan.store()  # store the new scan in the local database
        self.scans[scan_id] = scan  # Update scans dictionary with the new one

    self.logger.debug(f"Done creating scan.")
    return scan

create_user Link

create_user(new_username, fullname, password, roles=None, current_user=None, **kwargs)

Create a new user with the specified details.

Parameters:

Name Type Description Default

new_username Link

str

The unique username for the new user.

required

fullname Link

str

The full name of the new user.

required

password Link

str

The password for the new user.

required

roles Link

list[str]

A list of roles to assign to the new user. Default is None.

None

current_user Link

User | TokenUser | None

The current user, based on logged status or provided API token. Default is None.

None

Raises:

Type Description
PermissionError

If no user is authenticated. If the current_user lacks permission to create new users.

See Also

RBACManager.create_user : Method used to actually create the user.

Examples:

>>> from plantdb.commons.auth.models import Role
>>> from plantdb.commons.test_database import test_database
>>> db = test_database()
>>> db.connect()
>>> token = db.login('admin', 'admin')
>>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
INFO     [RBACManager] User 'admin' is creating new user 'batman' with roles=<Role.CONTRIBUTOR: 'contributor'>.
INFO     [UserManager] Welcome Bruce Wayne, please log in...'
>>> db.logout()  # log out from 'admin' session
(True, 'admin')
>>> token = db.login('batman', 'joker')
>>> print(len(token))
43
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
@get_authentication
@require_authentication
def create_user(self, new_username, fullname, password, roles=None,
                current_user: User | TokenUser | None = None, **kwargs) -> None:
    """Create a new user with the specified details.

    Parameters
    ----------
    new_username : str
        The unique username for the new user.
    fullname : str
        The full name of the new user.
    password : str
        The password for the new user.
    roles : list[str], optional
        A list of roles to assign to the new user. Default is ``None``.
    current_user : User | TokenUser | None
        The current user, based on logged status or provided API token.
        Default is ``None``.

    Raises
    ------
    PermissionError
        If no user is authenticated.
        If the `current_user` lacks permission to create new users.

    See Also
    --------
    RBACManager.create_user : Method used to actually create the user.

    Examples
    --------
    >>> from plantdb.commons.auth.models import Role
    >>> from plantdb.commons.test_database import test_database
    >>> db = test_database()
    >>> db.connect()
    >>> token = db.login('admin', 'admin')
    >>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
    INFO     [RBACManager] User 'admin' is creating new user 'batman' with roles=<Role.CONTRIBUTOR: 'contributor'>.
    INFO     [UserManager] Welcome Bruce Wayne, please log in...'
    >>> db.logout()  # log out from 'admin' session
    (True, 'admin')
    >>> token = db.login('batman', 'joker')
    >>> print(len(token))
    43
    >>> db.disconnect()
    """
    _ = self.rbac_manager.create_user(current_user, new_username, fullname, password, roles)
    return

delete_group Link

delete_group(group_name, current_user=None, **kwargs)

Delete a group.

Parameters:

Name Type Description Default

group_name Link

str

Name of the group to delete

required

Other Parameters:

Name Type Description
username str

The username formulating the request.

token str

A token referring to the username formulating the request.

Returns:

Type Description
bool

True if the group was deleted successfully

Raises:

Type Description
PermissionError

If no user is authenticated. If the authenticated user lacks permission to delete this group.

Examples:

>>> from plantdb.commons.auth.models import Role
>>> from plantdb.commons.test_database import test_database
>>> db = test_database()
>>> db.connect()
>>> token = db.login('admin', 'admin')
>>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
>>> group_a = db.create_group('groupA', ['batman'], description="The group A.")
>>> print(group_a.users)
{'admin', 'batman'}
>>> db.logout()
>>> token = db.login('batman', 'joker')
ERROR    [RBACManager] Insufficient permission to delete group 'groupA' by user 'batman!
PermissionError: Insufficient permissions or group 'groupA' not found
>>> db.delete_group('groupA')
>>> db.logout()
>>> token = db.login('admin', 'admin')
>>> db.delete_group('groupA')
WARNING  [RBACManager] Deleting group 'groupA' by user 'admin'!
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
@get_authentication
@require_authentication
def delete_group(self, group_name, current_user=None, **kwargs) -> bool:
    """Delete a group.

    Parameters
    ----------
    group_name : str
        Name of the group to delete

    Other Parameters
    ----------------
    username : str
        The username formulating the request.
    token : str
        A token referring to the username formulating the request.

    Returns
    -------
    bool
        True if the group was deleted successfully

    Raises
    ------
    PermissionError
        If no user is authenticated.
        If the authenticated user lacks permission to delete this group.

    Examples
    --------
    >>> from plantdb.commons.auth.models import Role
    >>> from plantdb.commons.test_database import test_database
    >>> db = test_database()
    >>> db.connect()
    >>> token = db.login('admin', 'admin')
    >>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
    >>> group_a = db.create_group('groupA', ['batman'], description="The group A.")
    >>> print(group_a.users)
    {'admin', 'batman'}
    >>> db.logout()
    >>> token = db.login('batman', 'joker')
    ERROR    [RBACManager] Insufficient permission to delete group 'groupA' by user 'batman!
    PermissionError: Insufficient permissions or group 'groupA' not found
    >>> db.delete_group('groupA')
    >>> db.logout()
    >>> token = db.login('admin', 'admin')
    >>> db.delete_group('groupA')
    WARNING  [RBACManager] Deleting group 'groupA' by user 'admin'!
    >>> db.disconnect()
    """
    if not self.rbac_manager.delete_group(current_user, group_name):
        raise PermissionError(f"Insufficient permissions or group '{group_name}' not found")
    return True

delete_scan Link

delete_scan(scan_id, current_user=None, **kwargs)

Delete an existing Scan from the local database.

Parameters:

Name Type Description Default

scan_id Link

str

The name of the scan to delete from the local database.

required

Returns:

Type Description
bool

A boolean value indicating whether the scan was successfully deleted.

Raises:

Type Description
PermissionError

If no user is authenticated. If the user lacks permission to create groups.

ValueError

If the scan_id does not exist in the local database.

IOError

If the scan is locked by another user.

See Also

plantdb.commons.fsdb.file_ops._delete_scan

Examples:

>>> from plantdb.commons.fsdb.core import FSDB
>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db()
>>> new_scan = db.create_scan('007')
>>> print(new_scan)
<plantdb.commons.fsdb.core.Scan object at 0x7f0730b1e390>
>>> db.delete_scan('007')
>>> scan = db.get_scan('007')
>>> print(scan)
None
>>> db.delete_scan('008')
OSError: Invalid id
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
@require_connected_db
@get_authentication
@require_authentication
@requires_permission(Permission.DELETE, check_scan_access=True)
def delete_scan(self, scan_id, current_user=None, **kwargs) -> bool:
    """Delete an existing `Scan` from the local database.

    Parameters
    ----------
    scan_id : str
        The name of the scan to delete from the local database.

    Returns
    -------
    bool
        A boolean value indicating whether the scan was successfully deleted.

    Raises
    ------
    PermissionError
        If no user is authenticated.
        If the user lacks permission to create groups.
    ValueError
        If the ``scan_id`` does not exist in the local database.
    IOError
        If the scan is locked by another user.

    See Also
    --------
    plantdb.commons.fsdb.file_ops._delete_scan

    Examples
    --------
    >>> from plantdb.commons.fsdb.core import FSDB
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db()
    >>> new_scan = db.create_scan('007')
    >>> print(new_scan)
    <plantdb.commons.fsdb.core.Scan object at 0x7f0730b1e390>
    >>> db.delete_scan('007')
    >>> scan = db.get_scan('007')
    >>> print(scan)
    None
    >>> db.delete_scan('008')
    OSError: Invalid id
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    # Use exclusive lock for scan deletion
    self.logger.debug(f"Deleting scan '{scan_id}' as '{current_user.username}' user...")
    with self.lock_manager.acquire_lock(scan_id, LockType.EXCLUSIVE, current_user.username, LockLevel.SCAN):
        # Get the Scan instance from the database
        scan = self.scans[scan_id]
        _delete_scan(scan)  # delete the scan directory
        self.scans.pop(scan_id)  # remove the scan from the scan list

    self.logger.debug(f"Done deleting scan.")
    return True

disconnect Link

disconnect()

Disconnect from the database.

This method disconnects from the database, if currently connected, by erasing all scans (from memory) and reseting the connection status.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db()
>>> print(db.is_connected)
True
>>> print(db.path().exists())
True
>>> db.disconnect()  # clean up (delete) the temporary dummy database
>>> print(db.is_connected)
False
>>> print(db.path().exists())
False
Source code in plantdb/commons/fsdb/core.py
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
@require_connected_db
def disconnect(self) -> None:
    """Disconnect from the database.

    This method disconnects from the database, if currently connected, by erasing all scans (from memory)
    and reseting the connection status.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db()
    >>> print(db.is_connected)
    True
    >>> print(db.path().exists())
    True
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    >>> print(db.is_connected)
    False
    >>> print(db.path().exists())
    False
    """
    for s_id, scan in self.scans.items():
        scan._erase()
    self.scans = {}
    self.is_connected = False

    # If this FSDB instance was created by dummy_db, clean up the temp directory
    if getattr(self, "_is_dummy", False):
        import shutil
        try:
            shutil.rmtree(self.basedir)
            self.logger.info(f"Removed temporary database directory {self.basedir}")
        except Exception as e:
            self.logger.warning(f"Failed to remove temporary directory {self.basedir}: {e}")
    return

get_guest_user Link

get_guest_user()

Retrieve the guest user information from the RBAC manager.

Returns:

Type Description
User

The User object corresponding to the guest username.

Notes

This method interacts with the underlying RBAC manager to fetch guest user information.

See Also

rbac_manager.get_guest_user : The underlying method used by this function.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db()  # automatic login as 'admin'
>>> db.get_guest_user()
User(username='guest', fullname='PlantDB Guest', password_hash='$argon2id$v=19$m=65536,t=3,p=4$2++/KY75t4qvt5x1fO4dJA$MDmREeceXOJhcupT1G6yuRFvPUJ3SjNpuSga5wkUEYw', roles={<Role.READER: 'reader'>}, created_at=datetime.datetime(2026, 1, 29, 17, 19, 13, 313677), permissions=None, last_login=datetime.datetime(2026, 1, 29, 17, 19, 20, 177023), is_active=True, failed_attempts=0, last_failed_attempt=None, locked_until=None, password_last_change=datetime.datetime(2026, 1, 29, 17, 19, 13, 313677))
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
def get_guest_user(self) -> User:
    """Retrieve the guest user information from the RBAC manager.

    Returns
    -------
    plantdb.commons.auth.models.User
        The User object corresponding to the guest username.

    Notes
    -----
    This method interacts with the underlying RBAC manager to fetch guest user information.

    See Also
    --------
    rbac_manager.get_guest_user : The underlying method used by this function.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db()  # automatic login as 'admin'
    >>> db.get_guest_user()
    User(username='guest', fullname='PlantDB Guest', password_hash='$argon2id$v=19$m=65536,t=3,p=4$2++/KY75t4qvt5x1fO4dJA$MDmREeceXOJhcupT1G6yuRFvPUJ3SjNpuSga5wkUEYw', roles={<Role.READER: 'reader'>}, created_at=datetime.datetime(2026, 1, 29, 17, 19, 13, 313677), permissions=None, last_login=datetime.datetime(2026, 1, 29, 17, 19, 20, 177023), is_active=True, failed_attempts=0, last_failed_attempt=None, locked_until=None, password_last_change=datetime.datetime(2026, 1, 29, 17, 19, 13, 313677))
    >>> db.disconnect()
    """
    return self.rbac_manager.get_guest_user()

get_scan Link

get_scan(scan_id, current_user=None, **kwargs)

Get a Scan instance in the local database.

Parameters:

Name Type Description Default

scan_id Link

str

The name of the scan dataset to get/create. It should exist if create is False.

required

Raises:

Type Description
ScanNotFoundError

If the scan_id does not exist in the local database and create is False.

Returns:

Type Description
Scan

The Scan identified by the scan_id.

Examples:

>>> # Example #1 - API demo
>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_scan=True)
>>> scan = db.get_scan('myscan_001')
>>> print(scan)
<plantdb.commons.fsdb.core.Scan object at **************>
>>> db.list_scans()
['007']
>>> unknown_scan = db.get_scan('unknown')
plantdb.commons.fsdb.ScanNotFoundError: Unknown scan id 'unknown'!
>>> db.disconnect()  # clean up (delete) the temporary dummy database
>>> # Example #2 - API demo with authentication
>>> from plantdb.commons.test_database import test_database
>>> db = test_database()
>>> db.connect()
>>> scan = db.get_scan('real_plant_analyzed')
plantdb.commons.fsdb.exceptions.NoAuthUserError: No authenticated user!
>>> token = db.login('admin', 'admin')
>>> scan = db.get_scan('real_plant_analyzed')
>>> print(scan.id)
real_plant_analyzed
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
@require_connected_db
@get_authentication
@require_authentication
@requires_permission(Permission.READ, check_scan_access=True)
def get_scan(self, scan_id, current_user=None, **kwargs):
    """Get a ` Scan ` instance in the local database.

    Parameters
    ----------
    scan_id : str
        The name of the scan dataset to get/create.
        It should exist if `create` is `False`.

    Raises
    ------
    plantdb.commons.fsdb.ScanNotFoundError
        If the `scan_id` does not exist in the local database and `create` is ``False``.

    Returns
    -------
    plantdb.commons.fsdb.core.Scan
        The `Scan` identified by the `scan_id`.

    Examples
    --------
    >>> # Example #1 - API demo
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_scan=True)
    >>> scan = db.get_scan('myscan_001')
    >>> print(scan)
    <plantdb.commons.fsdb.core.Scan object at **************>
    >>> db.list_scans()
    ['007']
    >>> unknown_scan = db.get_scan('unknown')
    plantdb.commons.fsdb.ScanNotFoundError: Unknown scan id 'unknown'!
    >>> db.disconnect()  # clean up (delete) the temporary dummy database

    >>> # Example #2 - API demo with authentication
    >>> from plantdb.commons.test_database import test_database
    >>> db = test_database()
    >>> db.connect()
    >>> scan = db.get_scan('real_plant_analyzed')
    plantdb.commons.fsdb.exceptions.NoAuthUserError: No authenticated user!
    >>> token = db.login('admin', 'admin')
    >>> scan = db.get_scan('real_plant_analyzed')
    >>> print(scan.id)
    real_plant_analyzed
    >>> db.disconnect()
    """
    with self.lock_manager.acquire_lock(scan_id, LockType.SHARED, current_user.username, LockLevel.SCAN):
        if not self.scan_exists(scan_id):
            ScanNotFoundError(self, scan_id)
        return self.scans[scan_id]

get_scan_access_summary Link

get_scan_access_summary(scan_id, current_user=None, **kwargs)

Get access summary for the current user on a scan.

Parameters:

Name Type Description Default

scan_id Link

str

The scan identifier

required

Other Parameters:

Name Type Description
username str

The username formulating the request.

token str

A token referring to the username formulating the request.

Returns:

Type Description
dict or None

An access summary dictionary if scan exists and is accessible

Raises:

Type Description
PermissionError

If no user is authenticated.

Examples:

>>> from plantdb.commons.test_database import test_database
>>> db = test_database(dataset="all")
>>> db.connect()
>>> token = db.login('guest', 'guest')
>>> scan_access = db.get_scan_access_summary("real_plant")
>>> print(scan_access["effective_role"])
contributor
>>> print(scan_access["permissions"])
['write', 'create', 'read']
>>> print(scan_access["is_owner"])
True
>>> db.logout()
>>> token = db.login('admin', 'admin')
>>> scan_access = db.get_scan_access_summary("real_plant")
>>> print(scan_access["effective_role"])
admin
>>> print(scan_access["is_owner"])
False
>>> print(scan_access["access_reason"])
['admin_role']
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
@get_authentication
@require_authentication
def get_scan_access_summary(self, scan_id, current_user=None, **kwargs):
    """Get access summary for the current user on a scan.

    Parameters
    ----------
    scan_id : str
        The scan identifier

    Other Parameters
    ----------------
    username : str
        The username formulating the request.
    token : str
        A token referring to the username formulating the request.

    Returns
    -------
    dict or None
        An access summary dictionary if scan exists and is accessible

    Raises
    ------
    PermissionError
        If no user is authenticated.

    Examples
    --------
    >>> from plantdb.commons.test_database import test_database
    >>> db = test_database(dataset="all")
    >>> db.connect()
    >>> token = db.login('guest', 'guest')
    >>> scan_access = db.get_scan_access_summary("real_plant")
    >>> print(scan_access["effective_role"])
    contributor
    >>> print(scan_access["permissions"])
    ['write', 'create', 'read']
    >>> print(scan_access["is_owner"])
    True
    >>> db.logout()
    >>> token = db.login('admin', 'admin')
    >>> scan_access = db.get_scan_access_summary("real_plant")
    >>> print(scan_access["effective_role"])
    admin
    >>> print(scan_access["is_owner"])
    False
    >>> print(scan_access["access_reason"])
    ['admin_role']
    >>> db.disconnect()
    """
    if scan_id not in self.scans:
        return None

    scan = self.scans[scan_id]
    try:
        metadata = scan.get_metadata()
        return self.rbac_manager.get_user_scan_role_summary(current_user, metadata)
    except Exception as e:
        self.logger.warning(f"Error getting access summary for scan {scan_id}: {e}")
        return None

get_scan_lock_status Link

get_scan_lock_status(scan_id)

Get the current lock status for a specific scan.

Parameters:

Name Type Description Default

scan_id Link

str

The name of the scan in the local database.

required

Returns:

Type Description
dict

Dictionary with lock status information

Source code in plantdb/commons/fsdb/core.py
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
@require_connected_db
def get_scan_lock_status(self, scan_id: str) -> Dict:
    """Get the current lock status for a specific scan.

    Parameters
    ----------
    scan_id : str
        The name of the scan in the local database.

    Returns
    -------
    dict
        Dictionary with lock status information
    """
    return self.lock_manager.get_lock_status(scan_id, LockLevel.SCAN)

get_scans Link

get_scans(query=None, current_user=None, **kwargs)

Get a list of Scan instances defined in the local database, possibly filtered using a query.

Parameters:

Name Type Description Default

query Link

dict

A query to use to filter the returned list of scans. The metadata must match given key and value from the query dictionary.

None

Other Parameters:

Name Type Description
fuzzy bool

Whether to use fuzzy matching or not, that is the use of regular expressions.

owner_only bool

Whether to filter the returned list of scans to only include scans owned by the current user. Default is True.

Returns:

Type Description
list of plantdb.commons.fsdb.core.Scan

A list of Scans, filtered by the query if any.

See Also

plantdb.commons.fsdb._filter_query

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_file=True)
>>> db.get_scans()
[<plantdb.commons.fsdb.core.Scan at *x************>]
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
@require_connected_db
@get_authentication
@require_authentication
def get_scans(self, query=None, current_user=None, **kwargs) -> List:
    """Get a list of `Scan` instances defined in the local database, possibly filtered using a `query`.

    Parameters
    ----------
    query : dict, optional
        A query to use to filter the returned list of scans.
        The metadata must match given ``key`` and ``value`` from the `query` dictionary.

    Other Parameters
    ----------------
    fuzzy : bool, optional
        Whether to use fuzzy matching or not, that is the use of regular expressions.
    owner_only : bool, optional
        Whether to filter the returned list of scans to only include scans owned by the current user.
        Default is ``True``.

    Returns
    -------
    list of plantdb.commons.fsdb.core.Scan
        A list of `Scan`s, filtered by the `query` if any.

    See Also
    --------
    plantdb.commons.fsdb._filter_query

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_file=True)
    >>> db.get_scans()
    [<plantdb.commons.fsdb.core.Scan at *x************>]
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    # Get all scans and filter by access permissions
    accessible_scans = {}

    for scan_id, scan in self.scans.items():
        try:
            # Access metadata directly to avoid nested lock acquisition
            metadata = _get_metadata(scan.metadata, None, {})
            if self.rbac_manager.can_access_scan(current_user, metadata, Permission.READ):
                accessible_scans[scan_id] = scan
        except Exception as e:
            self.logger.warning(f"Error checking access for scan {scan_id}: {e}")
            continue

    if kwargs.get('owner_only', False):
        if query is None:
            query = {'owner': current_user.username}
        else:
            query.update({'owner': current_user.username})

    # Apply query filter if provided
    if query:
        accessible_scans = _filter_query(list(accessible_scans.values()), query, kwargs.get('fuzzy', False))
    else:
        accessible_scans = list(accessible_scans.values())

    return accessible_scans

get_user_data Link

get_user_data(username=None, token=None)

Get the user data.

Parameters:

Name Type Description Default

username Link

str | None

The username to retrieve the user data from.

None

token Link

str | None

The token provided by the RBAC manager.

None

Returns:

Type Description
User | TokenUser | None

A User instance corresponding to the currently authenticated user, if any, None otherwise.

Notes

If both username and token are provided, prefer token for accessing user data.

Examples:

>>> from plantdb.commons.test_database import test_database
>>> db = test_database()
>>> db.connect()
>>> token = db.login('admin', 'admin')
>>> db.get_user_data(username='admin')
User(username='admin', fullname='PlantDB Admin', password_hash='$argon2id$v=19$m=65536,t=3,p=4$zMr0ZhclnHHdOgwWKv3Hbg$SZshbPdNiCdBONb8vgzZAKyWPl5sNIUwB8mQWkzGYOQ', roles={<Role.ADMIN: 'admin'>}, created_at=datetime.datetime(2026, 1, 29, 17, 22, 49, 683163), permissions=None, last_login=datetime.datetime(2026, 1, 29, 17, 22, 49, 770793), is_active=True, failed_attempts=0, last_failed_attempt=None, locked_until=None, password_last_change=datetime.datetime(2026, 1, 29, 17, 22, 49, 683163))
>>> user_data = db.get_user_data(username='guest')
>>> print(user_data.fullname)
PlantDB Guest
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
def get_user_data(self, username=None, token=None) -> User | TokenUser | None:
    """Get the user data.

    Parameters
    ----------
    username : str | None
        The username to retrieve the user data from.
    token : str | None
        The token provided by the RBAC manager.

    Returns
    -------
    plantdb.commons.auth.models.User | plantdb.commons.auth.models.TokenUser | None
        A ``User`` instance corresponding to the currently authenticated user, if any, ``None`` otherwise.

    Notes
    -----
    If both `username` and `token` are provided, prefer `token` for accessing user data.

    Examples
    --------
    >>> from plantdb.commons.test_database import test_database
    >>> db = test_database()
    >>> db.connect()
    >>> token = db.login('admin', 'admin')
    >>> db.get_user_data(username='admin')
    User(username='admin', fullname='PlantDB Admin', password_hash='$argon2id$v=19$m=65536,t=3,p=4$zMr0ZhclnHHdOgwWKv3Hbg$SZshbPdNiCdBONb8vgzZAKyWPl5sNIUwB8mQWkzGYOQ', roles={<Role.ADMIN: 'admin'>}, created_at=datetime.datetime(2026, 1, 29, 17, 22, 49, 683163), permissions=None, last_login=datetime.datetime(2026, 1, 29, 17, 22, 49, 770793), is_active=True, failed_attempts=0, last_failed_attempt=None, locked_until=None, password_last_change=datetime.datetime(2026, 1, 29, 17, 22, 49, 683163))
    >>> user_data = db.get_user_data(username='guest')
    >>> print(user_data.fullname)
    PlantDB Guest
    >>> db.disconnect()
    """
    if username and token:
        self.logger.warning("Trying to retrieve user data from both 'username' and token!")
        self.logger.debug("Using 'token' to access user data.")
        username = None

    if username:
        return self.rbac_manager.users.get_user(username)
    elif token:
        if isinstance(self.session_manager, SingleSessionManager):
            return self.rbac_manager.users.get_user(self.session_manager.validate_session(token)['username'])
        else:
            return self.rbac_manager.users.get_user_from_decoded_token(self.session_manager.validate_session(token))
    else:
        self.logger.error("No username or token provided")
        return None

get_user_groups Link

get_user_groups(user=None, current_user=None, **kwargs)

Get groups for a user.

Parameters:

Name Type Description Default

user Link

str

Username to query. If None, uses the currently authenticated user.

None

Other Parameters:

Name Type Description
username str

The username formulating the request.

token str

A token referring to the username formulating the request.

Returns:

Type Description
list[Groups]

A list of Group objects the user belongs to.

Raises:

Type Description
PermissionError

If no user is authenticated.

Examples:

>>> from plantdb.commons.auth.models import Role
>>> from plantdb.commons.test_database import test_database
>>> db = test_database()
>>> db.connect()
>>> token = db.login('admin', 'admin')
>>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
>>> group_a = db.create_group('groupA', ['batman'], description="The group A.")
>>> print([g.name for g in db.get_user_groups('batman')])
['groupA']
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
@get_authentication
@require_authentication
def get_user_groups(self, user=None, current_user=None, **kwargs) -> list[Group]:
    """Get groups for a user.

    Parameters
    ----------
    user : str, optional
        Username to query.
        If None, uses the currently authenticated user.

    Other Parameters
    ----------------
    username : str
        The username formulating the request.
    token : str
        A token referring to the username formulating the request.

    Returns
    -------
    list[Groups]
        A list of Group objects the user belongs to.

    Raises
    ------
    PermissionError
        If no user is authenticated.

    Examples
    --------
    >>> from plantdb.commons.auth.models import Role
    >>> from plantdb.commons.test_database import test_database
    >>> db = test_database()
    >>> db.connect()
    >>> token = db.login('admin', 'admin')
    >>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
    >>> group_a = db.create_group('groupA', ['batman'], description="The group A.")
    >>> print([g.name for g in db.get_user_groups('batman')])
    ['groupA']
    >>> db.disconnect()
    """
    if user is None:
        user = current_user.username
    return self.rbac_manager.get_user_groups(user)

get_username Link

get_username(token)

Get the username.

Parameters:

Name Type Description Default

token Link

str

The token provided by the RBAC manager.

required

Returns:

Type Description
Optional[str]

The User.username if the token is valid, None otherwise.

Examples:

>>> from plantdb.commons.test_database import test_database
>>> db = test_database()
>>> db.connect()
>>> token = db.login('admin', 'admin')
>>> db.get_username(token)
'admin'
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
def get_username(self, token) -> Optional[str]:
    """Get the username.

    Parameters
    ----------
    token : str
        The token provided by the RBAC manager.

    Returns
    -------
    Optional[str]
        The ``User.username`` if the token is valid, ``None`` otherwise.

    Examples
    --------
    >>> from plantdb.commons.test_database import test_database
    >>> db = test_database()
    >>> db.connect()
    >>> token = db.login('admin', 'admin')
    >>> db.get_username(token)
    'admin'
    >>> db.disconnect()
    """
    return self.session_manager.session_username(token)

is_scan_locked Link

is_scan_locked(scan_id)

Check if a scan is locked in the system.

This method determines whether the specified scan is currently locked by fetching its lock status. A scan is considered locked if it does not have an exclusive lock and there are no shared locks. This can be useful for ensuring that certain operations are not performed on scans that are not yet locked.

Parameters:

Name Type Description Default

scan_id Link

str

The unique identifier of the scan whose lock status is to be checked.

required

Returns:

Type Description
bool

True if the scan is locked (having neither an exclusive lock nor any shared locks), False otherwise.

See Also

ScanManager.lock_manager : Component responsible for managing scan locks.

Source code in plantdb/commons/fsdb/core.py
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
@require_connected_db
def is_scan_locked(self, scan_id: str) -> bool:
    """Check if a scan is locked in the system.

    This method determines whether the specified scan is currently locked by
    fetching its lock status. A scan is considered locked if it does not have
    an exclusive lock and there are no shared locks. This can be useful for
    ensuring that certain operations are not performed on scans that are not
    yet locked.

    Parameters
    ----------
    scan_id : str
        The unique identifier of the scan whose lock status is to be checked.

    Returns
    -------
    bool
        True if the scan is locked (having neither an exclusive lock nor any
        shared locks), False otherwise.

    See Also
    --------
    ScanManager.lock_manager : Component responsible for managing scan locks.
    """
    lock_status = self.lock_manager.get_lock_status(scan_id)
    if lock_status['exclusive'] is None and len(lock_status['shared']) == 0:
        return True
    return False

list_active_locks Link

list_active_locks()

List all currently active locks across all scans.

Returns:

Type Description
dict

Dictionary mapping scan IDs to their lock status

Source code in plantdb/commons/fsdb/core.py
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
@require_connected_db
def list_active_locks(self) -> Dict[str, Dict]:
    """List all currently active locks across all scans.

    Returns
    -------
    dict
        Dictionary mapping scan IDs to their lock status
    """
    active_locks = {}
    for scan_id in self.scans.keys():
        lock_status = self.get_scan_lock_status(scan_id)
        if lock_status['exclusive'] or lock_status['shared']:
            active_locks[scan_id] = lock_status

    return active_locks

list_groups Link

list_groups(current_user=None, **kwargs)

List all groups.

Returns:

Type Description
list[Group]

A list of Group objects

Raises:

Type Description
PermissionError

If no user is authenticated.

Examples:

>>> from plantdb.commons.auth.models import Role
>>> from plantdb.commons.test_database import test_database
>>> db = test_database()
>>> db.connect()
>>> token = db.login('admin', 'admin')
>>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
>>> group_a = db.create_group('groupA', ['batman'], description="The group A.")
>>> print([g.name for g in db.list_groups()])
['groupA']
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
@get_authentication
@require_authentication
def list_groups(self, current_user=None, **kwargs) -> list[Group]:
    """List all groups.

    Returns
    -------
    list[Group]
        A list of Group objects

    Raises
    ------
    PermissionError
        If no user is authenticated.

    Examples
    --------
    >>> from plantdb.commons.auth.models import Role
    >>> from plantdb.commons.test_database import test_database
    >>> db = test_database()
    >>> db.connect()
    >>> token = db.login('admin', 'admin')
    >>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
    >>> group_a = db.create_group('groupA', ['batman'], description="The group A.")
    >>> print([g.name for g in db.list_groups()])
    ['groupA']
    >>> db.disconnect()
    """
    groups = self.rbac_manager.list_groups(current_user)
    return groups if groups is not None else []

list_scans Link

list_scans(query=None, fuzzy=False, owner_only=True, current_user=None, **kwargs)

Get the list of scan identifiers from the local database.

Parameters:

Name Type Description Default

query Link

dict

A query to use to filter the returned list of scans. The metadata must match given key and value from the query dictionary.

None

fuzzy Link

bool

Whether to use fuzzy matching or not, that is the use of regular expressions.

False

Returns:

Type Description
list[str]

The list of scan identifiers from the local database.

See Also

plantdb.commons.fsdb.core._filter_query

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_scan=True)
>>> db.list_scans()  # list scans owned by the current user
['myscan_001']
>>> db.create("batman", "Bruce Wayne", 'joker')
>>> db.connect('batman', 'joker')
>>> db.list_scans()  # list scans owned by the current user
>>> []
>>> db.list_scans(owner_only=False)  # list all scans
['myscan_001']
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
@require_connected_db
@get_authentication
def list_scans(self, query=None, fuzzy=False, owner_only=True, current_user=None, **kwargs) -> list[str]:
    """Get the list of scan identifiers from the local database.

    Parameters
    ----------
    query : dict, optional
        A query to use to filter the returned list of scans.
        The metadata must match given ``key`` and ``value`` from the `query` dictionary.
    fuzzy : bool
        Whether to use fuzzy matching or not, that is the use of regular expressions.

    Returns
    -------
    list[str]
        The list of scan identifiers from the local database.

    See Also
    --------
    plantdb.commons.fsdb.core._filter_query

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_scan=True)
    >>> db.list_scans()  # list scans owned by the current user
    ['myscan_001']
    >>> db.create("batman", "Bruce Wayne", 'joker')
    >>> db.connect('batman', 'joker')
    >>> db.list_scans()  # list scans owned by the current user
    >>> []
    >>> db.list_scans(owner_only=False)  # list all scans
    ['myscan_001']
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    if not current_user:
        owner_only = False

    if owner_only:
        if query is None:
            query = {'owner': current_user.username}
        else:
            query.update({'owner': current_user.username})

    if query is None:
        return list(self.scans.keys())
    else:
        return [scan.id for scan in _filter_query(list(self.scans.values()), query, fuzzy)]

login Link

login(username, password, **kwargs)

Authenticate a user and create a session.

Parameters:

Name Type Description Default

username Link

str

Username for authentication.

required

password Link

str

Password for authentication.

required

Returns:

Type Description
Optional[str]

Returns the user session ID if successful, None otherwise.

Examples:

>>> from plantdb.commons.test_database import test_database
>>> db = test_database()
>>> db.connect()
>>> token = db.login('admin', 'admin')
>>> token = db.login('guest', 'guest')
ERROR    [FSDB] Failed to login as 'guest'! Another user is logged in.
>>> db.logout()  # log out from 'admin' session
(True, 'admin')
>>> token = db.login('guest', 'guest')
>>> print(len(token))
43
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
@require_connected_db
def login(self, username: str, password: str, **kwargs) -> Optional[str]:
    """Authenticate a user and create a session.

    Parameters
    ----------
    username : str
        Username for authentication.
    password : str
        Password for authentication.

    Returns
    -------
    Optional[str]
        Returns the user session ID if successful, ``None`` otherwise.

    Examples
    --------
    >>> from plantdb.commons.test_database import test_database
    >>> db = test_database()
    >>> db.connect()
    >>> token = db.login('admin', 'admin')
    >>> token = db.login('guest', 'guest')
    ERROR    [FSDB] Failed to login as 'guest'! Another user is logged in.
    >>> db.logout()  # log out from 'admin' session
    (True, 'admin')
    >>> token = db.login('guest', 'guest')
    >>> print(len(token))
    43
    >>> db.disconnect()
    """
    if self.validate_user(username, password):

        # If a SingleSessionManager and a currently logged user, abort
        if isinstance(self.session_manager,
                      (NoAuthSessionManager, SingleSessionManager)) and self.session_manager.has_logged_user():
            current_username = get_logged_username(self)
            if current_username:
                if current_username != username:
                    self.logger.error(f"Failed to login as '{username}'! Another user is logged in.")
                    return None
                else:
                    self.logger.warning(f"Already logged in as '{username}'.")
                    return

        # Else try to create a new session:
        session_token = self.session_manager.create_session(username)
        try:
            assert session_token is not None
        except AssertionError:
            self.logger.warning(f"User '{username}' has reached max concurrent sessions")
        else:
            self.logger.debug(f"Successfully logged in as '{username}'.")
        return session_token
    else:
        self.logger.error(f"Failed to login as '{username}'!")
        return None

logout Link

logout(**kwargs)

Log out a user by invalidating its session.

Examples:

>>> from plantdb.commons.test_database import test_database
>>> db = test_database()
>>> db.connect()
>>> token = db.login('admin', 'admin')
>>> db.logout()  # log out from 'admin' session
(True, 'admin')
>>> db.logout()  # log out from NO session
ERROR    [FSDB] No logged user!
WARNING  [FSDB] Failed to logout!
(False, None)
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
@require_token
def logout(self, **kwargs) -> tuple[bool, str]:
    """Log out a user by invalidating its session.

    Examples
    --------
    >>> from plantdb.commons.test_database import test_database
    >>> db = test_database()
    >>> db.connect()
    >>> token = db.login('admin', 'admin')
    >>> db.logout()  # log out from 'admin' session
    (True, 'admin')
    >>> db.logout()  # log out from NO session
    ERROR    [FSDB] No logged user!
    WARNING  [FSDB] Failed to logout!
    (False, None)
    >>> db.disconnect()
    """
    success, username = self.session_manager.invalidate_session(kwargs.get('token', None))
    if success:
        self.logger.debug(f"Successfully logged out from '{username}'.")
        return success, username
    else:
        self.logger.warning(f"Failed to logout!")
        return success, username

path Link

path()

Get the path to the local database root directory.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db()
>>> print(db.path())
/tmp/romidb_********
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
694
695
696
697
698
699
700
701
702
703
704
705
def path(self) -> pathlib.Path:
    """Get the path to the local database root directory.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db()
    >>> print(db.path())
    /tmp/romidb_********
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    return copy.deepcopy(self.basedir)

reload Link

reload(scan_id=None)

Reload the database by scanning datasets.

Parameters:

Name Type Description Default

scan_id Link

str or list of str

The name of the scan(s) to reload.

None
Source code in plantdb/commons/fsdb/core.py
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
@require_connected_db
def reload(self, scan_id: Optional[Union[str, Iterable[str]]] = None) -> None:
    """Reload the database by scanning datasets.

    Parameters
    ----------
    scan_id : str or list of str, optional
        The name of the scan(s) to reload.
    """
    if scan_id is None:
        self.logger.info("Reloading the database...")
        self.scans = _load_scans(self)
    elif isinstance(scan_id, str):
        self.logger.info(f"Reloading scan '{scan_id}'...")
        scan = _load_scan(self, scan_id)
        if not scan:
            self.logger.error(f"Failed to reload scan '{scan_id}'!")
        self.scans[scan_id] = scan
    elif isinstance(scan_id, Iterable):
        [self.reload(scan_i) for scan_i in scan_id]
    else:
        self.logger.error(f"Wrong parameter `scan_name`, expected a string or list of string but got '{scan_id}'!")
    self.logger.info("Done!")
    return

remove_user_from_group Link

remove_user_from_group(group_name, user, current_user=None, **kwargs)

Remove a user from a group.

Parameters:

Name Type Description Default

group_name Link

str

Name of the group to remove the user from.

required

user Link

str

Name of the user to remove from the group.

required

Other Parameters:

Name Type Description
username str

The username formulating the request.

token str

A token referring to the username formulating the request.

Returns:

Type Description
bool

True if the user was successfully removed from the group, False otherwise.

Raises:

Type Description
PermissionError

If no user is authenticated. If the authenticated user lacks permission to remove the user from the group.

Examples:

>>> from plantdb.commons.auth.models import Role
>>> from plantdb.commons.test_database import test_database
>>> db = test_database()
>>> db.connect()
>>> token = db.login('admin', 'admin')
>>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
>>> group_a = db.create_group('groupA', ['batman'], description="The group A.")
>>> print(group_a.users)
{'admin', 'batman'}
>>> db.remove_user_from_group('groupA', 'batman')
>>> print(group_a.users)
{'admin'}
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
@get_authentication
@require_authentication
def remove_user_from_group(self, group_name, user, current_user=None, **kwargs):
    """Remove a user from a group.

    Parameters
    ----------
    group_name : str
        Name of the group to remove the user from.
    user : str
        Name of the user to remove from the group.

    Other Parameters
    ----------------
    username : str
        The username formulating the request.
    token : str
        A token referring to the username formulating the request.

    Returns
    -------
    bool
        ``True`` if the `user` was successfully removed from the group, ``False`` otherwise.

    Raises
    ------
    PermissionError
        If no user is authenticated.
        If the authenticated user lacks permission to remove the user from the group.

    Examples
    --------
    >>> from plantdb.commons.auth.models import Role
    >>> from plantdb.commons.test_database import test_database
    >>> db = test_database()
    >>> db.connect()
    >>> token = db.login('admin', 'admin')
    >>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
    >>> group_a = db.create_group('groupA', ['batman'], description="The group A.")
    >>> print(group_a.users)
    {'admin', 'batman'}
    >>> db.remove_user_from_group('groupA', 'batman')
    >>> print(group_a.users)
    {'admin'}
    >>> db.disconnect()
    """
    if not self.rbac_manager.remove_user_from_group(current_user, group_name, user):
        raise PermissionError("Insufficient permissions or operation failed")
    return True

scan_exists Link

scan_exists(scan_id)

Check if a given scan ID exists in the database.

Parameters:

Name Type Description Default

scan_id Link

str

The ID of the scan to check.

required

Returns:

Type Description
bool

True if the scan exists, False otherwise.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_scan=True)
>>> db.scan_exists("myscan_001")
True
>>> db.scan_exists("nonexistent_id")
False
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
@require_connected_db
def scan_exists(self, scan_id: str) -> bool:
    """Check if a given scan ID exists in the database.

    Parameters
    ----------
    scan_id : str
        The ID of the scan to check.

    Returns
    -------
    bool
        ``True`` if the scan exists, ``False`` otherwise.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_scan=True)
    >>> db.scan_exists("myscan_001")
    True
    >>> db.scan_exists("nonexistent_id")
    False
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    return scan_id in self.scans

update_user_password Link

update_user_password(old_password, new_password, current_user=None, **kwargs)

Create a new user with the specified details.

Parameters:

Name Type Description Default

old_password Link

str

The password for the user.

required

new_password Link

str

The new password for the user.

required

current_user Link

User | TokenUser | None

The current user, based on logged status or provided API token. Default is None.

None

Raises:

Type Description
PermissionError

If no user is authenticated, that is logged in or provided an API token. If the user lacks permissions.

See Also

RBACManager.users.update_password : Method used to actually update the user's password.

Examples:

>>> from plantdb.commons.test_database import test_database
>>> db = test_database()
>>> db.connect()
>>> token = db.login('admin', 'admin')
>>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
INFO     [UserManager] Welcome Bruce Wayne, please log in...'
>>> db.logout()  # log out from 'admin' session
(True, 'admin')
>>> token = db.login('batman', 'joker')
>>> db.update_user_password('joker', 'alfred')
INFO     [UserManager] Password updated for user 'batman'...
>>> db.logout()  # log out from 'batman' session
(True, 'batman')
>>> token = db.login('batman', 'alfred')  # login with new password
>>> print(len(token))
43
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
@get_authentication
@require_authentication
def update_user_password(self, old_password: str, new_password: str,
                         current_user: User | TokenUser | None = None, **kwargs) -> None:
    """Create a new user with the specified details.

    Parameters
    ----------
    old_password : str
        The password for the user.
    new_password : str
        The new password for the user.
    current_user : User | TokenUser | None
        The current user, based on logged status or provided API token.
        Default is ``None``.

    Raises
    ------
    PermissionError
        If no user is authenticated, that is logged in or provided an API token.
        If the user lacks permissions.

    See Also
    --------
    RBACManager.users.update_password : Method used to actually update the user's password.

    Examples
    --------
    >>> from plantdb.commons.test_database import test_database
    >>> db = test_database()
    >>> db.connect()
    >>> token = db.login('admin', 'admin')
    >>> db.create_user('batman', 'Bruce Wayne', 'joker', roles=Role.CONTRIBUTOR)
    INFO     [UserManager] Welcome Bruce Wayne, please log in...'
    >>> db.logout()  # log out from 'admin' session
    (True, 'admin')
    >>> token = db.login('batman', 'joker')
    >>> db.update_user_password('joker', 'alfred')
    INFO     [UserManager] Password updated for user 'batman'...
    >>> db.logout()  # log out from 'batman' session
    (True, 'batman')
    >>> token = db.login('batman', 'alfred')  # login with new password
    >>> print(len(token))
    43
    >>> db.disconnect()
    """
    return self.rbac_manager.users.update_password(current_user.username, old_password, new_password)

validate_user Link

validate_user(username, password)

Validate the user credentials.

Parameters:

Name Type Description Default

username Link

str

The username provided by the user attempting to log in.

required

password Link

str

The password provided by the user attempting to log in.

required

Returns:

Type Description
bool

True if the login attempt is successful, False otherwise.

Raises:

Type Description
KeyError

If there is an issue accessing necessary user data.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db()  # NoAuthSessionManager with automatic login as 'admin'
>>> db.validate_user('guest', 'guest')
True
>>> db.disconnect()
Source code in plantdb/commons/fsdb/core.py
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
@require_connected_db
def validate_user(self, username: str, password: str) -> bool:
    """Validate the user credentials.

    Parameters
    ----------
    username : str
        The username provided by the user attempting to log in.
    password : str
        The password provided by the user attempting to log in.

    Returns
    -------
    bool
        ``True`` if the login attempt is successful, ``False`` otherwise.

    Raises
    ------
    KeyError
        If there is an issue accessing necessary user data.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db()  # NoAuthSessionManager with automatic login as 'admin'
    >>> db.validate_user('guest', 'guest')
    True
    >>> db.disconnect()
    """
    return self.rbac_manager.users.validate(username, password)

File Link

File(fileset, f_id, **kwargs)

Bases: File, MetadataManager

Implement File for the local File System DataBase from abstract class db.File.

Attributes:

Name Type Description
db FSDB

Database where to find the fileset.

fileset Fileset

Set of files containing the file.

id str

Name of the file in the FSDB local database.

filename str

File name.

metadata dict

Dictionary of metadata attached to the file.

See Also

plantdb.commons.db.File

Notes

File must be written using write_raw or write methods to exist on disk. Else they are just referenced in the database!

Contrary to other classes (Scan & Fileset) the uniqueness is not checked!

Source code in plantdb/commons/fsdb/core.py
3004
3005
3006
3007
3008
3009
def __init__(self, fileset, f_id, **kwargs):
    super().__init__(fileset, f_id, **kwargs)
    self.metadata = {}

    self.session_manager = self.db.session_manager
    self.logger = self.db.logger

get_db Link

get_db()

Get parent database instance.

Returns:

Type Description
DB

The parent database instance.

Source code in plantdb/commons/db.py
478
479
480
481
482
483
484
485
486
def get_db(self):
    """Get parent database instance.

    Returns
    -------
    plantdb.commons.db.DB
        The parent database instance.
    """
    return self.db

get_fileset Link

get_fileset()

Get parent fileset.

Returns:

Type Description
Fileset

The parent fileset instance.

Source code in plantdb/commons/db.py
498
499
500
501
502
503
504
505
506
def get_fileset(self):
    """Get parent fileset.

    Returns
    -------
    plantdb.commons.db.Fileset
        The parent fileset instance.
    """
    return self.fileset

get_id Link

get_id()

Get file id.

Returns:

Type Description
str

The id of the file instance.

Source code in plantdb/commons/db.py
468
469
470
471
472
473
474
475
476
def get_id(self):
    """Get file id.

    Returns
    -------
    str
        The id of the file instance.
    """
    return deepcopy(self.id)

get_metadata Link

get_metadata(key=None, default={}, current_user=None, **kwargs)

Get the metadata associated with a file.

Parameters:

Name Type Description Default

key Link

str

A key that should exist in the file's metadata.

None

default Link

Any

The default value to return if the key does not exist in the metadata. Default is an empty dictionary{}.

{}

Returns:

Type Description
any

If key is None, returns a dictionary. Else, returns the value attached to this key.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> from plantdb.commons.fsdb.path_helpers import _file_metadata_path
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan("myscan_001")
>>> fs = scan.get_fileset('fileset_001')
>>> f = fs.get_file("test_json")
>>> print(f.get_metadata())
{'random json': True}
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
@get_authentication
@use_guest_as_default
@requires_permission(Permission.READ, check_scan_access=True)
def get_metadata(self, key=None, default={}, current_user=None, **kwargs):
    """Get the metadata associated with a file.

    Parameters
    ----------
    key : str
        A key that should exist in the file's metadata.
    default : Any, optional
        The default value to return if the key does not exist in the metadata.
        Default is an empty dictionary``{}``.

    Returns
    -------
    any
        If `key` is ``None``, returns a dictionary.
        Else, returns the value attached to this key.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> from plantdb.commons.fsdb.path_helpers import _file_metadata_path
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan("myscan_001")
    >>> fs = scan.get_fileset('fileset_001')
    >>> f = fs.get_file("test_json")
    >>> print(f.get_metadata())
    {'random json': True}
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    # Use shared lock for read operations
    with self.db.lock_manager.acquire_lock(f"{self.scan.id}/{self.fileset.id}/{self.id}", LockType.SHARED,
                                           current_user.username, LockLevel.FILE):
        return _get_metadata(self.metadata, key, default)

get_scan Link

get_scan()

Get parent scan instance.

Returns:

Type Description
Scan

The parent scan instance.

Source code in plantdb/commons/db.py
488
489
490
491
492
493
494
495
496
def get_scan(self):
    """Get parent scan instance.

    Returns
    -------
    plantdb.commons.db.Scan
        The parent scan instance.
    """
    return self.scan

import_file Link

import_file(path, current_user=None, **kwargs)

Import the file from its local path to the current fileset.

Parameters:

Name Type Description Default

path Link

str or Path

The path to the file to import.

required

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> from plantdb.commons.fsdb.path_helpers import _file_metadata_path
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan("myscan_001")
>>> fs = scan.get_fileset('fileset_001')
>>> file = fs.get_file("test_json")
>>> new_file = fs.create_file('test_json2')
>>> new_file.import_file(file.path())
>>> print(new_file.path().exists())
True
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
@get_authentication
@require_authentication
@requires_permission(Permission.WRITE, check_scan_access=True)
def import_file(self, path, current_user=None, **kwargs):
    """Import the file from its local path to the current fileset.

    Parameters
    ----------
    path : str or pathlib.Path
        The path to the file to import.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> from plantdb.commons.fsdb.path_helpers import _file_metadata_path
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan("myscan_001")
    >>> fs = scan.get_fileset('fileset_001')
    >>> file = fs.get_file("test_json")
    >>> new_file = fs.create_file('test_json2')
    >>> new_file.import_file(file.path())
    >>> print(new_file.path().exists())
    True
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    # Check if the path is a file
    if isinstance(path, str):
        path = Path(path)
    if not os.path.isfile(path):
        raise ValueError(f"The provided path is not a file: {path}.")

    # Use exclusive lock for this operation
    self.logger.debug(
        f"Importing file '{self.id}' in '{self.scan.id}/{self.fileset.id}' as user '{current_user.username}'...")
    with self.db.lock_manager.acquire_lock(f"{self.scan.id}/{self.fileset.id}/{self.id}", LockType.EXCLUSIVE,
                                           current_user.username, LockLevel.FILE):
        # Get the file name and extension
        ext = path.suffix[1:]
        self.filename = _get_filename(self, ext)
        # Get the path to the new `File` instance
        newpath = _file_path(self)
        # Copy the file to its new destination
        copyfile(path, newpath)
        self.store()  # register it to the scan main JSON FILE

    self.logger.debug(f"Done importing file.")
    return

path Link

path()

Get the path to the local file.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_scan=True, with_file=True)
>>> scan = db.get_scan("myscan_001")
>>> fs = scan.get_fileset("fileset_001")
>>> fs.list_files()
['dummy_image', 'test_image', 'test_json']
>>> f = fs.get_file('dummy_image')
>>> f.path()
/tmp/romidb_********/myscan_001/fileset_001/dummy_image.png
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
def path(self) -> pathlib.Path:
    """Get the path to the local file.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_scan=True, with_file=True)
    >>> scan = db.get_scan("myscan_001")
    >>> fs = scan.get_fileset("fileset_001")
    >>> fs.list_files()
    ['dummy_image', 'test_image', 'test_json']
    >>> f = fs.get_file('dummy_image')
    >>> f.path()
    /tmp/romidb_********/myscan_001/fileset_001/dummy_image.png
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    return _file_path(self)

read Link

read()

Read the file and return its contents.

Returns:

Type Description
str

The contents of the file.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan("myscan_001")
>>> fs = scan.get_fileset("fileset_001")
>>> f = fs.get_file("test_json")
>>> js = f.read()
>>> print(js)  # print the content of the file
{
    "Who you gonna call?": "Ghostbuster"
}
>>> # Convert this raw json into a dictionary with dedicated method from `json` library:
>>> import json
>>> js_dict = json.loads(js)
>>> print(js_dict)
{'Who you gonna call?': 'Ghostbuster'}
>>> print(type(js_dict))
<class 'dict'>
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
def read(self):
    """Read the file and return its contents.

    Returns
    -------
    str
        The contents of the file.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan("myscan_001")
    >>> fs = scan.get_fileset("fileset_001")
    >>> f = fs.get_file("test_json")
    >>> js = f.read()
    >>> print(js)  # print the content of the file
    {
        "Who you gonna call?": "Ghostbuster"
    }
    >>> # Convert this raw json into a dictionary with dedicated method from `json` library:
    >>> import json
    >>> js_dict = json.loads(js)
    >>> print(js_dict)
    {'Who you gonna call?': 'Ghostbuster'}
    >>> print(type(js_dict))
    <class 'dict'>
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    path = _file_path(self)
    with path.open(mode="r") as f:
        return f.read()

read_raw Link

read_raw()

Read the file and return its contents.

Returns:

Type Description
bytes

The contents of the file.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan("myscan_001")
>>> fs = scan.get_fileset("fileset_001")
>>> f = fs.get_file("test_json")
>>> js = f.read_raw()
>>> print(js)  # print the raw bytes content
>>> # Convert this raw json into a dictionary with dedicated method from `json` library:
>>> import json
>>> js_dict = json.loads(js)
>>> print(js_dict)
{'Who you gonna call?': 'Ghostbuster'}
>>> print(type(js_dict))
<class 'dict'>
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
def read_raw(self):
    """Read the file and return its contents.

    Returns
    -------
    bytes
        The contents of the file.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan("myscan_001")
    >>> fs = scan.get_fileset("fileset_001")
    >>> f = fs.get_file("test_json")
    >>> js = f.read_raw()
    >>> print(js)  # print the raw bytes content
    >>> # Convert this raw json into a dictionary with dedicated method from `json` library:
    >>> import json
    >>> js_dict = json.loads(js)
    >>> print(js_dict)
    {'Who you gonna call?': 'Ghostbuster'}
    >>> print(type(js_dict))
    <class 'dict'>
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    path = _file_path(self)
    with path.open(mode="rb") as f:
        return f.read()

set_metadata Link

set_metadata(data, value=None, current_user=None, **kwargs)

Add a new metadata to the file.

Parameters:

Name Type Description Default

data Link

str or dict

If a string, a key to address the value. If a dictionary, update the metadata dictionary with data (value is then unused).

required

value Link

any

The value to assign to data if the latest is not a dictionary.

None

Examples:

>>> import json
>>> from plantdb.commons.test_database import dummy_db
>>> from plantdb.commons.fsdb.path_helpers import _file_metadata_path
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan("myscan_001")
>>> fs = scan.get_fileset('fileset_001')
>>> file = fs.get_file("test_json")
>>> file.set_metadata("test", "value")
>>> p = _file_metadata_path(file)
>>> print(p.exists())
True
>>> print(json.load(p.open(mode='r')))
{'random json': True, 'test': 'value'}
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
@get_authentication
@require_authentication
@requires_permission(Permission.WRITE, check_scan_access=True)
def set_metadata(self, data, value=None, current_user=None, **kwargs):
    """Add a new metadata to the file.

    Parameters
    ----------
    data : str or dict
        If a string, a key to address the `value`.
        If a dictionary, update the metadata dictionary with `data` (`value` is then unused).
    value : any, optional
        The value to assign to `data` if the latest is not a dictionary.

    Examples
    --------
    >>> import json
    >>> from plantdb.commons.test_database import dummy_db
    >>> from plantdb.commons.fsdb.path_helpers import _file_metadata_path
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan("myscan_001")
    >>> fs = scan.get_fileset('fileset_001')
    >>> file = fs.get_file("test_json")
    >>> file.set_metadata("test", "value")
    >>> p = _file_metadata_path(file)
    >>> print(p.exists())
    True
    >>> print(json.load(p.open(mode='r')))
    {'random json': True, 'test': 'value'}
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    # The locking mechanism is handled by the `MetadataManager._update_metadata` method
    self._update_metadata(data, value, current_user, _store_file_metadata, cls_name="File")

store Link

store()

Save changes to the scan main JSON FILE (files.json).

Source code in plantdb/commons/fsdb/core.py
3135
3136
3137
3138
def store(self):
    """Save changes to the scan main JSON FILE (``files.json``)."""
    self.fileset.store()
    return

write Link

write(data, ext='', current_user=None, **kwargs)

Write a file from data.

Parameters:

Name Type Description Default

data Link

str

A string representation of the content to write.

required

ext Link

str

The extension to use to save the file.

''

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan("myscan_001")
>>> fs = scan.get_fileset("fileset_001")
>>> new_f = fs.create_file('file_007')
>>> md = {"Name": "Bond, James Bond"}  # Create an example dictionary to save as JSON
>>> import json
>>> data = json.dumps(md)
>>> print(data)
{"Name": "Bond, James Bond"}
>>> print(type(data))
<class 'str'>
>>> new_f.write(data, 'json')
>>> print([f.name for f in fs.path().iterdir()])
['dummy_image.png', 'test_json.json', 'test_image.png', 'file_007.json']
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
@get_authentication
@require_authentication
@requires_permission(Permission.WRITE, check_scan_access=True)
def write(self, data, ext="", current_user=None, **kwargs):
    """Write a file from data.

    Parameters
    ----------
    data : str
        A string representation of the content to write.
    ext : str, optional
        The extension to use to save the file.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan("myscan_001")
    >>> fs = scan.get_fileset("fileset_001")
    >>> new_f = fs.create_file('file_007')
    >>> md = {"Name": "Bond, James Bond"}  # Create an example dictionary to save as JSON
    >>> import json
    >>> data = json.dumps(md)
    >>> print(data)
    {"Name": "Bond, James Bond"}
    >>> print(type(data))
    <class 'str'>
    >>> new_f.write(data, 'json')
    >>> print([f.name for f in fs.path().iterdir()])
    ['dummy_image.png', 'test_json.json', 'test_image.png', 'file_007.json']
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    # Use exclusive lock for this operation
    self.logger.debug(
        f"Writing file '{self.id}' in '{self.scan.id}/{self.fileset.id}' as user '{current_user.username}'...")
    with self.db.lock_manager.acquire_lock(f"{self.scan.id}/{self.fileset.id}/{self.id}", LockType.EXCLUSIVE,
                                           current_user.username, LockLevel.FILE):
        self.filename = _get_filename(self, ext)
        path = _file_path(self)
        with path.open(mode="w") as f:
            f.write(data)
        self.store()

    self.logger.debug(f"Done writing file.")
    return

write_raw Link

write_raw(data, ext='', current_user=None, **kwargs)

Write a file from raw byte data.

Parameters:

Name Type Description Default

data Link

bytes

The raw byte content to write.

required

ext Link

str

The extension to use to save the file.

''

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan("myscan_001")
>>> fs = scan.get_fileset("fileset_001")
>>> new_f = fs.create_file('file_007')
>>> md = {"Name": "Bond, James Bond"}  # Create an example dictionary to save as JSON
>>> import json
>>> data = json.dumps(md).encode()
>>> print(data)
b'{"Name": "Bond, James Bond"}'
>>> new_f.write_raw(data, 'json')
>>> print([f.name for f in fs.path().iterdir()])
['dummy_image.png', 'test_json.json', 'test_image.png', 'file_007.json']
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
@get_authentication
@require_authentication
@requires_permission(Permission.WRITE, check_scan_access=True)
def write_raw(self, data, ext="", current_user=None, **kwargs):
    """Write a file from raw byte data.

    Parameters
    ----------
    data : bytes
        The raw byte content to write.
    ext : str, optional
        The extension to use to save the file.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan("myscan_001")
    >>> fs = scan.get_fileset("fileset_001")
    >>> new_f = fs.create_file('file_007')
    >>> md = {"Name": "Bond, James Bond"}  # Create an example dictionary to save as JSON
    >>> import json
    >>> data = json.dumps(md).encode()
    >>> print(data)
    b'{"Name": "Bond, James Bond"}'
    >>> new_f.write_raw(data, 'json')
    >>> print([f.name for f in fs.path().iterdir()])
    ['dummy_image.png', 'test_json.json', 'test_image.png', 'file_007.json']
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    # Use file-level exclusive lock for this operation
    self.logger.debug(
        f"Writing raw file '{self.id}' in '{self.scan.id}/{self.fileset.id}' as user '{current_user.username}'...")
    with self.db.lock_manager.acquire_lock(f"{self.scan.id}/{self.fileset.id}/{self.id}", LockType.EXCLUSIVE,
                                           current_user.username, LockLevel.FILE):
        self.filename = _get_filename(self, ext)
        path = _file_path(self)
        with path.open(mode="wb") as f:
            f.write(data)
        self.store()

    self.logger.debug(f"Done writing raw file.")
    return

Fileset Link

Fileset(scan, fs_id)

Bases: Fileset, MetadataManager

Implement Fileset for the local File System DataBase from the abstract class db.Fileset.

Implementation of a fileset as a simple files structure with: * directory ${FSDB.basedir}/${FSDB.scan.id}/${Fileset.id} containing a set of files; * directory ${FSDB.basedir}/${FSDB.scan.id}/metadata containing JSON metadata associated with files; * JSON file files.json containing the list of files from fileset;

Attributes:

Name Type Description
db FSDB

A local database instance hosting the Scan instance.

scan Scan

A scan instance hosting this Fileset instance.

id str

The identifier of this Fileset instance in the scan.

metadata dict

A metadata dictionary.

files dict[str, File]

A dictionary of File instances attached to the fileset, indexed by their identifier.

See Also

plantdb.commons.db.Fileset

Constructor.

Parameters:

Name Type Description Default

scan Link

Scan

A scan instance containing the fileset.

required

fs_id Link

str

The identifier of the fileset instance.

required
Source code in plantdb/commons/fsdb/core.py
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
def __init__(self, scan, fs_id):
    """Constructor.

    Parameters
    ----------
    scan : plantdb.commons.fsdb.core.Scan
        A scan instance containing the fileset.
    fs_id : str
        The identifier of the fileset instance.
    """
    super().__init__(scan, fs_id)
    # Defines attributes:
    self.metadata = {}
    self.files = {}

    self.session_manager = self.db.session_manager
    self.logger = self.db.logger

create_file Link

create_file(f_id, metadata=None, current_user=None, **kwargs)

Create a new File instance in the local database attached to the current Fileset instance.

Parameters:

Name Type Description Default

f_id Link

str

The name of the file to create.

required

Returns:

Type Description
File

The File instance created in the current Fileset instance.

Raises:

Type Description
PermissionError

If no user is authenticated. If the user lacks permission to create a fileset.

FileExistsError

If the f_id already exists in the local database.

ValueError

If the given f_id is invalid.

See Also

plantdb.commons.fsdb.validation._is_valid_id

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan('myscan_001')
>>> fs = scan.get_fileset('fileset_001')
>>> fs.list_files()
['dummy_image', 'test_image', 'test_json']
>>> new_f = fs.create_file('file_007')
>>> fs.list_files()
['dummy_image', 'test_image', 'test_json', 'file_007']
>>> print([f.name for f in fs.path().iterdir()])  # the file only exists in the database, not on drive!
['dummy_image.png', 'test_json.json', 'test_image.png']
>>> md = {"Name": "Bond, James Bond"}  # Create an example dictionary to save as JSON
>>> from plantdb.commons import io
>>> io.write_json(new_f, md, "json")  # write the file on drive
>>> print([f.name for f in fs.path().iterdir()])
['file_007.json', 'test_image.png', 'test_json.json', 'dummy_image.png']
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
@get_authentication
@require_authentication
@requires_permission(Permission.WRITE, check_scan_access=True)
def create_file(self, f_id, metadata=None, current_user=None, **kwargs):
    """Create a new `File` instance in the local database attached to the current `Fileset` instance.

    Parameters
    ----------
    f_id : str
        The name of the file to create.

    Returns
    -------
    plantdb.commons.fsdb.core.File
        The `File` instance created in the current `Fileset` instance.

    Raises
    ------
    PermissionError
        If no user is authenticated.
        If the user lacks permission to create a fileset.
    FileExistsError
        If the ``f_id`` already exists in the local database.
    ValueError
        If the given ``f_id`` is invalid.

    See Also
    --------
    plantdb.commons.fsdb.validation._is_valid_id

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan('myscan_001')
    >>> fs = scan.get_fileset('fileset_001')
    >>> fs.list_files()
    ['dummy_image', 'test_image', 'test_json']
    >>> new_f = fs.create_file('file_007')
    >>> fs.list_files()
    ['dummy_image', 'test_image', 'test_json', 'file_007']
    >>> print([f.name for f in fs.path().iterdir()])  # the file only exists in the database, not on drive!
    ['dummy_image.png', 'test_json.json', 'test_image.png']
    >>> md = {"Name": "Bond, James Bond"}  # Create an example dictionary to save as JSON
    >>> from plantdb.commons import io
    >>> io.write_json(new_f, md, "json")  # write the file on drive
    >>> print([f.name for f in fs.path().iterdir()])
    ['file_007.json', 'test_image.png', 'test_json.json', 'dummy_image.png']
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """

    # Verify if the given `fs_id` is valid
    if not _is_valid_id(f_id):
        raise ValueError(f"Invalid file identifier '{f_id}'!")
    # Verify if the given `f_id` already exists in the local database
    if self.file_exists(f_id):
        raise FileExistsError(self, f_id)

    # Use file-level exclusive lock for file creation
    self.logger.debug(
        f"Creating a file '{f_id}' in '{self.scan.id}/{self.id}' as '{current_user.username}' user...")
    with self.db.lock_manager.acquire_lock(f"{self.scan.id}/{self.id}/{f_id}", LockType.EXCLUSIVE,
                                           current_user.username, LockLevel.FILE):
        # Create the new File
        file = File(self, f_id)  # Initialize a new File instance

        # Set initial metadata
        initial_metadata = metadata or {}
        now = iso_date_now()
        initial_metadata['created'] = now  # creation timestamp
        initial_metadata['last_modified'] = now  # modification timestamp
        initial_metadata['created_by'] = current_user.fullname

        # Cannot use fileset.set_metadata(initial_metadata) here as ownership is not granted yet!
        _set_metadata(file.metadata, initial_metadata, None)  # add metadata dictionary to the new scan
        _store_file_metadata(file)

        self.files.update({f_id: file})  # Update filesets's file dictionary
        self.store()  # Store fileset instance to the JSON

    self.logger.debug(f"Done creating the file.")
    return file

delete_file Link

delete_file(f_id, current_user=None, **kwargs)

Delete a given file from the current fileset.

Parameters:

Name Type Description Default

f_id Link

str

Name of the file to delete.

required

Raises:

Type Description
PermissionError

If no user is authenticated. If the user does not have permission to delete this file.

ValueError

If the file does not exist.

See Also

plantdb.commons.fsdb.file_ops._delete_file

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan('myscan_001')
>>> fs = scan.get_fileset('fileset_001')
>>> fs.list_files()
['dummy_image', 'test_image', 'test_json']
>>> fs.delete_file('dummy_image')
INFO     [plantdb.commons.fsdb] Deleted JSON metadata file for file 'dummy_image' from 'myscan_001/fileset_001'.
INFO     [plantdb.commons.fsdb] Deleted file 'dummy_image' from 'myscan_001/fileset_001'.
>>> fs.list_files()
['test_image', 'test_json']
>>> print([f.name for f in fs.path().iterdir()])  # the file has been removed from the drive and the database
['test_json.json', 'test_image.png']
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
@get_authentication
@require_authentication
@requires_permission(Permission.DELETE, check_scan_access=True)
def delete_file(self, f_id, current_user=None, **kwargs):
    """Delete a given file from the current fileset.

    Parameters
    ----------
    f_id : str
        Name of the file to delete.

    Raises
    ------
    PermissionError
        If no user is authenticated.
        If the user does not have permission to delete this file.
    ValueError
        If the file does not exist.

    See Also
    --------
    plantdb.commons.fsdb.file_ops._delete_file

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan('myscan_001')
    >>> fs = scan.get_fileset('fileset_001')
    >>> fs.list_files()
    ['dummy_image', 'test_image', 'test_json']
    >>> fs.delete_file('dummy_image')
    INFO     [plantdb.commons.fsdb] Deleted JSON metadata file for file 'dummy_image' from 'myscan_001/fileset_001'.
    INFO     [plantdb.commons.fsdb] Deleted file 'dummy_image' from 'myscan_001/fileset_001'.
    >>> fs.list_files()
    ['test_image', 'test_json']
    >>> print([f.name for f in fs.path().iterdir()])  # the file has been removed from the drive and the database
    ['test_json.json', 'test_image.png']
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    # Verify if the given `fs_id` exists in the local database
    if not self.file_exists(f_id):
        raise ValueError(f"File '{f_id}' does not exist in '{self.scan.id}/{self.id}'")

    # Use exclusive lock for fileset creation
    self.logger.debug(
        f"Deleting file '{f_id}' from '{self.scan.id}/{self.id}' as '{current_user.username}' user...")
    with self.db.lock_manager.acquire_lock(f"{self.scan.id}/{self.id}/{f_id}", LockType.EXCLUSIVE,
                                           current_user.username, LockLevel.FILE):
        f = self.files[f_id]
        _delete_file(f)  # delete the file
        self.files.pop(f_id)  # remove the File instance from the fileset
        self.store()  # save the changes to the scan main JSON FILE (``files.json``)

    self.logger.debug(f"Done deleting file.")
    return

file_exists Link

file_exists(file_id)

Check if a given file ID exists in the database.

Parameters:

Name Type Description Default

file_id Link

str

The ID of the file to check.

required

Returns:

Type Description
bool

True if the file exists, False otherwise.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_scan=True)
>>> scan = db.get_scan('myscan_001')
>>> scan.file_exists("myfile_001")
False
>>> scan.create_file("myfile_001")
>>> scan.file_exists("myfile_001")
True
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
def file_exists(self, file_id: str) -> bool:
    """Check if a given file ID exists in the database.

    Parameters
    ----------
    file_id : str
        The ID of the file to check.

    Returns
    -------
    bool
        ``True`` if the file exists, ``False`` otherwise.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_scan=True)
    >>> scan = db.get_scan('myscan_001')
    >>> scan.file_exists("myfile_001")
    False
    >>> scan.create_file("myfile_001")
    >>> scan.file_exists("myfile_001")
    True
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    return file_id in self.files

get_db Link

get_db()

Get parent database instance.

Returns:

Type Description
DB

The parent database instance.

Source code in plantdb/commons/db.py
321
322
323
324
325
326
327
328
329
def get_db(self):
    """Get parent database instance.

    Returns
    -------
    plantdb.commons.db.DB
        The parent database instance.
    """
    return self.db

get_file Link

get_file(f_id)

Get a File instance, of given f_id, in the current fileset.

Parameters:

Name Type Description Default

f_id Link

str

Name of the file to get/create.

required

Returns:

Type Description
File

The retrieved or created file.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan("myscan_001")
>>> fs = scan.get_fileset("fileset_001")
>>> f = fs.get_file("test_image")
>>> # To read the file you need to load the right reader from plantdb.commons.io
>>> from plantdb.commons.io import read_image
>>> img = read_image(f)
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
def get_file(self, f_id):
    """Get a `File` instance, of given `f_id`, in the current fileset.

    Parameters
    ----------
    f_id : str
        Name of the file to get/create.

    Returns
    -------
    plantdb.commons.fsdb.core.File
        The retrieved or created file.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan("myscan_001")
    >>> fs = scan.get_fileset("fileset_001")
    >>> f = fs.get_file("test_image")
    >>> # To read the file you need to load the right reader from plantdb.commons.io
    >>> from plantdb.commons.io import read_image
    >>> img = read_image(f)
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    if not self.file_exists(f_id):
        raise FileNotFoundError(self, f_id)

    return self.files[f_id]

get_files Link

get_files(query=None, fuzzy=False)

Get the list of File instances defined in the current fileset, possibly filtered using a query.

Parameters:

Name Type Description Default

query Link

dict

Query to use to get a list of files.

None

fuzzy Link

bool

Whether to use fuzzy matching or not, that is the use of regular expressions.

False

Returns:

Type Description
list of plantdb.commons.fsdb.core.File

List of Files, filtered by the query if any.

See Also

plantdb.commons.fsdb._filter_query

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan('myscan_001')
>>> fs = scan.get_fileset('fileset_001')
>>> fs.get_files()
[<plantdb.commons.fsdb.core.File at *x************>,
 <plantdb.commons.fsdb.core.File at *x************>,
 <plantdb.commons.fsdb.core.File at *x************>]
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
def get_files(self, query=None, fuzzy=False):
    """Get the list of `File` instances defined in the current fileset, possibly filtered using a `query`.

    Parameters
    ----------
    query : dict, optional
        Query to use to get a list of files.
    fuzzy : bool
        Whether to use fuzzy matching or not, that is the use of regular expressions.

    Returns
    -------
    list of plantdb.commons.fsdb.core.File
        List of `File`s, filtered by the query if any.

    See Also
    --------
    plantdb.commons.fsdb._filter_query

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan('myscan_001')
    >>> fs = scan.get_fileset('fileset_001')
    >>> fs.get_files()
    [<plantdb.commons.fsdb.core.File at *x************>,
     <plantdb.commons.fsdb.core.File at *x************>,
     <plantdb.commons.fsdb.core.File at *x************>]
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    return _filter_query(list(self.files.values()), query, fuzzy)

get_id Link

get_id()

Get the fileset instance id.

Returns:

Type Description
str

The id of the fileset instance.

Source code in plantdb/commons/db.py
311
312
313
314
315
316
317
318
319
def get_id(self):
    """Get the fileset instance id.

    Returns
    -------
    str
        The id of the fileset instance.
    """
    return deepcopy(self.id)

get_metadata Link

get_metadata(key=None, default={}, current_user=None, **kwargs)

Get the metadata associated with a fileset.

Parameters:

Name Type Description Default

key Link

str

A key that should exist in the fileset's metadata.

None

default Link

Any

The default value to return if the key does not exist in the metadata. Default is an empty dictionary{}.

{}

Returns:

Type Description
any

If key is None, returns a dictionary. Else, returns the value attached to this key.

Examples:

>>> import json
>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan("myscan_001")
>>> fs = scan.get_fileset('fileset_001')
>>> fs.set_metadata("test", "value")
>>> print(fs.get_metadata("test"))
'value'
>>> db._is_dummy=False  # to avoid cleaning up the temporary dummy database
>>> db.disconnect()
>>> db.connect()
>>> scan = db.get_scan("myscan_001")
>>> fs = scan.get_fileset('fileset_001')
>>> print(fs.get_metadata("test"))
'value'
>>> db._is_dummy=True
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
@get_authentication
@use_guest_as_default
@requires_permission(Permission.READ, check_scan_access=True)
def get_metadata(self, key=None, default={}, current_user=None, **kwargs):
    """Get the metadata associated with a fileset.

    Parameters
    ----------
    key : str
        A key that should exist in the fileset's metadata.
    default : Any, optional
        The default value to return if the key does not exist in the metadata.
        Default is an empty dictionary``{}``.

    Returns
    -------
    any
        If `key` is ``None``, returns a dictionary.
        Else, returns the value attached to this key.

    Examples
    --------
    >>> import json
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan("myscan_001")
    >>> fs = scan.get_fileset('fileset_001')
    >>> fs.set_metadata("test", "value")
    >>> print(fs.get_metadata("test"))
    'value'
    >>> db._is_dummy=False  # to avoid cleaning up the temporary dummy database
    >>> db.disconnect()
    >>> db.connect()
    >>> scan = db.get_scan("myscan_001")
    >>> fs = scan.get_fileset('fileset_001')
    >>> print(fs.get_metadata("test"))
    'value'
    >>> db._is_dummy=True
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    # Use shared lock for read operations
    with self.db.lock_manager.acquire_lock(f"{self.scan.id}/{self.id}", LockType.SHARED, current_user.username,
                                           LockLevel.FILESET):
        return _get_metadata(self.metadata, key, default)

get_scan Link

get_scan()

Get parent scan instance.

Returns:

Type Description
Scan

The parent scan instance.

Source code in plantdb/commons/db.py
331
332
333
334
335
336
337
338
339
def get_scan(self):
    """Get parent scan instance.

    Returns
    -------
    plantdb.commons.db.Scan
        The parent scan instance.
    """
    return self.scan

list_files Link

list_files(query=None, fuzzy=False)

Get the list of files identifiers in the fileset.

Parameters:

Name Type Description Default

query Link

dict

A query to use to filter the returned list of files. The metadata must match given key and value from the query dictionary.

None

fuzzy Link

bool

Whether to use fuzzy matching or not, that is the use of regular expressions.

False

Returns:

Type Description
list[str]

The list of file identifiers in the fileset.

See Also

plantdb.commons.fsdb._filter_query

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_scan=True, with_file=True)
>>> scan = db.get_scan("myscan_001")
>>> fs = scan.get_fileset("fileset_001")
>>> fs.list_files()
['dummy_image', 'test_image', 'test_json']
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
def list_files(self, query=None, fuzzy=False) -> list:
    """Get the list of files identifiers in the fileset.

    Parameters
    ----------
    query : dict, optional
        A query to use to filter the returned list of files.
        The metadata must match given ``key`` and ``value`` from the `query` dictionary.
    fuzzy : bool
        Whether to use fuzzy matching or not, that is the use of regular expressions.

    Returns
    -------
    list[str]
        The list of file identifiers in the fileset.

    See Also
    --------
    plantdb.commons.fsdb._filter_query

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_scan=True, with_file=True)
    >>> scan = db.get_scan("myscan_001")
    >>> fs = scan.get_fileset("fileset_001")
    >>> fs.list_files()
    ['dummy_image', 'test_image', 'test_json']
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    if query is None:
        return list(self.files.keys())
    else:
        return [f.id for f in _filter_query(list(self.files.values()), query, fuzzy)]

path Link

path()

Get the path to the local fileset.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_scan=True, with_file=True)
>>> [scan.id for scan in db.get_scans()]  # list scan ids found in database
['myscan_001']
>>> scan = db.get_scan("myscan_001")
>>> print(scan.path())
/tmp/romidb_********/myscan_001
>>> [fs.id for fs in scan.get_filesets()]  # list fileset ids found in scan
['fileset_001']
>>> fs = scan.get_fileset("fileset_001")
>>> print(fs.path())
/tmp/romidb_********/myscan_001/fileset_001
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
def path(self) -> pathlib.Path:
    """Get the path to the local fileset.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_scan=True, with_file=True)
    >>> [scan.id for scan in db.get_scans()]  # list scan ids found in database
    ['myscan_001']
    >>> scan = db.get_scan("myscan_001")
    >>> print(scan.path())
    /tmp/romidb_********/myscan_001
    >>> [fs.id for fs in scan.get_filesets()]  # list fileset ids found in scan
    ['fileset_001']
    >>> fs = scan.get_fileset("fileset_001")
    >>> print(fs.path())
    /tmp/romidb_********/myscan_001/fileset_001
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    return _fileset_path(self)

set_metadata Link

set_metadata(data, value=None, current_user=None, **kwargs)

Add a new metadata to the fileset.

Parameters:

Name Type Description Default

data Link

str or dict

If a string, a key to address the value. If a dictionary, update the metadata dictionary with data (value is then unused).

required

value Link

any

The value to assign to data if the latest is not a dictionary.

None

Raises:

Type Description
PermissionError

If no user is authenticated. If the user lacks permission to modify the metadata.

Examples:

>>> import json
>>> from plantdb.commons.test_database import dummy_db
>>> from plantdb.commons.fsdb.path_helpers import _fileset_metadata_json_path
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan("myscan_001")
>>> fs = scan.get_fileset('fileset_001')
>>> fs.set_metadata("test", "value")
>>> p = _fileset_metadata_json_path(fs)
>>> print(p.exists())
True
>>> print(json.load(p.open(mode='r')))
{'test': 'value'}
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
@get_authentication
@require_authentication
@requires_permission(Permission.WRITE, check_scan_access=True)
def set_metadata(self, data, value=None, current_user=None, **kwargs):
    """Add a new metadata to the fileset.

    Parameters
    ----------
    data : str or dict
        If a string, a key to address the `value`.
        If a dictionary, update the metadata dictionary with `data` (`value` is then unused).
    value : any, optional
        The value to assign to `data` if the latest is not a dictionary.

    Raises
    ------
    PermissionError
        If no user is authenticated.
        If the user lacks permission to modify the metadata.

    Examples
    --------
    >>> import json
    >>> from plantdb.commons.test_database import dummy_db
    >>> from plantdb.commons.fsdb.path_helpers import _fileset_metadata_json_path
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan("myscan_001")
    >>> fs = scan.get_fileset('fileset_001')
    >>> fs.set_metadata("test", "value")
    >>> p = _fileset_metadata_json_path(fs)
    >>> print(p.exists())
    True
    >>> print(json.load(p.open(mode='r')))
    {'test': 'value'}
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    # The locking mechanism is handled by the `MetadataManager._update_metadata` method
    self._update_metadata(data, value, current_user, _store_fileset_metadata, cls_name="Fileset")

store Link

store()

Save changes to the scan main JSON FILE (files.json).

Source code in plantdb/commons/fsdb/core.py
2914
2915
2916
2917
def store(self):
    """Save changes to the scan main JSON FILE (``files.json``)."""
    self.scan.store()
    return

Scan Link

Scan(db, scan_id)

Bases: Scan, MetadataManager

Implement Scan for the local File System DataBase from the abstract class db.Scan.

Implementation of a scan as a simple file structure with: * directory ${Scan.db.basedir}/${Scan.db.id} as scan root directory; * (OPTIONAL) directory ${Scan.db.basedir}/${Scan.db.id}/metadata containing JSON metadata file * (OPTIONAL) JSON file metadata.json with Scan metadata

Attributes:

Name Type Description
db FSDB

A local database instance hosting this Scan instance.

id str

The identifier of this Scan instance in the local database db.

metadata dict

A metadata dictionary.

filesets dict[str, Fileset]

A dictionary of Fileset instances, indexed by their identifier.

Notes

Optional directory metadata & JSON file metadata.json are found when using method set_metadata().

See Also

plantdb.commons.db.Scan

Examples:

>>> import os
>>> from plantdb.commons.fsdb.core import Scan
>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db()
>>> # Example #1: Initialize a `Scan` object using an `FSBD` object:
>>> scan = Scan(db, '007')
>>> print(type(scan))
<class 'plantdb.commons.fsdb.core.Scan'>
>>> print(scan.path())  # the obtained path should be different as the path to the created `dummy_db` change...
/tmp/romidb_j0pbkoo0/007
>>> print(db.get_scan('007'))  # Note that it did NOT create this `Scan` in the database!
None
>>> print(os.listdir(db.path()))  # And it is NOT found under the `basedir` directory
['romidb']
>>> # HOWEVER if you add metadata to the `Scan` object:
>>> scan.set_metadata({'Name': "Bond... James Bond!"})
>>> print(scan.metadata)
{'Name': 'Bond... James Bond!'}
>>> print(db.get_scan('007'))  # The `Scan` is still not found in the database!
None
>>> print(os.listdir(db.path()))  # BUT it is now found under the `basedir` directory
['007', 'romidb']
>>> print(os.listdir(os.path.join(db.path(), scan.id)))  # Same goes for the metadata
['metadata']
>>> print(os.listdir(os.path.join(db.path(), scan.id, "metadata")))  # Same goes for the metadata
>>> db.disconnect()  # clean up (delete) the temporary dummy database
>>> # Example #2: Get it from an `FSDB` object:
>>> db = dummy_db()
>>> scan = db.create_scan('007')
>>> print(type(scan))
<class 'plantdb.commons.fsdb.core.Scan'>
>>> print(db.get_scan('007'))  # This time the `Scan` object is found in the `FSBD`
<plantdb.commons.fsdb.core.Scan object at 0x7f34fc860fd0>
>>> print(os.listdir(db.path()))  # And it is found under the `basedir` directory
['007', 'romidb']
>>> print(os.listdir(os.path.join(db.path(), scan.id)))  # Same goes for the metadata
['metadata']
>>> db._is_dummy = False  # to avoid cleaning up the
>>> db.disconnect()
>>> # When reconnecting to db, if created scan is EMPTY (no Fileset & File) it is not found!
>>> db.connect()
>>> print(db.get_scan('007'))
None
>>> db._is_dummy = True  # to clean up the temporary dummy database
>>> db.disconnect()  # clean up (delete) the temporary dummy database
>>> # Example #3: Use an existing database:
>>> from os import environ
>>> from plantdb.commons.fsdb.core import FSDB
>>> db = FSDB(environ.get('ROMI_DB', "/data/ROMI/DB/"))
>>> db.connect()
>>> scan = db.get_scan('sango_90_300_36')
>>> scan.get_metadata()

Scan dataset constructor.

Parameters:

Name Type Description Default

db Link

FSDB

The database to put/find the scan dataset.

required

scan_id Link

str

The scan dataset name, should be unique in the db.

required
Source code in plantdb/commons/fsdb/core.py
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
def __init__(self, db, scan_id):
    """Scan dataset constructor.

    Parameters
    ----------
    db : plantdb.commons.fsdb.core.FSDB
        The database to put/find the scan dataset.
    scan_id : str
        The scan dataset name, should be unique in the `db`.
    """
    super().__init__(db, scan_id)
    # Defines attributes:
    self.metadata = {}
    self.filesets = {}
    self.measures = None

    self.session_manager = self.db.session_manager
    self.logger = self.db.logger

owner property Link

owner

A property method to retrieve or set the owner of a resource.

If the owner is not already defined in the resource's metadata, this property ensures that a default owner is assigned (using the 'guest' user). The updated metadata is then stored in the database, and the resource is reloaded.

Returns:

Type Description
str

The owner of the resource, as defined in the metadata.

See Also

rbac_manager.ensure_scan_owner : Ensures the presence of a valid owner in the metadata. _store_scan_metadata : Saves updated metadata to the database. db.reload : Reloads the resource from the database after updates.

change_owner Link

change_owner(new_owner, current_user=None, **kwargs)

Change the owner of the scan.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db()
>>> new_scan = db.create_scan('007', metadata={'project': 'GoldenEye'})  # create a new scan dataset
>>> print(new_scan.get_metadata('owner'))
admin
>>> new_scan.change_owner('guest')
>>> print(new_scan.get_metadata('owner'))
guest
>>> new_scan.change_owner('admin')
Source code in plantdb/commons/fsdb/core.py
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
@get_authentication
@require_authentication
@requires_permission(Permission.DELETE, check_scan_access=True)
def change_owner(self, new_owner, current_user=None, **kwargs):
    """Change the owner of the scan.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db()
    >>> new_scan = db.create_scan('007', metadata={'project': 'GoldenEye'})  # create a new scan dataset
    >>> print(new_scan.get_metadata('owner'))
    admin
    >>> new_scan.change_owner('guest')
    >>> print(new_scan.get_metadata('owner'))
    guest
    >>> new_scan.change_owner('admin')
    """
    # Verify that the new owner exists:
    if not self.db.rbac_manager.users.exists(new_owner):
        self.logger.error(f"Owner '{new_owner}' does not exist, can not change ownership!")
        return

    # Use exclusive lock for metadata updates
    self.logger.debug(f"Updating '{self.id}' scan owner to '{new_owner}' user...")
    with self.db.lock_manager.acquire_lock(self.id, LockType.EXCLUSIVE, current_user.username, LockLevel.SCAN):
        # Update metadata
        _set_metadata(self.metadata, 'owner', new_owner)
        # Ensure modification timestamp
        _set_metadata(self.metadata, 'last_modified', iso_date_now())
        _store_scan_metadata(self)

    self.logger.debug(f"Done updating the scan owner.")
    return

create_fileset Link

create_fileset(fs_id, metadata=None, current_user=None, **kwargs)

Create a new Fileset instance in the local database attached to the current Scan instance.

Parameters:

Name Type Description Default

fs_id Link

str

The name of the fileset to create. It should not exist in the current Scan instance.

required

metadata Link

dict

A dictionary with the initial metadata for this new fileset.

None

Returns:

Type Description
Fileset

The Fileset instance created in the current Scan instance.

Raises:

Type Description
PermissionError

If no user is authenticated. If the user lacks permission to create a fileset.

FilesetExistsError

If the fs_id already exists in the local database.

ValueError

If the given fs_id is invalid.

See Also

plantdb.commons.fsdb.validation._is_valid_id plantdb.commons.fsdb.file_ops._make_fileset

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_fileset=True)
>>> scan = db.get_scan('myscan_001')
>>> scan.list_filesets()
['fileset_001']
>>> new_fs = scan.create_fileset('fs_007')
>>> scan.list_filesets()
['fileset_001', 'fs_007']
>>> wrong_fs = scan.create_fileset('fileset_001')
OSError: Given fileset identifier 'fileset_001' already exists!
>>> wrong_fs = scan.create_fileset('fileset/001')
OSError: Invalid fileset identifier 'fileset/001'!
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
@get_authentication
@require_authentication
@requires_permission(Permission.WRITE, check_scan_access=True)
def create_fileset(self, fs_id, metadata=None, current_user=None, **kwargs):
    """Create a new `Fileset` instance in the local database attached to the current `Scan` instance.

    Parameters
    ----------
    fs_id : str
        The name of the fileset to create. It should not exist in the current `Scan` instance.
    metadata : dict, optional
        A dictionary with the initial metadata for this new fileset.

    Returns
    -------
    plantdb.commons.fsdb.core.Fileset
        The `Fileset` instance created in the current `Scan` instance.

    Raises
    ------
    PermissionError
        If no user is authenticated.
        If the user lacks permission to create a fileset.
    FilesetExistsError
        If the ``fs_id`` already exists in the local database.
    ValueError
        If the given ``fs_id`` is invalid.

    See Also
    --------
    plantdb.commons.fsdb.validation._is_valid_id
    plantdb.commons.fsdb.file_ops._make_fileset

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_fileset=True)
    >>> scan = db.get_scan('myscan_001')
    >>> scan.list_filesets()
    ['fileset_001']
    >>> new_fs = scan.create_fileset('fs_007')
    >>> scan.list_filesets()
    ['fileset_001', 'fs_007']
    >>> wrong_fs = scan.create_fileset('fileset_001')
    OSError: Given fileset identifier 'fileset_001' already exists!
    >>> wrong_fs = scan.create_fileset('fileset/001')
    OSError: Invalid fileset identifier 'fileset/001'!
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    # Access scan metadata directly to avoid nested lock acquisition
    metadata = _get_metadata(self.metadata, None, {})

    # Verify if the given `fs_id` is valid
    if not _is_valid_id(fs_id):
        raise ValueError(f"Invalid fileset identifier '{fs_id}'!")
    # Verify if the given `fs_id` already exists in the local database
    if self.fileset_exists(fs_id):
        raise FilesetExistsError(self, fs_id)

    # Use fileset-level exclusive lock for fileset creation
    self.logger.debug(f"Creating a fileset '{fs_id}' in scan '{self.id}' as '{current_user.username}' user...")
    with self.db.lock_manager.acquire_lock(f"{self.id}/{fs_id}", LockType.EXCLUSIVE, current_user.username,
                                           LockLevel.FILESET):
        # Create the new Fileset
        fileset = Fileset(self, fs_id)  # Initialize a new Fileset instance
        _make_fileset(fileset)  # Create directory structure

        # Set initial metadata
        initial_metadata = metadata or {}
        now = iso_date_now()
        initial_metadata['created'] = now  # creation timestamp
        initial_metadata['last_modified'] = now  # modification timestamp
        initial_metadata['created_by'] = current_user.fullname

        # Cannot use fileset.set_metadata(initial_metadata) here as ownership is not granted yet!
        _set_metadata(fileset.metadata, initial_metadata, None)  # add metadata dictionary to the new fileset
        _store_fileset_metadata(fileset)

        self.filesets.update({fs_id: fileset})  # Update scan's filesets dictionary
        self.store()  # Store fileset instance to the JSON

    self.logger.debug(f"Done creating the fileset.")
    return fileset

delete_fileset Link

delete_fileset(fs_id, current_user=None, **kwargs)

Delete a given fileset from the scan dataset.

Parameters:

Name Type Description Default

fs_id Link

str

Name of the fileset to delete.

required

Raises:

Type Description
PermissionError

If no user is authenticated. If the user does not have permission to delete this fileset.

ValueError

If the fileset does not exist.

See Also

plantdb.commons.fsdb.file_ops._delete_fileset

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan('myscan_001')
>>> scan.list_filesets()
['fileset_001']
>>> scan.delete_fileset('fileset_001')
>>> scan.list_filesets()
[]
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
@get_authentication
@require_authentication
@requires_permission(Permission.DELETE, check_scan_access=True)
def delete_fileset(self, fs_id, current_user=None, **kwargs) -> None:
    """Delete a given fileset from the scan dataset.

    Parameters
    ----------
    fs_id : str
        Name of the fileset to delete.

    Raises
    ------
    PermissionError
        If no user is authenticated.
        If the user does not have permission to delete this fileset.
    ValueError
        If the fileset does not exist.

    See Also
    --------
    plantdb.commons.fsdb.file_ops._delete_fileset

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan('myscan_001')
    >>> scan.list_filesets()
    ['fileset_001']
    >>> scan.delete_fileset('fileset_001')
    >>> scan.list_filesets()
    []
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    # Verify if the given `fs_id` exists in the local database
    if not self.fileset_exists(fs_id):
        raise ValueError(f"Fileset '{fs_id}' does not exist in scan '{self.id}'")

    # Use exclusive lock for fileset deletion
    self.logger.debug(f"Deleting fileset '{fs_id}' from scan '{self.id}' as '{current_user.username}' user...")
    with self.db.lock_manager.acquire_lock(f"{self.id}/{fs_id}", LockType.EXCLUSIVE, current_user.username,
                                           LockLevel.FILESET):
        fs = self.filesets[fs_id]
        _delete_fileset(fs)  # delete the fileset
        self.filesets.pop(fs_id)  # remove the Fileset instance from the scan
        self.store()  # save the changes to the scan main JSON FILE (``files.json``)

    self.logger.debug(f"Done deleting fileset.")
    return

fileset_exists Link

fileset_exists(fileset_id)

Check if a given fileset ID exists in the database.

Parameters:

Name Type Description Default

fileset_id Link

str

The ID of the fileset to check.

required

Returns:

Type Description
bool

True if the fileset exists, False otherwise.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_scan=True)
>>> scan = db.get_scan('myscan_001')
>>> scan.fileset_exists("myfileset_001")
False
>>> scan.create_fileset("myfileset_001")
>>> scan.fileset_exists("myfileset_001")
True
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
def fileset_exists(self, fileset_id: str) -> bool:
    """Check if a given fileset ID exists in the database.

    Parameters
    ----------
    fileset_id : str
        The ID of the fileset to check.

    Returns
    -------
    bool
        ``True`` if the fileset exists, ``False`` otherwise.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_scan=True)
    >>> scan = db.get_scan('myscan_001')
    >>> scan.fileset_exists("myfileset_001")
    False
    >>> scan.create_fileset("myfileset_001")
    >>> scan.fileset_exists("myfileset_001")
    True
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    return fileset_id in self.filesets

get_db Link

get_db()

Get parent database instance.

Returns:

Type Description
DB

Database instance where to find the scan.

Source code in plantdb/commons/db.py
179
180
181
182
183
184
185
186
187
def get_db(self):
    """Get parent database instance.

    Returns
    -------
    plantdb.commons.db.DB
        Database instance where to find the scan.
    """
    return self.db

get_fileset Link

get_fileset(fs_id)

Get a Fileset instance, of given id, in the current scan dataset.

Parameters:

Name Type Description Default

fs_id Link

str

The name of the fileset to get.

required

Returns:

Type Description
Fileset

The retrieved or created fileset.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_fileset=True)
>>> scan = db.get_scan('myscan_001')
>>> scan.list_filesets()
['fileset_001']
>>> new_fileset = scan.create_fileset('007')
>>> print(new_fileset)
<plantdb.commons.fsdb.core.Fileset object at **************>
>>> scan.list_filesets()
['fileset_001', '007']
>>> unknown_fs = scan.get_fileset('unknown')
plantdb.commons.fsdb.core.FilesetNotFoundError: Unknown fileset id 'unknown'!
>>> print(unknown_fs)
None
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
def get_fileset(self, fs_id):
    """Get a `Fileset` instance, of given `id`, in the current scan dataset.

    Parameters
    ----------
    fs_id : str
        The name of the fileset to get.

    Returns
    -------
    Fileset
        The retrieved or created fileset.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_fileset=True)
    >>> scan = db.get_scan('myscan_001')
    >>> scan.list_filesets()
    ['fileset_001']
    >>> new_fileset = scan.create_fileset('007')
    >>> print(new_fileset)
    <plantdb.commons.fsdb.core.Fileset object at **************>
    >>> scan.list_filesets()
    ['fileset_001', '007']
    >>> unknown_fs = scan.get_fileset('unknown')
    plantdb.commons.fsdb.core.FilesetNotFoundError: Unknown fileset id 'unknown'!
    >>> print(unknown_fs)
    None
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    if not self.fileset_exists(fs_id):
        raise FilesetNotFoundError(self, fs_id)

    return self.filesets[fs_id]

get_filesets Link

get_filesets(query=None, fuzzy=False)

Get the list of Fileset instances defined in the current scan dataset, possibly filtered using a query.

Parameters:

Name Type Description Default

query Link

dict

A query to use to filter the returned list of files. The metadata must match given key and value from the query dictionary.

None

fuzzy Link

bool

Whether to use fuzzy matching or not, that is the use of regular expressions.

False

Returns:

Type Description
list of plantdb.commons.fsdb.core.Fileset

List of Filesets, filtered by the query if any.

See Also

plantdb.commons.fsdb._filter_query

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_fileset=True)
>>> scan = db.get_scan('myscan_001')
>>> scan.get_filesets()
[<plantdb.commons.fsdb.core.Fileset at *x************>]
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
def get_filesets(self, query=None, fuzzy=False):
    """Get the list of `Fileset` instances defined in the current scan dataset, possibly filtered using a `query`.

    Parameters
    ----------
    query : dict, optional
        A query to use to filter the returned list of files.
        The metadata must match given ``key`` and ``value`` from the `query` dictionary.
    fuzzy : bool
        Whether to use fuzzy matching or not, that is the use of regular expressions.

    Returns
    -------
    list of plantdb.commons.fsdb.core.Fileset
        List of `Fileset`s, filtered by the `query` if any.

    See Also
    --------
    plantdb.commons.fsdb._filter_query

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_fileset=True)
    >>> scan = db.get_scan('myscan_001')
    >>> scan.get_filesets()
    [<plantdb.commons.fsdb.core.Fileset at *x************>]
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    return [self.get_fileset(fs.id) for fs in _filter_query(list(self.filesets.values()), query, fuzzy)]

get_id Link

get_id()

Get the scan instance id.

Returns:

Type Description
str

Id of the scan instance.

Source code in plantdb/commons/db.py
169
170
171
172
173
174
175
176
177
def get_id(self):
    """Get the scan instance id.

    Returns
    -------
    str
        Id of the scan instance.
    """
    return deepcopy(self.id)

get_measures Link

get_measures(key=None, current_user=None, **kwargs)

Get the manual measurements associated with a scan.

Parameters:

Name Type Description Default

key Link

str

A key that should exist in the scan's manual measurements.

None

Returns:

Type Description
any

If key is None, returns a dictionary. Else, returns the value attached to this key.

Notes

These manual measurements should be a JSON file named measures.json. It is located at the root folder of the scan dataset.

Source code in plantdb/commons/fsdb/core.py
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
@get_authentication
@use_guest_as_default
@requires_permission(Permission.READ, check_scan_access=True)
def get_measures(self, key=None, current_user=None, **kwargs):
    """Get the manual measurements associated with a scan.

    Parameters
    ----------
    key : str
        A key that should exist in the scan's manual measurements.

    Returns
    -------
    any
        If `key` is ``None``, returns a dictionary.
        Else, returns the value attached to this key.

    Notes
    -----
    These manual measurements should be a JSON file named `measures.json`.
    It is located at the root folder of the scan dataset.
    """
    # Use shared lock for read operations
    with self.db.lock_manager.acquire_lock(self.id, LockType.SHARED, current_user.username, LockLevel.SCAN):
        return _get_metadata(self.measures, key, default={})

get_metadata Link

get_metadata(key=None, default={}, current_user=None, **kwargs)

Get the metadata associated with a scan.

Parameters:

Name Type Description Default

key Link

str

A key that should exist in the scan's metadata.

None

default Link

Any

The default value to return if the key does not exist in the metadata. Default is an empty dictionary{}.

{}

Returns:

Type Description
any

If key is None, returns a dictionary. Else, returns the value attached to this key.

Examples:

>>> from plantdb.commons.test_database import test_database
>>> db = test_database()
>>> db.connect()
>>> token = db.login('admin', 'admin')
>>> scan = db.get_scan('real_plant_analyzed')
>>> scan.get_metadata('owner')
'guest'
>>> db.logout()
>>> scan.get_metadata('owner')  # Can still access it as 'guest' user
Source code in plantdb/commons/fsdb/core.py
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
@get_authentication
@use_guest_as_default
@requires_permission(Permission.READ, check_scan_access=False)
def get_metadata(self, key=None, default={}, current_user=None, **kwargs):
    """Get the metadata associated with a scan.

    Parameters
    ----------
    key : str
        A key that should exist in the scan's metadata.
    default : Any, optional
        The default value to return if the key does not exist in the metadata.
        Default is an empty dictionary``{}``.

    Returns
    -------
    any
        If `key` is ``None``, returns a dictionary.
        Else, returns the value attached to this key.

    Examples
    --------
    >>> from plantdb.commons.test_database import test_database
    >>> db = test_database()
    >>> db.connect()
    >>> token = db.login('admin', 'admin')
    >>> scan = db.get_scan('real_plant_analyzed')
    >>> scan.get_metadata('owner')
    'guest'
    >>> db.logout()
    >>> scan.get_metadata('owner')  # Can still access it as 'guest' user
    """
    # Use shared lock for read operations
    with self.db.lock_manager.acquire_lock(self.id, LockType.SHARED, current_user.username, LockLevel.SCAN):
        return _get_metadata(self.metadata, key, default)

group_share Link

group_share(groups, current_user=None, **kwargs)

Change the group sharing of the scan.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db()
>>> new_scan = db.create_scan('007', metadata={'project': 'GoldenEye'})  # create a new scan dataset
>>> print(new_scan.get_metadata('owner'))
admin
>>> print(new_scan.get_metadata('sharing', default=None))
None
>>> new_group = db.create_group('dummy_group', ['admin', 'guest'], 'A test group')
>>> new_scan.group_share('dummy_group')
>>> print(new_scan.get_metadata('sharing'))
['dummy_group']
Source code in plantdb/commons/fsdb/core.py
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
@get_authentication
@require_authentication
@requires_permission(Permission.DELETE, check_scan_access=True)
def group_share(self, groups, current_user=None, **kwargs):
    """Change the group sharing of the scan.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db()
    >>> new_scan = db.create_scan('007', metadata={'project': 'GoldenEye'})  # create a new scan dataset
    >>> print(new_scan.get_metadata('owner'))
    admin
    >>> print(new_scan.get_metadata('sharing', default=None))
    None
    >>> new_group = db.create_group('dummy_group', ['admin', 'guest'], 'A test group')
    >>> new_scan.group_share('dummy_group')
    >>> print(new_scan.get_metadata('sharing'))
    ['dummy_group']
    """
    if isinstance(groups, str):
        groups = [groups]
    # Verify that the new group(s) exists:
    valid_groups = self.db.rbac_manager.valid_sharing_groups(groups)

    if len(valid_groups) == 0:
        self.logger.error(f"No valid group(s) given, can not share to non-existent group!")
        return

    # Validate sharing groups if present
    if 'sharing' in self.metadata:
        sharing_groups = self.metadata['sharing']
        if not self.db.rbac_manager.validate_sharing_groups(sharing_groups):
            raise ValueError("One or more sharing groups do not exist")

    # Use exclusive lock for metadata updates
    valid_groups_str = ", ".join(valid_groups)
    self.logger.debug(f"Updating '{self.id}' scan group sharing to: '{valid_groups_str}'")
    with self.db.lock_manager.acquire_lock(self.id, LockType.EXCLUSIVE, current_user.username, LockLevel.SCAN):
        # Update metadata
        _set_metadata(self.metadata, 'sharing', valid_groups)
        # Ensure modification timestamp
        _set_metadata(self.metadata, 'last_modified', iso_date_now())
        _store_scan_metadata(self)

    self.logger.debug(f"Done updating the scan group sharing.")
    return

is_locked Link

is_locked()

Check if a scan is locked in the system.

Returns:

Type Description
bool

True if the scan is locked (having neither an exclusive lock nor any shared locks), False otherwise.

See Also

ScanManager.lock_manager: Component responsible for managing scan locks.

Source code in plantdb/commons/fsdb/core.py
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
def is_locked(self) -> bool:
    """Check if a scan is locked in the system.

    Returns
    -------
    bool
        ``True`` if the scan is locked (having neither an exclusive lock nor any shared locks), ``False`` otherwise.

    See Also
    --------
    ScanManager.lock_manager: Component responsible for managing scan locks.
    """
    return self.db.is_scan_locked(self.id)

list_filesets Link

list_filesets(query=None, fuzzy=False)

Get the list of filesets identifiers in the scan dataset.

Parameters:

Name Type Description Default

query Link

dict

A query to use to filter the returned list of filesets. The metadata must match given key and value from the query dictionary.

None

fuzzy Link

bool

Whether to use fuzzy matching or not, that is the use of regular expressions.

False

Returns:

Type Description
list[str]

The list of filesets identifiers in the scan dataset.

See Also

plantdb.commons.fsdb._filter_query

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan("myscan_001")
>>> scan.list_filesets()
['fileset_001']
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
def list_filesets(self, query=None, fuzzy=False) -> list:
    """Get the list of filesets identifiers in the scan dataset.

    Parameters
    ----------
    query : dict, optional
        A query to use to filter the returned list of filesets.
        The metadata must match given ``key`` and ``value`` from the `query` dictionary.
    fuzzy : bool
        Whether to use fuzzy matching or not, that is the use of regular expressions.

    Returns
    -------
    list[str]
        The list of filesets identifiers in the scan dataset.

    See Also
    --------
    plantdb.commons.fsdb._filter_query

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan("myscan_001")
    >>> scan.list_filesets()
    ['fileset_001']
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    if query == None:
        return list(self.filesets.keys())
    else:
        return [fs.id for fs in _filter_query(list(self.filesets.values()), query, fuzzy)]

path Link

path()

Get the path to the local scan dataset.

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan("myscan_001")
>>> scan.path()  # should be '/tmp/romidb_********/myscan_001'
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
def path(self) -> pathlib.Path:
    """Get the path to the local scan dataset.

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan("myscan_001")
    >>> scan.path()  # should be '/tmp/romidb_********/myscan_001'
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    return _scan_path(self)

set_metadata Link

set_metadata(data, value=None, current_user=None, **kwargs)

Add a new metadata to the scan.

Parameters:

Name Type Description Default

data Link

str or dict

If a string, a key to address the value. If a dictionary, update the metadata dictionary with data (value is then unused).

required

value Link

any

The value to assign to data if the latest is not a dictionary.

None

Raises:

Type Description
PermissionError

If no user is authenticated. If the user lacks permission to modify the metadata.

ValueError

If metadata validation fails

Examples:

>>> from plantdb.commons.test_database import dummy_db
>>> db = dummy_db(with_file=True)
>>> scan = db.get_scan("myscan_001")
>>> print(scan.get_metadata('test'))
1
>>> scan.set_metadata("test", "value")
>>> print(scan.get_metadata('test'))
value
>>> # Changing scan ownership through metadata is blocked:
>>> scan.set_metadata("owner", "guest")
WARNING  [FSDB] Excluding 'owner' key from Scan metadata update!
>>> # Read the scan metadata file
>>> import json
>>> from plantdb.commons.fsdb.path_helpers import _scan_metadata_path
>>> p = _scan_metadata_path(scan)
>>> print(p.exists())
True
>>> print(json.load(p.open(mode='r')))
{'test': 'value'}
>>> db.disconnect()  # clean up (delete) the temporary dummy database
Source code in plantdb/commons/fsdb/core.py
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
@get_authentication
@require_authentication
@requires_permission(Permission.WRITE, check_scan_access=True)
def set_metadata(self, data, value=None, current_user=None, **kwargs):
    """Add a new metadata to the scan.

    Parameters
    ----------
    data : str or dict
        If a string, a key to address the `value`.
        If a dictionary, update the metadata dictionary with `data` (`value` is then unused).
    value : any, optional
        The value to assign to `data` if the latest is not a dictionary.

    Raises
    ------
    PermissionError
        If no user is authenticated.
        If the user lacks permission to modify the metadata.
    ValueError
        If metadata validation fails

    Examples
    --------
    >>> from plantdb.commons.test_database import dummy_db
    >>> db = dummy_db(with_file=True)
    >>> scan = db.get_scan("myscan_001")
    >>> print(scan.get_metadata('test'))
    1
    >>> scan.set_metadata("test", "value")
    >>> print(scan.get_metadata('test'))
    value
    >>> # Changing scan ownership through metadata is blocked:
    >>> scan.set_metadata("owner", "guest")
    WARNING  [FSDB] Excluding 'owner' key from Scan metadata update!
    >>> # Read the scan metadata file
    >>> import json
    >>> from plantdb.commons.fsdb.path_helpers import _scan_metadata_path
    >>> p = _scan_metadata_path(scan)
    >>> print(p.exists())
    True
    >>> print(json.load(p.open(mode='r')))
    {'test': 'value'}
    >>> db.disconnect()  # clean up (delete) the temporary dummy database
    """
    # The locking mechanism is handled by the `MetadataManager._update_metadata` method
    self._update_metadata(data, value, current_user, _store_scan_metadata, cls_name="Scan")

store Link

store()

Save changes to the scan main JSON FILE (files.json).

Source code in plantdb/commons/fsdb/core.py
2494
2495
2496
2497
def store(self):
    """Save changes to the scan main JSON FILE (``files.json``)."""
    _store_scan(self)
    return

get_authentication Link

get_authentication(method)

Get authentication and inject current_user into the wrapped call.

The wrapper expects the following keyword arguments (all optional): * default_user : fallback username (default: None → unauthenticated). * token : JWT supplied by the client.

Any other **kwargs are passed through unchanged.

See Also

get_logged_username : Retrieves the username of the currently logged-in user.

Source code in plantdb/commons/fsdb/core.py
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
def get_authentication(method: Callable) -> Callable:
    """Get authentication and inject ``current_user`` into the wrapped call.

    The wrapper expects the following keyword arguments (all optional):
        * ``default_user`` : fallback username (default: ``None`` → unauthenticated).
        * ``token`` : JWT supplied by the client.

    Any other ``**kwargs`` are passed through unchanged.

    See Also
    --------
    get_logged_username : Retrieves the username of the currently logged-in user.
    """

    @functools.wraps(method)
    def wrapper(self, *args, **kwargs):
        """
        Other Parameters
        ----------------
        default_user : str, optional
            A fallback username to use if no valid session or token is found. Defaults to ``None``.
        token : str, optional
            The session token or JWT for validating the user's session.
        """
        # Pull and normalize the authentication‑related arguments
        default_user: Optional[str] = kwargs.pop('default_user', None)
        token: Optional[str] = kwargs.get('token', None)

        # Retrieve username based on the type of `self`
        if isinstance(self, (Scan, Fileset, File)):
            user = get_logged_username(self.db, default_user=default_user, token=token)
        else:
            user = get_logged_username(self, default_user=default_user, token=token)

        # Update the `current_user` only if not already defined...
        # This is to preserve any existing value of `current_user` directly passed to the method (like a guest user)
        if not kwargs.get('current_user'):
            kwargs['current_user'] = user

        # Call the original method, injecting ``current_user``
        return method(self, *args, **kwargs)

    return wrapper

get_logged_username Link

get_logged_username(fsdb, default_user=None, token=None, **kwargs)

Returns the username of the currently logged user based on the session management system.

This function identifies the username of the logged-in user by inspecting the session manager associated with the given fsdb object. It supports multiple types of session managers, including SingleSessionManager, JWTSessionManager, and generic SessionManager. If no valid session is found or if necessary arguments for session validation are missing, it falls back to the default_user.

Parameters:

Name Type Description Default

fsdb Link

FSDB

The filesystem database instance containing configuration, logger, and session manager. The session manager is responsible for handling user sessions.

required

default_user Link

str

A fallback username to use if no valid session or token is found. Defaults to None.

None

token Link

str

The session token or JWT for validating the user's session.

None

Returns:

Type Description
User | TokenUser | None

The username of the logged-in user or the fallback default_user.

Notes
  • If no valid session manager is attached to the fsdb object, an error will be logged.
  • Token validation for both JWTSessionManager and SessionManager assumes that fsdb implements methods like get_username for retrieving usernames based on the provided token.
See Also

plantdb.commons.fsdb.auth.session.SingleSessionManager : Manages single session systems. plantdb.commons.fsdb.auth.session.JWTSessionManager : Handles JSON Web Token-based authentication. plantdb.commons.fsdb.auth.session.SessionManager : Manages multiple generic user sessions.

Examples:

>>> import os
>>> from plantdb.commons.test_database import dummy_db
>>> from plantdb.commons.fsdb.core import get_logged_username
>>> db = dummy_db()  # NoAuthSessionManager with automatic login as 'admin'
>>> get_logged_username(db)
'admin'
>>> db.logout()
>>> get_logged_username(db) is None
True
>>> get_logged_username(db, default_user='guest')
Source code in plantdb/commons/fsdb/core.py
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
def get_logged_username(fsdb: "FSDB", default_user=None, token=None, **kwargs) -> User | TokenUser | None:
    """Returns the username of the currently logged user based on the session management system.

    This function identifies the username of the logged-in user by inspecting the session manager
    associated with the given `fsdb` object. It supports multiple types of session managers, including
    ``SingleSessionManager``, ``JWTSessionManager``, and generic ``SessionManager``.
    If no valid session is found or if necessary arguments for session validation are missing, it
    falls back to the `default_user`.

    Parameters
    ----------
    fsdb : plantd.commons.fsdb.FSDB
        The filesystem database instance containing configuration, logger, and session manager.
        The session manager is responsible for handling user sessions.
    default_user : str, optional
        A fallback username to use if no valid session or token is found. Defaults to ``None``.
    token : str, optional
        The session token or JWT for validating the user's session.

    Returns
    -------
    User | TokenUser | None
        The username of the logged-in user or the fallback `default_user`.

    Notes
    -----
    - If no valid session manager is attached to the `fsdb` object, an error will be logged.
    - Token validation for both JWTSessionManager and SessionManager assumes that `fsdb` implements methods like
      `get_username` for retrieving usernames based on the provided token.

    See Also
    --------
    plantdb.commons.fsdb.auth.session.SingleSessionManager : Manages single session systems.
    plantdb.commons.fsdb.auth.session.JWTSessionManager : Handles JSON Web Token-based authentication.
    plantdb.commons.fsdb.auth.session.SessionManager : Manages multiple generic user sessions.

    Examples
    --------
    >>> import os
    >>> from plantdb.commons.test_database import dummy_db
    >>> from plantdb.commons.fsdb.core import get_logged_username
    >>> db = dummy_db()  # NoAuthSessionManager with automatic login as 'admin'
    >>> get_logged_username(db)
    'admin'
    >>> db.logout()
    >>> get_logged_username(db) is None
    True
    >>> get_logged_username(db, default_user='guest')
    """
    if isinstance(fsdb.session_manager, (NoAuthSessionManager, SingleSessionManager)):
        # Get the username from the session manager (as only one user can be logged at once)
        try:
            session = list(fsdb.session_manager.sessions.keys())[0]
        except IndexError:
            logged_user = fsdb.get_user_data(username=default_user)
        else:
            logged_user = fsdb.get_user_data(username=fsdb.session_manager.validate_session(session)['username'])
    elif isinstance(fsdb.session_manager, (JWTSessionManager, SessionManager)):
        # If a JSON Web Token Session Manager or a Session Manager, require the token to retrieve the username
        if token:
            logged_user = fsdb.get_user_data(token=token)
        elif default_user:
            logged_user = fsdb.get_user_data(username=default_user)
        else:
            logged_user = None
    else:
        raise ValueError("Can't serve a local PlantDB without a session manager!")

    return logged_user

require_authentication Link

require_authentication(method)

Enforce authentication.

Source code in plantdb/commons/fsdb/core.py
332
333
334
335
336
337
338
339
340
341
342
def require_authentication(method: Callable) -> Callable:
    """Enforce authentication."""

    @functools.wraps(method)
    def wrapper(self, *args, **kwargs):
        # Abort if no authenticated user could be determined
        if not kwargs.get('current_user'):
            raise NoAuthUserError()
        return method(self, *args, **kwargs)

    return wrapper

require_connected_db Link

require_connected_db(method)

Decorator that ensures the method is only called when the database is connected.

This ensures that operations that require a valid database connection are properly guarded against calls when the connection is inactive.

Raises:

Type Description
ValueError

If the decorated method is called while the database connection status is not active

See Also

plantdb.commons.fsdb.core.FSDB.connect : Method typically used to establish a database connection.

Source code in plantdb/commons/fsdb/core.py
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
def require_connected_db(method: Callable) -> Callable:
    """Decorator that ensures the method is only called when the database is connected.

    This ensures that operations that require a valid database connection are properly guarded against calls when the connection is inactive.

    Raises
    ------
    ValueError
        If the decorated method is called while the database connection status is not active

    See Also
    --------
    plantdb.commons.fsdb.core.FSDB.connect : Method typically used to establish a database connection.
    """

    @functools.wraps(method)
    def wrapper(self, *args, **kwargs):
        if not self.is_connected:
            raise ValueError("Database not connected, use the 'connect()' method first!")

        return method(self, *args, **kwargs)

    return wrapper

require_token Link

require_token(method)

Decorator that passes the token to the decorated method depending on the session manager.

Source code in plantdb/commons/fsdb/core.py
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
def require_token(method: Callable) -> Callable:
    """Decorator that passes the token to the decorated method depending on the session manager."""

    @functools.wraps(method)
    def wrapper(self, *args, **kwargs):

        if isinstance(self.session_manager, SingleSessionManager):
            # If a Single SessionManager, get the token from the session manager
            try:
                session = list(self.session_manager.sessions.keys())[0]
                kwargs['token'] = session
            except IndexError:
                self.logger.error("No logged user!")

        elif isinstance(self.session_manager, JWTSessionManager):
            # If a JSON Web Token Session Manager, require the token
            if not 'token' in kwargs:
                self.logger.warning("The 'token' argument is required when using JWTSessionManager")

        elif isinstance(self.session_manager, SessionManager):
            # If a regular Session Manager, require the session token
            if not 'token' in kwargs:
                self.logger.warning("The 'token' argument is required when using JWTSessionManager")

        else:
            self.logger.error("Can't serve a local PlantDB without a session manager!")

        return method(self, *args, **kwargs)

    return wrapper

requires_permission Link

requires_permission(required_permissions, check_scan_access=False)

Decorator that enforces permission checks before the execution of a method.

The decorator inspects the current_user keyword argument supplied to the wrapped method and verifies that the user holds the required permissions. When check_scan_access is True, the check is performed against a specific scan dataset, including additional token‑based dataset permissions. If the user is missing any required permission, a PermissionError is raised.

Parameters:

Name Type Description Default

required_permissions Link

Union[Permission, Tuple[Permission, ...]]

Permission or tuple of permissions that the user must possess to invoke the wrapped method.

required

check_scan_access Link

bool

Determines whether the permission check is scoped to a particular scan dataset (True) or performed at the generic user level (False). Default is False.

False

Returns:

Type Description
function

A decorator that can be applied to instance methods. The decorator wraps the original method with the described permission validation logic.

Raises:

Type Description
PermissionError

Raised when no current_user is provided or when the user does not have all of the required permissions for the operation.

Notes
  • The wrapper extracts the current_user from kwargs; it must be passed explicitly when the decorated method is called.
  • When check_scan_access is enabled, the wrapper retrieves the target Scan object via _get_scan and its metadata via _get_metadata to perform dataset‑specific permission checks.
  • For TokenUser instances, the wrapper also verifies that the token’s dataset‑level permissions include the required permissions.
See Also

functools.wraps Preserves the original method’s metadata (name, docstring, etc.) when creating the wrapper.

Source code in plantdb/commons/fsdb/core.py
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
def requires_permission(required_permissions: Union[Permission, Tuple[Permission, ...]],
                        check_scan_access: bool = False):
    """Decorator that enforces permission checks before the execution of a method.

    The decorator inspects the ``current_user`` keyword argument supplied
    to the wrapped method and verifies that the user holds the required permissions.
    When ``check_scan_access`` is ``True``, the check is performed against a specific
    scan dataset, including additional token‑based dataset permissions. If the
    user is missing any required permission, a ``PermissionError`` is raised.

    Parameters
    ----------
    required_permissions : Union[Permission, Tuple[Permission, ...]]
        Permission or tuple of permissions that the user must possess to invoke
        the wrapped method.
    check_scan_access : bool, optional
        Determines whether the permission check is scoped to a particular scan
        dataset (``True``) or performed at the generic user level (``False``).
        Default is ``False``.

    Returns
    -------
    function
        A decorator that can be applied to instance methods. The decorator wraps
        the original method with the described permission validation logic.

    Raises
    ------
    PermissionError
        Raised when no ``current_user`` is provided or when the user does not have
        all of the required permissions for the operation.

    Notes
    -----
    * The wrapper extracts the ``current_user`` from ``kwargs``; it must be passed
      explicitly when the decorated method is called.
    * When ``check_scan_access`` is enabled, the wrapper retrieves the target
      ``Scan`` object via ``_get_scan`` and its metadata via ``_get_metadata`` to
      perform dataset‑specific permission checks.
    * For ``TokenUser`` instances, the wrapper also verifies that the token’s
      dataset‑level permissions include the required permissions.

    See Also
    --------
    functools.wraps
        Preserves the original method’s metadata (name, docstring, etc.) when
        creating the wrapper.
    """

    def decorator(method):
        @functools.wraps(method)
        def wrapper(self, *args, **kwargs):
            if isinstance(required_permissions, Permission):
                required_permissions_ = (required_permissions,)
            else:
                required_permissions_ = required_permissions

            user: User | TokenUser = kwargs.get("current_user", None)
            if user is None:
                raise NoAuthUserError()

            # TokenUser have scan-based permissions, disabling scan access check is done for scan creation only
            if isinstance(user, TokenUser) and not check_scan_access:
                scan_perms = user.get_permissions_for_dataset(args[0])
                has_perms = all(perm in scan_perms for perm in required_permissions_)
                if not has_perms:
                    raise PermissionError(
                        f"Token from User {user.username} does not have required permissions to use {method.__name__}")
                return method(self, *args, **kwargs)

            # check dataset
            if check_scan_access:
                db, scan = _get_fsdb_and_scan(self, *args)
                # Access metadata directly to avoid nested lock acquisition
                metadata = _get_metadata(scan.metadata, None, {})
                has_perms = all(
                    db.rbac_manager.can_access_scan(user, metadata, perm) for perm in required_permissions_
                )
                # Token users have restricted permissions per dataset
                if isinstance(user, TokenUser):
                    token_permissions = user.get_permissions_for_dataset(scan.id)
                    has_perms = has_perms and all(perm in token_permissions for perm in required_permissions_)

            else:
                db = _get_fsdb(self)
                has_perms = all(db.rbac_manager.has_permission(user, perm) for perm in required_permissions_)

            if not has_perms:
                raise PermissionError(
                    f"User {user.username} does not have required permissions to use {method.__name__}")

            return method(self, *args, **kwargs)

        return wrapper

    return decorator

use_guest_as_default Link

use_guest_as_default(method)

Injects a guest user when no authentication is provided.

This enables methods that require an authenticated user to operate transparently with a default guest context.

Source code in plantdb/commons/fsdb/core.py
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
def use_guest_as_default(method: Callable) -> Callable:
    """Injects a guest user when no authentication is provided.

    This enables methods that require an authenticated user to operate transparently with a default guest context.
    """

    @functools.wraps(method)
    def wrapper(self, *args, **kwargs):
        if not kwargs.get('current_user'):
            if isinstance(self, (Scan, Fileset, File)):
                kwargs["current_user"] = self.db.get_guest_user()
            else:
                kwargs["current_user"] = self.get_guest_user()
        return method(self, *args, **kwargs)

    return wrapper