GRAYBYTE WORDPRESS FILE MANAGER4481

Server IP : 198.54.121.189 / Your IP : 216.73.216.112
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /opt/cloudlinux/venv/lib/python3.11/site-packages/setoptconf/source/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /opt/cloudlinux/venv/lib/python3.11/site-packages/setoptconf/source//filebased.py
import os.path

from copy import deepcopy

from ..config import Configuration
from .base import Source


__all__ = ("HomeDirectory", "ConfigDirectory", "FileBasedSource")


class DirectoryModifier(object):
    def __init__(self, target_file):
        self.target_file = target_file

    def __call__(self):
        raise NotImplementedError()


class HomeDirectory(DirectoryModifier):
    def __call__(self):
        return os.path.expanduser(os.path.join("~", self.target_file))


class ConfigDirectory(DirectoryModifier):
    def __call__(self):
        config_dir = os.getenv("XDG_CONFIG_HOME") or os.path.expanduser(
            os.path.join("~", ".config")
        )

        return os.path.join(config_dir, self.target_file)


class FileBasedSource(Source):
    def __init__(self, files, base_path=None, combine=False):
        super(FileBasedSource, self).__init__()

        if isinstance(files, (str, DirectoryModifier)):
            files = [files]
        elif not isinstance(files, (tuple, list)):
            raise TypeError("files must be a string or list of strings")

        self.files = []
        for target in files:
            if isinstance(target, str):
                self.files.append(target)
            elif isinstance(target, DirectoryModifier):
                self.files.append(target())
            else:
                raise TypeError("files must be a string or list of strings")

        self.base_path = base_path or os.getcwd()
        self.combine = combine

    def get_config(self, settings, manager=None, parent=None):
        parsed_settings = []

        for file_source in self.files:
            if os.path.isabs(file_source):
                file_path = file_source
            else:
                file_path = os.path.join(self.base_path, file_source)

            if os.path.exists(file_path):
                file_settings = self.get_settings_from_file(
                    file_path, deepcopy(settings), manager=manager
                )

                if file_settings:
                    parsed_settings.append(file_settings)

                    if not self.combine:
                        # No need to gather any more, we only want one.
                        break

        if parsed_settings:
            config = parent
            for parsed_setting in reversed(parsed_settings):
                config = Configuration(settings=parsed_setting, parent=config)

        else:
            config = Configuration(settings=settings, parent=parent)

        return config

    def get_settings_from_file(self, file_path, settings, manager=None):
        raise NotImplementedError()

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
May 15 2025 08:30:34
root / root
0755
__pycache__
--
May 15 2025 08:30:34
root / root
0755
__init__.py
0.329 KB
April 17 2025 13:10:58
root / root
0644
base.py
0.142 KB
April 17 2025 13:10:58
root / root
0644
commandline.py
4.979 KB
April 17 2025 13:10:58
root / root
0644
configfile.py
0.955 KB
April 17 2025 13:10:58
root / root
0644
environment.py
0.978 KB
April 17 2025 13:10:58
root / root
0644
filebased.py
2.578 KB
April 17 2025 13:10:58
root / root
0644
jsonfile.py
0.827 KB
April 17 2025 13:10:58
root / root
0644
mapping.py
0.48 KB
April 17 2025 13:10:58
root / root
0644
modobj.py
1.674 KB
April 17 2025 13:10:58
root / root
0644
yamlfile.py
0.833 KB
April 17 2025 13:10:58
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF