value) { /** @noinspection PhpUnhandledExceptionInspection */ $id = bin2hex(random_bytes(5)); $dsn = "sqlite:data/shimmie.{$id}.sqlite"; } elseif (isset($_POST['database_type']) && isset($_POST['database_host']) && isset($_POST['database_user']) && isset($_POST['database_name'])) { $dsn = "{$_POST['database_type']}:user={$_POST['database_user']};password={$_POST['database_password']};host={$_POST['database_host']};dbname={$_POST['database_name']}"; } else { $dsn = null; } return $dsn; } function do_install(string $dsn): void { try { create_dirs(); create_tables(new Database($dsn)); write_config($dsn); } catch (InstallerException $e) { die_nicely($e->title, $e->body, $e->exit_code); } } function ask_questions(): void { $warnings = []; $errors = []; if (check_gd_version() == 0 && check_im_version() == 0) { $errors[] = " No thumbnailers could be found - install the imagemagick tools (or the PHP-GD library, if imagemagick is unavailable). "; } elseif (check_im_version() == 0) { $warnings[] = " The 'convert' command (from the imagemagick package) could not be found - PHP-GD can be used instead, but the size of thumbnails will be limited. "; } if (!function_exists('mb_strlen')) { $errors[] = " The mbstring PHP extension is missing - multibyte languages (eg non-english languages) may not work right. "; } $drivers = \PDO::getAvailableDrivers(); if ( !in_array(DatabaseDriverID::MYSQL->value, $drivers) && !in_array(DatabaseDriverID::PGSQL->value, $drivers) && !in_array(DatabaseDriverID::SQLITE->value, $drivers) ) { $errors[] = " No database connection library could be found; shimmie needs PDO with either Postgres, MySQL, or SQLite drivers "; } $db_s = in_array(DatabaseDriverID::SQLITE->value, $drivers) ? '' : ""; $db_m = in_array(DatabaseDriverID::MYSQL->value, $drivers) ? '' : ""; $db_p = in_array(DatabaseDriverID::PGSQL->value, $drivers) ? '' : ""; $warn_msg = $warnings ? "
", $warnings) : ""; $err_msg = $errors ? "
", $errors) : "";
$data_href = get_base_href();
die_nicely(
"Install Options",
<<
Please make sure the database you have chosen exists and is empty.
SQLite with default settings is fine for tens of users with thousands
of images. For thousands of users or millions of images, postgres is
recommended.
Drivers can generally be downloaded with your OS package manager;
for Debian / Ubuntu you want php-pgsql, php-mysql, or php-sqlite.
Shimmie needs to have a 'data' folder in its directory, writable by the PHP user. If you see this error, if probably means the folder is owned by you, and it needs to be writable by the web server. PHP reports that it is currently running as user: ".get_current_user()." (". getmyuid() .") Once you have created this folder and / or changed the ownership of the shimmie folder, hit 'refresh' to continue. Please ensure that the database you are installing Shimmie with is empty before continuing. Once you have emptied the database of any tables, please hit 'refresh' to continue. An error occurred while trying to create the database tables necessary for Shimmie. Please check and ensure that the database configuration options are all correct. {$e->getMessage()} If you aren't redirected, click here to Continue."
);
}
} else {
$h_file_content = htmlentities($file_content);
throw new InstallerException(
"File Permissions Error:",
"The web server isn't allowed to write to the config file; please copy
the text below, save it as 'data/config/shimmie.conf.php', and upload it into the shimmie
folder manually. Make sure that when you save it, there is no whitespace
before the \"<?php\".
Once done, click here to Continue.",
0
);
}
}
Type:
Host:
Username:
Password:
DB Name:
Help
The username provided must have access to create tables within the database.