OpenSecurity/bin/ui/opensecurity_tray.pyw
author Oliver Maurhart <oliver.maurhart@ait.ac.at>
Mon, 31 Mar 2014 12:37:59 +0200
changeset 100 1b0068ef8404
parent 92 OpenSecurity/bin/opensecurity_tray.pyw@bc1255abd544
permissions -rwxr-xr-x
user interface reworked
     1 #!/bin/env python
     2 # -*- coding: utf-8 -*-
     3 
     4 # ------------------------------------------------------------
     5 # opensecurity-dialog
     6 # 
     7 # an opensecurity dialog
     8 #
     9 # Autor: Oliver Maurhart, <oliver.maurhart@ait.ac.at>
    10 #
    11 # Copyright (C) 2013 AIT Austrian Institute of Technology
    12 # AIT Austrian Institute of Technology GmbH
    13 # Donau-City-Strasse 1 | 1220 Vienna | Austria
    14 # http://www.ait.ac.at
    15 #
    16 # This program is free software; you can redistribute it and/or
    17 # modify it under the terms of the GNU General Public License
    18 # as published by the Free Software Foundation version 2.
    19 # 
    20 # This program is distributed in the hope that it will be useful,
    21 # but WITHOUT ANY WARRANTY; without even the implied warranty of
    22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    23 # GNU General Public License for more details.
    24 # 
    25 # You should have received a copy of the GNU General Public License
    26 # along with this program; if not, write to the Free Software
    27 # Foundation, Inc., 51 Franklin Street, Fifth Floor, 
    28 # Boston, MA  02110-1301, USA.
    29 # ------------------------------------------------------------
    30 
    31 
    32 # ------------------------------------------------------------
    33 # imports
    34 
    35 import argparse
    36 import os
    37 import subprocess
    38 import sys
    39 import urllib2
    40 
    41 from PyQt4 import QtCore
    42 from PyQt4 import QtGui
    43 
    44 # local
    45 from about import About
    46 from environment import Environment
    47 from cygwin import Cygwin
    48 
    49 # ------------------------------------------------------------
    50 # code
    51 
    52 
    53 class OpenSecurityWait(QtGui.QDialog):
    54 
    55     """OpenSecurity: please wait ..."""
    56     
    57     def __init__(self, parent = None, flags = QtCore.Qt.WindowFlags(0)):
    58         super(OpenSecurityWait, self).__init__(parent, flags)
    59         self.setWindowTitle('OpenSecurity')
    60         self.setup_ui()
    61         
    62         
    63     def setup_ui(self):
    64         """Create the widgets."""
    65         
    66         lyMain = QtGui.QVBoxLayout(self)
    67         lyMain.setContentsMargins(8, 8, 8, 8)
    68         
    69         # content area: left pixmap, right text
    70         lbTitle = QtGui.QLabel('Creating secure subsystem. Please stand by ...')
    71         lyMain.addWidget(lbTitle)
    72         
    73         self.setMinimumSize(400, 50)
    74         self.resize(lyMain.minimumSize())
    75 
    76 
    77 class OpenSecurityTrayIcon(QtGui.QSystemTrayIcon):
    78     
    79     """This is the OpenSecuirty Tray Icon"""
    80 
    81     def __init__(self, icon, parent=None):
    82         
    83         super(OpenSecurityTrayIcon, self).__init__(icon, parent)
    84         self.setup_ui()
    85         
    86         
    87     def clicked_about(self):
    88         """clicked about"""
    89         dlgAbout = About()
    90         dlgAbout.exec_()
    91     
    92 
    93     def clicked_browser(self):
    94         """wish for safe internet browsing"""
    95         
    96         # TODO: HARDCODED ADDRESS OF OPENSECURITYD
    97         
    98         # tell the user to wait
    99         dlg = OpenSecurityWait()
   100         dlg.show()
   101         QtGui.QApplication.instance().processEvents()
   102         
   103         try:
   104         
   105             # get a proper browsing VM
   106             Cygwin.start_X11()
   107             browsing_vm = urllib2.urlopen('http://127.0.0.1:8080/browsing').readline()
   108             #dlg_launch_image = os.path.join(sys.path[0], 'launch.pyw')
   109             #process_command = [sys.executable, dlg_launch_image, browsing_vm, '/usr/bin/iceweasel']
   110             #process_command = [sys.executable, dlg_launch_image, browsing_vm, '/usr/bin/midori']
   111             #print(process_command)
   112             #process = subprocess.Popen(process_command, shell = False)
   113             
   114         except:
   115             dlg.hide()
   116             QtGui.QApplication.instance().processEvents()
   117             QtGui.QMessageBox.critical(None, 'Failed to invoke Safe Internet Browsing', 'OpenSecurity Error')
   118             
   119         dlg.hide()
   120         QtGui.QApplication.instance().processEvents()
   121             
   122             
   123     def clicked_exit(self):
   124         """clicked exit"""
   125         sys.exit(0)
   126     
   127 
   128     def clicked_launch_application(self):
   129         """clicked the launch an application"""
   130         dlg_launch_image = os.path.join(sys.path[0], 'launch.pyw')
   131         process_command = [sys.executable, dlg_launch_image]
   132         print(process_command)
   133         process = subprocess.Popen(process_command, shell = False)
   134             
   135             
   136     def setup_ui(self):
   137         """create the user interface
   138         As for the system tray this is 'just' the context menu.
   139         """
   140     
   141         # define the tray icon menu
   142         menu = QtGui.QMenu(self.parent())
   143         self.setContextMenu(menu)
   144         
   145         # add known apps
   146         cAcBrowser = menu.addAction(QtGui.QIcon(QtGui.QPixmapCache.find('opensecurity_icon_64')), 'Safe Internet Browsing')
   147         menu.addSeparator()
   148         
   149         # add standard menu items
   150         cAcLaunch = menu.addAction(QtGui.QIcon(QtGui.QPixmapCache.find('opensecurity_icon_64')), 'Lauch Application')
   151         menu.addSeparator()
   152         cAcAbout = menu.addAction("About")
   153         cAcExit = menu.addAction("Exit")
   154         
   155         cAcBrowser.triggered.connect(self.clicked_browser)
   156         cAcLaunch.triggered.connect(self.clicked_launch_application)
   157         cAcAbout.triggered.connect(self.clicked_about)
   158         cAcExit.triggered.connect(self.clicked_exit)
   159         
   160         
   161 def main():
   162     
   163     app = QtGui.QApplication(sys.argv)
   164 
   165     # prebuild the pixmap cache: fetch all jpg, png and jpeg images and load them
   166     image_path = os.path.join(Environment("OpenSecurity").data_path, 'gfx')
   167     for file in os.listdir(image_path):
   168         if file.lower().rpartition('.')[2] in ('jpg', 'png', 'jpeg'):
   169             QtGui.QPixmapCache.insert(file.lower().rpartition('.')[0], QtGui.QPixmap(os.path.join(image_path, file)))
   170 
   171     w = QtGui.QWidget()
   172     trayIcon = OpenSecurityTrayIcon(QtGui.QIcon(QtGui.QPixmapCache.find('opensecurity_icon_64')), w)
   173 
   174     trayIcon.show()
   175     app.setQuitOnLastWindowClosed(False)
   176     sys.exit(app.exec_())
   177    
   178 
   179 # start
   180 if __name__ == "__main__":
   181     main()
   182