mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-12-01 17:17:59 +01:00
00f24a5c12
* Adopt PSR-2 coding style The Laravel framework adopts the PSR-2 coding style in version 5.1. Laravel apps *should* adopt this coding style as well. Read the [PSR-2 coding style guide][1] for more details and check out [PHPCS][2] to use as a code formatting tool. [1]: https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md [2]: https://github.com/squizlabs/PHP_CodeSniffer * Adopt PHP short array syntax Laravel 5 adopted the short array syntax which became available in PHP 5.4. * Remove SelfHandling from Jobs Jobs are self handling by default in Laravel 5.2. * Add new exceptions to `$dontReport` property * Shift core files * Shift Middleware Laravel 5.2 adjusts the `Guard` object used within middleware. In addition, new `can` and `throttles` middleware were added. * Shift Input to Request facade Laravel 5.2 no longer registers the `Input` facade by default. Laravel now prefers using the `Request` facade or the `$request` object within *Controllers* instead. Review the [HTTP Requests][1] documentation for more details. [1]: https://laravel.com/docs/5.2/requests * Shift configuration Laravel 5.2 introduces the `env` app configuration option and removes the `pretend` mail configuration option. In addition, a few of the default `providers` and `aliases` bindings were removed. * Shift Laravel dependencies * Shift cleanup * Updated composer.lock * Updated Middleware to 5.2 * Config update for Laravel 5.2 * [Laravel 5.2] Updated validation strings * Updated auth config * Updated to use middleware groups * Added laravel 5.2 sessions migration
193 lines
7.3 KiB
PHP
193 lines
7.3 KiB
PHP
<?php
|
|
/////////////////////////////////////////////////////////////////
|
|
/// getID3() by James Heinrich <info@getid3.org> //
|
|
// available at http://getid3.sourceforge.net //
|
|
// or http://www.getid3.org //
|
|
// also https://github.com/JamesHeinrich/getID3 //
|
|
/////////////////////////////////////////////////////////////////
|
|
// //
|
|
// extension.cache.mysql.php - part of getID3() //
|
|
// Please see readme.txt for more information //
|
|
// ///
|
|
/////////////////////////////////////////////////////////////////
|
|
// //
|
|
// This extension written by Allan Hansen <ahØartemis*dk> //
|
|
// Table name mod by Carlo Capocasa <calroØcarlocapocasa*com> //
|
|
// ///
|
|
/////////////////////////////////////////////////////////////////
|
|
|
|
|
|
/**
|
|
* This is a caching extension for getID3(). It works the exact same
|
|
* way as the getID3 class, but return cached information very fast
|
|
*
|
|
* Example: (see also demo.cache.mysql.php in /demo/)
|
|
*
|
|
* Normal getID3 usage (example):
|
|
*
|
|
* require_once 'getid3/getid3.php';
|
|
* $getID3 = new getID3;
|
|
* $getID3->encoding = 'UTF-8';
|
|
* $info1 = $getID3->analyze('file1.flac');
|
|
* $info2 = $getID3->analyze('file2.wv');
|
|
*
|
|
* getID3_cached usage:
|
|
*
|
|
* require_once 'getid3/getid3.php';
|
|
* require_once 'getid3/getid3/extension.cache.mysql.php';
|
|
* // 5th parameter (tablename) is optional, default is 'getid3_cache'
|
|
* $getID3 = new getID3_cached_mysql('localhost', 'database', 'username', 'password', 'tablename');
|
|
* $getID3->encoding = 'UTF-8';
|
|
* $info1 = $getID3->analyze('file1.flac');
|
|
* $info2 = $getID3->analyze('file2.wv');
|
|
*
|
|
*
|
|
* Supported Cache Types (this extension)
|
|
*
|
|
* SQL Databases:
|
|
*
|
|
* cache_type cache_options
|
|
* -------------------------------------------------------------------
|
|
* mysql host, database, username, password
|
|
*
|
|
*
|
|
* DBM-Style Databases: (use extension.cache.dbm)
|
|
*
|
|
* cache_type cache_options
|
|
* -------------------------------------------------------------------
|
|
* gdbm dbm_filename, lock_filename
|
|
* ndbm dbm_filename, lock_filename
|
|
* db2 dbm_filename, lock_filename
|
|
* db3 dbm_filename, lock_filename
|
|
* db4 dbm_filename, lock_filename (PHP5 required)
|
|
*
|
|
* PHP must have write access to both dbm_filename and lock_filename.
|
|
*
|
|
*
|
|
* Recommended Cache Types
|
|
*
|
|
* Infrequent updates, many reads any DBM
|
|
* Frequent updates mysql
|
|
*/
|
|
|
|
|
|
class getID3_cached_mysql extends getID3
|
|
{
|
|
|
|
// private vars
|
|
private $cursor;
|
|
private $connection;
|
|
|
|
|
|
// public: constructor - see top of this file for cache type and cache_options
|
|
public function __construct($host, $database, $username, $password, $table = 'getid3_cache')
|
|
{
|
|
|
|
// Check for mysql support
|
|
if (!function_exists('mysql_pconnect')) {
|
|
throw new Exception('PHP not compiled with mysql support.');
|
|
}
|
|
|
|
// Connect to database
|
|
$this->connection = mysql_pconnect($host, $username, $password);
|
|
if (!$this->connection) {
|
|
throw new Exception('mysql_pconnect() failed - check permissions and spelling.');
|
|
}
|
|
|
|
// Select database
|
|
if (!mysql_select_db($database, $this->connection)) {
|
|
throw new Exception('Cannot use database '.$database);
|
|
}
|
|
|
|
// Set table
|
|
$this->table = $table;
|
|
|
|
// Create cache table if not exists
|
|
$this->create_table();
|
|
|
|
// Check version number and clear cache if changed
|
|
$version = '';
|
|
$SQLquery = 'SELECT `value`';
|
|
$SQLquery .= ' FROM `'.mysql_real_escape_string($this->table).'`';
|
|
$SQLquery .= ' WHERE (`filename` = \''.mysql_real_escape_string(getID3::VERSION).'\')';
|
|
$SQLquery .= ' AND (`filesize` = -1)';
|
|
$SQLquery .= ' AND (`filetime` = -1)';
|
|
$SQLquery .= ' AND (`analyzetime` = -1)';
|
|
if ($this->cursor = mysql_query($SQLquery, $this->connection)) {
|
|
list($version) = mysql_fetch_array($this->cursor);
|
|
}
|
|
if ($version != getID3::VERSION) {
|
|
$this->clear_cache();
|
|
}
|
|
|
|
parent::__construct();
|
|
}
|
|
|
|
|
|
|
|
// public: clear cache
|
|
public function clear_cache()
|
|
{
|
|
|
|
$this->cursor = mysql_query('DELETE FROM `'.mysql_real_escape_string($this->table).'`', $this->connection);
|
|
$this->cursor = mysql_query('INSERT INTO `'.mysql_real_escape_string($this->table).'` VALUES (\''.getID3::VERSION.'\', -1, -1, -1, \''.getID3::VERSION.'\')', $this->connection);
|
|
}
|
|
|
|
|
|
|
|
// public: analyze file
|
|
public function analyze($filename, $filesize = null, $original_filename = '')
|
|
{
|
|
|
|
if (file_exists($filename)) {
|
|
// Short-hands
|
|
$filetime = filemtime($filename);
|
|
$filesize = filesize($filename);
|
|
|
|
// Lookup file
|
|
$SQLquery = 'SELECT `value`';
|
|
$SQLquery .= ' FROM `'.mysql_real_escape_string($this->table).'`';
|
|
$SQLquery .= ' WHERE (`filename` = \''.mysql_real_escape_string($filename).'\')';
|
|
$SQLquery .= ' AND (`filesize` = \''.mysql_real_escape_string($filesize).'\')';
|
|
$SQLquery .= ' AND (`filetime` = \''.mysql_real_escape_string($filetime).'\')';
|
|
$this->cursor = mysql_query($SQLquery, $this->connection);
|
|
if (mysql_num_rows($this->cursor) > 0) {
|
|
// Hit
|
|
list($result) = mysql_fetch_array($this->cursor);
|
|
return unserialize(base64_decode($result));
|
|
}
|
|
}
|
|
|
|
// Miss
|
|
$analysis = parent::analyze($filename, $filesize, $original_filename);
|
|
|
|
// Save result
|
|
if (file_exists($filename)) {
|
|
$SQLquery = 'INSERT INTO `'.mysql_real_escape_string($this->table).'` (`filename`, `filesize`, `filetime`, `analyzetime`, `value`) VALUES (';
|
|
$SQLquery .= '\''.mysql_real_escape_string($filename).'\'';
|
|
$SQLquery .= ', \''.mysql_real_escape_string($filesize).'\'';
|
|
$SQLquery .= ', \''.mysql_real_escape_string($filetime).'\'';
|
|
$SQLquery .= ', \''.mysql_real_escape_string(time()).'\'';
|
|
$SQLquery .= ', \''.mysql_real_escape_string(base64_encode(serialize($analysis))).'\')';
|
|
$this->cursor = mysql_query($SQLquery, $this->connection);
|
|
}
|
|
return $analysis;
|
|
}
|
|
|
|
|
|
|
|
// private: (re)create sql table
|
|
private function create_table($drop = false)
|
|
{
|
|
|
|
$SQLquery = 'CREATE TABLE IF NOT EXISTS `'.mysql_real_escape_string($this->table).'` (';
|
|
$SQLquery .= '`filename` VARCHAR(500) NOT NULL DEFAULT \'\'';
|
|
$SQLquery .= ', `filesize` INT(11) NOT NULL DEFAULT \'0\'';
|
|
$SQLquery .= ', `filetime` INT(11) NOT NULL DEFAULT \'0\'';
|
|
$SQLquery .= ', `analyzetime` INT(11) NOT NULL DEFAULT \'0\'';
|
|
$SQLquery .= ', `value` LONGTEXT NOT NULL';
|
|
$SQLquery .= ', PRIMARY KEY (`filename`, `filesize`, `filetime`)) ENGINE=MyISAM';
|
|
$this->cursor = mysql_query($SQLquery, $this->connection);
|
|
echo mysql_error($this->connection);
|
|
}
|
|
}
|