Blame view

sources/3rdparty/getid3/extension.cache.mysql.php 6.11 KB
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
  <?php
  /////////////////////////////////////////////////////////////////
  /// getID3() by James Heinrich <info@getid3.org>               //
  //  available at http://getid3.sourceforge.net                 //
  //            or http://www.getid3.org                         //
  /////////////////////////////////////////////////////////////////
  //                                                             //
  // 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
31b7f2792   Kload   Upgrade to ownclo...
77
78
  	private $cursor;
  	private $connection;
03e52840d   Kload   Init
79
80
81
  
  
  	// public: constructor - see top of this file for cache type and cache_options
31b7f2792   Kload   Upgrade to ownclo...
82
  	public function getID3_cached_mysql($host, $database, $username, $password, $table='getid3_cache') {
03e52840d   Kload   Init
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
  
  		// 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 = '';
  		if ($this->cursor = mysql_query("SELECT `value` FROM `".mysql_real_escape_string($this->table)."` WHERE (`filename` = '".mysql_real_escape_string(getID3::VERSION)."') AND (`filesize` = '-1') AND (`filetime` = '-1') AND (`analyzetime` = '-1')", $this->connection)) {
  			list($version) = mysql_fetch_array($this->cursor);
  		}
  		if ($version != getID3::VERSION) {
  			$this->clear_cache();
  		}
  
  		parent::getID3();
  	}
  
  
  
  	// public: clear cache
31b7f2792   Kload   Upgrade to ownclo...
121
  	public function clear_cache() {
03e52840d   Kload   Init
122
123
124
125
126
127
128
129
  
  		$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
31b7f2792   Kload   Upgrade to ownclo...
130
  	public function analyze($filename) {
03e52840d   Kload   Init
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
  
  		if (file_exists($filename)) {
  
  			// Short-hands
  			$filetime = filemtime($filename);
  			$filesize = filesize($filename);
  
  			// Lookup file
  			$this->cursor = mysql_query("SELECT `value` FROM `".mysql_real_escape_string($this->table)."` WHERE (`filename` = '".mysql_real_escape_string($filename)."') AND (`filesize` = '".mysql_real_escape_string($filesize)."') AND (`filetime` = '".mysql_real_escape_string($filetime)."')", $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);
  
  		// Save result
  		if (file_exists($filename)) {
  			$this->cursor = mysql_query("INSERT INTO `".mysql_real_escape_string($this->table)."` (`filename`, `filesize`, `filetime`, `analyzetime`, `value`) VALUES ('".mysql_real_escape_string($filename)."', '".mysql_real_escape_string($filesize)."', '".mysql_real_escape_string($filetime)."', '".mysql_real_escape_string(time())."', '".mysql_real_escape_string(base64_encode(serialize($analysis)))."')", $this->connection);
  		}
  		return $analysis;
  	}
  
  
  
  	// private: (re)create sql table
31b7f2792   Kload   Upgrade to ownclo...
160
  	private function create_table($drop=false) {
03e52840d   Kload   Init
161
162
163
164
165
166
167
  
  		$this->cursor = mysql_query("CREATE TABLE IF NOT EXISTS `".mysql_real_escape_string($this->table)."` (
  			`filename` VARCHAR(255) NOT NULL DEFAULT '',
  			`filesize` INT(11) NOT NULL DEFAULT '0',
  			`filetime` INT(11) NOT NULL DEFAULT '0',
  			`analyzetime` INT(11) NOT NULL DEFAULT '0',
  			`value` TEXT NOT NULL,
31b7f2792   Kload   Upgrade to ownclo...
168
  			PRIMARY KEY (`filename`,`filesize`,`filetime`)) ENGINE=MyISAM", $this->connection);
03e52840d   Kload   Init
169
170
171
  		echo mysql_error($this->connection);
  	}
  }