<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
import types

from ..config import Configuration
from .base import Source


__all__ = ("ModuleSource", "ObjectSource")


class ModuleSource(Source):
    def __init__(self, target):
        super(ModuleSource, self).__init__()

        if isinstance(target, types.ModuleType):
            self.target = target
        elif isinstance(target, basestring):
            self.target = __import__(target, globals(), locals(), [], -1)
        else:
            raise TypeError("target must be a Module or a String naming a Module")

    def get_config(self, settings, manager=None, parent=None):
        for setting in settings:
            if hasattr(self.target, setting.name):
                setting.value = getattr(self.target, setting.name)

        return Configuration(settings=settings, parent=parent)


class ObjectSource(Source):
    def __init__(self, target):
        super(ObjectSource, self).__init__()

        if isinstance(target, (type, object)):
            self.target = target
        elif isinstance(target, basestring):
            parts = target.rsplit(".", 2)
            if len(parts) == 2:
                mod = parts[0]
                fromlist = [parts[1]]
            else:
                mod = parts[0]
                fromlist = []
            self.target = __import__(mod, globals(), locals(), fromlist, -1)
        else:
            raise TypeError("target must be an Object or a String naming an Object")

    def get_config(self, settings, manager=None, parent=None):
        for setting in settings:
            if hasattr(self.target, setting.name):
                setting.value = getattr(self.target, setting.name)

        return Configuration(settings=settings, parent=parent)
