81 define(
"ILIAS_MODULE",
"setup");
83 $this->auth = ($this->
checkAuth()) ?
true :
false;
84 $this->access_mode = $a_auth_type;
87 if ($this->safe_mode = ini_get(
"safe_mode")) {
92 $this->ini_file_path = ILIAS_ABSOLUTE_PATH .
"/ilias.ini.php";
93 $this->setup_defaults = ILIAS_ABSOLUTE_PATH .
"/setup/ilias.master.ini.php";
96 $this->ini_ilias_exists = $this->
init();
131 $this->client = $a_cl;
151 $this->ini =
new ilIniFile($this->ini_file_path);
153 if (!$this->ini->read()) {
154 $this->ini->GROUPS = parse_ini_file($this->setup_defaults,
true);
155 $this->error = get_class($this) .
": " . $this->ini->getError();
159 $this->setup_password = $this->ini->readVariable(
"setup",
"pass");
160 $this->default_client = $this->ini->readVariable(
"clients",
"default");
162 define(
"ILIAS_DATA_DIR", $this->ini->readVariable(
"clients",
"datadir"));
163 define(
"ILIAS_WEB_DIR", $this->ini->readVariable(
"clients",
"path"));
175 $_SESSION[
"ClientId"] = $this->client->getId();
178 if (!$this->client->create()) {
179 $this->error = $this->client->getError();
184 $this->ini_client_exists =
true;
199 if ($a_old_client_id != $this->client->getId()) {
202 ilUtil::delDir(ILIAS_ABSOLUTE_PATH .
"/" . ILIAS_WEB_DIR .
"/" . $a_old_client_id);
207 $this->ini_client_exists =
true;
218 if ($this->client->getDBSetup()->isDatabaseInstalled()) {
219 $this->error = $this->lng->txt(
"database_exists");
224 $db_setup = $this->client->getDBSetup();
225 return $db_setup->createDatabase($a_collation);
235 if (!$this->client->getDBSetup()->isDatabaseConnectable()) {
239 if ($this->client->getDBSetup()->installDatabase()) {
240 $this->client->db_installed =
true;
255 $a = @file_exists($this->INI_FILE);
267 if (is_writable(
".")) {
268 $arr[
"status"] =
true;
271 $arr[
"comment"] = getcwd();
274 $arr[
"status"] =
false;
275 $arr[
"comment"] = $this->lng->txt(
"pre_folder_write_error");
278 $arr[
"comment"] = getcwd() .
": " . $arr[
"comment"];
293 if (@mkdir($a_dir .
"/crst879dldsk9d", 0774)) {
294 $arr[
"status"] =
true;
295 $arr[
"comment"] =
"";
297 @rmdir($a_dir .
"/crst879dldsk9d");
299 $arr[
"status"] =
false;
302 $arr[
"comment"] = getcwd() .
": " . $this->lng->txt(
"pre_folder_create_error");
317 if ($sess->usesCookies) {
318 $arr[
"status"] =
true;
319 $arr[
"comment"] =
"";
321 $arr[
"status"] =
false;
322 $arr[
"comment"] = $this->lng->txt(
"pre_cookies_disabled");
334 $version = PHP_VERSION;
336 $arr[
"status"] =
true;
337 $arr[
"comment"] =
"PHP " . $version;
338 if (version_compare($version,
'5.3.0',
'<')) {
339 $arr[
"status"] =
false;
340 $arr[
"comment"] =
"PHP " . $version .
". " . $this->lng->txt(
"pre_php_version_too_low");
354 if (function_exists(
"mysql_query")) {
355 $arr[
"status"] =
true;
356 $arr[
"comment"] = $this->lng->txt(
"pre_mysql_4_1_or_higher");
358 $arr[
"status"] =
false;
359 $arr[
"comment"] = $this->lng->txt(
"pre_mysql_missing");
387 if (class_exists(
"DOMDocument")) {
388 $arr[
"status"] =
true;
390 $arr[
"status"] =
false;
391 $arr[
"comment"] = $this->lng->txt(
"pre_dom_missing");
405 if (class_exists(
"XSLTProcessor")) {
406 $arr[
"status"] =
true;
408 $arr[
"status"] =
false;
409 $arr[
"comment"] = sprintf(
410 $this->lng->txt(
"pre_xsl_missing"),
411 "http://php.net/manual/en/book.xsl.php" 426 if (function_exists(
"imagefill") && function_exists(
"imagecolorallocate")) {
427 $arr[
"status"] =
true;
429 $arr[
"status"] =
false;
430 $arr[
"comment"] = sprintf(
431 $this->lng->txt(
"pre_gd_missing"),
432 "http://php.net/manual/en/book.image.php" 447 $limit = ini_get(
"memory_limit");
450 if (is_int(strpos($limit,
"M"))) {
451 $limit_n = (int) $limit;
458 $arr[
"status"] =
true;
459 $arr[
"comment"] = $limit .
". " . $this->lng->txt(
"pre_memory_limit_recommend");
461 $arr[
"status"] =
false;
462 $arr[
"comment"] = $limit .
". " . $this->lng->txt(
"pre_memory_limit_too_low");
500 foreach ($this->preliminaries_result as $val) {
501 if ($val[
"status"] ===
false) {
502 $this->preliminaries =
false;
515 return $this->ini->readVariable(
'setup',
'pass');
524 $this->ini->setVariable(
'setup',
'pass', $this->passwordManager->encodePassword($raw));
526 if ($this->ini->write() ==
false) {
527 $this->error = $this->ini->getError();
541 $passwordReHashCallback =
function ($raw) {
545 return $this->passwordManager->verifyPassword(
548 $passwordReHashCallback
561 if (empty($a_auth_data[
"client_id"])) {
562 $this->error =
"no_client_id";
566 if (empty($a_auth_data[
"username"])) {
567 $this->error =
"no_username";
571 if (empty($a_auth_data[
"password"])) {
572 $this->error =
"no_password";
576 if (!$this->
newClient($a_auth_data[
"client_id"])) {
577 $this->error =
"unknown_client_id";
578 unset($this->client);
582 if (!$this->client->db_exists) {
583 $this->error =
"no_db_connect_consult_admin";
584 unset($this->client);
588 $s1 = $this->client->db->query(
"SELECT value from settings WHERE keyword = " .
589 $this->client->db->quote(
'system_role_id',
'text'));
590 $r1 = $this->client->db->fetchAssoc($s1);
591 $system_role_id = $r1[
"value"];
594 if ($this->client->db->tableColumnExists(
'usr_data',
'passwd_enc_type')) {
595 $add_usrfields .=
' , usr_data.passwd_enc_type, usr_data.passwd_salt ';
597 $q =
"SELECT usr_data.usr_id, usr_data.passwd $add_usrfields " .
599 "LEFT JOIN rbac_ua ON rbac_ua.usr_id=usr_data.usr_id " .
600 "WHERE rbac_ua.rol_id = " . $this->client->db->quote((
int) $system_role_id,
'integer') .
" " .
601 "AND usr_data.login=" . $this->client->db->quote($a_auth_data[
"username"],
'text');
602 $r = $this->client->db->query($q);
603 if (!$this->client->db->numRows($r)) {
604 $this->error =
'login_invalid';
608 $data = $this->client->db->fetchAssoc($r);
610 global $ilClientIniFile;
612 $ilClientIniFile = $this->client->ini;
614 require_once
'Services/User/classes/class.ilUserPasswordManager.php';
617 require_once
'setup/classes/class.ilObjSetupUser.php';
620 $user->setPasswordEncodingType(
$data[
'passwd_enc_type']);
621 $user->setPasswordSalt(
$data[
'passwd_salt']);
625 $password_valid =
$data[
'passwd'] == md5($a_auth_data[
'password']);
628 if ($password_valid) {
633 $_SESSION[
'ClientId'] = $this->client->getId();
636 $this->error =
'login_invalid';
649 $passwordReHashCallback =
function ($raw) {
653 if ($this->passwordManager->verifyPassword($this->getMasterPassword(), $raw, $passwordReHashCallback)) {
674 $this->client =
new ilClient($a_client_id);
676 if (!$this->client->init()) {
678 $this->error = get_class($this) .
": " . $this->client->getError();
696 if ($this->ini_client_exists) {
706 if ($status[
"db"][
"status"] ===
false and $status[
"db"][
"update"] !==
true) {
709 $status[
"lang"][
"status"] =
false;
710 $status[
"lang"][
"comment"] = $status[
"db"][
"comment"];
711 $status[
"contact"][
"status"] =
false;
712 $status[
"contact"][
"comment"] = $status[
"db"][
"comment"];
714 $status[
"proxy"][
"status"] =
false;
715 $status[
"proxy"][
"comment"] = $status[
"db"][
"comment"];
717 $status[
"nic"][
"status"] =
false;
718 $status[
"nic"][
"comment"] = $status[
"db"][
"comment"];
740 if (
$client->getSetting(
"setup_ok")) {
741 $arr[
"status"] =
true;
744 $arr[
"status"] =
false;
745 $arr[
"comment"] = $this->lng->txt(
"setup_not_finished");
758 if (
$client->ini->readVariable(
"client",
"access") ==
"1") {
759 $arr[
"status"] =
true;
760 $arr[
"comment"] = $this->lng->txt(
"online");
762 $arr[
"status"] =
false;
763 $arr[
"comment"] = $this->lng->txt(
"disabled");
776 if (!$arr[
"status"] =
$client->init()) {
777 $arr[
"comment"] =
$client->getError();
794 if (!$arr[
"status"] = $client->db_exists) {
795 $arr[
"comment"] = $this->lng->txt(
"no_database");
800 if (!$arr[
"status"] = $client->db_installed) {
801 $arr[
"comment"] = $this->lng->txt(
"db_not_installed");
806 $client->setup_ok = (bool) $client->
getSetting(
"setup_ok");
808 $this->lng->setDbHandler($client->db);
811 if (!$arr[
"status"] = $dbupdate->getDBVersionStatus()) {
812 $arr[
"comment"] = $this->lng->txt(
"db_needs_update");
813 $arr[
"update"] =
true;
817 if ($dbupdate->hotfixAvailable()) {
818 $arr[
"status"] =
false;
819 $arr[
"comment"] = $this->lng->txt(
"hotfix_available");
820 $arr[
"update"] =
true;
824 if ($dbupdate->customUpdatesAvailable()) {
825 $arr[
"status"] =
false;
826 $arr[
"comment"] = $this->lng->txt(
"custom_updates_available");
827 $arr[
"update"] =
true;
836 $cset = $ilDB->query(
"SELECT count(*) as cnt FROM ctrl_calls");
837 $crec = $ilDB->fetchAssoc($cset);
839 if ($crec[
"cnt"] == 0) {
840 $arr[
"status"] =
false;
841 $arr[
"comment"] = $this->lng->txt(
"db_control_structure_missing");
842 $arr[
"update"] =
true;
857 require_once(
'Services/Authentication/classes/class.ilSessionControl.php');
864 $query =
"SELECT keyword, value FROM settings WHERE " .
$db->in(
'keyword', $fields,
false,
'text');
869 if ($row[
'value'] !=
'') {
876 if (count(
$rows) != count($fields)) {
880 $arr[
"status"] =
false;
881 $arr[
"comment"] = $this->lng->txt(
"session_management_not_configured");
886 $arr[
"status"] =
true;
887 $arr[
"comment"] = $this->lng->txt(
"session_management_configured");
903 $fields = array(
'proxy_status',
'proxy_host',
'proxy_port' );
905 $query =
"SELECT keyword, value FROM settings WHERE " . $ilDB->in(
'keyword', $fields,
false,
'text');
908 $proxy_settings = array();
909 $already_saved =
false;
910 while ($row = $ilDB->fetchAssoc(
$res)) {
911 $already_saved =
true;
912 $proxy_settings[$row[
'keyword']] = $row[
'value'];
915 if (!$already_saved) {
916 $arr[
"status"] =
false;
917 $arr[
"comment"] = $this->lng->txt(
"proxy");
918 $arr[
"text"] = $this->lng->txt(
"proxy");
920 if ((
bool) $proxy_settings[
"proxy_status"] ==
false) {
921 $arr[
"status"] =
true;
922 $arr[
"comment"] = $this->lng->txt(
"proxy_disabled");
923 $arr[
"text"] = $this->lng->txt(
"proxy_disabled");
925 $arr[
"status"] =
true;
926 $arr[
"comment"] = $this->lng->txt(
"proxy_activated_configurated");
927 $arr[
"text"] = $this->lng->txt(
"proxy_activated_configurated");
942 $installed_langs = $this->lng->getInstalledLanguages();
944 $count = count($installed_langs);
947 $arr[
"status"] =
false;
948 $arr[
"comment"] = $this->lng->txt(
"lang_none_installed");
950 $arr[
"status"] =
true;
964 $arr[
"status"] =
true;
967 $settings =
$client->getAllSettings();
968 $client_name =
$client->getName();
971 if (empty($settings[
"admin_firstname"]) or empty($settings[
"admin_lastname"]) or
972 empty($settings[
"admin_email"]) or empty($client_name)) {
973 $arr[
"status"] =
false;
974 $arr[
"comment"] = $this->lng->txt(
"missing_data");
978 if (!
ilUtil::is_email($settings[
"admin_email"]) and $arr[
"status"] !=
false) {
979 $arr[
"status"] =
false;
980 $arr[
"comment"] = $this->lng->txt(
"email_not_valid");
993 $settings =
$client->getAllSettings();
995 if (!isset($settings[
"nic_enabled"])) {
996 $arr[
"status"] =
false;
997 $arr[
"comment"] = $this->lng->txt(
"nic_not_disabled");
1001 $arr[
"status"] =
true;
1003 if ($settings[
"nic_enabled"] ==
"-1") {
1004 $arr[
"comment"] = $this->lng->txt(
"nic_reg_failed");
1008 if (!$settings[
"nic_enabled"]) {
1009 $arr[
"comment"] = $this->lng->txt(
"nic_reg_disabled");
1011 $arr[
"comment"] = $this->lng->txt(
"nic_reg_enabled");
1012 if ($settings[
"inst_id"] <= 0) {
1013 $arr[
"status"] =
false;
1044 return ($this->access_mode ==
"admin") ? true :
false;
1056 if ($a_formdata[
"chk_datadir_path"] == 1) {
1058 $this->error =
"create_datadir_failed";
1064 if (!@file_exists(ILIAS_ABSOLUTE_PATH .
"/" . $this->ini->readVariable(
"clients",
"path")) and !@is_dir(ILIAS_ABSOLUTE_PATH .
"/" . $this->ini->readVariable(
"clients",
"path"))) {
1065 if (!
ilUtil::makeDir(ILIAS_ABSOLUTE_PATH .
"/" . $this->ini->readVariable(
"clients",
"path"))) {
1066 $this->error =
"create_webdir_failed";
1072 $log_path = substr($form_log_path, 0, strrpos($form_log_path,
"/"));
1073 $log_file = substr($form_log_path, strlen($log_path) + 1);
1077 $this->ini->setVariable(
"server",
"absolute_path", ILIAS_ABSOLUTE_PATH);
1078 $this->ini->setVariable(
"server",
"timezone", preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"time_zone"])));
1079 $this->ini->setVariable(
"clients",
"datadir", $datadir_path);
1080 $this->ini->setVariable(
"tools",
"convert", preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"convert_path"])));
1081 $this->ini->setVariable(
"tools",
"zip", preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"zip_path"])));
1082 $this->ini->setVariable(
"tools",
"unzip", preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"unzip_path"])));
1083 $this->ini->setVariable(
"tools",
"ghostscript", preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"ghostscript_path"])));
1084 $this->ini->setVariable(
"tools",
"java", preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"java_path"])));
1086 $this->ini->setVariable(
"tools",
"ffmpeg", preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"ffmpeg_path"])));
1088 $this->ini->setVariable(
"tools",
"vscantype", preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"vscanner_type"])));
1089 $this->ini->setVariable(
"tools",
"scancommand", preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"scan_command"])));
1090 $this->ini->setVariable(
"tools",
"cleancommand", preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"clean_command"])));
1091 $this->ini->setVariable(
"tools",
"enable_system_styles_management", preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"enable_system_styles_management"])));
1092 $this->ini->setVariable(
"tools",
"lessc", preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"lessc_path"])));
1093 $this->ini->setVariable(
"tools",
"phantomjs", preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"phantomjs_path"])));
1095 $this->ini->setVariable(
'setup',
'pass', $this->passwordManager->encodePassword($a_formdata[
'setup_pass']));
1096 $this->ini->setVariable(
"log",
"path", $log_path);
1097 $this->ini->setVariable(
"log",
"file", $log_file);
1098 $this->ini->setVariable(
"log",
"enabled", ($a_formdata[
"chk_log_status"]) ?
"0" : 1);
1099 $this->ini->setVariable(
"log",
"error_path", $error_log_path);
1101 $this->ini->setVariable(
"https",
"auto_https_detect_enabled", ($a_formdata[
"auto_https_detect_enabled"]) ? 1 : 0);
1102 $this->ini->setVariable(
"https",
"auto_https_detect_header_name", $a_formdata[
"auto_https_detect_header_name"]);
1103 $this->ini->setVariable(
"https",
"auto_https_detect_header_value", $a_formdata[
"auto_https_detect_header_value"]);
1105 if (!$this->ini->write()) {
1106 $this->error = get_class($this) .
": " . $this->ini->getError();
1125 $convert_path = preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"convert_path"]));
1128 $ghostscript_path = preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"ghostscript_path"]));
1135 $scan_command = preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"scan_command"]));
1136 $clean_command = preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"clean_command"]));
1137 $enable_system_styles_management = preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"enable_system_styles_management"]));
1139 $phantomjs_path = preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"phantomjs_path"]));
1141 $this->ini->setVariable(
"tools",
"convert", $convert_path);
1142 $this->ini->setVariable(
"tools",
"zip", $zip_path);
1143 $this->ini->setVariable(
"tools",
"unzip", $unzip_path);
1144 $this->ini->setVariable(
"tools",
"ghostscript", $ghostscript_path);
1145 $this->ini->setVariable(
"tools",
"java", $java_path);
1147 $this->ini->setVariable(
"tools",
"ffmpeg", $ffmpeg_path);
1148 $this->ini->setVariable(
"tools",
"latex", $latex_url);
1149 $this->ini->setVariable(
"tools",
"fop", $fop_path);
1150 $this->ini->setVariable(
"tools",
"vscantype", $scan_type);
1151 $this->ini->setVariable(
"tools",
"scancommand", $scan_command);
1152 $this->ini->setVariable(
"tools",
"cleancommand", $clean_command);
1153 $this->ini->setVariable(
"tools",
"lessc", $lessc_path);
1154 $this->ini->setVariable(
"tools",
"enable_system_styles_management", $enable_system_styles_management);
1155 $this->ini->setVariable(
"tools",
"phantomjs", $phantomjs_path);
1158 $log_path = substr($form_log_path, 0, strrpos($form_log_path,
"/"));
1159 $log_file = substr($form_log_path, strlen($log_path) + 1);
1163 $this->ini->setVariable(
"log",
"path", $log_path);
1164 $this->ini->setVariable(
"log",
"file", $log_file);
1165 $this->ini->setVariable(
"log",
"enabled", ($a_formdata[
"chk_log_status"]) ?
"0" : 1);
1166 $this->ini->setVariable(
"log",
"error_path", $error_log_path);
1167 $this->ini->setVariable(
"server",
"timezone", preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"time_zone"])));
1169 $this->ini->setVariable(
"https",
"auto_https_detect_enabled", ($a_formdata[
"auto_https_detect_enabled"]) ? 1 : 0);
1170 $this->ini->setVariable(
"https",
"auto_https_detect_header_name", $a_formdata[
"auto_https_detect_header_name"]);
1171 $this->ini->setVariable(
"https",
"auto_https_detect_header_value", $a_formdata[
"auto_https_detect_header_value"]);
1173 if (!$this->ini->write()) {
1174 $this->error = get_class($this) .
": " . $this->ini->getError();
1189 if (!isset($a_formdata[
"chk_convert_path"])) {
1191 $convert_path = preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"convert_path"]));
1193 if (($err = $this->
testConvert($convert_path)) !=
"") {
1194 $this->error = $err;
1200 if (!isset($a_formdata[
"chk_zip_path"])) {
1204 if (empty($zip_path)) {
1205 $this->error =
"no_path_zip";
1209 if (!$this->
testZip($zip_path)) {
1210 $this->error =
"check_failed_zip";
1216 if (!isset($a_formdata[
"chk_unzip_path"])) {
1220 if (empty($unzip_path)) {
1221 $this->error =
"no_path_unzip";
1226 $this->error =
"check_failed_unzip";
1232 if (!isset($a_formdata[
"chk_ghostscript_path"])) {
1234 $ghostscript_path = preg_replace(
"/\\\\/",
"/",
ilUtil::stripSlashes($a_formdata[
"ghostscript_path"]));
1237 $this->error = $err;
1243 if (!isset($a_formdata[
"chk_java_path"])) {
1247 if (empty($java_path)) {
1248 $this->error =
"no_path_java";
1252 if (!$this->
testJava($java_path)) {
1253 $this->error =
"check_failed_java";
1270 if (!isset($a_formdata[
"chk_ffmpeg_path"])) {
1274 if (empty($ffmpeg_path)) {
1275 $this->error =
"no_path_ffmpeg";
1279 if (!$this->testFFMpeg($ffmpeg_path)) {
1280 $this->error =
"check_failed_ffmpeg";
1286 if (!isset($a_formdata[
"chk_latex_url"])) {
1288 if (empty($latex_url)) {
1289 $this->error =
"no_latex_url";
1294 $this->error =
"check_failed_latex";
1312 if (empty($datadir_path)) {
1313 $this->error =
"no_path_datadir";
1317 $webspace_dir = ILIAS_ABSOLUTE_PATH .
"/data";
1320 if (strpos($datadir_path, $webspace_dir) !==
false) {
1321 $this->error =
"datadir_webspacedir_match";
1326 if ($a_formdata[
"chk_datadir_path"] == 1) {
1327 $dir_to_create = substr(strrchr($datadir_path,
"/"), 1);
1328 $dir_to_check = substr($datadir_path, 0, -strlen($dir_to_create) - 1);
1331 $this->error =
"cannot_create_datadir_inside_webdir";
1335 if (is_writable($datadir_path)) {
1336 $this->error =
"dir_exists_create";
1340 if (!is_writable($dir_to_check)) {
1341 $this->error =
"cannot_create_datadir_no_write_access";
1346 $this->error =
"cannot_create_datadir_inside_webdir";
1350 if (!is_writable($datadir_path)) {
1351 $this->error =
"cannot_create_datadir_no_write_access";
1366 if (!$a_formdata[
"setup_pass"]) {
1367 $this->error =
"no_setup_pass_given";
1371 if ($a_formdata[
"setup_pass"] != $a_formdata[
"setup_pass2"]) {
1372 $this->error =
"pass_does_not_match";
1387 if (!$a_formdata[
"chk_log_status"]) {
1391 if (empty($log_path)) {
1392 $this->error =
"no_path_log";
1396 if (is_dir($log_path)) {
1397 $this->error =
'could_not_create_logfile';
1402 $this->error =
"cannot_create_logdir_inside_webdir";
1406 if (!@touch($log_path)) {
1407 $this->error =
"could_not_create_logfile";
1427 if (!empty($clean_error_log_path)) {
1429 $this->error =
"could_not_create_error_directory";
1443 if (empty($this->error)) {
1475 if (trim($a_convert_path) ==
"") {
1476 return "no_path_convert";
1478 if (!is_file($a_convert_path)) {
1479 return "check_failed_convert";
1494 if (trim($a_ghostscript_path) ==
"") {
1497 if (!is_file($a_ghostscript_path)) {
1498 return "check_failed_ghostscript";
1513 if (trim($a_java_path) ==
"") {
1517 if (!is_file($a_java_path)) {
1518 return "check_failed_java";
1540 if (trim($a_latex_url) ==
"") {
1545 include_once
"./setup/classes/class.ilHttpRequest.php";
1548 if ((strpos((substr(
$result, 0, 5)),
"PNG") !==
false) || (strpos((substr(
$result, 0, 5)),
"GIF") !==
false)) {
1551 return "check_failed_latex";
1564 if (trim($a_zip_path) ==
"") {
1565 return "no_path_zip";
1567 if (!is_file($a_zip_path)) {
1568 return "check_failed_zip";
1615 if (trim($a_unzip_path) ==
"") {
1616 return "no_path_unzip";
1618 if (!is_file($a_unzip_path)) {
1619 return "check_failed_unzip";
1656 public function unzip($a_file, $overwrite =
false)
1660 $pathinfo = pathinfo($a_file);
1661 $dir = $pathinfo[
"dirname"];
1662 $file = $pathinfo[
"basename"];
1667 $unzip = $this->ini->readVariable(
"tools",
"unzip");
1669 exec($unzipcmd, $arr);
1672 foreach ($arr as $line) {
1673 if (is_int(strpos($line,
"/"))) {
1674 $zdir = substr($line, 0, strrpos($line,
"/"));
1675 $nr = substr_count($zdir,
"/");
1677 while ($zdir !=
"") {
1678 $nr = substr_count($zdir,
"/");
1679 $zdirs[$zdir] = $nr;
1681 $zdir = substr($zdir, 0, strrpos($zdir,
"/"));
1688 foreach ($zdirs as $zdir => $nr) {
1710 require_once(
'Services/Authentication/classes/class.ilSessionControl.php');
1712 $db = $this->client->getDB();
1717 foreach ($setting_fields as $field) {
1718 if (isset($session_settings[$field])) {
1719 $query =
"SELECT keyword FROM settings WHERE module = %s AND keyword = %s";
1722 array(
'text',
'text'),
1723 array(
'common', $field)
1731 if (count($row) > 0) {
1735 'value' => array(
'text', $session_settings[$field])
1738 'module' => array(
'text',
'common'),
1739 'keyword' => array(
'text', $field)
1746 'module' => array(
'text',
'common'),
1747 'keyword' => array(
'text', $field),
1748 'value' => array(
'text', $session_settings[$field])
1758 $message = $this->lng->txt(
"session_settings_not_saved");
1760 $message = $this->lng->txt(
"settings_saved");
1773 require_once(
'Services/Authentication/classes/class.ilSessionControl.php');
1775 $db = $this->client->getDB();
1779 $query =
"SELECT * FROM settings WHERE module = %s " .
1780 "AND " .
$db->in(
'keyword', $setting_fields,
false,
'text');
1784 $session_settings = array();
1786 $session_settings[$row[
'keyword']] = $row[
'value'];
1789 foreach ($setting_fields as $field) {
1790 if (!isset($session_settings[$field])) {
1794 case 'session_max_count':
1799 case 'session_min_idle':
1804 case 'session_max_idle':
1809 case 'session_max_idle_after_first_request':
1814 case 'session_allow_client_maintenance':
1820 $session_settings[$field] = $value;
1824 return $session_settings;
1844 $this->error =
"Could not delete data dir $target->getDataDir()";
1850 $this->error =
"could_not_create_base_data_dir :" . $target->getDataDir();
1856 $this->error =
"clone_datadircopyfail";
1857 $target->ini->write();
1863 $this->error =
"Could not delete webspace dir $target->getWebspaceDir()";
1869 $this->error =
"could_not_create_base_webspace_dir :" . $target->getWebspaceDir();
1875 $this->error =
"clone_websipacedircopyfail";
1876 $target->ini->write();
1881 $target->ini->write();
1888 $this->error =
"Source database connection failed.";
1894 $this->error =
"Target database connection failed.";
1899 $srcTables =
$source->db->query(
"SHOW TABLES");
1903 $tarTables = $target->db->query(
"SHOW TABLES");
1904 foreach ($tarTables->fetchAll() as $cTable) {
1905 $target->db->query(
"DROP TABLE IF EXISTS " . $cTable[0]);
1908 foreach ($srcTables->fetchAll() as $cTable) {
1909 $drop = $target->db->query(
"DROP TABLE IF EXISTS " . $cTable[0]);
1910 $create = $target->db->query(
"CREATE TABLE " . $cTable[0] .
" LIKE " .
$source->getDbName() .
"." . $cTable[0]);
1914 $insert = $target->db->query(
"INSERT INTO " . $cTable[0] .
" SELECT * FROM " .
$source->getDbName() .
"." . $cTable[0]);
1917 $target->db->query(
"UPDATE settings SET VALUE = " . $target->db->quote(0,
"integer") .
" WHERE keyword = " . $target->db->quote(
"inst_id",
"text"));
1918 $target->db->query(
"UPDATE settings SET VALUE = " . $target->db->quote(0,
"integer") .
" WHERE keyword = " . $target->db->quote(
"nic_enabled",
"text"));
1930 require_once
'./Services/Http/exceptions/class.ilProxyException.php';
1931 $settings =
$client->getAllSettings();
1933 if ((
bool) $settings[
'proxy_status'] ==
true) {
1936 $wait_timeout = 100;
1938 $fp = @fsockopen($settings[
'proxy_host'], $settings[
'proxy_port'], $err_code, $err_str, $wait_timeout);
1946 ilUtil::sendSuccess($this->lng->txt(
'proxy_connectable'));
1955 $db = $this->client->getDB();
1956 $proxy_fields = array(
'proxy_status',
'proxy_host',
'proxy_port');
1958 foreach ($proxy_fields as $field) {
1959 if (isset($proxy_settings[$field])) {
1960 $query =
"SELECT keyword FROM settings WHERE module = %s AND keyword = %s";
1963 array(
'text',
'text'),
1964 array(
'common', $field)
1968 while ($row =
$db->fetchAssoc(
$res)) {
1972 if (is_array($row) && count($row) > 0) {
1976 'value' => array(
'text', $proxy_settings[$field])
1979 'module' => array(
'text',
'common'),
1980 'keyword' => array(
'text', $field)
1987 'module' => array(
'text',
'common'),
1988 'keyword' => array(
'text', $field),
1989 'value' => array(
'text', $proxy_settings[$field])
2005 if (!preg_match(
"/^[A-Za-z0-9]+$/", $a_client_id)) {
2020 $other_directory = $other_directory .
"/";
2022 return !(strpos($directory, $other_directory) !== 0);
const DEFAULT_MAX_COUNT
default value for settings that have not been defined in setup or administration yet ...
static makeDirParents($a_dir)
Create a new directory and all parent directories.
isAuthenticated()
check if current user is authenticated
checkClientIni(&$client)
check client ini status
isDirectoryInOther($directory, $other_directory)
Checks if directory is subdirectory of other directory.
getStatus($client=0)
coumpute client status
checkClientLanguages(ilClient $client)
checkCreatable($a_dir=".")
check for permission to create new folders in specified directory
queryPreliminaries()
preliminaries
static rCopy($a_sdir, $a_tdir, $preserveTimeAttributes=false)
Copies content of a directory $a_sdir recursively to a directory $a_tdir.
static is_email($a_email, ilMailRfc822AddressParserFactory $mailAddressParserFactory=null)
This preg-based function checks whether an e-mail address is formally valid.
cloneFromSource($source_id)
Clone source client into current client.
checkLogSetup($a_formdata)
check log path
checkWritable()
check for writable directory
isAdmin()
check if current user is admin
testLatex($a_latex_url)
Check latex cgi script.
checkPreliminaries()
check all prliminaries
loginAsAdmin(string $raw)
Process setup admin login.
updateNewClient($a_old_client_id)
update client.ini & move data dirs does not work correctly at this time - DISABLED ...
saveProxySettings($proxy_settings)
checkMemoryLimit()
Check Memory Limit.
static getSettingFields()
returns the array of setting fields
Class for proxy related exception handling in ILIAS.
checkIniFileExists()
check if inifile exists
testZip($a_zip_path)
Check zip program.
unzip($a_file, $overwrite=false)
unzip file
testJava($a_java_path)
Check JVM.
checkClientDatabase(ilClient $client)
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
createDatabase($a_collation="")
create client database
testConvert($a_convert_path)
Check convert program.
isInstalled()
check if client's db is installed
checkErrorLogSetup($error_log_path)
check error log path
foreach($_POST as $key=> $value) $res
deleteTrailingSlash($a_path)
delete trailing slash of path variables
checkClientContact(&$client)
check client contact data status
installDatabase()
set the database data
checkPasswordSetup($a_formdata)
check setup password
setSessionSettings($session_settings)
saves session settings to db
loginAsClient($a_auth_data)
process client login
checkCookiesEnabled()
check cookies enabled
saveMasterSetup($a_formdata)
saves intial settings
printProxyStatus($client)
Print proxy settings.
static createDirectory($a_dir, $a_mod=0755)
create directory
init()
init setup load settings from ilias.ini if exists and sets some constants
getError()
get Error message
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
newClient($a_client_id=0)
creates a client object in $this->client
updateMasterSettings($a_formdata)
updates settings
Class ilObjSetupUser A class derived from ilObjUser for authentication purposes in the ILIAS setup...
getSessionSettings()
reads session settings from db
checkToolsSetup($a_formdata)
check pathes to 3rd party software
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
checkFinish(&$client)
check if client setup was finished
storeMasterPassword(string $raw)
verifyMasterPassword(string $raw)
__construct(\ilSetupPasswordManager $passwordManager, $a_auth, $a_auth_type)
constructor
isValidClientId($a_client_id)
Is valid client id.
checkAuth()
check authentication status
checkClientNIC(&$client)
check client nic status
testGhostscript($a_ghostscript_path)
Check ghostscript program.
static escapeShellArg($a_arg)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
getSetting($a_keyword)
read one value from settings table
checkPHPVersion()
check for PHP version
checkClientProxySettings(ilClient $client)
checkClientSessionSettings(&$client, $a_as_bool=false)
check client session config status
const DEFAULT_ALLOW_CLIENT_MAINTENANCE
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
checkAccess(&$client)
check client access status
static getInstance()
Single method to reduce footprint (included files, created instances)
const DEFAULT_MAX_IDLE_AFTER_FIRST_REQUEST
testUnzip($a_unzip_path)
Check unzip program.
checkDataDirSetup($a_formdata)
check datadir path
Class ilSetupPasswordManager.
saveNewClient()
saves client.ini & updates client list in ilias.ini