summaryrefslogtreecommitdiff
path: root/src/leap/baseapp/network.py
blob: 077d516446dccf7fade8100720855f7114730a50 (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
35
36
37
38
39
40
from __future__ import print_function

import logging

logger = logging.getLogger(name=__name__)

from PyQt4 import QtCore

from leap.baseapp.dialogs import ErrorDialog
from leap.base.network import NetworkCheckerThread


class NetworkCheckerAppMixin(object):
    """
    initialize an instance of the Network Checker,
    which gathers error and passes them on.
    """

    def __init__(self, *args, **kwargs):
        self.network_checker = NetworkCheckerThread(
            error_cb=self.networkError.emit,
            debug=self.debugmode)

        # XXX move run_checks to slot
        self.network_checker.run_checks()

    @QtCore.pyqtSlot(object)
    def onNetworkError(self, exc):
        """
        slot that receives a network exceptions
        and raises a user error message
        """
        logger.debug('handling network exception')
        logger.error(exc.message)
        dialog = ErrorDialog(parent=self)

        if exc.critical:
            dialog.criticalMessage(exc.usermessage, "network error")
        else:
            dialog.warningMessage(exc.usermessage, "network error")