File: __init__.py

package info (click to toggle)
freedombox 26.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 83,092 kB
  • sloc: python: 48,542; javascript: 1,730; xml: 481; makefile: 290; sh: 137; php: 32
file content (49 lines) | stat: -rw-r--r-- 1,468 bytes parent folder | download | duplicates (4)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# SPDX-License-Identifier: AGPL-3.0-or-later
"""
FreedomBox app for power controls.
"""

from django.utils.translation import gettext_lazy as _

from plinth import app as app_module
from plinth import menu
from plinth.modules.backups.components import BackupRestore

from . import manifest

_description = [_('Restart or shut down the system.')]


class PowerApp(app_module.App):
    """FreedomBox app for power controls."""

    app_id = 'power'

    _version = 1

    can_be_disabled = False

    def __init__(self) -> None:
        """Create components for the app."""
        super().__init__()

        info = app_module.Info(app_id=self.app_id, version=self._version,
                               is_essential=True, name=_('Power'),
                               icon='fa-power-off', description=_description,
                               manual_page='Power', tags=manifest.tags)
        self.add(info)

        menu_item = menu.Menu('menu-power', info.name, info.icon, info.tags,
                              'power:index',
                              parent_url_name='system:administration',
                              order=50)
        self.add(menu_item)

        backup_restore = BackupRestore('backup-restore-power',
                                       **manifest.backup)
        self.add(backup_restore)

    def setup(self, old_version):
        """Install and configure the app."""
        super().setup(old_version)
        self.enable()