[1109] | 1 | <?php |
---|
| 2 | // +-----------------------------------------------------------------------+ |
---|
| 3 | // | PhpWebGallery - a PHP based picture gallery | |
---|
[1789] | 4 | // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | |
---|
[1109] | 5 | // +-----------------------------------------------------------------------+ |
---|
[1789] | 6 | // | file : $Id: functions_url.inc.php 2082 2007-08-30 05:30:19Z rub $ |
---|
[1109] | 7 | // | last update : $Date: 2007-08-30 05:30:19 +0000 (Thu, 30 Aug 2007) $ |
---|
| 8 | // | last modifier : $Author: rub $ |
---|
| 9 | // | revision : $Revision: 2082 $ |
---|
| 10 | // +-----------------------------------------------------------------------+ |
---|
| 11 | // | This program is free software; you can redistribute it and/or modify | |
---|
| 12 | // | it under the terms of the GNU General Public License as published by | |
---|
| 13 | // | the Free Software Foundation | |
---|
| 14 | // | | |
---|
| 15 | // | This program is distributed in the hope that it will be useful, but | |
---|
| 16 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
| 17 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
| 18 | // | General Public License for more details. | |
---|
| 19 | // | | |
---|
| 20 | // | You should have received a copy of the GNU General Public License | |
---|
| 21 | // | along with this program; if not, write to the Free Software | |
---|
| 22 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
| 23 | // | USA. | |
---|
| 24 | // +-----------------------------------------------------------------------+ |
---|
| 25 | |
---|
| 26 | |
---|
| 27 | /** |
---|
| 28 | * returns a prefix for each url link on displayed page |
---|
[1374] | 29 | * and return an empty string for current path |
---|
[1109] | 30 | * @return string |
---|
| 31 | */ |
---|
| 32 | function get_root_url() |
---|
| 33 | { |
---|
| 34 | global $page; |
---|
| 35 | if ( isset($page['root_path']) ) |
---|
| 36 | { |
---|
[1374] | 37 | $root_url = $page['root_path']; |
---|
[1109] | 38 | } |
---|
[1403] | 39 | else |
---|
[1750] | 40 | {// TODO - add HERE the possibility to call PWG functions from external scripts |
---|
[1374] | 41 | $root_url = PHPWG_ROOT_PATH; |
---|
| 42 | } |
---|
| 43 | if ( dirname($root_url)!='.' ) |
---|
| 44 | { |
---|
| 45 | return $root_url; |
---|
[1403] | 46 | } |
---|
| 47 | else |
---|
[1374] | 48 | { |
---|
[1403] | 49 | return substr($root_url, 2); |
---|
[1374] | 50 | } |
---|
[1109] | 51 | } |
---|
| 52 | |
---|
| 53 | /** |
---|
[1750] | 54 | * returns the absolute url to the root of PWG |
---|
| 55 | * @param boolean with_scheme if false - does not add http://toto.com |
---|
[1566] | 56 | */ |
---|
[1750] | 57 | function get_absolute_root_url($with_scheme=true) |
---|
[1566] | 58 | { |
---|
[1750] | 59 | // TODO - add HERE the possibility to call PWG functions from external scripts |
---|
| 60 | $url = ''; |
---|
| 61 | if ($with_scheme) |
---|
[1566] | 62 | { |
---|
[1750] | 63 | $url .= 'http://'.$_SERVER['HTTP_HOST']; |
---|
[2082] | 64 | if ($_SERVER['SERVER_PORT'] != 80) |
---|
[1750] | 65 | { |
---|
[2082] | 66 | $url_port = ':'.$_SERVER['SERVER_PORT']; |
---|
| 67 | if (strrchr($url, ':') != $url_port) |
---|
| 68 | { |
---|
| 69 | $url .= $url_port; |
---|
| 70 | } |
---|
[1750] | 71 | } |
---|
[1566] | 72 | } |
---|
[1750] | 73 | $url .= cookie_path(); |
---|
[1566] | 74 | return $url; |
---|
| 75 | } |
---|
| 76 | |
---|
| 77 | /** |
---|
[1109] | 78 | * adds one or more _GET style parameters to an url |
---|
| 79 | * example: add_url_params('/x', array('a'=>'b')) returns /x?a=b |
---|
| 80 | * add_url_params('/x?cat_id=10', array('a'=>'b')) returns /x?cat_id=10&a=b |
---|
| 81 | * @param string url |
---|
| 82 | * @param array params |
---|
| 83 | * @return string |
---|
| 84 | */ |
---|
| 85 | function add_url_params($url, $params) |
---|
| 86 | { |
---|
| 87 | if ( !empty($params) ) |
---|
| 88 | { |
---|
| 89 | assert( is_array($params) ); |
---|
| 90 | $is_first = true; |
---|
| 91 | foreach($params as $param=>$val) |
---|
| 92 | { |
---|
| 93 | if ($is_first) |
---|
| 94 | { |
---|
| 95 | $is_first = false; |
---|
| 96 | $url .= ( strstr($url, '?')===false ) ? '?' :'&'; |
---|
| 97 | } |
---|
| 98 | else |
---|
| 99 | { |
---|
| 100 | $url .= '&'; |
---|
| 101 | } |
---|
| 102 | $url .= $param; |
---|
| 103 | if (isset($val)) |
---|
| 104 | { |
---|
| 105 | $url .= '='.$val; |
---|
| 106 | } |
---|
| 107 | } |
---|
| 108 | } |
---|
| 109 | return $url; |
---|
| 110 | } |
---|
| 111 | |
---|
| 112 | /** |
---|
| 113 | * build an index URL for a specific section |
---|
| 114 | * |
---|
| 115 | * @param array |
---|
| 116 | * @return string |
---|
| 117 | */ |
---|
[1503] | 118 | function make_index_url($params = array()) |
---|
[1109] | 119 | { |
---|
| 120 | global $conf; |
---|
| 121 | $url = get_root_url().'index'; |
---|
| 122 | if ($conf['php_extension_in_urls']) |
---|
| 123 | { |
---|
| 124 | $url .= '.php'; |
---|
| 125 | } |
---|
| 126 | if ($conf['question_mark_in_urls']) |
---|
| 127 | { |
---|
| 128 | $url .= '?'; |
---|
| 129 | } |
---|
[1503] | 130 | $url.= make_section_in_url($params); |
---|
[1109] | 131 | $url = add_well_known_params_in_url($url, $params); |
---|
| 132 | return $url; |
---|
| 133 | } |
---|
| 134 | |
---|
| 135 | /** |
---|
| 136 | * build an index URL with current page parameters, but with redefinitions |
---|
| 137 | * and removes. |
---|
| 138 | * |
---|
[1861] | 139 | * duplicate_index_url( array( |
---|
| 140 | * 'category' => array('id'=>12, 'name'=>'toto'), |
---|
| 141 | * array('start') |
---|
| 142 | * ) will create an index URL on the current section (categories), but on |
---|
| 143 | * a redefined category and without the start URL parameter. |
---|
[1109] | 144 | * |
---|
| 145 | * @param array redefined keys |
---|
| 146 | * @param array removed keys |
---|
| 147 | * @return string |
---|
| 148 | */ |
---|
[1503] | 149 | function duplicate_index_url($redefined = array(), $removed = array()) |
---|
[1109] | 150 | { |
---|
[1503] | 151 | return make_index_url( |
---|
[1109] | 152 | params_for_duplication($redefined, $removed) |
---|
| 153 | ); |
---|
| 154 | } |
---|
| 155 | |
---|
| 156 | /** |
---|
| 157 | * returns $page global array with key redefined and key removed |
---|
| 158 | * |
---|
| 159 | * @param array redefined keys |
---|
| 160 | * @param array removed keys |
---|
| 161 | * @return array |
---|
| 162 | */ |
---|
| 163 | function params_for_duplication($redefined, $removed) |
---|
| 164 | { |
---|
| 165 | global $page; |
---|
| 166 | |
---|
| 167 | if (count($removed) > 0) |
---|
| 168 | { |
---|
| 169 | $params = array(); |
---|
| 170 | |
---|
| 171 | foreach ($page as $page_item_key => $page_item_value) |
---|
| 172 | { |
---|
| 173 | if (!in_array($page_item_key, $removed)) |
---|
| 174 | { |
---|
| 175 | $params[$page_item_key] = $page_item_value; |
---|
| 176 | } |
---|
| 177 | } |
---|
| 178 | } |
---|
| 179 | else |
---|
| 180 | { |
---|
| 181 | $params = $page; |
---|
| 182 | } |
---|
| 183 | |
---|
| 184 | foreach ($redefined as $redefined_param => $redefined_value) |
---|
| 185 | { |
---|
| 186 | $params[$redefined_param] = $redefined_value; |
---|
| 187 | } |
---|
| 188 | |
---|
| 189 | return $params; |
---|
| 190 | } |
---|
| 191 | |
---|
| 192 | /** |
---|
| 193 | * create a picture URL with current page parameters, but with redefinitions |
---|
[1503] | 194 | * and removes. See duplicate_index_url. |
---|
[1109] | 195 | * |
---|
| 196 | * @param array redefined keys |
---|
| 197 | * @param array removed keys |
---|
| 198 | * @return string |
---|
| 199 | */ |
---|
[1503] | 200 | function duplicate_picture_url($redefined = array(), $removed = array()) |
---|
[1109] | 201 | { |
---|
[1503] | 202 | return make_picture_url( |
---|
[1109] | 203 | params_for_duplication($redefined, $removed) |
---|
| 204 | ); |
---|
| 205 | } |
---|
| 206 | |
---|
| 207 | /** |
---|
| 208 | * create a picture URL on a specific section for a specific picture |
---|
| 209 | * |
---|
| 210 | * @param array |
---|
| 211 | * @return string |
---|
| 212 | */ |
---|
[1503] | 213 | function make_picture_url($params) |
---|
[1109] | 214 | { |
---|
| 215 | global $conf; |
---|
| 216 | if (!isset($params['image_id'])) |
---|
| 217 | { |
---|
[1503] | 218 | die('make_picture_url: image_id is a required parameter'); |
---|
[1109] | 219 | } |
---|
| 220 | |
---|
| 221 | $url = get_root_url().'picture'; |
---|
| 222 | if ($conf['php_extension_in_urls']) |
---|
| 223 | { |
---|
| 224 | $url .= '.php'; |
---|
| 225 | } |
---|
| 226 | if ($conf['question_mark_in_urls']) |
---|
| 227 | { |
---|
| 228 | $url .= '?'; |
---|
| 229 | } |
---|
| 230 | $url.= '/'; |
---|
| 231 | switch ( $conf['picture_url_style'] ) |
---|
| 232 | { |
---|
| 233 | case 'id-file': |
---|
| 234 | $url .= $params['image_id']; |
---|
| 235 | if ( isset($params['image_file']) ) |
---|
| 236 | { |
---|
| 237 | $url .= '-'.get_filename_wo_extension($params['image_file']); |
---|
| 238 | } |
---|
| 239 | break; |
---|
| 240 | case 'file': |
---|
[1562] | 241 | if ( isset($params['image_file']) ) |
---|
[1109] | 242 | { |
---|
[1562] | 243 | $fname_wo_ext = get_filename_wo_extension($params['image_file']); |
---|
| 244 | if (! preg_match('/^\d+(-|$)/', $fname_wo_ext) ) |
---|
| 245 | { |
---|
| 246 | $url .= $fname_wo_ext; |
---|
| 247 | break; |
---|
| 248 | } |
---|
[1109] | 249 | } |
---|
| 250 | default: |
---|
| 251 | $url .= $params['image_id']; |
---|
| 252 | } |
---|
[1955] | 253 | if ( !isset($params['category'] ) ) |
---|
| 254 | {// make urls shorter ... |
---|
| 255 | unset( $params['flat'] ); |
---|
| 256 | } |
---|
[1503] | 257 | $url .= make_section_in_url($params); |
---|
[1109] | 258 | $url = add_well_known_params_in_url($url, $params); |
---|
| 259 | return $url; |
---|
| 260 | } |
---|
| 261 | |
---|
| 262 | /** |
---|
| 263 | *adds to the url the chronology and start parameters |
---|
| 264 | */ |
---|
| 265 | function add_well_known_params_in_url($url, $params) |
---|
| 266 | { |
---|
| 267 | if ( isset($params['chronology_field']) ) |
---|
| 268 | { |
---|
| 269 | $url .= '/'. $params['chronology_field']; |
---|
| 270 | $url .= '-'. $params['chronology_style']; |
---|
| 271 | if ( isset($params['chronology_view']) ) |
---|
| 272 | { |
---|
| 273 | $url .= '-'. $params['chronology_view']; |
---|
| 274 | } |
---|
| 275 | if ( !empty($params['chronology_date']) ) |
---|
| 276 | { |
---|
| 277 | $url .= '-'. implode('-', $params['chronology_date'] ); |
---|
| 278 | } |
---|
| 279 | } |
---|
| 280 | |
---|
[1800] | 281 | if (isset($params['flat'])) |
---|
[1677] | 282 | { |
---|
[1789] | 283 | $url.= '/flat'; |
---|
[1677] | 284 | } |
---|
| 285 | |
---|
[1109] | 286 | if (isset($params['start']) and $params['start'] > 0) |
---|
| 287 | { |
---|
| 288 | $url.= '/start-'.$params['start']; |
---|
| 289 | } |
---|
| 290 | return $url; |
---|
| 291 | } |
---|
| 292 | |
---|
| 293 | /** |
---|
| 294 | * return the section token of an index or picture URL. |
---|
| 295 | * |
---|
| 296 | * Depending on section, other parameters are required (see function code |
---|
| 297 | * for details) |
---|
| 298 | * |
---|
| 299 | * @param array |
---|
| 300 | * @return string |
---|
| 301 | */ |
---|
[1503] | 302 | function make_section_in_url($params) |
---|
[1109] | 303 | { |
---|
[1131] | 304 | global $conf; |
---|
[1109] | 305 | $section_string = ''; |
---|
| 306 | |
---|
[1119] | 307 | $section_of = array( |
---|
| 308 | 'category' => 'categories', |
---|
| 309 | 'tags' => 'tags', |
---|
| 310 | 'list' => 'list', |
---|
| 311 | 'search' => 'search', |
---|
| 312 | ); |
---|
| 313 | |
---|
| 314 | foreach ($section_of as $param => $section) |
---|
[1109] | 315 | { |
---|
[1119] | 316 | if (isset($params[$param])) |
---|
[1109] | 317 | { |
---|
[1119] | 318 | $params['section'] = $section; |
---|
[1109] | 319 | } |
---|
| 320 | } |
---|
| 321 | |
---|
| 322 | if (!isset($params['section'])) |
---|
| 323 | { |
---|
[1788] | 324 | $params['section'] = 'none'; |
---|
[1109] | 325 | } |
---|
| 326 | |
---|
| 327 | switch($params['section']) |
---|
| 328 | { |
---|
| 329 | case 'categories' : |
---|
| 330 | { |
---|
| 331 | if (!isset($params['category'])) |
---|
| 332 | { |
---|
[1119] | 333 | $section_string.= '/categories'; |
---|
[1109] | 334 | } |
---|
| 335 | else |
---|
| 336 | { |
---|
[1861] | 337 | is_array($params['category']) or trigger_error( |
---|
| 338 | 'make_section_in_url wrong type for category', E_USER_WARNING |
---|
| 339 | ); |
---|
| 340 | is_numeric($params['category']['id']) or trigger_error( |
---|
| 341 | 'make_section_in_url category id not numeric', E_USER_WARNING |
---|
| 342 | ); |
---|
| 343 | isset($params['category']['name']) or trigger_error( |
---|
| 344 | 'make_section_in_url category name not set', E_USER_WARNING |
---|
| 345 | ); |
---|
| 346 | |
---|
[1866] | 347 | array_key_exists('permalink', $params['category']) or trigger_error( |
---|
| 348 | 'make_section_in_url category permalink not set', E_USER_WARNING |
---|
| 349 | ); |
---|
| 350 | |
---|
| 351 | $section_string.= '/category/'; |
---|
| 352 | if ( empty($params['category']['permalink']) ) |
---|
[1131] | 353 | { |
---|
[1866] | 354 | $section_string.= $params['category']['id']; |
---|
| 355 | if ( $conf['category_url_style']=='id-name' ) |
---|
| 356 | { |
---|
| 357 | $section_string.= '-'.str2url($params['category']['name']); |
---|
| 358 | } |
---|
[1131] | 359 | } |
---|
[1866] | 360 | else |
---|
| 361 | { |
---|
| 362 | $section_string.= $params['category']['permalink']; |
---|
| 363 | } |
---|
[1109] | 364 | } |
---|
| 365 | |
---|
| 366 | break; |
---|
| 367 | } |
---|
| 368 | case 'tags' : |
---|
| 369 | { |
---|
| 370 | if (!isset($params['tags']) or count($params['tags']) == 0) |
---|
| 371 | { |
---|
[1503] | 372 | die('make_section_in_url: require at least one tag'); |
---|
[1109] | 373 | } |
---|
| 374 | |
---|
| 375 | $section_string.= '/tags'; |
---|
| 376 | |
---|
| 377 | foreach ($params['tags'] as $tag) |
---|
| 378 | { |
---|
[1131] | 379 | switch ( $conf['tag_url_style'] ) |
---|
[1119] | 380 | { |
---|
[1131] | 381 | case 'id': |
---|
| 382 | $section_string.= '/'.$tag['id']; |
---|
| 383 | break; |
---|
| 384 | case 'tag': |
---|
| 385 | if (isset($tag['url_name']) and !is_numeric($tag['url_name']) ) |
---|
| 386 | { |
---|
| 387 | $section_string.= '/'.$tag['url_name']; |
---|
| 388 | break; |
---|
| 389 | } |
---|
| 390 | default: |
---|
| 391 | $section_string.= '/'.$tag['id']; |
---|
| 392 | if (isset($tag['url_name'])) |
---|
| 393 | { |
---|
| 394 | $section_string.= '-'.$tag['url_name']; |
---|
| 395 | } |
---|
[1119] | 396 | } |
---|
[1109] | 397 | } |
---|
| 398 | |
---|
| 399 | break; |
---|
| 400 | } |
---|
| 401 | case 'search' : |
---|
| 402 | { |
---|
| 403 | if (!isset($params['search'])) |
---|
| 404 | { |
---|
[1503] | 405 | die('make_section_in_url: require a search identifier'); |
---|
[1109] | 406 | } |
---|
| 407 | |
---|
| 408 | $section_string.= '/search/'.$params['search']; |
---|
| 409 | |
---|
| 410 | break; |
---|
| 411 | } |
---|
| 412 | case 'list' : |
---|
| 413 | { |
---|
| 414 | if (!isset($params['list'])) |
---|
| 415 | { |
---|
[1503] | 416 | die('make_section_in_url: require a list of items'); |
---|
[1109] | 417 | } |
---|
| 418 | |
---|
| 419 | $section_string.= '/list/'.implode(',', $params['list']); |
---|
| 420 | |
---|
| 421 | break; |
---|
| 422 | } |
---|
[1788] | 423 | case 'none' : |
---|
| 424 | { |
---|
| 425 | break; |
---|
| 426 | } |
---|
[1109] | 427 | default : |
---|
| 428 | { |
---|
| 429 | $section_string.= '/'.$params['section']; |
---|
| 430 | } |
---|
| 431 | } |
---|
| 432 | |
---|
| 433 | return $section_string; |
---|
| 434 | } |
---|
[1676] | 435 | |
---|
| 436 | /** |
---|
[1982] | 437 | * the reverse of make_section_in_url |
---|
| 438 | * returns the 'section' (categories/tags/...) and the data associated with it |
---|
| 439 | * |
---|
| 440 | * Depending on section, other parameters are returned (category/tags/list/...) |
---|
| 441 | * |
---|
| 442 | * @param array of url tokens to parse |
---|
| 443 | * @param int the index in the array of url tokens; in/out |
---|
| 444 | * @return array |
---|
| 445 | */ |
---|
| 446 | function parse_section_url( $tokens, &$next_token) |
---|
| 447 | { |
---|
| 448 | $page=array(); |
---|
| 449 | if (0 === strpos(@$tokens[$next_token], 'categor')) |
---|
| 450 | { |
---|
| 451 | $page['section'] = 'categories'; |
---|
| 452 | $next_token++; |
---|
| 453 | |
---|
| 454 | if (isset($tokens[$next_token]) ) |
---|
| 455 | { |
---|
| 456 | if (preg_match('/^(\d+)(?:-(.+))?$/', $tokens[$next_token], $matches)) |
---|
| 457 | { |
---|
| 458 | if ( isset($matches[2]) ) |
---|
| 459 | $page['hit_by']['cat_url_name'] = $matches[2]; |
---|
| 460 | $page['category'] = $matches[1]; |
---|
| 461 | $next_token++; |
---|
| 462 | } |
---|
| 463 | else |
---|
| 464 | { |
---|
| 465 | if ( strpos($tokens[$next_token], 'created-')!==0 |
---|
| 466 | and strpos($tokens[$next_token], 'posted-')!==0 |
---|
| 467 | and strpos($tokens[$next_token], 'start-')!==0 |
---|
| 468 | and $tokens[$next_token] != 'flat') |
---|
| 469 | {// try a permalink |
---|
| 470 | $cat_id = get_cat_id_from_permalink($tokens[$next_token]); |
---|
| 471 | if ( !isset($cat_id) ) |
---|
| 472 | {//try old permalink |
---|
| 473 | $cat_id = get_cat_id_from_old_permalink($tokens[$next_token], true); |
---|
| 474 | } |
---|
| 475 | if ( isset($cat_id) ) |
---|
| 476 | { |
---|
| 477 | $page['category'] = $cat_id; |
---|
| 478 | $page['hit_by']['cat_permalink'] = $tokens[$next_token]; |
---|
| 479 | } |
---|
| 480 | else |
---|
| 481 | { |
---|
| 482 | page_not_found('Permalink for album not found'); |
---|
| 483 | } |
---|
| 484 | $next_token++; |
---|
| 485 | } |
---|
| 486 | } |
---|
| 487 | } |
---|
| 488 | |
---|
| 489 | if (isset($page['category'])) |
---|
| 490 | { |
---|
| 491 | $result = get_cat_info($page['category']); |
---|
| 492 | if (empty($result)) |
---|
| 493 | { |
---|
| 494 | page_not_found('Requested category does not exist' ); |
---|
| 495 | } |
---|
| 496 | $page['category']=$result; |
---|
| 497 | } |
---|
| 498 | } |
---|
| 499 | else if (0 === strpos(@$tokens[$next_token], 'tag')) |
---|
| 500 | { |
---|
| 501 | $page['section'] = 'tags'; |
---|
| 502 | $page['tags'] = array(); |
---|
| 503 | |
---|
| 504 | $next_token++; |
---|
| 505 | $i = $next_token; |
---|
| 506 | |
---|
| 507 | $requested_tag_ids = array(); |
---|
| 508 | $requested_tag_url_names = array(); |
---|
| 509 | |
---|
| 510 | while (isset($tokens[$i])) |
---|
| 511 | { |
---|
| 512 | if ( preg_match('/^(created-|posted-|start-(\d)+)/', $tokens[$i]) ) |
---|
| 513 | break; |
---|
| 514 | |
---|
| 515 | if ( preg_match('/^(\d+)(?:-(.*))?/', $tokens[$i], $matches) ) |
---|
| 516 | { |
---|
| 517 | array_push($requested_tag_ids, $matches[1]); |
---|
| 518 | } |
---|
| 519 | else |
---|
| 520 | { |
---|
| 521 | array_push($requested_tag_url_names, $tokens[$i]); |
---|
| 522 | } |
---|
| 523 | $i++; |
---|
| 524 | } |
---|
| 525 | $next_token = $i; |
---|
| 526 | |
---|
| 527 | if ( empty($requested_tag_ids) && empty($requested_tag_url_names) ) |
---|
| 528 | { |
---|
| 529 | bad_request('at least one tag required'); |
---|
| 530 | } |
---|
| 531 | |
---|
| 532 | $page['tags'] = find_tags($requested_tag_ids, $requested_tag_url_names); |
---|
| 533 | if ( empty($page['tags']) ) |
---|
| 534 | { |
---|
| 535 | page_not_found('Requested tag does not exist', get_root_url().'tags.php' ); |
---|
| 536 | } |
---|
| 537 | } |
---|
| 538 | else if (0 === strpos(@$tokens[$next_token], 'fav')) |
---|
| 539 | { |
---|
| 540 | $page['section'] = 'favorites'; |
---|
| 541 | $next_token++; |
---|
| 542 | } |
---|
| 543 | else if ('most_visited' == @$tokens[$next_token]) |
---|
| 544 | { |
---|
| 545 | $page['section'] = 'most_visited'; |
---|
| 546 | $next_token++; |
---|
| 547 | } |
---|
| 548 | else if ('best_rated' == @$tokens[$next_token]) |
---|
| 549 | { |
---|
| 550 | $page['section'] = 'best_rated'; |
---|
| 551 | $next_token++; |
---|
| 552 | } |
---|
| 553 | else if ('recent_pics' == @$tokens[$next_token]) |
---|
| 554 | { |
---|
| 555 | $page['section'] = 'recent_pics'; |
---|
| 556 | $next_token++; |
---|
| 557 | } |
---|
| 558 | else if ('recent_cats' == @$tokens[$next_token]) |
---|
| 559 | { |
---|
| 560 | $page['section'] = 'recent_cats'; |
---|
| 561 | $next_token++; |
---|
| 562 | } |
---|
| 563 | else if ('search' == @$tokens[$next_token]) |
---|
| 564 | { |
---|
| 565 | $page['section'] = 'search'; |
---|
| 566 | $next_token++; |
---|
| 567 | |
---|
| 568 | preg_match('/(\d+)/', @$tokens[$next_token], $matches); |
---|
| 569 | if (!isset($matches[1])) |
---|
| 570 | { |
---|
| 571 | bad_request('search identifier is missing'); |
---|
| 572 | } |
---|
| 573 | $page['search'] = $matches[1]; |
---|
| 574 | $next_token++; |
---|
| 575 | } |
---|
| 576 | else if ('list' == @$tokens[$next_token]) |
---|
| 577 | { |
---|
| 578 | $page['section'] = 'list'; |
---|
| 579 | $next_token++; |
---|
| 580 | |
---|
| 581 | $page['list'] = array(); |
---|
| 582 | |
---|
| 583 | // No pictures |
---|
| 584 | if (empty($tokens[$next_token])) |
---|
| 585 | { |
---|
| 586 | // Add dummy element list |
---|
| 587 | array_push($page['list'], -1); |
---|
| 588 | } |
---|
| 589 | // With pictures list |
---|
| 590 | else |
---|
| 591 | { |
---|
| 592 | if (!preg_match('/^\d+(,\d+)*$/', $tokens[$next_token])) |
---|
| 593 | { |
---|
| 594 | bad_request('wrong format on list GET parameter'); |
---|
| 595 | } |
---|
| 596 | foreach (explode(',', $tokens[$next_token]) as $image_id) |
---|
| 597 | { |
---|
| 598 | array_push($page['list'], $image_id); |
---|
| 599 | } |
---|
| 600 | } |
---|
| 601 | $next_token++; |
---|
| 602 | } |
---|
| 603 | return $page; |
---|
| 604 | } |
---|
| 605 | |
---|
| 606 | /** |
---|
| 607 | * the reverse of add_well_known_params_in_url |
---|
| 608 | * parses start, flat and chronology from url tokens |
---|
| 609 | */ |
---|
| 610 | function parse_well_known_params_url($tokens, $i) |
---|
| 611 | { |
---|
| 612 | $page = array(); |
---|
| 613 | while (isset($tokens[$i])) |
---|
| 614 | { |
---|
| 615 | if (preg_match('/^start-(\d+)/', $tokens[$i], $matches)) |
---|
| 616 | { |
---|
| 617 | $page['start'] = $matches[1]; |
---|
| 618 | } |
---|
| 619 | |
---|
| 620 | if ( 'flat' == $tokens[$i] ) |
---|
| 621 | { |
---|
| 622 | // indicate a special list of images |
---|
| 623 | $page['flat'] = true; |
---|
| 624 | } |
---|
| 625 | |
---|
| 626 | if (preg_match('/^(posted|created)/', $tokens[$i] )) |
---|
| 627 | { |
---|
| 628 | $chronology_tokens = explode('-', $tokens[$i] ); |
---|
| 629 | |
---|
| 630 | $page['chronology_field'] = $chronology_tokens[0]; |
---|
| 631 | |
---|
| 632 | array_shift($chronology_tokens); |
---|
| 633 | $page['chronology_style'] = $chronology_tokens[0]; |
---|
| 634 | |
---|
| 635 | array_shift($chronology_tokens); |
---|
| 636 | if ( count($chronology_tokens)>0 ) |
---|
| 637 | { |
---|
| 638 | if ('list'==$chronology_tokens[0] or |
---|
| 639 | 'calendar'==$chronology_tokens[0]) |
---|
| 640 | { |
---|
| 641 | $page['chronology_view'] = $chronology_tokens[0]; |
---|
| 642 | array_shift($chronology_tokens); |
---|
| 643 | } |
---|
| 644 | $page['chronology_date'] = $chronology_tokens; |
---|
| 645 | } |
---|
| 646 | } |
---|
| 647 | $i++; |
---|
| 648 | } |
---|
| 649 | return $page; |
---|
| 650 | } |
---|
| 651 | |
---|
| 652 | /** |
---|
[1676] | 653 | * Indicate to build url with full path |
---|
| 654 | * |
---|
| 655 | * @param null |
---|
| 656 | * @return null |
---|
| 657 | */ |
---|
| 658 | function set_make_full_url() |
---|
| 659 | { |
---|
| 660 | global $page; |
---|
| 661 | |
---|
| 662 | if (!isset($page['save_root_path'])) |
---|
| 663 | { |
---|
| 664 | if (isset($page['root_path'])) |
---|
| 665 | { |
---|
| 666 | $page['save_root_path']['path'] = $page['root_path']; |
---|
| 667 | } |
---|
| 668 | $page['save_root_path']['count'] = 1; |
---|
[1750] | 669 | $page['root_path'] = get_absolute_root_url(); |
---|
[1676] | 670 | } |
---|
| 671 | else |
---|
| 672 | { |
---|
| 673 | $page['save_root_path']['count'] += 1; |
---|
| 674 | } |
---|
| 675 | } |
---|
| 676 | |
---|
| 677 | /** |
---|
| 678 | * Restore old parameter to build url with full path |
---|
| 679 | * |
---|
| 680 | * @param null |
---|
| 681 | * @return null |
---|
| 682 | */ |
---|
| 683 | function unset_make_full_url() |
---|
| 684 | { |
---|
| 685 | global $page; |
---|
| 686 | |
---|
| 687 | if (isset($page['save_root_path'])) |
---|
| 688 | { |
---|
| 689 | if ($page['save_root_path']['count'] == 1) |
---|
| 690 | { |
---|
| 691 | if (isset($page['save_root_path']['path'])) |
---|
| 692 | { |
---|
| 693 | $page['root_path'] = $page['save_root_path']['path']; |
---|
| 694 | } |
---|
| 695 | else |
---|
| 696 | { |
---|
| 697 | unset($page['root_path']); |
---|
| 698 | } |
---|
| 699 | unset($page['save_root_path']); |
---|
| 700 | } |
---|
| 701 | else |
---|
| 702 | { |
---|
| 703 | $page['save_root_path']['count'] -= 1; |
---|
| 704 | } |
---|
| 705 | } |
---|
| 706 | } |
---|
| 707 | |
---|
[1109] | 708 | ?> |
---|