示例#1
0
class SVPlugin(apis.services.ServiceControlPlugin):
    text = "Supervisor"
    icon = "/dl/supervisor/icon.png"
    folder = "apps"
    service_name = "supervisor"

    def on_session_start(self):
        self._client = SVClient(self.app)
        self._tail = None

    def get_main_ui(self):
        ui = self.app.inflate("supervisor:main")

        if not self._client.test():
            raise ConfigurationError("Please check supervisorctl configuration")

        for x in self._client.status():
            ui.append(
                "list",
                UI.DTR(
                    UI.Label(text=x["name"]),
                    UI.Label(text=x["status"]),
                    UI.Label(text=x["info"]),
                    UI.HContainer(
                        UI.TipIcon(id="start/" + x["name"], text="Iniciar", icon="/dl/core/ui/stock/service-start.png")
                        if x["status"] != "RUNNING"
                        else None,
                        UI.TipIcon(
                            id="restart/" + x["name"], text="Reiniciar", icon="/dl/core/ui/stock/service-restart.png"
                        )
                        if x["status"] == "RUNNING"
                        else None,
                        UI.TipIcon(id="stop/" + x["name"], text="Parar", icon="/dl/core/ui/stock/service-stop.png")
                        if x["status"] == "RUNNING"
                        else None,
                        UI.TipIcon(id="tail/" + x["name"], text="Log final", icon="/dl/core/ui/stock/paste.png"),
                    ),
                ),
            )

        if self._tail is not None:
            ui.append("main", UI.InputBox(value=self._client.tail(self._tail), hidecancel=True, extra="code"))

        return ui

    @event("button/click")
    def on_button(self, event, params, vars=None):
        if params[0] == "start":
            self._client.start(params[1])
        if params[0] == "restart":
            self._client.restart(params[1])
        if params[0] == "stop":
            self._client.stop(params[1])
        if params[0] == "tail":
            self._tail = params[1]

    @event("dialog/submit")
    def on_submit(self, event, params, vars=None):
        self._tail = None
示例#2
0
 def get_config_dialog(self):
     mgr = SVClient(self.app)
     dlg = self.app.inflate('supervisor:widget-config')
     for s in mgr.status():
         dlg.append('list', UI.SelectOption(
             value=s['name'],
             text=s['name'],
         ))
     return dlg
示例#3
0
    def get_ui(self, cfg, id=None):
        mgr = SVClient(self.app)
        running = False

        for x in mgr.status():
            if x['name'] == cfg and x['status'] == 'RUNNING':
                running = True

        self.title = cfg
        self.icon = '/dl/core/ui/stock/service-' + ('run.png' if running else 'stop.png')

        ui = self.app.inflate('supervisor:widget')
        if running:
            ui.remove('start')
            ui.find('stop').set('id', id+'/stop')
            ui.find('restart').set('id', id+'/restart')
        else:
            ui.remove('stop')
            ui.remove('restart')
            ui.find('start').set('id', id+'/start')
        return ui
示例#4
0
文件: main.py 项目: Bryukh/ajenti
class SVPlugin(apis.services.ServiceControlPlugin):
    text = 'Supervisor'
    icon = '/dl/supervisor/icon.png'
    folder = 'apps'
    service_name = 'supervisor'

    def on_session_start(self):
        self._client = SVClient(self.app)
        self._tail = None

    def get_main_ui(self):
        ui = self.app.inflate('supervisor:main')

        if not self._client.test():
            raise ConfigurationError('Please check supervisorctl configuration')

        for x in self._client.status():
            ui.append('list', UI.DTR(
                UI.Label(text=x['name']),
                UI.Label(text=x['status']),
                UI.Label(text=x['info']),
                UI.HContainer(
                    UI.TipIcon(
                        id='start/'+x['name'],
                        text='Start',
                        icon='/dl/core/ui/stock/service-start.png',
                    ) if x['status'] != 'RUNNING' else None,
                    UI.TipIcon(
                        id='restart/'+x['name'],
                        text='Restart',
                        icon='/dl/core/ui/stock/service-restart.png',
                    ) if x['status'] == 'RUNNING' else None,
                    UI.TipIcon(
                        id='stop/'+x['name'],
                        text='Stop',
                        icon='/dl/core/ui/stock/service-stop.png',
                    ) if x['status'] == 'RUNNING' else None,
                    UI.TipIcon(
                        id='tail/'+x['name'],
                        text='Log tail',
                        icon='/dl/core/ui/stock/paste.png',
                    )
                ),
            ))

        if self._tail is not None:
            ui.append('main', UI.InputBox(
                value=self._client.tail(self._tail),
                hidecancel=True,
                extra='code',
            ))


        return ui

    @event('button/click')
    def on_button(self, event, params, vars=None):
        if params[0] == 'start':
            self._client.start(params[1])
        if params[0] == 'restart':
            self._client.restart(params[1])
        if params[0] == 'stop':
            self._client.stop(params[1])
        if params[0] == 'tail':
            self._tail = params[1]

    @event('dialog/submit')
    def on_submit(self, event, params, vars=None):
        self._tail = None
示例#5
0
class SVPlugin(apis.services.ServiceControlPlugin):
    text = 'Supervisor'
    icon = '/dl/supervisor/icon.png'
    folder = 'apps'
    service_name = 'supervisor'

    def on_session_start(self):
        self._client = SVClient(self.app)
        self._tail = None

    def get_main_ui(self):
        ui = self.app.inflate('supervisor:main')

        if not self._client.test():
            raise ConfigurationError(
                'Please check supervisorctl configuration')

        for x in self._client.status():
            ui.append(
                'list',
                UI.DTR(
                    UI.Label(text=x['name']),
                    UI.Label(text=x['status']),
                    UI.Label(text=x['info']),
                    UI.HContainer(
                        UI.TipIcon(
                            id='start/' + x['name'],
                            text='Start',
                            icon='/dl/core/ui/stock/service-start.png',
                        ) if x['status'] != 'RUNNING' else None,
                        UI.TipIcon(
                            id='restart/' + x['name'],
                            text='Restart',
                            icon='/dl/core/ui/stock/service-restart.png',
                        ) if x['status'] == 'RUNNING' else None,
                        UI.TipIcon(
                            id='stop/' + x['name'],
                            text='Stop',
                            icon='/dl/core/ui/stock/service-stop.png',
                        ) if x['status'] == 'RUNNING' else None,
                        UI.TipIcon(
                            id='tail/' + x['name'],
                            text='Log tail',
                            icon='/dl/core/ui/stock/paste.png',
                        )),
                ))

        if self._tail is not None:
            ui.append(
                'main',
                UI.InputBox(
                    value=self._client.tail(self._tail),
                    hidecancel=True,
                    extra='code',
                ))

        return ui

    @event('button/click')
    def on_button(self, event, params, vars=None):
        if params[0] == 'start':
            self._client.start(params[1])
        if params[0] == 'restart':
            self._client.restart(params[1])
        if params[0] == 'stop':
            self._client.stop(params[1])
        if params[0] == 'tail':
            self._tail = params[1]

    @event('dialog/submit')
    def on_submit(self, event, params, vars=None):
        self._tail = None