Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

extension.cache.mysqli.php 8.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <?php
  2. /////////////////////////////////////////////////////////////////
  3. /// getID3() by James Heinrich <info@getid3.org> //
  4. // available at https://github.com/JamesHeinrich/getID3 //
  5. // or https://www.getid3.org //
  6. // or http://getid3.sourceforge.net //
  7. // //
  8. // extension.cache.mysqli.php - part of getID3() //
  9. // Please see readme.txt for more information //
  10. // //
  11. /////////////////////////////////////////////////////////////////
  12. // //
  13. // This extension written by Allan Hansen <ahØartemis*dk> //
  14. // Table name mod by Carlo Capocasa <calroØcarlocapocasa*com> //
  15. // ///
  16. /////////////////////////////////////////////////////////////////
  17. /**
  18. * This is a caching extension for getID3(). It works the exact same
  19. * way as the getID3 class, but return cached information very fast
  20. *
  21. * Example: (see also demo.cache.mysql.php in /demo/)
  22. *
  23. * Normal getID3 usage (example):
  24. *
  25. * require_once 'getid3/getid3.php';
  26. * $getID3 = new getID3;
  27. * $getID3->encoding = 'UTF-8';
  28. * $info1 = $getID3->analyze('file1.flac');
  29. * $info2 = $getID3->analyze('file2.wv');
  30. *
  31. * getID3_cached usage:
  32. *
  33. * require_once 'getid3/getid3.php';
  34. * require_once 'getid3/getid3/extension.cache.mysqli.php';
  35. * // 5th parameter (tablename) is optional, default is 'getid3_cache'
  36. * $getID3 = new getID3_cached_mysqli('localhost', 'database', 'username', 'password', 'tablename');
  37. * $getID3->encoding = 'UTF-8';
  38. * $info1 = $getID3->analyze('file1.flac');
  39. * $info2 = $getID3->analyze('file2.wv');
  40. *
  41. *
  42. * Supported Cache Types (this extension)
  43. *
  44. * SQL Databases:
  45. *
  46. * cache_type cache_options
  47. * -------------------------------------------------------------------
  48. * mysqli host, database, username, password
  49. *
  50. *
  51. * DBM-Style Databases: (use extension.cache.dbm)
  52. *
  53. * cache_type cache_options
  54. * -------------------------------------------------------------------
  55. * gdbm dbm_filename, lock_filename
  56. * ndbm dbm_filename, lock_filename
  57. * db2 dbm_filename, lock_filename
  58. * db3 dbm_filename, lock_filename
  59. * db4 dbm_filename, lock_filename (PHP5 required)
  60. *
  61. * PHP must have write access to both dbm_filename and lock_filename.
  62. *
  63. *
  64. * Recommended Cache Types
  65. *
  66. * Infrequent updates, many reads any DBM
  67. * Frequent updates mysqli
  68. */
  69. class getID3_cached_mysqli extends getID3
  70. {
  71. /**
  72. * @var mysqli
  73. */
  74. private $mysqli;
  75. /**
  76. * @var mysqli_result
  77. */
  78. private $cursor;
  79. /**
  80. * @var string
  81. */
  82. private $table;
  83. /**
  84. * @var bool
  85. */
  86. private $db_structure_check;
  87. /**
  88. * constructor - see top of this file for cache type and cache_options
  89. *
  90. * @param string $host
  91. * @param string $database
  92. * @param string $username
  93. * @param string $password
  94. * @param string $table
  95. *
  96. * @throws Exception
  97. * @throws getid3_exception
  98. */
  99. public function __construct($host, $database, $username, $password, $table='getid3_cache') {
  100. // Check for mysqli support
  101. if (!function_exists('mysqli_connect')) {
  102. throw new Exception('PHP not compiled with mysqli support.');
  103. }
  104. // Connect to database
  105. $this->mysqli = new mysqli($host, $username, $password);
  106. if ($this->mysqli->connect_error) {
  107. throw new Exception('Connect Error (' . $this->mysqli->connect_errno . ') ' . $this->mysqli->connect_error);
  108. }
  109. // Select database
  110. if (!$this->mysqli->select_db($database)) {
  111. throw new Exception('Cannot use database '.$database);
  112. }
  113. // Set table
  114. $this->table = $table;
  115. // Create cache table if not exists
  116. $this->create_table();
  117. $this->db_structure_check = true; // set to false if you know your table structure has already been migrated to use `hash` as the primary key to avoid
  118. $this->migrate_db_structure();
  119. // Check version number and clear cache if changed
  120. $version = '';
  121. $SQLquery = 'SELECT `value`';
  122. $SQLquery .= ' FROM `'.$this->mysqli->real_escape_string($this->table).'`';
  123. $SQLquery .= ' WHERE (`filename` = \''.$this->mysqli->real_escape_string(getID3::VERSION).'\')';
  124. $SQLquery .= ' AND (`hash` = \'getID3::VERSION\')';
  125. if ($this->cursor = $this->mysqli->query($SQLquery)) {
  126. list($version) = $this->cursor->fetch_array();
  127. }
  128. if ($version != getID3::VERSION) {
  129. $this->clear_cache();
  130. }
  131. parent::__construct();
  132. }
  133. /**
  134. * clear cache
  135. */
  136. public function clear_cache() {
  137. $this->mysqli->query('TRUNCATE TABLE `'.$this->mysqli->real_escape_string($this->table).'`');
  138. $this->mysqli->query('INSERT INTO `'.$this->mysqli->real_escape_string($this->table).'` (`hash`, `filename`, `filesize`, `filetime`, `analyzetime`, `value`) VALUES (\'getID3::VERSION\', \''.getID3::VERSION.'\', -1, -1, -1, \''.getID3::VERSION.'\')');
  139. }
  140. /**
  141. * migrate database structure if needed
  142. */
  143. public function migrate_db_structure() {
  144. // Check for table structure
  145. if ($this->db_structure_check) {
  146. $SQLquery = 'SHOW COLUMNS';
  147. $SQLquery .= ' FROM `'.$this->mysqli->real_escape_string($this->table).'`';
  148. $SQLquery .= ' LIKE \'hash\'';
  149. $this->cursor = $this->mysqli->query($SQLquery);
  150. if ($this->cursor->num_rows == 0) {
  151. // table has not been migrated, add column, add hashes, change index
  152. $SQLquery = 'ALTER TABLE `getid3_cache` DROP PRIMARY KEY, ADD `hash` CHAR(32) NOT NULL DEFAULT \'\' FIRST, ADD PRIMARY KEY(`hash`)';
  153. $this->mysqli->query($SQLquery);
  154. $SQLquery = 'UPDATE `getid3_cache` SET';
  155. $SQLquery .= ' `hash` = MD5(`filename`, `filesize`, `filetime`)';
  156. $SQLquery .= ' WHERE (`filesize` > -1)';
  157. $this->mysqli->query($SQLquery);
  158. $SQLquery = 'UPDATE `getid3_cache` SET';
  159. $SQLquery .= ' `hash` = \'getID3::VERSION\'';
  160. $SQLquery .= ' WHERE (`filesize` = -1)';
  161. $SQLquery .= ' AND (`filetime` = -1)';
  162. $SQLquery .= ' AND (`filetime` = -1)';
  163. $this->mysqli->query($SQLquery);
  164. }
  165. }
  166. }
  167. /**
  168. * analyze file
  169. *
  170. * @param string $filename
  171. * @param int $filesize
  172. * @param string $original_filename
  173. * @param resource $fp
  174. *
  175. * @return mixed
  176. */
  177. public function analyze($filename, $filesize=null, $original_filename='', $fp=null) {
  178. $filetime = 0;
  179. if (file_exists($filename)) {
  180. // Short-hands
  181. $filetime = filemtime($filename);
  182. $filesize = filesize($filename);
  183. // Lookup file
  184. $SQLquery = 'SELECT `value`';
  185. $SQLquery .= ' FROM `'.$this->mysqli->real_escape_string($this->table).'`';
  186. $SQLquery .= ' WHERE (`hash` = \''.$this->mysqli->real_escape_string(md5($filename.$filesize.$filetime)).'\')';
  187. $this->cursor = $this->mysqli->query($SQLquery);
  188. if ($this->cursor->num_rows > 0) {
  189. // Hit
  190. list($result) = $this->cursor->fetch_array();
  191. return unserialize(base64_decode($result));
  192. }
  193. }
  194. // Miss
  195. $analysis = parent::analyze($filename, $filesize, $original_filename, $fp);
  196. // Save result
  197. if (file_exists($filename)) {
  198. $SQLquery = 'INSERT INTO `'.$this->mysqli->real_escape_string($this->table).'` (`hash`, `filename`, `filesize`, `filetime`, `analyzetime`, `value`) VALUES (';
  199. $SQLquery .= '\''.$this->mysqli->real_escape_string(md5($filename.$filesize.$filetime)).'\'';
  200. $SQLquery .= ', \''.$this->mysqli->real_escape_string($filename).'\'';
  201. $SQLquery .= ', \''.$this->mysqli->real_escape_string($filesize).'\'';
  202. $SQLquery .= ', \''.$this->mysqli->real_escape_string($filetime).'\'';
  203. $SQLquery .= ', UNIX_TIMESTAMP()';
  204. $SQLquery .= ', \''.$this->mysqli->real_escape_string(base64_encode(serialize($analysis))).'\'';
  205. $SQLquery .= ')';
  206. $this->cursor = $this->mysqli->query($SQLquery);
  207. }
  208. return $analysis;
  209. }
  210. /**
  211. * (re)create mysqli table
  212. *
  213. * @param bool $drop
  214. */
  215. private function create_table($drop=false) {
  216. if ($drop) {
  217. $SQLquery = 'DROP TABLE IF EXISTS `'.$this->mysqli->real_escape_string($this->table).'`';
  218. $this->mysqli->query($SQLquery);
  219. }
  220. $SQLquery = 'CREATE TABLE IF NOT EXISTS `'.$this->mysqli->real_escape_string($this->table).'` (';
  221. $SQLquery .= '`hash` CHAR(32) NOT NULL DEFAULT \'\'';
  222. $SQLquery .= ', `filename` VARCHAR(1000) NOT NULL DEFAULT \'\'';
  223. $SQLquery .= ', `filesize` INT(11) NOT NULL DEFAULT \'0\'';
  224. $SQLquery .= ', `filetime` INT(11) NOT NULL DEFAULT \'0\'';
  225. $SQLquery .= ', `analyzetime` INT(11) NOT NULL DEFAULT \'0\'';
  226. $SQLquery .= ', `value` LONGTEXT NOT NULL';
  227. $SQLquery .= ', PRIMARY KEY (`hash`))';
  228. $this->cursor = $this->mysqli->query($SQLquery);
  229. echo $this->mysqli->error;
  230. }
  231. }