h5ai/src/_h5ai/server/php/inc/class-api.php

139 lines
4 KiB
PHP

<?php
class Api {
private $actions, $app, $options;
public function __construct($app) {
$this->actions = array("login", "logout", "get", "getThumbHref", "download");
$this->app = $app;
$this->options = $app->get_options();
}
public function apply() {
$action = Util::get_request_param("action");
Util::json_fail(Util::RC_UNSUPPORTED, "unsupported action", !in_array($action, $this->actions));
$methodname = "on_${action}";
$this->$methodname();
}
private function on_login() {
$pass = Util::get_request_param("pass");
$_SESSION[AS_ADMIN_SESSION_KEY] = sha1($pass) === PASSHASH;
Util::json_exit(array("as_admin" => $_SESSION[AS_ADMIN_SESSION_KEY]));
}
private function on_logout() {
$_SESSION[AS_ADMIN_SESSION_KEY] = false;
Util::json_exit(array("as_admin" => $_SESSION[AS_ADMIN_SESSION_KEY]));
}
private function on_get() {
$response = array();
if (Util::get_boolean_request_param("setup", false)) {
$response["setup"] = $this->app->get_setup();
}
if (Util::get_boolean_request_param("options", false)) {
$response["options"] = $this->app->get_options();
}
if (Util::get_boolean_request_param("types", false)) {
$response["types"] = $this->app->get_types();
}
if (Util::get_boolean_request_param("theme", false)) {
$response["theme"] = $this->app->get_theme();
}
if (Util::get_boolean_request_param("langs", false)) {
$response["langs"] = $this->app->get_l10n_list();
}
if (Util::get_boolean_request_param("l10n", false)) {
$iso_codes = Util::get_request_param("l10nCodes");
$iso_codes = explode(":", $iso_codes);
$response["l10n"] = $this->app->get_l10n($iso_codes);
}
if (Util::get_boolean_request_param("custom", false)) {
$url = Util::get_request_param("customHref");
$response["custom"] = $this->app->get_customizations($url);
}
if (Util::get_boolean_request_param("items", false)) {
$url = Util::get_request_param("itemsHref");
$what = Util::get_request_param("itemsWhat");
$what = is_numeric($what) ? intval($what, 10) : 1;
$response["items"] = $this->app->get_items($url, $what);
}
if (Util::get_boolean_request_param("all_items", false)) {
$response["all_items"] = $this->app->get_all_items();
}
Util::json_exit($response);
}
private function on_getThumbHref() {
Util::json_fail(Util::RC_DISABLED, "thumbnails disabled", !$this->options["thumbnails"]["enabled"]);
Util::json_fail(Util::RC_UNSUPPORTED, "thumbnails not supported", !HAS_PHP_JPG);
$type = Util::get_request_param("type");
$src_url = Util::get_request_param("href");
$width = Util::get_request_param("width");
$height = Util::get_request_param("height");
$thumb = new Thumb($this->app);
$thumb_url = $thumb->thumb($type, $src_url, $width, $height);
Util::json_fail(Util::RC_FAILED, "thumbnail creation failed", $thumb_url === null);
Util::json_exit(array("absHref" => $thumb_url));
}
private function on_download() {
Util::json_fail(Util::RC_DISABLED, "downloads disabled", !$this->options["download"]["enabled"]);
$as = Util::get_request_param("as");
$type = Util::get_request_param("type");
$hrefs = Util::get_request_param("hrefs");
$archive = new Archive($this->app);
$hrefs = explode("|:|", trim($hrefs));
set_time_limit(0);
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"$as\"");
header("Connection: close");
$rc = $archive->output($type, $hrefs);
Util::json_fail(Util::RC_FAILED, "packaging failed", $rc !== 0);
exit;
}
}