forked from shaba/openuds
120 lines
4.4 KiB
Python
120 lines
4.4 KiB
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (c) 2014 Virtual Cable S.L.
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use in source and binary forms, with or without modification,
|
|
# are permitted provided that the following conditions are met:
|
|
#
|
|
# * Redistributions of source code must retain the above copyright notice,
|
|
# this list of conditions and the following disclaimer.
|
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
|
# this list of conditions and the following disclaimer in the documentation
|
|
# and/or other materials provided with the distribution.
|
|
# * Neither the name of Virtual Cable S.L. nor the names of its contributors
|
|
# may be used to endorse or promote products derived from this software
|
|
# without specific prior written permission.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
'''
|
|
@author: Adolfo Gómez, dkmaster at dkmon dot com
|
|
'''
|
|
from __future__ import unicode_literals
|
|
|
|
import sys
|
|
import os
|
|
from PyQt4 import QtCore, QtGui
|
|
import six
|
|
|
|
from udsactor import store
|
|
from udsactor import REST
|
|
from udsactor import utils
|
|
from udsactor.log import logger
|
|
|
|
from setup_dialog_ui import Ui_UdsActorSetupDialog
|
|
|
|
|
|
class UDSConfigDialog(QtGui.QDialog):
|
|
|
|
def __init__(self, data, parent=None):
|
|
QtGui.QDialog.__init__(self, parent)
|
|
self.ui = Ui_UdsActorSetupDialog()
|
|
self.ui.setupUi(self)
|
|
if data is not None:
|
|
self.ui.host.setText(data.get('host', ''))
|
|
self.ui.masterKey.setText(data.get('masterKey', ''))
|
|
self.ui.useSSl.setCurrentIndex(1 if data.get('ssl', False) is True else 0)
|
|
self.ui.logLevelComboBox.setCurrentIndex(int(data.get('logLevel', '10000')) / 10000 - 1)
|
|
|
|
def _getCfg(self):
|
|
return {
|
|
'host': six.text_type(self.ui.host.text()),
|
|
'masterKey': six.text_type(self.ui.masterKey.text()),
|
|
'ssl': self.ui.useSSl.currentIndex() == 1,
|
|
'logLevel': (self.ui.logLevelComboBox.currentIndex() + 1) * 10000
|
|
}
|
|
|
|
def textChanged(self):
|
|
enableButtons = self.ui.host.text() != '' and self.ui.masterKey.text() != ''
|
|
self.ui.testButton.setEnabled(enableButtons)
|
|
self.ui.saveButton.setEnabled(enableButtons)
|
|
|
|
def cancelAndDiscard(self):
|
|
logger.debug('Cancelling changes')
|
|
self.close()
|
|
|
|
def testParameters(self):
|
|
logger.debug('Testing connection')
|
|
try:
|
|
cfg = self._getCfg()
|
|
api = REST.Api(
|
|
cfg['host'], cfg['masterKey'], cfg['ssl'])
|
|
api.test()
|
|
QtGui.QMessageBox.information(
|
|
self, 'Test Passed', 'The test was executed successfully', QtGui.QMessageBox.Ok)
|
|
logger.info('Test was passed successfully')
|
|
except Exception as e:
|
|
logger.info('Test error: {}'.format(utils.exceptionToMessage(e)))
|
|
QtGui.QMessageBox.critical(self, 'Test Error', utils.exceptionToMessage(e), QtGui.QMessageBox.Ok)
|
|
|
|
def acceptAndSave(self):
|
|
cfg = self._getCfg()
|
|
store.writeConfig(cfg)
|
|
self.close()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
# If to be run as "sudo" on linux, we will need this to avoid problems
|
|
if 'linux' in sys.platform:
|
|
os.environ['QT_X11_NO_MITSHM'] = '1'
|
|
|
|
app = QtGui.QApplication(sys.argv)
|
|
|
|
if store.checkPermissions() is False:
|
|
QtGui.QMessageBox.critical(None, 'Notice', 'This Program must be executed as administrator', QtGui.QMessageBox.Ok)
|
|
sys.exit(1)
|
|
|
|
# Read configuration
|
|
cfg = store.readConfig()
|
|
|
|
if cfg is not None:
|
|
logger.setLevel(int(cfg.get('logLevel', 20000)))
|
|
else:
|
|
logger.setLevel(20000)
|
|
|
|
myapp = UDSConfigDialog(cfg)
|
|
myapp.show()
|
|
sys.exit(app.exec_())
|