[6106] | 1 | <?php |
---|
| 2 | /* ----------------------------------------------------------------------------- |
---|
| 3 | class name: GCPRequestBuilder |
---|
[10884] | 4 | class version : 1.1.6 |
---|
| 5 | plugin version : 3.5.1 |
---|
| 6 | date : 2011-05-15 |
---|
[6106] | 7 | |
---|
| 8 | ------------------------------------------------------------------------------ |
---|
| 9 | Author : Grum |
---|
| 10 | email : grum@piwigo.org |
---|
| 11 | website : http://photos.grum.com |
---|
| 12 | PWG user : http://forum.phpwebgallery.net/profile.php?id=3706 |
---|
| 13 | |
---|
| 14 | << May the Little SpaceFrog be with you ! >> |
---|
| 15 | ------------------------------------------------------------------------------ |
---|
[6894] | 16 | * |
---|
[6106] | 17 | * theses classes provides base functions to manage search pictures in the |
---|
| 18 | * database |
---|
| 19 | * |
---|
[6894] | 20 | * |
---|
| 21 | * HOW TO USE IT ? |
---|
| 22 | * =============== |
---|
| 23 | * |
---|
| 24 | * when installing the plugin, you have to register the usage of the request |
---|
| 25 | * builder |
---|
| 26 | * |
---|
| 27 | * 1/ Create a RBCallback class |
---|
| 28 | * - extends the GPCSearchCallback class ; the name of the extended class must |
---|
| 29 | * be "RBCallBack%" => replace the "%" by the plugin name |
---|
| 30 | * for example : 'ThePlugin' => 'RBCallBackThePlugin' |
---|
| 31 | * |
---|
| 32 | * 2/ In the plugin 'maintain.inc.php' file : |
---|
| 33 | * - function plugin_install, add : |
---|
| 34 | * GPCRequestBuilder::register('plugin name', 'path to the RBCallback classe'); |
---|
| 35 | * for example : GPCRequestBuilder::register('ThePlugin', $piwigo_path.'plugins/ThePlugin/rbcallback_file_name.php'); |
---|
| 36 | * |
---|
| 37 | * |
---|
| 38 | * - function plugin_uninstall, add : |
---|
| 39 | * GPCRequestBuilder::unregister('plugin name'); |
---|
| 40 | * for example : GPCRequestBuilder::unregister('ThePlugin'); |
---|
| 41 | * |
---|
| 42 | * 3/ In the plugin code, put somewhere |
---|
| 43 | * GPCRequestBuilder::loadJSandCSS(); |
---|
| 44 | * => this will load specific JS and CSS in the page, by adding url in the |
---|
| 45 | * the header, so try to put this where you're used to prepare the header |
---|
| 46 | * |
---|
| 47 | * 4/ to display the request builder, just add the returned string in the html |
---|
| 48 | * page |
---|
| 49 | * $stringForTheTemplate=GPCRequestBuilder::displaySearchPage(); |
---|
| 50 | * |
---|
| 51 | * |
---|
| 52 | * |
---|
| 53 | * HOW DOES THE REQUEST BUILDER WORKS ? |
---|
| 54 | * ==================================== |
---|
| 55 | * |
---|
| 56 | * the request builder works in 2 steps : |
---|
| 57 | * - first step : build a cache, to associate all image id corresponding to |
---|
| 58 | * the search criterion |
---|
| 59 | * the cache is an association of request ID/image id |
---|
| 60 | * - second step : use the cache to retrieve images informations |
---|
| 61 | * |
---|
[6106] | 62 | ------------------------------------------------------------------------------ |
---|
| 63 | :: HISTORY |
---|
| 64 | |
---|
| 65 | | release | date | |
---|
| 66 | | 1.0.0 | 2010/04/30 | * start coding |
---|
| 67 | | | | |
---|
[6894] | 68 | | 1.1.0 | 2010/09/08 | * add functionnalities to manage complex requests |
---|
[6106] | 69 | | | | |
---|
[7200] | 70 | | 1.1.1 | 2010/10/14 | * fix bug on the buildGroupRequest function |
---|
| 71 | | | | . adding 'DISTINCT' keyword to the SQL requests |
---|
[6106] | 72 | | | | |
---|
[7310] | 73 | | | | * ajax management moved into the gpc_ajax.php file |
---|
[6106] | 74 | | | | |
---|
[7310] | 75 | | | | * fix bug on user level access to picture |
---|
[6106] | 76 | | | | |
---|
[8961] | 77 | | 1.1.2 | 2010/11/01 | * mantis bug:1984 |
---|
| 78 | | | | . RBuilder returns an error message when one picture |
---|
| 79 | | | | have multiple categories |
---|
[6106] | 80 | | | | |
---|
[9009] | 81 | | 1.1.3 | 2011/01/31 | * mantis bug:2156 |
---|
| 82 | | | | . undefined variable on RBuilder screens |
---|
[6106] | 83 | | | | |
---|
[9034] | 84 | | 1.1.4 | 2011/01/31 | * mantis bug:2167 |
---|
[9009] | 85 | | | | |
---|
[10246] | 86 | | 1.1.5 | 2011/04/10 | * Compatibility with piwigo 2.2 |
---|
[9034] | 87 | | | | |
---|
[10884] | 88 | | 1.1.6 | 2011/05/15 | * mantis bug:2302 |
---|
| 89 | | | | . Request builder user interface don't work |
---|
[9034] | 90 | | | | |
---|
| 91 | | | | |
---|
| 92 | | | | |
---|
| 93 | | | | |
---|
[6106] | 94 | |
---|
[10246] | 95 | --------------------------------------------------------------------------- */ |
---|
[6106] | 96 | |
---|
[7396] | 97 | if(!defined('GPC_DIR')) define('GPC_DIR' , baseName(dirname(dirname(__FILE__)))); |
---|
[7387] | 98 | if(!defined('GPC_PATH')) define('GPC_PATH' , PHPWG_PLUGINS_PATH . GPC_DIR . '/'); |
---|
| 99 | |
---|
[6106] | 100 | include_once('GPCTables.class.inc.php'); |
---|
| 101 | |
---|
[6894] | 102 | /** |
---|
| 103 | * |
---|
[7370] | 104 | * Preparing the temporary table => doCache() |
---|
| 105 | * ------------------------------------------ |
---|
[6894] | 106 | * To prepare the cache, the request builder use the following functions : |
---|
[7370] | 107 | * - getImageId |
---|
[6894] | 108 | * - getFrom |
---|
| 109 | * - getWhere |
---|
[7370] | 110 | * - getHaving |
---|
[6894] | 111 | * |
---|
[7370] | 112 | * Preparing the cache table => doCache() |
---|
| 113 | * -------------------------------------- |
---|
| 114 | * To prepare the cache, the request builder use the following functions : |
---|
| 115 | * => the getFilter function is used to prepare the filter for the getPage() |
---|
| 116 | * function ; not used to build the cache |
---|
| 117 | * |
---|
| 118 | * Retrieving the results => getPage() |
---|
| 119 | * ----------------------------------- |
---|
[6894] | 120 | * To retrieve the image informations, the request builder uses the following |
---|
| 121 | * functions : |
---|
| 122 | * - getSelect |
---|
| 123 | * - getFrom |
---|
| 124 | * - getJoin |
---|
[7370] | 125 | * - getFilter (in fact, the result of this function is stored by the doCache() |
---|
| 126 | * function while the cache is builded, but it is used only when |
---|
| 127 | * retrieving the results for multirecord tables) |
---|
[6901] | 128 | * - formatData |
---|
[6894] | 129 | * |
---|
| 130 | * |
---|
[6901] | 131 | * Example |
---|
| 132 | * ------- |
---|
[6894] | 133 | * Consider the table "tableA" like this |
---|
| 134 | * |
---|
| 135 | * - (*) imageId |
---|
| 136 | * - (*) localId |
---|
| 137 | * - att1 |
---|
| 138 | * - att2 |
---|
| 139 | * The primary key is the 'imageId'+'localId' attributes |
---|
| 140 | * => for one imageId, you can have ZERO or more than ONE record |
---|
| 141 | * when you register the class, you have to set the $multiRecord parameter |
---|
| 142 | * to 'y' |
---|
| 143 | * |
---|
[7370] | 144 | * gatImageId returns : "tableA.imageId" |
---|
| 145 | * getSelect returns : "tableA.att1, tableA.att2" |
---|
| 146 | * getFrom returns : "tableA" |
---|
| 147 | * getWhere returns : "tableA.localId= xxxx AND tableA.att1 = zzzz" |
---|
| 148 | * getJoin returns : "tableA.imageId = pit.id" |
---|
| 149 | * getFilter returns : "tableA.localId= xxxx" |
---|
[6894] | 150 | * |
---|
[7370] | 151 | * Examples : |
---|
| 152 | * - plugin AdvancedMetadata use getFilter |
---|
| 153 | * - plugin AdvancedSearchEngine, module ASETag use getHaving and getWhere |
---|
[6894] | 154 | */ |
---|
[6106] | 155 | class GPCSearchCallback { |
---|
| 156 | |
---|
| 157 | /** |
---|
[6894] | 158 | * the getImageId returns the name of the image id attribute |
---|
| 159 | * return String |
---|
| 160 | */ |
---|
| 161 | static public function getImageId() |
---|
| 162 | { |
---|
| 163 | return(""); |
---|
| 164 | } |
---|
| 165 | |
---|
| 166 | /** |
---|
[6106] | 167 | * the getSelect function must return an attribute list separated with a comma |
---|
| 168 | * |
---|
| 169 | * "att1, att2, att3, att4" |
---|
[6894] | 170 | * |
---|
| 171 | * you can specifie tables names and aliases |
---|
| 172 | * |
---|
| 173 | * "table1.att1 AS alias1, table1.att2 AS alias2, table2.att3 AS alias3" |
---|
[6106] | 174 | */ |
---|
| 175 | static public function getSelect($param="") |
---|
| 176 | { |
---|
| 177 | return(""); |
---|
| 178 | } |
---|
| 179 | |
---|
| 180 | /** |
---|
| 181 | * the getFrom function must return a tables list separated with a comma |
---|
| 182 | * |
---|
| 183 | * "table1, (table2 left join table3 on table2.key = table3.key), table4" |
---|
| 184 | */ |
---|
| 185 | static public function getFrom($param="") |
---|
| 186 | { |
---|
| 187 | return(""); |
---|
| 188 | } |
---|
| 189 | |
---|
| 190 | /** |
---|
| 191 | * the getWhere function must return a ready to use where clause |
---|
| 192 | * |
---|
| 193 | * "(att1 = value0 OR att2 = value1) AND att4 LIKE value2 " |
---|
| 194 | */ |
---|
| 195 | static public function getWhere($param="") |
---|
| 196 | { |
---|
| 197 | return(""); |
---|
| 198 | } |
---|
| 199 | |
---|
[7370] | 200 | |
---|
[6106] | 201 | /** |
---|
[7370] | 202 | * the getHaving function return a ready to user HAVING clause |
---|
| 203 | * |
---|
| 204 | * " FIND_IN_SET(value0, GROUP_CONCAT(DISTINCT att1 SEPARATOR ',')) AND |
---|
| 205 | * FIND_IN_SET(value0, GROUP_CONCAT(DISTINCT att1 SEPARATOR ',')) " |
---|
| 206 | * |
---|
| 207 | */ |
---|
| 208 | static public function getHaving($param="") |
---|
| 209 | { |
---|
| 210 | return(""); |
---|
| 211 | } |
---|
| 212 | |
---|
| 213 | |
---|
| 214 | /** |
---|
[6894] | 215 | * the getJoin function must return a ready to use sql statement allowing to |
---|
| 216 | * join the IMAGES table (key : pit.id) with given conditions |
---|
[6106] | 217 | * |
---|
| 218 | * "att3 = pit.id " |
---|
| 219 | */ |
---|
| 220 | static public function getJoin($param="") |
---|
| 221 | { |
---|
| 222 | return(""); |
---|
| 223 | } |
---|
| 224 | |
---|
| 225 | |
---|
| 226 | /** |
---|
[6894] | 227 | * the getFilter function must return a ready to use where clause |
---|
| 228 | * this where clause is used to filter the cache when the used tables can |
---|
| 229 | * return more than one result |
---|
| 230 | * |
---|
| 231 | * the filter can be empty, can be equal to the where clause, or can be equal |
---|
| 232 | * to a sub part of the where clause |
---|
| 233 | * |
---|
[7317] | 234 | * in most case, return "" is the best solution |
---|
| 235 | * |
---|
[6894] | 236 | */ |
---|
| 237 | static public function getFilter($param="") |
---|
| 238 | { |
---|
[7317] | 239 | //return(self::getWhere($param)); |
---|
| 240 | return(""); |
---|
[6894] | 241 | } |
---|
| 242 | |
---|
[7370] | 243 | |
---|
[6894] | 244 | /** |
---|
[6106] | 245 | * this function is called by the request builder, allowing to display plugin |
---|
| 246 | * data with a specific format |
---|
| 247 | * |
---|
| 248 | * @param Array $attributes : array of ('attribute_name' => 'attribute_value') |
---|
| 249 | * @return String : HTML formatted value |
---|
| 250 | */ |
---|
| 251 | static public function formatData($attributes) |
---|
| 252 | { |
---|
| 253 | return(print_r($attributes, true)); |
---|
| 254 | } |
---|
| 255 | |
---|
| 256 | |
---|
[6174] | 257 | /** |
---|
| 258 | * this function is called by the request builder to make the search page, and |
---|
| 259 | * must return the HTML & JS code of the dialogbox used to select criterion |
---|
| 260 | * |
---|
| 261 | * Notes : |
---|
| 262 | * - the dialogbox is a JS object with a public method 'show' |
---|
| 263 | * - when the method show is called, one parameter is given by the request |
---|
| 264 | * builder ; the parameter is an object defined as this : |
---|
| 265 | * { |
---|
| 266 | * cBuilder: an instance of the criteriaBuilder object used in the page, |
---|
| 267 | * } |
---|
| 268 | * |
---|
| 269 | * |
---|
| 270 | * |
---|
| 271 | * |
---|
| 272 | * @param String $mode : can take 'admin' or 'public' values, allowing to |
---|
| 273 | * return different interface if needed |
---|
| 274 | * @return String : HTML formatted value |
---|
| 275 | */ |
---|
| 276 | static public function getInterfaceContent($mode='admin') |
---|
| 277 | { |
---|
| 278 | return(""); |
---|
| 279 | } |
---|
| 280 | |
---|
| 281 | /** |
---|
| 282 | * this function returns the label displayed in the criterion menu |
---|
| 283 | * |
---|
| 284 | * @return String : label displayed in the criterions menu |
---|
| 285 | */ |
---|
| 286 | static public function getInterfaceLabel() |
---|
| 287 | { |
---|
| 288 | return(l10n('gpc_rb_unknown_interface')); |
---|
| 289 | } |
---|
| 290 | |
---|
| 291 | /** |
---|
| 292 | * this function returns the name of the dialog box class |
---|
| 293 | * |
---|
| 294 | * @return String : name of the dialogbox class |
---|
| 295 | */ |
---|
| 296 | static public function getInterfaceDBClass() |
---|
| 297 | { |
---|
| 298 | return(''); |
---|
| 299 | } |
---|
| 300 | |
---|
| 301 | |
---|
[6106] | 302 | } |
---|
| 303 | |
---|
| 304 | |
---|
[7451] | 305 | //load_language('rbuilder.lang', GPC_PATH); |
---|
[6106] | 306 | |
---|
[7327] | 307 | |
---|
[6106] | 308 | class GPCRequestBuilder { |
---|
| 309 | |
---|
| 310 | static public $pluginName = 'GPCRequestBuilder'; |
---|
[9034] | 311 | static public $version = '1.1.4'; |
---|
[6106] | 312 | |
---|
| 313 | static private $tables = Array(); |
---|
[6894] | 314 | static protected $tGlobalId=0; |
---|
[6106] | 315 | |
---|
| 316 | /** |
---|
| 317 | * register a plugin using GPCRequestBuilder |
---|
| 318 | * |
---|
| 319 | * @param String $pluginName : the plugin name |
---|
| 320 | * @param String $fileName : the php filename where the callback function can |
---|
| 321 | * be found |
---|
| 322 | * @return Boolean : true if registering is Ok, otherwise false |
---|
| 323 | */ |
---|
[6975] | 324 | static public function register($plugin, $fileName) |
---|
[6106] | 325 | { |
---|
| 326 | $config=Array(); |
---|
[9034] | 327 | if(!GPCCore::loadConfig(self::$pluginName, $config)) |
---|
[6106] | 328 | { |
---|
[9034] | 329 | $config['registered']=array(); |
---|
[6106] | 330 | } |
---|
[9034] | 331 | |
---|
| 332 | $config['registered'][$plugin]=Array( |
---|
| 333 | 'name' => $plugin, |
---|
| 334 | 'fileName' => $fileName, |
---|
| 335 | 'date' => date("Y-m-d H:i:s"), |
---|
| 336 | 'version' => self::$version |
---|
| 337 | ); |
---|
| 338 | return(GPCCore::saveConfig(self::$pluginName, $config)); |
---|
[6106] | 339 | } |
---|
| 340 | |
---|
| 341 | /** |
---|
| 342 | * unregister a plugin using GPCRequestBuilder |
---|
| 343 | * |
---|
| 344 | * assume that if the plugin was not registerd before, unregistering returns |
---|
| 345 | * a true value |
---|
| 346 | * |
---|
| 347 | * @param String $pluginName : the plugin name |
---|
| 348 | * @return Boolean : true if registering is Ok, otherwise false |
---|
| 349 | */ |
---|
| 350 | static public function unregister($plugin) |
---|
| 351 | { |
---|
| 352 | $config=Array(); |
---|
| 353 | if(GPCCore::loadConfig(self::$pluginName, $config)) |
---|
| 354 | { |
---|
| 355 | if(array_key_exists('registered', $config)) |
---|
| 356 | { |
---|
| 357 | if(array_key_exists($plugin, $config['registered'])) |
---|
| 358 | { |
---|
| 359 | unset($config['registered'][$plugin]); |
---|
| 360 | return(GPCCore::saveConfig(self::$pluginName, $config)); |
---|
| 361 | } |
---|
| 362 | } |
---|
| 363 | } |
---|
| 364 | // assume if the plugin was not registered before, unregistering it is OK |
---|
| 365 | return(true); |
---|
| 366 | } |
---|
| 367 | |
---|
| 368 | /** |
---|
| 369 | * @return Array : list of registered plugins |
---|
| 370 | */ |
---|
| 371 | static public function getRegistered() |
---|
| 372 | { |
---|
| 373 | $config=Array(); |
---|
| 374 | if(GPCCore::loadConfig(self::$pluginName, $config)) |
---|
| 375 | { |
---|
| 376 | if(array_key_exists('registered', $config)) |
---|
| 377 | { |
---|
| 378 | return($config['registered']); |
---|
| 379 | } |
---|
| 380 | } |
---|
| 381 | return(Array()); |
---|
| 382 | } |
---|
| 383 | |
---|
| 384 | |
---|
| 385 | /** |
---|
| 386 | * initialise the class |
---|
| 387 | * |
---|
| 388 | * @param String $prefixeTable : the piwigo prefixe used on tables name |
---|
| 389 | * @param String $pluginNameFile : the plugin name used for tables name |
---|
| 390 | */ |
---|
| 391 | static public function init($prefixeTable, $pluginNameFile) |
---|
| 392 | { |
---|
[6894] | 393 | $list=Array('request', 'result_cache', 'temp'); |
---|
[6106] | 394 | |
---|
| 395 | for($i=0;$i<count($list);$i++) |
---|
| 396 | { |
---|
| 397 | self::$tables[$list[$i]]=$prefixeTable.$pluginNameFile.'_'.$list[$i]; |
---|
| 398 | } |
---|
| 399 | } |
---|
| 400 | |
---|
| 401 | /** |
---|
| 402 | * create the tables needed by RequestBuilder (used during the gpc process install) |
---|
| 403 | */ |
---|
| 404 | static public function createTables() |
---|
| 405 | { |
---|
| 406 | $tablesDef=array( |
---|
| 407 | "CREATE TABLE `".self::$tables['request']."` ( |
---|
| 408 | `id` int(10) unsigned NOT NULL auto_increment, |
---|
| 409 | `user_id` int(10) unsigned NOT NULL, |
---|
| 410 | `date` datetime NOT NULL, |
---|
| 411 | `num_items` int(10) unsigned NOT NULL default '0', |
---|
| 412 | `execution_time` float unsigned NOT NULL default '0', |
---|
| 413 | `connected_plugin` char(255) NOT NULL, |
---|
[6894] | 414 | `filter` text NOT NULL, |
---|
[7200] | 415 | `parameters` text NOT NULL, |
---|
[6106] | 416 | PRIMARY KEY (`id`) |
---|
| 417 | ) |
---|
| 418 | CHARACTER SET utf8 COLLATE utf8_general_ci", |
---|
| 419 | |
---|
| 420 | "CREATE TABLE `".self::$tables['result_cache']."` ( |
---|
| 421 | `id` int(10) unsigned NOT NULL, |
---|
| 422 | `image_id` int(10) unsigned NOT NULL, |
---|
| 423 | PRIMARY KEY (`id`,`image_id`) |
---|
| 424 | ) |
---|
| 425 | CHARACTER SET utf8 COLLATE utf8_general_ci", |
---|
[6894] | 426 | |
---|
| 427 | "CREATE TABLE `".self::$tables['temp']."` ( |
---|
| 428 | `requestId` char(30) NOT NULL, |
---|
| 429 | `imageId` mediumint(8) unsigned NOT NULL, |
---|
[6975] | 430 | PRIMARY KEY (`requestId`,`imageId`) |
---|
[6894] | 431 | ) |
---|
| 432 | CHARACTER SET utf8 COLLATE utf8_general_ci", |
---|
[6106] | 433 | ); |
---|
| 434 | |
---|
| 435 | $tablef= new GPCTables(self::$tables); |
---|
| 436 | $tablef->create($tablesDef); |
---|
| 437 | |
---|
| 438 | return(true); |
---|
| 439 | } |
---|
| 440 | |
---|
| 441 | /** |
---|
[6901] | 442 | * update the tables needed by RequestBuilder (used during the gpc process |
---|
| 443 | * activation) |
---|
| 444 | */ |
---|
| 445 | static public function updateTables($pluginPreviousRelease) |
---|
| 446 | { |
---|
[7310] | 447 | $tablef=new GPCTables(array(self::$tables['temp'])); |
---|
| 448 | |
---|
[6901] | 449 | switch($pluginPreviousRelease) |
---|
| 450 | { |
---|
| 451 | case '03.01.00': |
---|
[7200] | 452 | $tablesCreate=array(); |
---|
| 453 | $tablesUpdate=array(); |
---|
| 454 | |
---|
[6901] | 455 | $tablesCreate[]= |
---|
| 456 | "CREATE TABLE `".self::$tables['temp']."` ( |
---|
| 457 | `requestId` char(30) NOT NULL, |
---|
| 458 | `imageId` mediumint(8) unsigned NOT NULL, |
---|
[6975] | 459 | PRIMARY KEY (`requestId`,`imageId`) |
---|
[6901] | 460 | ) |
---|
| 461 | CHARACTER SET utf8 COLLATE utf8_general_ci"; |
---|
| 462 | |
---|
| 463 | $tablesUpdate[self::$tables['request']]['filter']= |
---|
| 464 | "ADD COLUMN `filter` text NOT NULL default '' "; |
---|
| 465 | |
---|
| 466 | |
---|
| 467 | |
---|
[7200] | 468 | $tablef->create($tablesCreate); |
---|
| 469 | $tablef->updateTablesFields($tablesUpdate); |
---|
| 470 | // no break ! need to be updated like the next release |
---|
| 471 | // break; |
---|
| 472 | case '03.01.01': |
---|
| 473 | case '03.02.00': |
---|
| 474 | case '03.02.01': |
---|
| 475 | case '03.03.00': |
---|
| 476 | case '03.03.01': |
---|
| 477 | $tablesUpdate=array(); |
---|
| 478 | |
---|
| 479 | $tablesUpdate[self::$tables['request']]['parameters']= |
---|
| 480 | "ADD COLUMN `parameters` TEXT NOT NULL AFTER `filter`"; |
---|
| 481 | |
---|
| 482 | $tablef->updateTablesFields($tablesUpdate); |
---|
| 483 | // no break ! need to be updated like the next release |
---|
| 484 | // break; |
---|
| 485 | } |
---|
| 486 | |
---|
[6901] | 487 | return(true); |
---|
| 488 | } |
---|
| 489 | |
---|
| 490 | /** |
---|
[6106] | 491 | * delete the tables needed by RequestBuilder |
---|
| 492 | */ |
---|
| 493 | static public function deleteTables() |
---|
| 494 | { |
---|
| 495 | $tablef= new GPCTables(self::$tables); |
---|
[6894] | 496 | $tablef->drop(); |
---|
[6106] | 497 | return(true); |
---|
| 498 | } |
---|
| 499 | |
---|
| 500 | |
---|
| 501 | /** |
---|
[9034] | 502 | * delete the config |
---|
| 503 | */ |
---|
| 504 | static public function deleteConfig() |
---|
| 505 | { |
---|
| 506 | GPCCore::deleteConfig(self::$pluginName); |
---|
| 507 | } |
---|
| 508 | |
---|
| 509 | /** |
---|
[6106] | 510 | * this function add and handler on the 'loc_end_page_header' to add request |
---|
| 511 | * builder JS script & specific CSS on the page |
---|
| 512 | * |
---|
| 513 | * use it when the displayed page need an access to the criteriaBuilder GUI |
---|
| 514 | * |
---|
| 515 | */ |
---|
| 516 | static public function loadJSandCSS() |
---|
| 517 | { |
---|
[7451] | 518 | load_language('rbuilder.lang', GPC_PATH); |
---|
[7310] | 519 | add_event_handler('loc_begin_page_header', array('GPCRequestBuilder', 'insertJSandCSSFiles'), 9); |
---|
[6106] | 520 | } |
---|
| 521 | |
---|
| 522 | |
---|
| 523 | /** |
---|
| 524 | * insert JS a CSS file in header |
---|
| 525 | * |
---|
[7310] | 526 | * the function is declared public because it used by the 'loc_begin_page_header' |
---|
[6106] | 527 | * event callback |
---|
| 528 | * |
---|
| 529 | * DO NOT USE IT DIRECTLY |
---|
| 530 | * |
---|
| 531 | */ |
---|
| 532 | static public function insertJSandCSSFiles() |
---|
| 533 | { |
---|
| 534 | global $template; |
---|
| 535 | |
---|
[7310] | 536 | |
---|
[6106] | 537 | $baseName=basename(dirname(dirname(__FILE__))).'/css/'; |
---|
| 538 | $template->append('head_elements', '<link href="plugins/'.$baseName.'rbuilder.css" type="text/css" rel="stylesheet"/>'); |
---|
[7370] | 539 | if(defined('IN_ADMIN')) $template->append('head_elements', '<link href="plugins/'.$baseName.'rbuilder_'.$template->get_themeconf('name').'.css" type="text/css" rel="stylesheet"/>'); |
---|
[6106] | 540 | |
---|
[7370] | 541 | |
---|
[6106] | 542 | $baseName=basename(dirname(dirname(__FILE__))).'/js/'; |
---|
[10246] | 543 | GPCCore::addHeaderJS('jquery', 'themes/default/js/jquery.min.js'); |
---|
[10884] | 544 | GPCCore::addHeaderJS('gpc.external.inestedsortable', 'plugins/'.$baseName.'external/iNestedSortablePack'.GPCCore::getMinified().'.js', array('jquery', 'jquery.ui')); |
---|
| 545 | GPCCore::addHeaderJS('gpc.rbCriteriaBuilder', 'plugins/'.$baseName.'rbCriteriaBuilder'.GPCCore::getMinified().'.js', array('gpc.external.inestedsortable')); |
---|
[7310] | 546 | |
---|
[6106] | 547 | $template->append('head_elements', |
---|
| 548 | "<script type=\"text/javascript\"> |
---|
| 549 | requestBuilderOptions = { |
---|
[7370] | 550 | textAND:\"".l10n('gpc_rb_textAND')."\", |
---|
| 551 | textOR:\"".l10n('gpc_rb_textOR')."\", |
---|
| 552 | textNoCriteria:\"".l10n('There is no criteria ! At least, one criteria is required to do search...')."\", |
---|
| 553 | textSomethingWrong:\"".l10n('gpc_something_is_wrong_on_the_server_side')."\", |
---|
| 554 | textCaddieUpdated:\"".l10n('gpc_the_caddie_is_updated')."\", |
---|
| 555 | helpEdit:\"".l10n('gpc_help_edit_criteria')."\", |
---|
| 556 | helpDelete:\"".l10n('gpc_help_delete_criteria')."\", |
---|
| 557 | helpMove:\"".l10n('gpc_help_move_criteria')."\", |
---|
| 558 | helpSwitchCondition:\"".l10n('gpc_help_switch_condition')."\", |
---|
| 559 | ajaxUrl:'plugins/GrumPluginClasses/gpc_ajax.php', |
---|
[6106] | 560 | } |
---|
| 561 | </script>"); |
---|
| 562 | } |
---|
| 563 | |
---|
| 564 | |
---|
| 565 | /** |
---|
| 566 | * execute request from the ajax call |
---|
| 567 | * |
---|
| 568 | * @return String : a ready to use HTML code |
---|
| 569 | */ |
---|
[7310] | 570 | static public function executeRequest($ajaxfct) |
---|
[6106] | 571 | { |
---|
[7312] | 572 | $result=''; |
---|
[7310] | 573 | switch($ajaxfct) |
---|
[6106] | 574 | { |
---|
[7312] | 575 | case 'public.rbuilder.searchExecute': |
---|
[7310] | 576 | $result=self::doCache(); |
---|
| 577 | break; |
---|
[7312] | 578 | case 'public.rbuilder.searchGetPage': |
---|
[7310] | 579 | $result=self::getPage($_REQUEST['requestNumber'], $_REQUEST['page'], $_REQUEST['numPerPage']); |
---|
| 580 | break; |
---|
[6106] | 581 | } |
---|
[7310] | 582 | return($result); |
---|
[6106] | 583 | } |
---|
| 584 | |
---|
| 585 | |
---|
| 586 | /** |
---|
| 587 | * clear the cache table |
---|
| 588 | * |
---|
| 589 | * @param Boolean $clearAll : if set to true, clear all records without |
---|
| 590 | * checking timestamp |
---|
| 591 | */ |
---|
| 592 | static public function clearCache($clearAll=false) |
---|
| 593 | { |
---|
| 594 | if($clearAll) |
---|
| 595 | { |
---|
[6208] | 596 | $sql="DELETE FROM ".self::$tables['result_cache']; |
---|
[6106] | 597 | } |
---|
| 598 | else |
---|
| 599 | { |
---|
[6208] | 600 | $sql="DELETE pgrc FROM ".self::$tables['result_cache']." pgrc |
---|
| 601 | LEFT JOIN ".self::$tables['request']." pgr |
---|
| 602 | ON pgrc.id = pgr.id |
---|
| 603 | WHERE pgr.date < '".date('Y-m-d H:i:s', strtotime("-2 hour"))."'"; |
---|
[6106] | 604 | } |
---|
| 605 | pwg_query($sql); |
---|
| 606 | } |
---|
| 607 | |
---|
| 608 | /** |
---|
[6894] | 609 | * prepare the temporary table used for multirecord requests |
---|
| 610 | * |
---|
| 611 | * @param Integer $requestNumber : id of request |
---|
| 612 | * @return String : name of the request key temporary table |
---|
| 613 | */ |
---|
| 614 | static private function prepareTempTable($requestNumber) |
---|
| 615 | { |
---|
| 616 | //$tableName=call_user_func(Array('RBCallBack'.$plugin, 'getFrom')); |
---|
| 617 | //$imageIdName=call_user_func(Array('RBCallBack'.$plugin, 'getImageId')); |
---|
| 618 | |
---|
[7370] | 619 | $tempClauses=array(); |
---|
[6894] | 620 | foreach($_REQUEST['extraData'] as $key => $extraData) |
---|
| 621 | { |
---|
[7370] | 622 | $tempClauses[$key]=array( |
---|
[6894] | 623 | 'plugin' => $extraData['owner'], |
---|
[7370] | 624 | 'where' => call_user_func(Array('RBCallBack'.$extraData['owner'], 'getWhere'), $extraData['param']), |
---|
| 625 | 'having' => call_user_func(Array('RBCallBack'.$extraData['owner'], 'getHaving'), $extraData['param']), |
---|
[6894] | 626 | ); |
---|
| 627 | } |
---|
| 628 | |
---|
[7370] | 629 | $sql="INSERT INTO ".self::$tables['temp']." ".self::buildGroupRequest($_REQUEST[$_REQUEST['requestName']], $tempClauses, $_REQUEST['operator'], ' AND ', $requestNumber); |
---|
| 630 | //echo $sql; |
---|
[6894] | 631 | $result=pwg_query($sql); |
---|
| 632 | |
---|
| 633 | return($requestNumber); |
---|
| 634 | } |
---|
| 635 | |
---|
| 636 | /** |
---|
| 637 | * clear the temporary table used for multirecord requests |
---|
| 638 | * |
---|
| 639 | * @param Array $requestNumber : the requestNumber to delete |
---|
| 640 | */ |
---|
| 641 | static private function clearTempTable($requestNumber) |
---|
| 642 | { |
---|
| 643 | $sql="DELETE FROM ".self::$tables['temp']." WHERE requestId = '$requestNumber';"; |
---|
| 644 | pwg_query($sql); |
---|
| 645 | } |
---|
| 646 | |
---|
| 647 | |
---|
| 648 | /** |
---|
[6106] | 649 | * execute a query, and place result in cache |
---|
| 650 | * |
---|
| 651 | * |
---|
| 652 | * @return String : queryNumber;numberOfItems |
---|
| 653 | */ |
---|
| 654 | static private function doCache() |
---|
| 655 | { |
---|
| 656 | global $user; |
---|
| 657 | |
---|
[6208] | 658 | self::clearCache(); |
---|
| 659 | |
---|
[6106] | 660 | $registeredPlugin=self::getRegistered(); |
---|
[6894] | 661 | $requestNumber=self::getNewRequest($user['id']); |
---|
[6106] | 662 | |
---|
| 663 | $build=Array( |
---|
| 664 | 'SELECT' => 'pit.id', |
---|
| 665 | 'FROM' => '', |
---|
[7310] | 666 | 'WHERE' => 'pit.level <= '.$user['level'], |
---|
[6106] | 667 | 'GROUPBY' => '', |
---|
[7370] | 668 | 'FILTER' => '' |
---|
[6106] | 669 | ); |
---|
| 670 | $tmpBuild=Array( |
---|
| 671 | 'FROM' => Array( |
---|
[6213] | 672 | '('.IMAGES_TABLE.' pit LEFT JOIN '.IMAGE_CATEGORY_TABLE.' pic ON pit.id = pic.image_id)' /*JOIN IMAGES & IMAGE_CATEGORY tables*/ |
---|
| 673 | .' JOIN '.USER_CACHE_CATEGORIES_TABLE.' pucc ON pucc.cat_id=pic.category_id', /* IMAGE_CATEGORY & USER_CACHE_CATEGORIES_TABLE tables*/ |
---|
| 674 | |
---|
[6106] | 675 | ), |
---|
| 676 | 'WHERE' => Array(), |
---|
[6213] | 677 | 'JOIN' => Array(999=>'pucc.user_id='.$user['id']), |
---|
[6106] | 678 | 'GROUPBY' => Array( |
---|
| 679 | 'pit.id' |
---|
[6894] | 680 | ), |
---|
| 681 | 'FILTER' => Array(), |
---|
[6106] | 682 | ); |
---|
| 683 | |
---|
| 684 | /* build data request for plugins |
---|
| 685 | * |
---|
| 686 | * Array('Plugin1' => |
---|
| 687 | * Array( |
---|
| 688 | * criteriaNumber1 => pluginParam1, |
---|
| 689 | * criteriaNumber2 => pluginParam2, |
---|
| 690 | * criteriaNumberN => pluginParamN |
---|
| 691 | * ), |
---|
| 692 | * 'Plugin2' => |
---|
| 693 | * Array( |
---|
| 694 | * criteriaNumber1 => pluginParam1, |
---|
| 695 | * criteriaNumber2 => pluginParam2, |
---|
| 696 | * criteriaNumberN => pluginParamN |
---|
| 697 | * ) |
---|
| 698 | * ) |
---|
| 699 | * |
---|
| 700 | */ |
---|
| 701 | $pluginNeeded=Array(); |
---|
| 702 | $pluginList=Array(); |
---|
[6894] | 703 | $tempName=Array(); |
---|
[6106] | 704 | foreach($_REQUEST['extraData'] as $key => $val) |
---|
| 705 | { |
---|
| 706 | $pluginNeeded[$val['owner']][$key]=$_REQUEST['extraData'][$key]['param']; |
---|
[6208] | 707 | $pluginList[$val['owner']]=$val['owner']; |
---|
[6106] | 708 | } |
---|
| 709 | |
---|
[6894] | 710 | /* for each plugin, include the rb callback class file */ |
---|
| 711 | foreach($pluginList as $val) |
---|
[6106] | 712 | { |
---|
[6894] | 713 | if(file_exists($registeredPlugin[$val]['fileName'])) |
---|
[6106] | 714 | { |
---|
[6894] | 715 | include_once($registeredPlugin[$val]['fileName']); |
---|
| 716 | } |
---|
| 717 | } |
---|
[6106] | 718 | |
---|
[6894] | 719 | /* prepare the temp table for the request */ |
---|
| 720 | self::prepareTempTable($requestNumber); |
---|
| 721 | $tmpBuild['FROM'][]=self::$tables['temp']; |
---|
| 722 | $tmpBuild['JOIN'][]=self::$tables['temp'].".requestId = '".$requestNumber."' |
---|
| 723 | AND ".self::$tables['temp'].".imageId = pit.id"; |
---|
[6106] | 724 | |
---|
[6894] | 725 | /* for each needed plugin, prepare the filter */ |
---|
| 726 | foreach($pluginNeeded as $key => $val) |
---|
| 727 | { |
---|
| 728 | foreach($val as $itemNumber => $param) |
---|
| 729 | { |
---|
[7317] | 730 | $tmpFilter=call_user_func(Array('RBCallBack'.$key, 'getFilter'), $param); |
---|
| 731 | |
---|
| 732 | if(trim($tmpFilter)!="") $tmpBuild['FILTER'][$key][]='('.$tmpFilter.')'; |
---|
[6106] | 733 | } |
---|
| 734 | } |
---|
| 735 | |
---|
| 736 | |
---|
| 737 | /* build FROM |
---|
| 738 | * |
---|
| 739 | */ |
---|
| 740 | $build['FROM']=implode(',', $tmpBuild['FROM']); |
---|
| 741 | unset($tmpBuild['FROM']); |
---|
| 742 | |
---|
| 743 | /* build WHERE |
---|
| 744 | */ |
---|
| 745 | self::cleanArray($tmpBuild['WHERE']); |
---|
| 746 | if(count($tmpBuild['WHERE'])>0) |
---|
| 747 | { |
---|
| 748 | $build['WHERE']=' ('.self::buildGroup($_REQUEST[$_REQUEST['requestName']], $tmpBuild['WHERE'], $_REQUEST['operator'], ' AND ').') '; |
---|
| 749 | } |
---|
| 750 | unset($tmpBuild['WHERE']); |
---|
| 751 | |
---|
| 752 | |
---|
[6894] | 753 | /* build FILTER |
---|
| 754 | */ |
---|
| 755 | self::cleanArray($tmpBuild['FILTER']); |
---|
| 756 | if(count($tmpBuild['FILTER'])>0) |
---|
| 757 | { |
---|
| 758 | $tmp=array(); |
---|
| 759 | foreach($tmpBuild['FILTER'] as $key=>$val) |
---|
| 760 | { |
---|
| 761 | $tmp[$key]='('.implode(' OR ', $val).')'; |
---|
| 762 | } |
---|
| 763 | $build['FILTER']=' ('.implode(' AND ', $tmp).') '; |
---|
| 764 | } |
---|
| 765 | unset($tmpBuild['FILTER']); |
---|
| 766 | |
---|
| 767 | |
---|
[6106] | 768 | /* for each plugin, adds jointure with the IMAGE table |
---|
| 769 | */ |
---|
| 770 | self::cleanArray($tmpBuild['JOIN']); |
---|
| 771 | if(count($tmpBuild['JOIN'])>0) |
---|
| 772 | { |
---|
[6894] | 773 | if($build['WHERE']!='') $build['WHERE'].=' AND '; |
---|
| 774 | $build['WHERE'].=' ('.implode(' AND ', $tmpBuild['JOIN']).') '; |
---|
[6106] | 775 | } |
---|
| 776 | unset($tmpBuild['JOIN']); |
---|
| 777 | |
---|
| 778 | self::cleanArray($tmpBuild['GROUPBY']); |
---|
| 779 | if(count($tmpBuild['GROUPBY'])>0) |
---|
| 780 | { |
---|
| 781 | $build['GROUPBY'].=' '.implode(', ', $tmpBuild['GROUPBY']).' '; |
---|
| 782 | } |
---|
| 783 | unset($tmpBuild['GROUPBY']); |
---|
| 784 | |
---|
| 785 | |
---|
| 786 | |
---|
| 787 | $sql=' FROM '.$build['FROM']; |
---|
| 788 | if($build['WHERE']!='') |
---|
| 789 | { |
---|
| 790 | $sql.=' WHERE '.$build['WHERE']; |
---|
| 791 | } |
---|
| 792 | if($build['GROUPBY']!='') |
---|
| 793 | { |
---|
| 794 | $sql.=' GROUP BY '.$build['GROUPBY']; |
---|
| 795 | } |
---|
| 796 | |
---|
| 797 | $sql.=" ORDER BY pit.id "; |
---|
| 798 | |
---|
| 799 | $sql="INSERT INTO ".self::$tables['result_cache']." (SELECT DISTINCT $requestNumber, ".$build['SELECT']." $sql)"; |
---|
| 800 | |
---|
[7370] | 801 | //echo $sql; |
---|
[6894] | 802 | $returned="0;0"; |
---|
| 803 | |
---|
[6106] | 804 | $result=pwg_query($sql); |
---|
| 805 | if($result) |
---|
| 806 | { |
---|
| 807 | $numberItems=pwg_db_changes($result); |
---|
[7200] | 808 | self::updateRequest($requestNumber, $numberItems, 0, implode(',', $pluginList), $build['FILTER'], $_REQUEST['extraData']); |
---|
[6106] | 809 | |
---|
[6894] | 810 | $returned="$requestNumber;".$numberItems; |
---|
[6106] | 811 | } |
---|
| 812 | |
---|
[6894] | 813 | self::clearTempTable($requestNumber); |
---|
| 814 | |
---|
| 815 | return($returned); |
---|
[6106] | 816 | } |
---|
| 817 | |
---|
| 818 | /** |
---|
| 819 | * return a page content. use the cache table to find request result |
---|
| 820 | * |
---|
| 821 | * @param Integer $requestNumber : the request number (from cache table) |
---|
| 822 | * @param Integer $pageNumber : the page to be returned |
---|
| 823 | * @param Integer $numPerPage : the number of items returned on a page |
---|
[7370] | 824 | * @param String $mode : if mode = 'count', the function returns the number of |
---|
| 825 | * rows ; otherwise, returns rows in a html string |
---|
[6106] | 826 | * @return String : formatted HTML code |
---|
| 827 | */ |
---|
| 828 | static private function getPage($requestNumber, $pageNumber, $numPerPage) |
---|
| 829 | { |
---|
[6213] | 830 | global $conf, $user; |
---|
[6106] | 831 | $request=self::getRequest($requestNumber); |
---|
| 832 | |
---|
| 833 | if($request===false) |
---|
| 834 | { |
---|
| 835 | return("KO"); |
---|
| 836 | } |
---|
| 837 | |
---|
[6208] | 838 | $limitFrom=$numPerPage*($pageNumber-1); |
---|
[6106] | 839 | |
---|
| 840 | $pluginNeeded=explode(',', $request['connected_plugin']); |
---|
| 841 | $registeredPlugin=self::getRegistered(); |
---|
| 842 | |
---|
| 843 | $build=Array( |
---|
| 844 | 'SELECT' => '', |
---|
| 845 | 'FROM' => '', |
---|
| 846 | 'WHERE' => '', |
---|
| 847 | 'GROUPBY' => '', |
---|
| 848 | ); |
---|
| 849 | $tmpBuild=Array( |
---|
| 850 | 'SELECT' => Array( |
---|
| 851 | 'RB_PIT' => "pit.id AS imageId, pit.name AS imageName, pit.path AS imagePath", // from the piwigo's image table |
---|
[8961] | 852 | 'RB_PIC' => "GROUP_CONCAT( pic.category_id SEPARATOR ',') AS imageCategoriesId", // from the piwigo's image_category table |
---|
| 853 | 'RB_PCT' => "GROUP_CONCAT( CASE WHEN pct.name IS NULL THEN '' ELSE pct.name END SEPARATOR '#sep#') AS imageCategoriesNames, |
---|
| 854 | GROUP_CONCAT( CASE WHEN pct.permalink IS NULL THEN '' ELSE pct.permalink END SEPARATOR '#sep#') AS imageCategoriesPLink, |
---|
| 855 | GROUP_CONCAT( CASE WHEN pct.dir IS NULL THEN 'V' ELSE 'P' END) AS imageCategoriesDir", //from the piwigo's categories table |
---|
[6106] | 856 | ), |
---|
| 857 | 'FROM' => Array( |
---|
| 858 | // join rb result_cache table with piwigo's images table, joined with the piwigo's image_category table, joined with the categories table |
---|
[6213] | 859 | 'RB' => "(((".self::$tables['result_cache']." pgrc |
---|
[6106] | 860 | RIGHT JOIN ".IMAGES_TABLE." pit |
---|
| 861 | ON pgrc.image_id = pit.id) |
---|
| 862 | RIGHT JOIN ".IMAGE_CATEGORY_TABLE." pic |
---|
| 863 | ON pit.id = pic.image_id) |
---|
[6213] | 864 | RIGHT JOIN ".CATEGORIES_TABLE." pct |
---|
| 865 | ON pct.id = pic.category_id) |
---|
| 866 | RIGHT JOIN ".USER_CACHE_CATEGORIES_TABLE." pucc |
---|
| 867 | ON pucc.cat_id = pic.category_id", |
---|
[6106] | 868 | ), |
---|
| 869 | 'WHERE' => Array( |
---|
[6213] | 870 | 'RB' => "pgrc.id=".$requestNumber." AND pucc.user_id=".$user['id'], |
---|
[6106] | 871 | ), |
---|
| 872 | 'JOIN' => Array(), |
---|
| 873 | 'GROUPBY' => Array( |
---|
| 874 | 'RB' => "pit.id" |
---|
| 875 | ) |
---|
| 876 | ); |
---|
| 877 | |
---|
[7200] | 878 | |
---|
| 879 | $extraData=array(); |
---|
| 880 | foreach($request['parameters'] as $data) |
---|
| 881 | { |
---|
| 882 | $extraData[$data['owner']]=$data['param']; |
---|
| 883 | } |
---|
| 884 | |
---|
[6106] | 885 | /* for each needed plugin : |
---|
| 886 | * - include the file |
---|
| 887 | * - call the static public function getFrom, getJoin, getSelect |
---|
| 888 | */ |
---|
| 889 | foreach($pluginNeeded as $key => $val) |
---|
| 890 | { |
---|
| 891 | if(array_key_exists($val, $registeredPlugin)) |
---|
| 892 | { |
---|
| 893 | if(file_exists($registeredPlugin[$val]['fileName'])) |
---|
| 894 | { |
---|
| 895 | include_once($registeredPlugin[$val]['fileName']); |
---|
[6894] | 896 | |
---|
[7200] | 897 | $tmp=explode(',', call_user_func(Array('RBCallBack'.$val, 'getSelect'), $extraData[$val])); |
---|
[6894] | 898 | foreach($tmp as $key2=>$val2) |
---|
| 899 | { |
---|
| 900 | $tmp[$key2]=self::groupConcatAlias($val2, '#sep#'); |
---|
| 901 | } |
---|
| 902 | $tmpBuild['SELECT'][$val]=implode(',', $tmp); |
---|
[7200] | 903 | $tmpBuild['FROM'][$val]=call_user_func(Array('RBCallBack'.$val, 'getFrom'), $extraData[$val]); |
---|
| 904 | $tmpBuild['JOIN'][$val]=call_user_func(Array('RBCallBack'.$val, 'getJoin'), $extraData[$val]); |
---|
[6106] | 905 | } |
---|
| 906 | } |
---|
| 907 | } |
---|
| 908 | |
---|
| 909 | /* build SELECT |
---|
| 910 | * |
---|
| 911 | */ |
---|
| 912 | $build['SELECT']=implode(',', $tmpBuild['SELECT']); |
---|
| 913 | |
---|
| 914 | /* build FROM |
---|
| 915 | * |
---|
| 916 | */ |
---|
| 917 | $build['FROM']=implode(',', $tmpBuild['FROM']); |
---|
| 918 | unset($tmpBuild['FROM']); |
---|
| 919 | |
---|
| 920 | |
---|
| 921 | /* build WHERE |
---|
| 922 | */ |
---|
[6894] | 923 | if($request['filter']!='') $tmpBuild['WHERE'][]=$request['filter']; |
---|
[6106] | 924 | $build['WHERE']=implode(' AND ', $tmpBuild['WHERE']); |
---|
| 925 | unset($tmpBuild['WHERE']); |
---|
| 926 | |
---|
| 927 | /* for each plugin, adds jointure with the IMAGE table |
---|
| 928 | */ |
---|
| 929 | self::cleanArray($tmpBuild['JOIN']); |
---|
| 930 | if(count($tmpBuild['JOIN'])>0) |
---|
| 931 | { |
---|
| 932 | $build['WHERE'].=' AND ('.implode(' AND ', $tmpBuild['JOIN']).') '; |
---|
| 933 | } |
---|
| 934 | unset($tmpBuild['JOIN']); |
---|
| 935 | |
---|
| 936 | self::cleanArray($tmpBuild['GROUPBY']); |
---|
| 937 | if(count($tmpBuild['GROUPBY'])>0) |
---|
| 938 | { |
---|
| 939 | $build['GROUPBY'].=' '.implode(', ', $tmpBuild['GROUPBY']).' '; |
---|
| 940 | } |
---|
| 941 | unset($tmpBuild['GROUPBY']); |
---|
| 942 | |
---|
| 943 | |
---|
| 944 | $imagesList=Array(); |
---|
| 945 | |
---|
[7370] | 946 | $sql='SELECT DISTINCT '.$build['SELECT'] |
---|
[6106] | 947 | .' FROM '.$build['FROM'] |
---|
| 948 | .' WHERE '.$build['WHERE'] |
---|
[7370] | 949 | .' GROUP BY '.$build['GROUPBY']; |
---|
| 950 | |
---|
| 951 | $sql.=' ORDER BY pit.id ' |
---|
| 952 | .' LIMIT '.$limitFrom.', '.$numPerPage; |
---|
| 953 | |
---|
[6894] | 954 | //echo $sql; |
---|
[6106] | 955 | $result=pwg_query($sql); |
---|
| 956 | if($result) |
---|
| 957 | { |
---|
| 958 | while($row=pwg_db_fetch_assoc($result)) |
---|
| 959 | { |
---|
| 960 | // affect standard datas |
---|
| 961 | $datas['imageThumbnail']=dirname($row['imagePath'])."/".$conf['dir_thumbnail']."/".$conf['prefix_thumbnail'].basename($row['imagePath']); |
---|
| 962 | $datas['imageId']=$row['imageId']; |
---|
| 963 | $datas['imagePath']=$row['imagePath']; |
---|
| 964 | $datas['imageName']=$row['imageName']; |
---|
[6208] | 965 | |
---|
[6106] | 966 | $datas['imageCategoriesId']=explode(',', $row['imageCategoriesId']); |
---|
| 967 | $datas['imageCategoriesNames']=explode('#sep#', $row['imageCategoriesNames']); |
---|
[6208] | 968 | $datas['imageCategoriesPLink']=explode('#sep#', $row['imageCategoriesPLink']); |
---|
| 969 | $datas['imageCategoriesDir']=explode(',', $row['imageCategoriesDir']); |
---|
[6106] | 970 | |
---|
[6208] | 971 | $datas['imageCategories']=Array(); |
---|
| 972 | for($i=0;$i<count($datas['imageCategoriesId']);$i++) |
---|
| 973 | { |
---|
| 974 | $datas['imageCategories'][]=array( |
---|
| 975 | 'id' => $datas['imageCategoriesId'][$i], |
---|
| 976 | 'name' => $datas['imageCategoriesNames'][$i], |
---|
| 977 | 'dirType' => $datas['imageCategoriesDir'][$i], |
---|
| 978 | 'pLinks' => $datas['imageCategoriesPLink'][$i], |
---|
[7327] | 979 | 'link'=> make_picture_url( |
---|
| 980 | array( |
---|
| 981 | 'image_id' => $datas['imageId'], |
---|
| 982 | 'category' => array |
---|
| 983 | ( |
---|
| 984 | 'id' => $datas['imageCategoriesId'][$i], |
---|
| 985 | 'name' => $datas['imageCategoriesNames'][$i], |
---|
| 986 | 'permalink' => $datas['imageCategoriesPLink'][$i] |
---|
[6208] | 987 | ) |
---|
[7327] | 988 | ) |
---|
| 989 | ) |
---|
[6208] | 990 | ); |
---|
| 991 | } |
---|
| 992 | |
---|
[6106] | 993 | /* affect datas for each plugin |
---|
| 994 | * |
---|
| 995 | * each plugin have to format the data in an HTML code |
---|
| 996 | * |
---|
| 997 | * so, for each plugin : |
---|
| 998 | * - look the attributes given in the SELECT clause |
---|
| 999 | * - for each attributes, associate the returned value of the record |
---|
| 1000 | * - affect in datas an index equals to the plugin pluginName, with returned HTML code ; HTML code is get from a formatData function |
---|
| 1001 | * |
---|
| 1002 | * Example : |
---|
| 1003 | * plugin ColorStart provide 2 attributes 'csColors' and 'csColorsPct' |
---|
| 1004 | * |
---|
| 1005 | * we affect to the $attributes var : |
---|
| 1006 | * $attributes['csColors'] = $row['csColors']; |
---|
| 1007 | * $attributes['csColorsPct'] = $row['csColorsPct']; |
---|
| 1008 | * |
---|
| 1009 | * call the ColorStat RB callback formatData with the $attributes => the function return a HTML code ready to use in the template |
---|
| 1010 | * |
---|
| 1011 | * affect $datas['ColorStat'] = $the_returned_html_code; |
---|
| 1012 | * |
---|
| 1013 | * |
---|
| 1014 | */ |
---|
| 1015 | foreach($tmpBuild['SELECT'] as $key => $val) |
---|
| 1016 | { |
---|
| 1017 | if($key!='RB_PIT' && $key!='RB_PIC' && $key!='RB_PCT') |
---|
| 1018 | { |
---|
| 1019 | $tmp=explode(',', $val); |
---|
| 1020 | |
---|
| 1021 | $attributes=Array(); |
---|
| 1022 | |
---|
| 1023 | foreach($tmp as $key2 => $val2) |
---|
| 1024 | { |
---|
| 1025 | $name=self::getAttribute($val2); |
---|
| 1026 | $attributes[$name]=$row[$name]; |
---|
| 1027 | } |
---|
| 1028 | |
---|
| 1029 | $datas['plugin'][$key]=call_user_func(Array('RBCallBack'.$key, 'formatData'), $attributes); |
---|
| 1030 | |
---|
| 1031 | unset($tmp); |
---|
| 1032 | unset($attributes); |
---|
| 1033 | } |
---|
| 1034 | } |
---|
| 1035 | $imagesList[]=$datas; |
---|
| 1036 | unset($datas); |
---|
| 1037 | } |
---|
| 1038 | } |
---|
| 1039 | |
---|
| 1040 | return(self::toHtml($imagesList)); |
---|
| 1041 | //return("get page : $requestNumber, $pageNumber, $numPerPage<br>$debug<br>$sql"); |
---|
| 1042 | } |
---|
| 1043 | |
---|
| 1044 | /** |
---|
| 1045 | * remove all empty value from an array |
---|
| 1046 | * @param Array a$array : the array to clean |
---|
| 1047 | */ |
---|
| 1048 | static private function cleanArray(&$array) |
---|
| 1049 | { |
---|
| 1050 | foreach($array as $key => $val) |
---|
| 1051 | { |
---|
[6894] | 1052 | if(is_array($val)) |
---|
| 1053 | { |
---|
| 1054 | self::cleanArray($val); |
---|
| 1055 | if(count($val)==0) unset($array[$key]); |
---|
| 1056 | } |
---|
| 1057 | elseif(trim($val)=='') unset($array[$key]); |
---|
[6106] | 1058 | } |
---|
| 1059 | } |
---|
| 1060 | |
---|
| 1061 | /** |
---|
| 1062 | * returns the alias for an attribute |
---|
| 1063 | * |
---|
[6894] | 1064 | * item1 => returns item1 |
---|
| 1065 | * table1.item1 => returns item1 |
---|
| 1066 | * table1.item1 AS alias1 => returns alias1 |
---|
| 1067 | * item1 AS alias1 => returns alias1 |
---|
| 1068 | * GROUP_CONCAT( .... ) AS alias1 => returns alias1 |
---|
[6106] | 1069 | * |
---|
[6894] | 1070 | * @param String $var : value to examine |
---|
[6106] | 1071 | * @return String : the attribute name |
---|
| 1072 | */ |
---|
| 1073 | static private function getAttribute($val) |
---|
| 1074 | { |
---|
[6894] | 1075 | preg_match('/(?:GROUP_CONCAT\(.*\)|(?:[A-Z0-9_]*)\.)?([A-Z0-9_]*)(?:\s+AS\s+([A-Z0-9_]*))?/i', trim($val), $result); |
---|
[6106] | 1076 | if(array_key_exists(2, $result)) |
---|
| 1077 | { |
---|
| 1078 | return($result[2]); |
---|
| 1079 | } |
---|
| 1080 | elseif(array_key_exists(1, $result)) |
---|
| 1081 | { |
---|
| 1082 | return($result[1]); |
---|
| 1083 | } |
---|
| 1084 | else |
---|
| 1085 | { |
---|
| 1086 | return($val); |
---|
| 1087 | } |
---|
| 1088 | } |
---|
| 1089 | |
---|
| 1090 | |
---|
| 1091 | /** |
---|
[6894] | 1092 | * returns a a sql statement GROUP_CONCAT for an alias |
---|
| 1093 | * |
---|
| 1094 | * item1 => returns GROUP_CONCAT(item1 SEPARATOR $sep) AS item1 |
---|
| 1095 | * table1.item1 => returns GROUP_CONCAT(table1.item1 SEPARATOR $sep) AS item1 |
---|
| 1096 | * table1.item1 AS alias1 => returns GROUP_CONCAT(table1.item1 SEPARATOR $sep) AS alias1 |
---|
| 1097 | * item1 AS alias1 => returns GROUP_CONCAT(item1 SEPARATOR $sep) AS alias1 |
---|
| 1098 | * |
---|
| 1099 | * @param String $val : value to examine |
---|
| 1100 | * @param String $sep : the separator |
---|
| 1101 | * @return String : the attribute name |
---|
| 1102 | */ |
---|
| 1103 | static private function groupConcatAlias($val, $sep=',') |
---|
| 1104 | { |
---|
| 1105 | /* |
---|
| 1106 | * table1.item1 AS alias1 |
---|
| 1107 | * |
---|
| 1108 | * $result[3] = alias1 |
---|
| 1109 | * $result[2] = item1 |
---|
| 1110 | * $result[1] = table1.item1 |
---|
| 1111 | */ |
---|
| 1112 | preg_match('/((?:(?:[A-Z0-9_]*)\.)?([A-Z0-9_]*))(?:\s+AS\s+([A-Z0-9_]*))?/i', trim($val), $result); |
---|
| 1113 | if(array_key_exists(3, $result)) |
---|
| 1114 | { |
---|
[7370] | 1115 | return("GROUP_CONCAT(DISTINCT ".$result[1]." SEPARATOR '$sep') AS ".$result[3]); |
---|
[6894] | 1116 | } |
---|
| 1117 | elseif(array_key_exists(2, $result)) |
---|
| 1118 | { |
---|
[7370] | 1119 | return("GROUP_CONCAT(DISTINCT ".$result[1]." SEPARATOR '$sep') AS ".$result[2]); |
---|
[6894] | 1120 | } |
---|
| 1121 | else |
---|
| 1122 | { |
---|
[7370] | 1123 | return("GROUP_CONCAT(DISTINCT $val SEPARATOR '$sep') AS ".$val); |
---|
[6894] | 1124 | } |
---|
| 1125 | } |
---|
| 1126 | |
---|
| 1127 | |
---|
| 1128 | /** |
---|
[6106] | 1129 | * get a new request number and create it in the request table |
---|
| 1130 | * |
---|
| 1131 | * @param Integer $userId : id of the user |
---|
| 1132 | * @return Integer : the new request number, -1 if something wrong appened |
---|
| 1133 | */ |
---|
| 1134 | static private function getNewRequest($userId) |
---|
| 1135 | { |
---|
[7200] | 1136 | $sql="INSERT INTO ".self::$tables['request']." VALUES('', '$userId', '".date('Y-m-d H:i:s')."', 0, 0, '', '', '')"; |
---|
[6106] | 1137 | $result=pwg_query($sql); |
---|
| 1138 | if($result) |
---|
| 1139 | { |
---|
| 1140 | return(pwg_db_insert_id()); |
---|
| 1141 | } |
---|
| 1142 | return(-1); |
---|
| 1143 | } |
---|
| 1144 | |
---|
| 1145 | /** |
---|
| 1146 | * update request properties |
---|
| 1147 | * |
---|
| 1148 | * @param Integer $request_id : the id of request to update |
---|
| 1149 | * @param Integer $numItems : number of items found in the request |
---|
| 1150 | * @param Float $executionTime : time in second to execute the request |
---|
| 1151 | * @param String $pluginList : list of used plugins |
---|
[7200] | 1152 | * @param String $parameters : parameters given for the request |
---|
[6106] | 1153 | * @return Boolean : true if request was updated, otherwise false |
---|
| 1154 | */ |
---|
[7200] | 1155 | static private function updateRequest($requestId, $numItems, $executionTime, $pluginList, $additionalFilter, $parameters) |
---|
[6106] | 1156 | { |
---|
| 1157 | $sql="UPDATE ".self::$tables['request']." |
---|
| 1158 | SET num_items = $numItems, |
---|
| 1159 | execution_time = $executionTime, |
---|
[6894] | 1160 | connected_plugin = '$pluginList', |
---|
[7200] | 1161 | filter = '".mysql_escape_string($additionalFilter)."', |
---|
| 1162 | parameters = '".serialize($parameters)."' |
---|
[6106] | 1163 | WHERE id = $requestId"; |
---|
| 1164 | $result=pwg_query($sql); |
---|
| 1165 | if($result) |
---|
| 1166 | { |
---|
| 1167 | return(true); |
---|
| 1168 | } |
---|
| 1169 | return(false); |
---|
| 1170 | } |
---|
| 1171 | |
---|
| 1172 | /** |
---|
| 1173 | * returns request properties |
---|
| 1174 | * |
---|
| 1175 | * @param Integer $request_id : the id of request to update |
---|
| 1176 | * @return Array : properties for request, false if request doesn't exist |
---|
| 1177 | */ |
---|
| 1178 | static private function getRequest($requestId) |
---|
| 1179 | { |
---|
| 1180 | $returned=false; |
---|
[7200] | 1181 | $sql="SELECT user_id, date, num_items, execution_time, connected_plugin, filter, parameters |
---|
[6106] | 1182 | FROM ".self::$tables['request']." |
---|
| 1183 | WHERE id = $requestId"; |
---|
| 1184 | $result=pwg_query($sql); |
---|
| 1185 | if($result) |
---|
| 1186 | { |
---|
| 1187 | while($row=pwg_db_fetch_assoc($result)) |
---|
| 1188 | { |
---|
[7200] | 1189 | if($row['parameters']!='') $row['parameters']=unserialize($row['parameters']); |
---|
[6106] | 1190 | $returned=$row; |
---|
| 1191 | } |
---|
| 1192 | } |
---|
| 1193 | return($returned); |
---|
| 1194 | } |
---|
| 1195 | |
---|
| 1196 | |
---|
| 1197 | /** |
---|
[6894] | 1198 | * internal function used by the executeRequest function for single record |
---|
| 1199 | * requests |
---|
[6106] | 1200 | * |
---|
| 1201 | * this function is called recursively |
---|
| 1202 | * |
---|
| 1203 | * @param Array $groupContent : |
---|
| 1204 | * @param Array $items : |
---|
| 1205 | * @return String : a where clause |
---|
| 1206 | */ |
---|
| 1207 | static private function buildGroup($groupContent, $items, $groups, $operator) |
---|
| 1208 | { |
---|
| 1209 | $returned=Array(); |
---|
| 1210 | foreach($groupContent as $key => $val) |
---|
| 1211 | { |
---|
| 1212 | if(strpos($val['id'], 'iCbGroup')!==false) |
---|
| 1213 | { |
---|
| 1214 | preg_match('/[0-9]*$/i', $val['id'], $groupNumber); |
---|
| 1215 | $returned[]=self::buildGroup($val['children'], $items, $groups, $groups[$groupNumber[0]]); |
---|
| 1216 | } |
---|
| 1217 | else |
---|
| 1218 | { |
---|
| 1219 | preg_match('/[0-9]*$/i', $val['id'], $itemNumber); |
---|
| 1220 | $returned[]=" (".$items[$itemNumber[0]].") "; |
---|
| 1221 | } |
---|
| 1222 | } |
---|
| 1223 | return('('.implode($operator, $returned).')'); |
---|
| 1224 | } |
---|
| 1225 | |
---|
| 1226 | |
---|
| 1227 | /** |
---|
[6894] | 1228 | * internal function used by the executeRequest function for multi records |
---|
| 1229 | * requests |
---|
| 1230 | * |
---|
| 1231 | * this function is called recursively |
---|
| 1232 | * |
---|
| 1233 | * @param Array $groupContent : |
---|
[7370] | 1234 | * @param Array $clausesItems : array with 'where' and 'having' conditions (and 'plugin' for the plugin) |
---|
| 1235 | * @param Array $groups : operators of each group |
---|
| 1236 | * @param String $operator : 'OR' or 'AND', according with the current group operator |
---|
| 1237 | * @param String $requestNumber : the request number |
---|
| 1238 | * @return String : part of a SQL request |
---|
[6894] | 1239 | */ |
---|
[7370] | 1240 | static private function buildGroupRequest($groupContent, $clausesItems, $groups, $operator, $requestNumber) |
---|
[6894] | 1241 | { |
---|
| 1242 | $returnedS=''; |
---|
| 1243 | $returned=Array(); |
---|
| 1244 | foreach($groupContent as $key => $val) |
---|
| 1245 | { |
---|
| 1246 | if(strpos($val['id'], 'iCbGroup')!==false) |
---|
| 1247 | { |
---|
| 1248 | preg_match('/[0-9]*$/i', $val['id'], $groupNumber); |
---|
| 1249 | |
---|
[7370] | 1250 | $groupValue=self::buildGroupRequest($val['children'], $clausesItems, $groups, $groups[$groupNumber[0]], $requestNumber); |
---|
[6894] | 1251 | |
---|
| 1252 | if($groupValue!='') |
---|
| 1253 | $returned[]=array( |
---|
| 1254 | 'mode' => 'group', |
---|
| 1255 | 'value' => $groupValue |
---|
| 1256 | ); |
---|
| 1257 | } |
---|
| 1258 | else |
---|
| 1259 | { |
---|
| 1260 | preg_match('/[0-9]*$/i', $val['id'], $itemNumber); |
---|
| 1261 | |
---|
| 1262 | $returned[]=array( |
---|
| 1263 | 'mode' => 'item', |
---|
[7370] | 1264 | 'plugin' => $clausesItems[$itemNumber[0]]['plugin'], |
---|
| 1265 | 'valueWhere' => ($clausesItems[$itemNumber[0]]['where']!='')?" (".$clausesItems[$itemNumber[0]]['where'].") ":'', |
---|
| 1266 | 'valueHaving' => ($clausesItems[$itemNumber[0]]['having'])?" (".$clausesItems[$itemNumber[0]]['having'].") ":'', |
---|
[6894] | 1267 | ); |
---|
| 1268 | } |
---|
| 1269 | } |
---|
| 1270 | |
---|
| 1271 | if(count($returned)>0) |
---|
| 1272 | { |
---|
| 1273 | if(strtolower(trim($operator))=='and') |
---|
| 1274 | { |
---|
| 1275 | $tId=0; |
---|
| 1276 | foreach($returned as $key=>$val) |
---|
| 1277 | { |
---|
| 1278 | if($tId>0) $returnedS.=" JOIN "; |
---|
| 1279 | |
---|
| 1280 | if($val['mode']=='item') |
---|
| 1281 | { |
---|
[7181] | 1282 | $returnedS.="(SELECT DISTINCT ".call_user_func(Array('RBCallBack'.$val['plugin'], 'getImageId'))." AS imageId |
---|
[7370] | 1283 | FROM ".call_user_func(Array('RBCallBack'.$val['plugin'], 'getFrom')); |
---|
| 1284 | if($val['valueWhere']!='') $returnedS.=" WHERE ".$val['valueWhere']; |
---|
| 1285 | if($val['valueHaving']!='') |
---|
| 1286 | $returnedS.=" GROUP BY imageId |
---|
| 1287 | HAVING ".$val['valueHaving']; |
---|
| 1288 | $returnedS.=") t".self::$tGlobalId." "; |
---|
[6894] | 1289 | } |
---|
| 1290 | else |
---|
| 1291 | { |
---|
| 1292 | $returnedS.="(".$val['value'].") t".self::$tGlobalId." "; |
---|
| 1293 | } |
---|
| 1294 | |
---|
| 1295 | if($tId>0) $returnedS.=" ON t".(self::$tGlobalId-1).".imageId = t".self::$tGlobalId.".imageId "; |
---|
| 1296 | $tId++; |
---|
| 1297 | self::$tGlobalId++; |
---|
| 1298 | } |
---|
[7370] | 1299 | $returnedS="SELECT DISTINCT '$requestNumber', t".(self::$tGlobalId-$tId).".imageId FROM ".$returnedS; |
---|
[6894] | 1300 | } |
---|
| 1301 | else |
---|
| 1302 | { |
---|
| 1303 | foreach($returned as $key=>$val) |
---|
| 1304 | { |
---|
| 1305 | if($returnedS!='') $returnedS.=" UNION DISTINCT "; |
---|
| 1306 | |
---|
| 1307 | if($val['mode']=='item') |
---|
| 1308 | { |
---|
[7181] | 1309 | $returnedS.="SELECT DISTINCT '$requestNumber', t".self::$tGlobalId.".imageId |
---|
[6894] | 1310 | FROM (SELECT ".call_user_func(Array('RBCallBack'.$val['plugin'], 'getImageId'))." AS imageId |
---|
[7370] | 1311 | FROM ".call_user_func(Array('RBCallBack'.$val['plugin'], 'getFrom')); |
---|
| 1312 | if($val['valueWhere']!='') $returnedS.=" WHERE ".$val['valueWhere']; |
---|
| 1313 | if($val['valueHaving']!='') |
---|
| 1314 | $returnedS.=" GROUP BY imageId |
---|
| 1315 | HAVING ".$val['valueHaving']; |
---|
| 1316 | $returnedS.=") t".self::$tGlobalId." "; |
---|
[6894] | 1317 | } |
---|
| 1318 | else |
---|
| 1319 | { |
---|
[7370] | 1320 | $returnedS.="SELECT DISTINCT '$requestNumber', t".self::$tGlobalId.".imageId FROM (".$val['value'].") t".self::$tGlobalId; |
---|
[6894] | 1321 | } |
---|
| 1322 | |
---|
| 1323 | self::$tGlobalId++; |
---|
| 1324 | } |
---|
| 1325 | } |
---|
| 1326 | } |
---|
| 1327 | |
---|
| 1328 | return($returnedS); |
---|
| 1329 | } |
---|
| 1330 | |
---|
| 1331 | |
---|
| 1332 | /** |
---|
[6106] | 1333 | * convert a list of images to HTML |
---|
| 1334 | * |
---|
| 1335 | * @param Array $imagesList : list of images id & associated datas |
---|
| 1336 | * @return String : list formatted into HTML code |
---|
| 1337 | */ |
---|
| 1338 | static protected function toHtml($imagesList) |
---|
| 1339 | { |
---|
| 1340 | global $template; |
---|
| 1341 | |
---|
| 1342 | $template->set_filename('result_items', |
---|
| 1343 | dirname(dirname(__FILE__)).'/templates/GPCRequestBuilder_result.tpl'); |
---|
| 1344 | |
---|
| 1345 | |
---|
| 1346 | |
---|
| 1347 | $template->assign('datas', $imagesList); |
---|
| 1348 | |
---|
| 1349 | return($template->parse('result_items', true)); |
---|
| 1350 | } |
---|
| 1351 | |
---|
| 1352 | |
---|
| 1353 | /** |
---|
| 1354 | * returns allowed (or not allowed) categories for a user |
---|
| 1355 | * |
---|
| 1356 | * used the USER_CACHE_TABLE if possible |
---|
| 1357 | * |
---|
| 1358 | * @param Integer $userId : a valid user Id |
---|
| 1359 | * @return String : IN(...), NOT IN(...) or nothing if there is no restriction |
---|
| 1360 | * for the user |
---|
| 1361 | */ |
---|
| 1362 | public function getUserCategories($userId) |
---|
| 1363 | { |
---|
| 1364 | /* |
---|
| 1365 | $returned=''; |
---|
| 1366 | if($user['forbidden_categories']!='') |
---|
| 1367 | { |
---|
| 1368 | $returned=Array( |
---|
| 1369 | 'JOIN' => 'AND ('.IMAGE_CATEGORY.'.category_id NOT IN ('.$user['forbidden_categories'].') ) ', |
---|
| 1370 | 'FROM' => IMAGE_CATEGORY |
---|
| 1371 | ); |
---|
| 1372 | |
---|
| 1373 | |
---|
| 1374 | } |
---|
| 1375 | * |
---|
| 1376 | * |
---|
| 1377 | */ |
---|
| 1378 | } |
---|
| 1379 | |
---|
| 1380 | |
---|
| 1381 | /** |
---|
[6174] | 1382 | * display search page |
---|
[6894] | 1383 | * |
---|
| 1384 | * @param Array $filter : an array of string ; each item is the name of a |
---|
| 1385 | * registered plugin |
---|
| 1386 | * if no parameters are given, no filter is applied |
---|
| 1387 | * otherwise only plugin wich name is given are |
---|
| 1388 | * accessible |
---|
[6174] | 1389 | */ |
---|
[6894] | 1390 | static public function displaySearchPage($filter=array()) |
---|
[6174] | 1391 | { |
---|
| 1392 | global $template, $lang; |
---|
| 1393 | |
---|
[6894] | 1394 | if(is_string($filter)) $filter=array($filter); |
---|
| 1395 | $filter=array_flip($filter); |
---|
| 1396 | |
---|
[10884] | 1397 | GPCCore::addHeaderJS('jquery.ui', 'themes/default/js/ui/minified/jquery.ui.core.packed.js'); |
---|
| 1398 | GPCCore::addHeaderJS('jquery.ui.dialog', 'themes/default/js/ui/minified/jquery.ui.dialog.packed.js'); |
---|
[9009] | 1399 | GPCCore::addHeaderJS('gpc.pagesNavigator', 'plugins/GrumPluginClasses/js/pagesNavigator'.GPCCore::getMinified().'.js'); |
---|
| 1400 | GPCCore::addHeaderJS('gpc.rbSearch', 'plugins/GrumPluginClasses/js/rbSearch'.GPCCore::getMinified().'.js'); |
---|
[8961] | 1401 | |
---|
| 1402 | |
---|
[6174] | 1403 | $template->set_filename('gpc_search_page', |
---|
| 1404 | dirname(dirname(__FILE__)).'/templates/GPCRequestBuilder_search.tpl'); |
---|
| 1405 | |
---|
| 1406 | $registeredPlugin=self::getRegistered(); |
---|
| 1407 | $dialogBox=Array(); |
---|
| 1408 | foreach($registeredPlugin as $key=>$val) |
---|
| 1409 | { |
---|
[6894] | 1410 | if(array_key_exists($key, $registeredPlugin) and |
---|
| 1411 | (count($filter)==0 or array_key_exists($key, $filter))) |
---|
[6174] | 1412 | { |
---|
| 1413 | if(file_exists($registeredPlugin[$key]['fileName'])) |
---|
| 1414 | { |
---|
| 1415 | include_once($registeredPlugin[$key]['fileName']); |
---|
| 1416 | |
---|
| 1417 | $dialogBox[]=Array( |
---|
| 1418 | 'handle' => $val['name'].'DB', |
---|
| 1419 | 'dialogBoxClass' => call_user_func(Array('RBCallBack'.$key, 'getInterfaceDBClass')), |
---|
| 1420 | 'label' => call_user_func(Array('RBCallBack'.$key, 'getInterfaceLabel')), |
---|
| 1421 | 'content' => call_user_func(Array('RBCallBack'.$key, 'getInterfaceContent')), |
---|
| 1422 | ); |
---|
| 1423 | } |
---|
| 1424 | } |
---|
| 1425 | } |
---|
| 1426 | |
---|
| 1427 | $datas=Array( |
---|
| 1428 | 'dialogBox' => $dialogBox, |
---|
[7317] | 1429 | 'themeName' => defined('IN_ADMIN')?$template->get_themeconf('name'):'', |
---|
[6174] | 1430 | ); |
---|
| 1431 | |
---|
| 1432 | $template->assign('datas', $datas); |
---|
| 1433 | |
---|
| 1434 | return($template->parse('gpc_search_page', true)); |
---|
| 1435 | } //displaySearchPage |
---|
| 1436 | |
---|
[6106] | 1437 | } |
---|
| 1438 | |
---|
| 1439 | |
---|
| 1440 | ?> |
---|