ait/os/bin/opensecurityd/opensecurity-dialog.py
author om
Tue, 12 Nov 2013 11:31:34 +0100
branchom
changeset 2 c9bf2537109a
permissions -rwxr-xr-x
added C/C++ and Python sources
     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 sys
    38 
    39 from PyQt4 import QtCore
    40 from PyQt4 import QtGui
    41 
    42 # local
    43 from credentials import Credentials
    44 from environment import Environment
    45 from password import Password
    46 
    47 
    48 # ------------------------------------------------------------
    49 # code
    50 
    51 
    52 def main():
    53     
    54     # parse command line
    55     parser = argparse.ArgumentParser(description = 'OpenSecuirty Dialog.')
    56     parser.add_argument('mode', metavar='MODE', help='dialog mode: \'password\' or \'credentials\'')
    57     parser.add_argument('text', metavar='TEXT', help='text to show')
    58     args = parser.parse_args()
    59     
    60     app = QtGui.QApplication(sys.argv)
    61     
    62     # prebuild the pixmap cache: fetch all jpg, png and jpeg images and load them
    63     data_path = Environment("opensecurity").image_path
    64     for file in os.listdir(data_path):
    65         if file.lower().rpartition('.')[2] in ('jpg', 'png', 'jpeg'):
    66             QtGui.QPixmapCache.insert(file.lower().rpartition('.')[0], QtGui.QPixmap(os.path.join(data_path, file)))
    67             
    68     # we should have now our application icon
    69     app.setWindowIcon(QtGui.QIcon(QtGui.QPixmapCache.find('opensecurity_icon_64')))
    70     
    71     if args.mode == 'password':
    72         dlg = Password(args.text)
    73     
    74     if args.mode == 'credentials':
    75         dlg = Credentials(args.text)
    76     
    77     # pop up the dialog
    78     dlg.show()
    79     app.exec_()
    80     
    81     # give proper result code
    82     if dlg.result() == QtGui.QDialog.Accepted:
    83         res = 0
    84     else:
    85         res = 1
    86     sys.exit(res)
    87     
    88 
    89 # start
    90 if __name__ == "__main__":
    91     main()
    92