OpenSecurity/bin/opensecurity_dialog.py
author om
Fri, 06 Dec 2013 12:10:30 +0100
changeset 14 c187aaceca32
parent 3 OpenSecurity/client/opensecurity_dialog.py@65432e6c6042
child 16 e16d64b5e008
permissions -rwxr-xr-x
renamed "client" to "bin"
     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 = 'OpenSecurity 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").data_path
    64     image_path = os.path.join(data_path, '..', 'gfx')
    65     for file in os.listdir(image_path):
    66         if file.lower().rpartition('.')[2] in ('jpg', 'png', 'jpeg'):
    67             QtGui.QPixmapCache.insert(file.lower().rpartition('.')[0], QtGui.QPixmap(os.path.join(image_path, file)))
    68             
    69     # we should have now our application icon
    70     app.setWindowIcon(QtGui.QIcon(QtGui.QPixmapCache.find('opensecurity_icon_64')))
    71     
    72     if args.mode == 'password':
    73         dlg = Password(args.text)
    74     
    75     if args.mode == 'credentials':
    76         dlg = Credentials(args.text)
    77     
    78     # pop up the dialog
    79     dlg.show()
    80     app.exec_()
    81     
    82     # give proper result code
    83     if dlg.result() == QtGui.QDialog.Accepted:
    84         res = 0
    85     else:
    86         res = 1
    87     sys.exit(res)
    88     
    89 
    90 # start
    91 if __name__ == "__main__":
    92     main()
    93