hostname = $hostname; } /** * Gets the character set for encoding. * * @return string Set of characters */ public function get_chars() { return $this->chars; } /** * Sets the character set for encoding. * * @param string $chars Set of characters */ public function set_chars($chars) { if (!is_string($chars) || empty($chars)) { throw new Exception('Invalid input.'); } $this->chars = $chars; } /** * Gets the salt string for encoding. * * @return string Salt */ public function get_salt() { return $this->salt; } /** * Sets the salt string for encoding. * * @param string $salt Salt string */ public function set_salt($salt) { $this->salt = $salt; } /** * Gets the padding length. * * @return int Padding length */ public function get_padding() { return $this->padding; } /** * Sets the padding length. * * @param int $padding Padding length */ public function set_padding($padding) { $this->padding = $padding; } /** * Converts an id to an encoded string. * * @param int $n Number to encode * @return string Encoded string */ public function encode($n) { $k = 0; if ($this->padding > 0 && !empty($this->salt)) { $k = self::get_seed($n, $this->salt, $this->padding); $n = (int)($k.$n); } return self::num_to_alpha($n, $this->chars); } /** * Converts an encoded string into a number. * * @param string $s String to decode * @return int Decoded number */ public function decode($s) { $n = self::alpha_to_num($s, $this->chars); return (!empty($this->salt)) ? substr($n, $this->padding) : $n; } /** * Gets a number for padding based on a salt. * * @param int $n Number to pad * @param string $salt Salt string * @param int $padding Padding length * @return int Number for padding */ public static function get_seed($n, $salt, $padding) { $hash = md5($n.$salt); $dec = hexdec(substr($hash, 0, $padding)); $num = $dec % pow(10, $padding); if ($num == 0) $num = 1; $num = str_pad($num, $padding, '0'); return $num; } /** * Converts a number to an alpha-numeric string. * * @param int $num Number to convert * @param string $s String of characters for conversion * @return string Alpha-numeric string */ public static function num_to_alpha($n, $s) { $b = strlen($s); $m = $n % $b; if ($n - $m == 0) return substr($s, $n, 1); $a = ''; while ($m > 0 || $n > 0) { $a = substr($s, $m, 1).$a; $n = ($n - $m) / $b; $m = $n % $b; } return $a; } /** * Converts an alpha numeric string to a number. * * @param string $a Alpha-numeric string to convert * @param string $s String of characters for conversion * @return int Converted number */ public static function alpha_to_num($a, $s) { $b = strlen($s); $l = strlen($a); for ($n = 0, $i = 0; $i < $l; $i++) { $n += strpos($s, substr($a, $i, 1)) * pow($b, $l - $i - 1); } return $n; } /** * Looks up a URL in the database by id. * * @param string $id URL id * @return array URL record */ public function fetch($id) { $statement = $this->connection->prepare( 'SELECT * FROM urls WHERE id = ?' ); $statement->execute(array($id)); return $statement->fetch(PDO::FETCH_ASSOC); } /** * Attempts to locate a URL in the database. * * @param string $url URL * @return array URL record */ public function find($url) { return UrlsFacade::findOneBy([ "url" => $url, "status" => 0 ], "id,url"); } /** * Stores a URL in the database. * * @param string $url URL to store * @return int Insert id */ public function store($url) { $info = UrlsFacade::save([ "url" => $url, "status" => 0 ]); return $info->id; } /** * Updates statistics for a URL. * * @param int $id URL id */ public function update($id, $key) { return UrlsFacade::update($id, [ "key" => $key ]); } /** * Sends a redirect to a URL. * * @param string $url URL */ public function redirect($url) { header("Location: $url", true, 301); exit(); } /** * Sends a 404 response. */ public function not_found() { header('Status: 404 Not Found'); exit( '