root/IoTa-Installer/lib/dphi.py @ 675e977d
2e0a7cb1 | Sylvain L. Sauvage | # -*- coding: utf-8 -*-
|
|
#
|
|||
# This program is a part of the IoTa project.
|
|||
#
|
|||
8fd1d584 | Rémy Ménard | # Copyright © 2012-2013 Université de Caen Basse-Normandie, GREYC
|
|
19b58bab | Rémy Ménard | #
|
|
2e0a7cb1 | Sylvain L. Sauvage | # This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|||
# the Free Software Foundation, either version 3 of the License, or
|
|||
# (at your option) any later version.
|
|||
#
|
|||
# This program is distributed in the hope that it will be useful,
|
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|||
# GNU General Public License for more details.
|
|||
# <http://www.gnu.org/licenses/>
|
|||
#
|
|||
# See AUTHORS for a list of contributors.
|
|||
#
|
|||
from config import CONFIG
|
|||
import installer
|
|||
import utils
|
|||
class DPHIInstaller(installer.WebAppInstaller):
|
|||
def __init__(self):
|
|||
installer.WebAppInstaller.__init__(self, "DiscoveryPHI web application", "dphi", [
|
|||
("Enter the DiscoveryPHI web application name", "dphi", "name", {}),
|
|||
("Enter the archive file pathname", "dphi", "repo", {"type": "file"}),
|
|||
("Enter the path where the policies will be saved", "ds_policies", "dir", {}), # not "type": "path" as the directories are created
|
|||
8fd1d584 | Rémy Ménard | ("Do you want to deploy the default policies?", "dphi", "deploy_policies", {"type": "YN"}),
|
|
("Enter the URL of YPSilon", "ypsilon", "url", {})
|
|||
2e0a7cb1 | Sylvain L. Sauvage | ], [
|
|
("xacml_configuration",
|
|||
{ "query-policy-directory": ("ds_policies", "query_dir"),
|
|||
"capture-policy-directory": ("ds_policies", "capture_dir"),
|
|||
"admin-policy-directory": ("ds_policies", "admin_dir") }),
|
|||
("application",
|
|||
8fd1d584 | Rémy Ménard | { "ypsilon-url": ("ypsilon", "url"),
|
|
"pks-filename": ("cert", "keystore"),
|
|||
"pks-password": ("cert", "password"),
|
|||
"trust-pks-filename": ("cert", "truststore"),
|
|||
"trust-pks-password": ("cert", "trustpassword") })
|
|||
2e0a7cb1 | Sylvain L. Sauvage | ] )
|
|
def postConfigure(self):
|
|||
# set default urls (for DSeTa)
|
|||
bf9c3717 | Rémy Ménard | url = self.setSecuredURL()
|
|
96454bcd | Sylvain L. Sauvage | CONFIG.set("ds_policies", "xacml_url", url + "xi")
|
|
2e0a7cb1 | Sylvain L. Sauvage | ||
# set policies directories (for DSeTa)
|
|||
policies_dir = CONFIG.get("ds_policies", "dir")
|
|||
admin_dir = (policies_dir + "/admin/").replace("//", "/")
|
|||
capture_dir = (policies_dir + "/capture/").replace("//", "/")
|
|||
query_dir = (policies_dir + "/query/").replace("//", "/")
|
|||
CONFIG.set("ds_policies", "admin_dir", admin_dir)
|
|||
CONFIG.set("ds_policies", "capture_dir", capture_dir)
|
|||
CONFIG.set("ds_policies", "query_dir",query_dir)
|
|||
8fd1d584 | Rémy Ménard | if (self.cisTrue("deploy_policies")):
|
|
utils.putWait("Initializing policies in " + policies_dir)
|
|||
utils.sh_mkdir_p(policies_dir)
|
|||
if utils.sh_exec("tar -C " + policies_dir + " --strip-components=1 -xaf resources/ds_policies.tar"):
|
|||
utils.putDoneOK()
|
|||
else:
|
|||
utils.putDoneFail()
|