aboutsummaryrefslogtreecommitdiff
path: root/tools/cru-py/cru/service/_app.py
blob: 6030dad8799c6e097f06f4b21d2a33107da1d6aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from ._base import (
    AppBase,
    CommandDispatcher,
    AppInitializer,
    PathCommandProvider,
)
from ._config import ConfigManager
from ._template import TemplateManager
from ._nginx import NginxManager
from ._external import CliToolCommandProvider

APP_ID = "crupest"


class App(AppBase):
    def __init__(self):
        super().__init__(APP_ID, f"{APP_ID}-service")
        self.add_feature(PathCommandProvider())
        self.add_feature(AppInitializer())
        self.add_feature(ConfigManager())
        self.add_feature(TemplateManager())
        self.add_feature(NginxManager())
        self.add_feature(CliToolCommandProvider())
        self.add_feature(CommandDispatcher())

    def run_command(self):
        command_dispatcher = self.get_feature(CommandDispatcher)
        command_dispatcher.run_command()


def create_app() -> App:
    app = App()
    app.setup()
    return app