~larryprice/libertine/snap-pipe-deps

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
# Copyright 2017 Canonical Ltd.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 3 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.


import json
from .base_task import ContainerBaseTask
from libertine import LibertineContainer, utils
import time


class ListAppIdsTask(ContainerBaseTask):
    def __init__(self, container_id, config, monitor, client, callback):
        super().__init__(lock=None, container_id=container_id, config=config, monitor=monitor, client=client, callback=callback)

    def _run(self):
        utils.get_logger().debug("Listing app ids from container '%s'" % self._container)
        self._data(json.dumps(LibertineContainer(self._container, self._config, self._client).list_app_ids()))

    def _before(self):
        if not self._config.container_exists(self._container):
            self._error("Container '%s' does not exist, skipping list" % self._container)
            return False

        return True