use of org.apache.syncope.common.rest.api.service.SyncopeService in project syncope by apache.
the class InstallSetup method setup.
public void setup() throws FileNotFoundException, IllegalAccessException {
installResultManager.printWelcome();
System.out.println("Path to config files of Syncope CLI client will be: " + InstallConfigFileTemplate.dirPath());
if (!FileSystemUtils.exists(InstallConfigFileTemplate.dirPath())) {
throw new FileNotFoundException("Directory: " + InstallConfigFileTemplate.dirPath() + " does not exists!");
}
if (!FileSystemUtils.canWrite(InstallConfigFileTemplate.dirPath())) {
throw new IllegalAccessException("Permission denied on " + InstallConfigFileTemplate.dirPath());
}
System.out.println("- File system permission checked");
System.out.println("");
try (Scanner scanIn = new Scanner(System.in)) {
System.out.print("Syncope server schema [http/https]: ");
String syncopeServerSchemaFromSystemIn = scanIn.nextLine();
boolean schemaFound = false;
while (!schemaFound) {
if (("http".equalsIgnoreCase(syncopeServerSchemaFromSystemIn)) || ("https".equalsIgnoreCase(syncopeServerSchemaFromSystemIn))) {
syncopeServerSchema = syncopeServerSchemaFromSystemIn;
schemaFound = true;
} else {
System.out.println("Please use one of below values: ");
System.out.println(" - http");
System.out.println(" - https");
syncopeServerSchemaFromSystemIn = scanIn.nextLine();
}
}
System.out.print("Syncope server hostname [e.g. " + syncopeServerHostname + "]: ");
String syncopeServerHostnameFromSystemIn = scanIn.nextLine();
boolean syncopeServerHostnameFound = false;
while (!syncopeServerHostnameFound) {
if (StringUtils.isNotBlank(syncopeServerHostnameFromSystemIn)) {
syncopeServerHostname = syncopeServerHostnameFromSystemIn;
syncopeServerHostnameFound = true;
} else {
System.out.print("Syncope server hostname [e.g. " + syncopeServerHostname + "]: ");
syncopeServerHostnameFromSystemIn = scanIn.nextLine();
}
}
System.out.print("Syncope server port [e.g. " + syncopeServerPort + "]: ");
String syncopeServerPortFromSystemIn = scanIn.nextLine();
boolean syncopeServerPortFound = false;
while (!syncopeServerPortFound) {
if (StringUtils.isNotBlank(syncopeServerPortFromSystemIn)) {
syncopeServerPort = syncopeServerPortFromSystemIn;
syncopeServerPortFound = true;
} else if (!StringUtils.isNumeric(syncopeServerPortFromSystemIn)) {
System.err.println(syncopeServerPortFromSystemIn + " is not a numeric string, try again");
syncopeServerPortFromSystemIn = scanIn.nextLine();
} else {
System.out.print("Syncope server port [e.g. " + syncopeServerPort + "]: ");
syncopeServerPortFromSystemIn = scanIn.nextLine();
}
}
System.out.print("Syncope server rest context [e.g. " + syncopeServerRestContext + "]: ");
String syncopeServerRestContextFromSystemIn = scanIn.nextLine();
boolean syncopeServerRestContextFound = false;
while (!syncopeServerRestContextFound) {
if (StringUtils.isNotBlank(syncopeServerRestContextFromSystemIn)) {
syncopeServerRestContext = syncopeServerRestContextFromSystemIn;
syncopeServerRestContextFound = true;
} else {
System.out.print("Syncope server port [e.g. " + syncopeServerRestContext + "]: ");
syncopeServerRestContextFromSystemIn = scanIn.nextLine();
}
}
System.out.print("Syncope admin user: ");
String syncopeAdminUserFromSystemIn = scanIn.nextLine();
boolean syncopeAdminUserFound = false;
while (!syncopeAdminUserFound) {
if (StringUtils.isNotBlank(syncopeAdminUserFromSystemIn)) {
syncopeAdminUser = syncopeAdminUserFromSystemIn;
syncopeAdminUserFound = true;
} else {
System.out.print("Syncope admin user: ");
syncopeAdminUserFromSystemIn = scanIn.nextLine();
}
}
char[] syncopeAdminPasswordFromSystemConsole = System.console().readPassword("Syncope admin password: ");
boolean syncopeAdminPasswordFound = false;
while (!syncopeAdminPasswordFound) {
if (syncopeAdminPasswordFromSystemConsole != null && syncopeAdminPasswordFromSystemConsole.length > 0) {
syncopeAdminPassword = new String(syncopeAdminPasswordFromSystemConsole);
syncopeAdminPasswordFound = true;
} else {
syncopeAdminPasswordFromSystemConsole = System.console().readPassword("Syncope admin password: ");
}
}
}
final JasyptUtils jasyptUtils = JasyptUtils.get();
try {
final String contentCliPropertiesFile = InstallConfigFileTemplate.cliPropertiesFile(syncopeServerSchema, syncopeServerHostname, syncopeServerPort, syncopeServerRestContext, syncopeAdminUser, jasyptUtils.encrypt(syncopeAdminPassword));
FileSystemUtils.createFileWith(InstallConfigFileTemplate.configurationFilePath(), contentCliPropertiesFile);
} catch (final IOException ex) {
System.out.println(ex.getMessage());
}
try {
final SyncopeService syncopeService = SyncopeServices.get(SyncopeService.class);
final String syncopeVersion = syncopeService.platform().getVersion();
installResultManager.installationSuccessful(syncopeVersion);
} catch (final ProcessingException ex) {
LOG.error("Error installing CLI", ex);
installResultManager.manageProcessingException(ex);
} catch (final Exception e) {
LOG.error("Error installing CLI", e);
installResultManager.manageException(e);
}
}
use of org.apache.syncope.common.rest.api.service.SyncopeService in project syncope by apache.
the class InstallSetupForDebug method setup.
public void setup() throws FileNotFoundException, IllegalAccessException {
installResultManager.printWelcome();
System.out.println("Path to config files of Syncope CLI client will be: " + InstallConfigFileTemplate.dirPath());
if (!FileSystemUtils.exists(InstallConfigFileTemplate.dirPath())) {
throw new FileNotFoundException("Directory: " + InstallConfigFileTemplate.dirPath() + " does not exists!");
}
if (!FileSystemUtils.canWrite(InstallConfigFileTemplate.dirPath())) {
throw new IllegalAccessException("Permission denied on " + InstallConfigFileTemplate.dirPath());
}
System.out.println("- File system permission checked");
System.out.println("");
final JasyptUtils jasyptUtils = JasyptUtils.get();
try {
final String contentCliPropertiesFile = InstallConfigFileTemplate.cliPropertiesFile("http", "localhost", "9080", "/syncope/rest", "admin", jasyptUtils.encrypt("password"));
FileSystemUtils.createFileWith(InstallConfigFileTemplate.configurationFilePath(), contentCliPropertiesFile);
} catch (final IOException ex) {
System.out.println(ex.getMessage());
}
try {
final SyncopeService syncopeService = SyncopeServices.get(SyncopeService.class);
final String syncopeVersion = syncopeService.platform().getVersion();
installResultManager.installationSuccessful(syncopeVersion);
} catch (final ProcessingException ex) {
LOG.error("Error installing CLI", ex);
installResultManager.manageProcessingException(ex);
} catch (final Exception e) {
LOG.error("Error installing CLI", e);
installResultManager.manageException(e);
}
}
Aggregations