Example #1
0
 def start_anontunnel_thread(self):
     """
     Starts the anontunnel as a thread
     """
     from service.main import AnonTunnelService
     self.service = AnonTunnelService()
     self.service.start(blocking=False)
Example #2
0
 def start_anontunnel_thread(self):
     """
     Starts the anontunnel as a thread
     """
     from service.main import AnonTunnelService
     self.service = AnonTunnelService()
     self.service.start(blocking=False)
Example #3
0
class AnonTunnelScreen(Screen):
    """
    The main screen of the application
    """

    def __init__(self, **kwargs):
        self.is_running = False
        self.service = None
        super(AnonTunnelScreen, self).__init__(**kwargs)

    def stop_anontunnel(self):
        """
        Stops the anontunnel
        """
        if self.is_running:
            self.tunnel_togglebutton.text = 'Off'
            self.status_text.text = 'No anontunnels running...'
            self.status_view.opacity = 0.0
            self.download_text.text = 'Currently inactive'
            self.download_view.opacity = 0.0
            self.is_running = False
            self.service.stop()

    def start_anontunnel(self):
        """
        Starts the anontunnel
        """
        if not self.is_running:
            self.tunnel_togglebutton.text = 'On'
            self.status_text.text = 'Running anontunnels'
            self.status_view.opacity = 1.0
            self.download_text.text = 'Currently downloading a 50M test file'
            self.download_view.opacity = 1.0
            self.is_running = True
            try:
                self.start_anontunnel_android()
            except ImportError:
                self.start_anontunnel_thread()
            
    def start_anontunnel_android(self):
        """
        Starts the anontunnel as an android service
        """
        from android import AndroidService
        service = AndroidService('Anonymous downloading Service', 'Anonymous tunnels are running...')
        service.start('Anonymous tunnels service started')
        self.service = service

    def start_anontunnel_thread(self):
        """
        Starts the anontunnel as a thread
        """
        from service.main import AnonTunnelService
        self.service = AnonTunnelService()
        self.service.start(blocking=False)

    def toggle_anontunnel(self):
        """
        Toggles the anon tunnel on/off
        """
        if not self.is_running:
            self.start_anontunnel()
        else:
            self.stop_anontunnel()
Example #4
0
class AnonTunnelScreen(Screen):
    """
    The main screen of the application
    """
    def __init__(self, **kwargs):
        self.is_running = False
        self.service = None
        super(AnonTunnelScreen, self).__init__(**kwargs)

    def stop_anontunnel(self):
        """
        Stops the anontunnel
        """
        if self.is_running:
            self.tunnel_togglebutton.text = 'Off'
            self.status_text.text = 'No anontunnels running...'
            self.status_view.opacity = 0.0
            self.download_text.text = 'Currently inactive'
            self.download_view.opacity = 0.0
            self.is_running = False
            self.service.stop()

    def start_anontunnel(self):
        """
        Starts the anontunnel
        """
        if not self.is_running:
            self.tunnel_togglebutton.text = 'On'
            self.status_text.text = 'Running anontunnels'
            self.status_view.opacity = 1.0
            self.download_text.text = 'Currently downloading a 50M test file'
            self.download_view.opacity = 1.0
            self.is_running = True
            try:
                self.start_anontunnel_android()
            except ImportError:
                self.start_anontunnel_thread()

    def start_anontunnel_android(self):
        """
        Starts the anontunnel as an android service
        """
        from android import AndroidService
        service = AndroidService('Anonymous downloading Service',
                                 'Anonymous tunnels are running...')
        service.start('Anonymous tunnels service started')
        self.service = service

    def start_anontunnel_thread(self):
        """
        Starts the anontunnel as a thread
        """
        from service.main import AnonTunnelService
        self.service = AnonTunnelService()
        self.service.start(blocking=False)

    def toggle_anontunnel(self):
        """
        Toggles the anon tunnel on/off
        """
        if not self.is_running:
            self.start_anontunnel()
        else:
            self.stop_anontunnel()