Source code for l2tscaffolder.definitions.plaso

# -*- coding: utf-8 -*-
"""The plaso definition class."""

import os

from l2tscaffolder.lib import definitions
from l2tscaffolder.definitions import interface
from l2tscaffolder.definitions import manager

[docs]class PlasoProject(interface.ScaffolderDefinition): """Plaso project definition.""" NAME = definitions.DEFINITION_PLASO
[docs] def ValidatePath(self, root_path: str) -> bool: """Validates the path to a Plaso development tree. Args: root_path (str): the path to the root of the project directory. Returns: bool: whether the given path is the correct root path to a Plaso development tree. """ if not os.path.isdir(root_path): return False if not os.path.isdir(os.path.join(root_path, 'plaso')): return False if not os.path.isfile(os.path.join(root_path, 'plaso.ini')): return False if not os.path.isdir(os.path.join(root_path, 'plaso', 'parsers')): return False return True
manager.DefinitionManager.RegisterDefinition(PlasoProject)