* * 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. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ namespace Core { require_once 'Upload.class.php'; use PDO; use Upload as Upload; class Settings { public static mixed $DB; public static string $DB_MODE; public static string $DB_PATH; public static string $DB_USER; public static string $DB_PASS; public static bool $LOG_IP; public static bool $ANTI_DUPE; public static bool $BLACKLIST_DB; public static bool $FILTER_MODE; public static string $FILES_ROOT; public static int $FILES_RETRIES; public static bool $SSL; public static string $URL; public static int $NAME_LENGTH; public static string $ID_CHARSET; public static array $DOUBLE_DOTS; public static array $BLOCKED_EXTENSIONS; public static array $BLOCKED_MIME; public static function loadConfig() { if (!file_exists('/Users/go.johansson/PERSONAL_REPOS/Uguu/dist.json')) { throw new \Exception('Cant read settings file.', 500); } try { $settings_array = json_decode( file_get_contents('/Users/go.johansson/PERSONAL_REPOS/Uguu/dist.json'), true ); self::$DB_MODE = $settings_array['DB_MODE']; self::$DB_PATH = $settings_array['DB_PATH']; self::$DB_USER = $settings_array['DB_USER']; self::$DB_PASS = $settings_array['DB_PASS']; self::$LOG_IP = $settings_array['LOG_IP']; self::$ANTI_DUPE = $settings_array['ANTI_DUPE']; self::$BLACKLIST_DB = $settings_array['BLACKLIST_DB']; self::$FILTER_MODE = $settings_array['FILTER_MODE']; self::$FILES_ROOT = $settings_array['FILES_ROOT']; self::$FILES_RETRIES = $settings_array['FILES_RETRIES']; self::$SSL = $settings_array['SSL']; self::$URL = $settings_array['URL']; self::$NAME_LENGTH = $settings_array['NAME_LENGTH']; self::$ID_CHARSET = $settings_array['ID_CHARSET']; self::$BLOCKED_EXTENSIONS = $settings_array['BLOCKED_EXTENSIONS']; self::$BLOCKED_MIME = $settings_array['BLOCKED_MIME']; self::$DOUBLE_DOTS = $settings_array['DOUBLE_DOTS']; } catch (\Exception $e) { throw new \Exception('Cant populate settings.', 500); } (new Database())->assemblePDO(); } } class cuteGrills { public static array $GRILLS; public static function showGrills() { self::loadGrills(); if (!headers_sent()) { header( 'Location: /img/grills/' . self::$GRILLS[array_rand(self::$GRILLS)], true, 303 ); } } public static function loadGrills() { self::$GRILLS = array_slice(scandir('img/grills/'), 2); } } /** * The Response class is a do-it-all for getting responses out in different * formats. * * @todo Create sub-classes to split and extend this god object. */ class Response { /** * Indicates response type used for routing. * * Valid strings are 'csv', 'html', 'json' and 'text'. * * @var string Response type */ private $type; /** * Indicates requested response type. * * Valid strings are 'csv', 'html', 'json', 'gyazo' and 'text'. * * @param string|null $response_type Response type */ public function __construct($response_type = null) { switch ($response_type) { case 'csv': header('Content-Type: text/csv; charset=UTF-8'); $this->type = $response_type; break; case 'html': header('Content-Type: text/html; charset=UTF-8'); $this->type = $response_type; break; case 'json': header('Content-Type: application/json; charset=UTF-8'); $this->type = $response_type; break; case 'gyazo': header('Content-Type: text/plain; charset=UTF-8'); $this->type = 'text'; break; case 'text': header('Content-Type: text/plain; charset=UTF-8'); $this->type = $response_type; break; default: header('Content-Type: application/json; charset=UTF-8'); $this->type = 'json'; $this->error(400, 'Invalid response type. Valid options are: csv, html, json, text.'); break; } } /** * Routes error messages depending on response type. * * @param int $code HTTP status code number * @param int $desc descriptive error message * * @return void */ public function error($code, $desc) { $response = null; switch ($this->type) { case 'csv': $response = $this->csvError($desc); break; case 'html': $response = $this->htmlError($code, $desc); break; case 'json': $response = $this->jsonError($code, $desc); break; case 'text': $response = $this->textError($code, $desc); break; } http_response_code($code); echo $response; } /** * Indicates with CSV body the request was invalid. * * @param int $description descriptive error message * * @return string error message in CSV format * @deprecated 2.1.0 Will be renamed to camelCase format. * */ private static function csvError($description) { return '"error"' . "\r\n" . "\"$description\"" . "\r\n"; } /** * Indicates with HTML body the request was invalid. * * @param int $code HTTP status code number * @param int $description descriptive error message * * @return string error message in HTML format * @deprecated 2.1.0 Will be renamed to camelCase format. * */ private static function htmlError($code, $description) { return '

ERROR: (' . $code . ') ' . $description . '

'; } /** * Indicates with JSON body the request was invalid. * * @param int $code HTTP status code number * @param int $description descriptive error message * * @return string error message in pretty-printed JSON format * @deprecated 2.1.0 Will be renamed to camelCase format. * */ private static function jsonError($code, $description) { return json_encode([ 'success' => false, 'errorcode' => $code, 'description' => $description, ], JSON_PRETTY_PRINT); } /** * Indicates with plain text body the request was invalid. * * @param int $code HTTP status code number * @param int $description descriptive error message * * @return string error message in plain text format * @deprecated 2.1.0 Will be renamed to camelCase format. * */ private static function textError($code, $description) { return 'ERROR: (' . $code . ') ' . $description; } /** * Routes success messages depending on response type. * * @param mixed[] $files * * @return void */ public function send($files) { $response = null; switch ($this->type) { case 'csv': $response = $this->csvSuccess($files); break; case 'html': $response = $this->htmlSuccess($files); break; case 'json': $response = $this->jsonSuccess($files); break; case 'text': $response = $this->textSuccess($files); break; } http_response_code(200); // "200 OK". Success. echo $response; } /** * Indicates with CSV body the request was successful. * * @param mixed[] $files * * @return string success message in CSV format * @deprecated 2.1.0 Will be renamed to camelCase format. * */ private static function csvSuccess($files) { $result = '"name","url","hash","size"' . "\r\n"; foreach ($files as $file) { $result .= '"' . $file['name'] . '"' . ',' . '"' . $file['url'] . '"' . ',' . '"' . $file['hash'] . '"' . ',' . '"' . $file['size'] . '"' . "\r\n"; } return $result; } /** * Indicates with HTML body the request was successful. * * @param mixed[] $files * * @return string success message in HTML format * @deprecated 2.1.0 Will be renamed to camelCase format. * */ private static function htmlSuccess($files) { $result = ''; foreach ($files as $file) { $result .= '' . $file['url'] . '
'; } return $result; } /** * Indicates with JSON body the request was successful. * * @param mixed[] $files * * @return string success message in pretty-printed JSON format * @deprecated 2.1.0 Will be renamed to camelCase format. * */ private static function jsonSuccess($files) { return json_encode([ 'success' => true, 'files' => $files, ], JSON_PRETTY_PRINT); } /** * Indicates with plain text body the request was successful. * * @param mixed[] $files * * @return string success message in plain text format * @deprecated 2.1.0 Will be renamed to camelCase format. * */ private static function textSuccess($files) { $result = ''; foreach ($files as $file) { $result .= $file['url'] . "\n"; } return $result; } } class Database { public static function assemblePDO() { try { Settings::$DB = new PDO( Settings::$DB_MODE . ':' . Settings::$DB_PATH, Settings::$DB_USER, Settings::$DB_PASS ); } catch (\Exception $e) { throw new \Exception('Cant connect to DB.', 500); } } public function dbCheckNameExists() { try { $q = Settings::$DB->prepare('SELECT COUNT(filename) FROM files WHERE filename = (:name)'); $q->bindValue(':name', Upload::$NEW_NAME_FULL); $q->execute(); return $q->fetchColumn(); } catch (\Exception $e) { throw new \Exception('Cant check if name exists in DB.', 500); } } public function checkFileBlacklist() { try { $q = Settings::$DB->prepare('SELECT hash, COUNT(*) AS count FROM blacklist WHERE hash = (:hash)'); $q->bindValue(':hash', Upload::$SHA1, PDO::PARAM_STR); $q->execute(); $result = $q->fetch(); if ($result['count'] > 0) { throw new \Exception('File blacklisted!', 415); } } catch (\Exception $e) { throw new \Exception('Cant check blacklist DB.', 500); } } public function antiDupe() { try { $q = Settings::$DB->prepare( 'SELECT filename, COUNT(*) AS count FROM files WHERE hash = (:hash) AND size = (:size)' ); $q->bindValue(':hash', Upload::$SHA1, PDO::PARAM_STR); $q->bindValue(':size', Upload::$FILE_SIZE, PDO::PARAM_INT); $q->execute(); $result = $q->fetch(); if ($result['count'] > 0) { Upload::$NEW_NAME_FULL = $result['filename']; } } catch (\Exception $e) { throw new \Exception('Cant check for dupes in DB.', 500); } } public function newIntoDB() { try { $q = Settings::$DB->prepare( 'INSERT INTO files (hash, originalname, filename, size, date, ip)' . 'VALUES (:hash, :orig, :name, :size, :date, :ip)' ); $q->bindValue(':hash', Upload::$SHA1, PDO::PARAM_STR); $q->bindValue(':orig', strip_tags(Upload::$FILE_NAME), PDO::PARAM_STR); $q->bindValue(':name', Upload::$NEW_NAME_FULL, PDO::PARAM_STR); $q->bindValue(':size', Upload::$FILE_SIZE, PDO::PARAM_INT); $q->bindValue(':date', time(), PDO::PARAM_STR); $q->bindValue(':ip', Upload::$IP, PDO::PARAM_STR); $q->execute(); } catch (\Exception $e) { throw new \Exception('Cant insert into DB.', 500); } } } }