[1021] | 1 | <?php |
---|
| 2 | // +-----------------------------------------------------------------------+ |
---|
[8728] | 3 | // | Piwigo - a PHP based photo gallery | |
---|
[2297] | 4 | // +-----------------------------------------------------------------------+ |
---|
[26461] | 5 | // | Copyright(C) 2008-2014 Piwigo Team http://piwigo.org | |
---|
[2297] | 6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
| 7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
| 8 | // +-----------------------------------------------------------------------+ |
---|
| 9 | // | This program is free software; you can redistribute it and/or modify | |
---|
| 10 | // | it under the terms of the GNU General Public License as published by | |
---|
| 11 | // | the Free Software Foundation | |
---|
| 12 | // | | |
---|
| 13 | // | This program is distributed in the hope that it will be useful, but | |
---|
| 14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
| 15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
| 16 | // | General Public License for more details. | |
---|
| 17 | // | | |
---|
| 18 | // | You should have received a copy of the GNU General Public License | |
---|
| 19 | // | along with this program; if not, write to the Free Software | |
---|
| 20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
| 21 | // | USA. | |
---|
| 22 | // +-----------------------------------------------------------------------+ |
---|
[1021] | 23 | |
---|
[25578] | 24 | /** |
---|
| 25 | * @package functions\notification |
---|
| 26 | */ |
---|
[1789] | 27 | |
---|
[25578] | 28 | |
---|
| 29 | /** |
---|
| 30 | * Get standard sql where in order to restrict and filter categories and images. |
---|
| 31 | * IMAGE_CATEGORY_TABLE must be named "ic" in the query |
---|
[1789] | 32 | * |
---|
[25578] | 33 | * @param string $prefix_condition |
---|
| 34 | * @param string $img_field |
---|
| 35 | * @param bool $force_one_condition |
---|
| 36 | * @return string |
---|
[1789] | 37 | */ |
---|
[25578] | 38 | function get_std_sql_where_restrict_filter($prefix_condition, |
---|
| 39 | $img_field = 'ic.image_id', |
---|
| 40 | $force_one_condition = false) |
---|
[1677] | 41 | { |
---|
[25578] | 42 | return get_sql_condition_FandF( |
---|
| 43 | array( |
---|
| 44 | 'forbidden_categories' => 'ic.category_id', |
---|
| 45 | 'visible_categories' => 'ic.category_id', |
---|
| 46 | 'visible_images' => $img_field |
---|
| 47 | ), |
---|
| 48 | $prefix_condition, |
---|
| 49 | $force_one_condition |
---|
| 50 | ); |
---|
[1789] | 51 | } |
---|
[1021] | 52 | |
---|
[25578] | 53 | /** |
---|
| 54 | * Execute custom notification query. |
---|
[25602] | 55 | * @todo use a cache for all data returned by custom_notification_query() |
---|
[1021] | 56 | * |
---|
[25578] | 57 | * @param string $action 'count', 'info' |
---|
| 58 | * @param string $type 'new_comments', 'unvalidated_comments', 'new_elements', 'updated_categories', 'new_users' |
---|
| 59 | * @param string $start (mysql datetime format) |
---|
| 60 | * @param string $end (mysql datetime format) |
---|
| 61 | * @return int|array int for action count array for info |
---|
[1021] | 62 | */ |
---|
[25578] | 63 | function custom_notification_query($action, $type, $start=null, $end=null) |
---|
[1021] | 64 | { |
---|
| 65 | global $user; |
---|
[1789] | 66 | |
---|
[1112] | 67 | switch($type) |
---|
| 68 | { |
---|
| 69 | case 'new_comments': |
---|
[25578] | 70 | { |
---|
[1112] | 71 | $query = ' |
---|
[1021] | 72 | FROM '.COMMENTS_TABLE.' AS c |
---|
[25578] | 73 | INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON c.image_id = ic.image_id |
---|
| 74 | WHERE 1=1'; |
---|
[6597] | 75 | if (!empty($start)) |
---|
| 76 | { |
---|
[25578] | 77 | $query.= ' |
---|
[6597] | 78 | AND c.validation_date > \''.$start.'\''; |
---|
| 79 | } |
---|
| 80 | if (!empty($end)) |
---|
| 81 | { |
---|
[25578] | 82 | $query.= ' |
---|
[6597] | 83 | AND c.validation_date <= \''.$end.'\''; |
---|
| 84 | } |
---|
[25578] | 85 | $query.= get_std_sql_where_restrict_filter('AND'); |
---|
[1112] | 86 | break; |
---|
[25578] | 87 | } |
---|
| 88 | |
---|
[1112] | 89 | case 'unvalidated_comments': |
---|
[25578] | 90 | { |
---|
[1112] | 91 | $query = ' |
---|
| 92 | FROM '.COMMENTS_TABLE.' |
---|
[6597] | 93 | WHERE 1=1'; |
---|
| 94 | if (!empty($start)) |
---|
| 95 | { |
---|
[25578] | 96 | $query.= ' |
---|
| 97 | AND date > \''.$start.'\''; |
---|
[6597] | 98 | } |
---|
| 99 | if (!empty($end)) |
---|
[6668] | 100 | { |
---|
[25578] | 101 | $query.= ' |
---|
| 102 | AND date <= \''.$end.'\''; |
---|
[6597] | 103 | } |
---|
[25578] | 104 | $query.= ' |
---|
| 105 | AND validated = \'false\''; |
---|
[1112] | 106 | break; |
---|
[25578] | 107 | } |
---|
| 108 | |
---|
[1112] | 109 | case 'new_elements': |
---|
[25578] | 110 | { |
---|
[1112] | 111 | $query = ' |
---|
[25578] | 112 | FROM '.IMAGES_TABLE.' |
---|
| 113 | INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON image_id = id |
---|
[6597] | 114 | WHERE 1=1'; |
---|
| 115 | if (!empty($start)) |
---|
| 116 | { |
---|
[25578] | 117 | $query.= ' |
---|
| 118 | AND date_available > \''.$start.'\''; |
---|
[6597] | 119 | } |
---|
| 120 | if (!empty($end)) |
---|
| 121 | { |
---|
[25578] | 122 | $query.= ' |
---|
| 123 | AND date_available <= \''.$end.'\''; |
---|
[6597] | 124 | } |
---|
[25578] | 125 | $query.= get_std_sql_where_restrict_filter('AND', 'id'); |
---|
[1112] | 126 | break; |
---|
[25578] | 127 | } |
---|
| 128 | |
---|
[1112] | 129 | case 'updated_categories': |
---|
[25578] | 130 | { |
---|
[1112] | 131 | $query = ' |
---|
[25578] | 132 | FROM '.IMAGES_TABLE.' |
---|
| 133 | INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON image_id = id |
---|
[6597] | 134 | WHERE 1=1'; |
---|
| 135 | if (!empty($start)) |
---|
| 136 | { |
---|
[25578] | 137 | $query.= ' |
---|
| 138 | AND date_available > \''.$start.'\''; |
---|
[6597] | 139 | } |
---|
| 140 | if (!empty($end)) |
---|
| 141 | { |
---|
[25578] | 142 | $query.= ' |
---|
| 143 | AND date_available <= \''.$end.'\''; |
---|
[6597] | 144 | } |
---|
[25578] | 145 | $query.= get_std_sql_where_restrict_filter('AND', 'id'); |
---|
[1112] | 146 | break; |
---|
[25578] | 147 | } |
---|
| 148 | |
---|
[1432] | 149 | case 'new_users': |
---|
[25578] | 150 | { |
---|
[1112] | 151 | $query = ' |
---|
| 152 | FROM '.USER_INFOS_TABLE.' |
---|
[6597] | 153 | WHERE 1=1'; |
---|
| 154 | if (!empty($start)) |
---|
| 155 | { |
---|
[25578] | 156 | $query.= ' |
---|
| 157 | AND registration_date > \''.$start.'\''; |
---|
[6597] | 158 | } |
---|
| 159 | if (!empty($end)) |
---|
| 160 | { |
---|
[25578] | 161 | $query.= ' |
---|
| 162 | AND registration_date <= \''.$end.'\''; |
---|
[6597] | 163 | } |
---|
[1112] | 164 | break; |
---|
[25578] | 165 | } |
---|
| 166 | |
---|
[1112] | 167 | default: |
---|
[25578] | 168 | return null; // stop and return nothing |
---|
[1112] | 169 | } |
---|
| 170 | |
---|
| 171 | switch($action) |
---|
| 172 | { |
---|
| 173 | case 'count': |
---|
[25578] | 174 | { |
---|
[1112] | 175 | switch($type) |
---|
| 176 | { |
---|
| 177 | case 'new_comments': |
---|
| 178 | $field_id = 'c.id'; |
---|
| 179 | break; |
---|
| 180 | case 'unvalidated_comments': |
---|
| 181 | $field_id = 'id'; |
---|
| 182 | break; |
---|
| 183 | case 'new_elements': |
---|
| 184 | $field_id = 'image_id'; |
---|
| 185 | break; |
---|
| 186 | case 'updated_categories': |
---|
| 187 | $field_id = 'category_id'; |
---|
| 188 | break; |
---|
[1432] | 189 | case 'new_users': |
---|
[1112] | 190 | $field_id = 'user_id'; |
---|
| 191 | break; |
---|
[25578] | 192 | } |
---|
| 193 | $query = 'SELECT COUNT(DISTINCT '.$field_id.') '.$query.';'; |
---|
| 194 | list($count) = pwg_db_fetch_row(pwg_query($query)); |
---|
| 195 | return $count; |
---|
| 196 | break; |
---|
[1112] | 197 | } |
---|
[1549] | 198 | |
---|
[1112] | 199 | case 'info': |
---|
[25578] | 200 | { |
---|
[1112] | 201 | switch($type) |
---|
| 202 | { |
---|
| 203 | case 'new_comments': |
---|
[25578] | 204 | $field_id = 'c.id'; |
---|
[1112] | 205 | break; |
---|
| 206 | case 'unvalidated_comments': |
---|
[25578] | 207 | $field_id = 'id'; |
---|
[1112] | 208 | break; |
---|
| 209 | case 'new_elements': |
---|
[25578] | 210 | $field_id = 'image_id'; |
---|
[1112] | 211 | break; |
---|
| 212 | case 'updated_categories': |
---|
[25578] | 213 | $field_id = 'category_id'; |
---|
[1112] | 214 | break; |
---|
[1432] | 215 | case 'new_users': |
---|
[25578] | 216 | $field_id = 'user_id'; |
---|
[1112] | 217 | break; |
---|
| 218 | } |
---|
[25578] | 219 | $query = 'SELECT DISTINCT '.$field_id.' '.$query.';'; |
---|
[27369] | 220 | $infos = query2array($query); |
---|
[25578] | 221 | return $infos; |
---|
| 222 | break; |
---|
[1112] | 223 | } |
---|
| 224 | |
---|
[25578] | 225 | default: |
---|
| 226 | return null; // stop and return nothing |
---|
[1112] | 227 | } |
---|
[1021] | 228 | } |
---|
| 229 | |
---|
| 230 | /** |
---|
[25578] | 231 | * Returns number of new comments between two dates. |
---|
[1112] | 232 | * |
---|
[25578] | 233 | * @param string $start (mysql datetime format) |
---|
| 234 | * @param string $end (mysql datetime format) |
---|
| 235 | * @return int |
---|
[1112] | 236 | */ |
---|
[25578] | 237 | function nb_new_comments($start=null, $end=null) |
---|
[1112] | 238 | { |
---|
| 239 | return custom_notification_query('count', 'new_comments', $start, $end); |
---|
| 240 | } |
---|
| 241 | |
---|
| 242 | /** |
---|
[25578] | 243 | * Returns new comments between two dates. |
---|
[1112] | 244 | * |
---|
[25578] | 245 | * @param string $start (mysql datetime format) |
---|
| 246 | * @param string $end (mysql datetime format) |
---|
| 247 | * @return int[] comment ids |
---|
[1112] | 248 | */ |
---|
[25578] | 249 | function new_comments($start=null, $end=null) |
---|
[1112] | 250 | { |
---|
| 251 | return custom_notification_query('info', 'new_comments', $start, $end); |
---|
| 252 | } |
---|
| 253 | |
---|
| 254 | /** |
---|
[25578] | 255 | * Returns number of unvalidated comments between two dates. |
---|
[1021] | 256 | * |
---|
[25578] | 257 | * @param string $start (mysql datetime format) |
---|
| 258 | * @param string $end (mysql datetime format) |
---|
| 259 | * @return int |
---|
[1112] | 260 | */ |
---|
[25578] | 261 | function nb_unvalidated_comments($start=null, $end=null) |
---|
[1112] | 262 | { |
---|
[2159] | 263 | return custom_notification_query('count', 'unvalidated_comments', $start, $end); |
---|
[1112] | 264 | } |
---|
| 265 | |
---|
[1021] | 266 | |
---|
| 267 | /** |
---|
[25578] | 268 | * Returns number of new photos between two dates. |
---|
[1021] | 269 | * |
---|
[25578] | 270 | * @param string $start (mysql datetime format) |
---|
| 271 | * @param string $end (mysql datetime format) |
---|
| 272 | * @return int |
---|
[1112] | 273 | */ |
---|
[25578] | 274 | function nb_new_elements($start=null, $end=null) |
---|
[1112] | 275 | { |
---|
| 276 | return custom_notification_query('count', 'new_elements', $start, $end); |
---|
| 277 | } |
---|
| 278 | |
---|
| 279 | /** |
---|
[25578] | 280 | * Returns new photos between two dates.es |
---|
[1112] | 281 | * |
---|
[25578] | 282 | * @param string $start (mysql datetime format) |
---|
| 283 | * @param string $end (mysql datetime format) |
---|
| 284 | * @return int[] photos ids |
---|
[1021] | 285 | */ |
---|
[25578] | 286 | function new_elements($start=null, $end=null) |
---|
[1021] | 287 | { |
---|
[1112] | 288 | return custom_notification_query('info', 'new_elements', $start, $end); |
---|
[1021] | 289 | } |
---|
| 290 | |
---|
| 291 | /** |
---|
[25578] | 292 | * Returns number of updated categories between two dates. |
---|
[1021] | 293 | * |
---|
[25578] | 294 | * @param string $start (mysql datetime format) |
---|
| 295 | * @param string $end (mysql datetime format) |
---|
| 296 | * @return int |
---|
[1112] | 297 | */ |
---|
[25578] | 298 | function nb_updated_categories($start=null, $end=null) |
---|
[1112] | 299 | { |
---|
| 300 | return custom_notification_query('count', 'updated_categories', $start, $end); |
---|
| 301 | } |
---|
| 302 | |
---|
| 303 | /** |
---|
[25578] | 304 | * Returns updated categories between two dates. |
---|
[1112] | 305 | * |
---|
[25578] | 306 | * @param string $start (mysql datetime format) |
---|
| 307 | * @param string $end (mysql datetime format) |
---|
| 308 | * @return int[] categories ids |
---|
[1021] | 309 | */ |
---|
[25578] | 310 | function updated_categories($start=null, $end=null) |
---|
[1021] | 311 | { |
---|
[1112] | 312 | return custom_notification_query('info', 'updated_categories', $start, $end); |
---|
[1021] | 313 | } |
---|
| 314 | |
---|
| 315 | /** |
---|
[25578] | 316 | * Returns number of new users between two dates. |
---|
[1021] | 317 | * |
---|
[25578] | 318 | * @param string $start (mysql datetime format) |
---|
| 319 | * @param string $end (mysql datetime format) |
---|
| 320 | * @return int |
---|
[1112] | 321 | */ |
---|
[25578] | 322 | function nb_new_users($start=null, $end=null) |
---|
[1112] | 323 | { |
---|
| 324 | return custom_notification_query('count', 'new_users', $start, $end); |
---|
| 325 | } |
---|
| 326 | |
---|
| 327 | /** |
---|
[25578] | 328 | * Returns new users between two dates. |
---|
[1112] | 329 | * |
---|
[25578] | 330 | * @param string $start (mysql datetime format) |
---|
| 331 | * @param string $end (mysql datetime format) |
---|
| 332 | * @return int[] user ids |
---|
[1021] | 333 | */ |
---|
[25578] | 334 | function new_users($start=null, $end=null) |
---|
[1021] | 335 | { |
---|
[1112] | 336 | return custom_notification_query('info', 'new_users', $start, $end); |
---|
[1021] | 337 | } |
---|
| 338 | |
---|
| 339 | /** |
---|
[25578] | 340 | * Returns if there was new activity between two dates. |
---|
[1112] | 341 | * |
---|
[25578] | 342 | * Takes in account: number of new comments, number of new elements, number of |
---|
| 343 | * updated categories. Administrators are also informed about: number of |
---|
| 344 | * unvalidated comments, number of new users. |
---|
[25602] | 345 | * @todo number of unvalidated elements |
---|
[1112] | 346 | * |
---|
[25578] | 347 | * @param string $start (mysql datetime format) |
---|
| 348 | * @param string $end (mysql datetime format) |
---|
| 349 | * @return boolean |
---|
[1112] | 350 | */ |
---|
[25578] | 351 | function news_exists($start=null, $end=null) |
---|
[1112] | 352 | { |
---|
| 353 | return ( |
---|
| 354 | (nb_new_comments($start, $end) > 0) or |
---|
| 355 | (nb_new_elements($start, $end) > 0) or |
---|
| 356 | (nb_updated_categories($start, $end) > 0) or |
---|
[2159] | 357 | ((is_admin()) and (nb_unvalidated_comments($start, $end) > 0)) or |
---|
[8664] | 358 | ((is_admin()) and (nb_new_users($start, $end) > 0))); |
---|
[1021] | 359 | } |
---|
| 360 | |
---|
| 361 | /** |
---|
[1549] | 362 | * Formats a news line and adds it to the array (e.g. '5 new elements') |
---|
[25578] | 363 | * |
---|
[25658] | 364 | * @param array &$news |
---|
[25578] | 365 | * @param int $count |
---|
| 366 | * @param string $singular_key |
---|
| 367 | * @param string $plural_key |
---|
| 368 | * @param string $url |
---|
| 369 | * @param bool $add_url |
---|
[1549] | 370 | */ |
---|
[25578] | 371 | function add_news_line(&$news, $count, $singular_key, $plural_key, $url='', $add_url=false) |
---|
[1549] | 372 | { |
---|
| 373 | if ($count > 0) |
---|
| 374 | { |
---|
[25578] | 375 | $line = l10n_dec($singular_key, $plural_key, $count); |
---|
[1549] | 376 | if ($add_url and !empty($url) ) |
---|
| 377 | { |
---|
| 378 | $line = '<a href="'.$url.'">'.$line.'</a>'; |
---|
| 379 | } |
---|
[25018] | 380 | $news[] = $line; |
---|
[1549] | 381 | } |
---|
| 382 | } |
---|
| 383 | |
---|
| 384 | /** |
---|
[25578] | 385 | * Returns new activity between two dates. |
---|
[1021] | 386 | * |
---|
[25578] | 387 | * Takes in account: number of new comments, number of new elements, number of |
---|
| 388 | * updated categories. Administrators are also informed about: number of |
---|
| 389 | * unvalidated comments, number of new users. |
---|
[25602] | 390 | * @todo number of unvalidated elements |
---|
[1021] | 391 | * |
---|
[25578] | 392 | * @param string $start (mysql datetime format) |
---|
| 393 | * @param string $end (mysql datetime format) |
---|
| 394 | * @param bool $exclude_img_cats if true, no info about new images/categories |
---|
| 395 | * @param bool $add_url add html link around news |
---|
| 396 | * @return array |
---|
[1021] | 397 | */ |
---|
[25578] | 398 | function news($start=null, $end=null, $exclude_img_cats=false, $add_url=false) |
---|
[1021] | 399 | { |
---|
[1112] | 400 | $news = array(); |
---|
[1021] | 401 | |
---|
[1549] | 402 | if (!$exclude_img_cats) |
---|
[1021] | 403 | { |
---|
[1639] | 404 | add_news_line( $news, |
---|
[8665] | 405 | nb_new_elements($start, $end), '%d new photo', '%d new photos', |
---|
[1789] | 406 | make_index_url(array('section'=>'recent_pics')), $add_url ); |
---|
[1021] | 407 | } |
---|
| 408 | |
---|
[1549] | 409 | if (!$exclude_img_cats) |
---|
[1639] | 410 | { |
---|
| 411 | add_news_line( $news, |
---|
[6951] | 412 | nb_updated_categories($start, $end), '%d album updated', '%d albums updated', |
---|
[1789] | 413 | make_index_url(array('section'=>'recent_cats')), $add_url ); |
---|
[1021] | 414 | } |
---|
| 415 | |
---|
[1549] | 416 | add_news_line( $news, |
---|
[1637] | 417 | nb_new_comments($start, $end), '%d new comment', '%d new comments', |
---|
[1549] | 418 | get_root_url().'comments.php', $add_url ); |
---|
| 419 | |
---|
[1070] | 420 | if (is_admin()) |
---|
[1021] | 421 | { |
---|
[1549] | 422 | add_news_line( $news, |
---|
[2159] | 423 | nb_unvalidated_comments($start, $end), '%d comment to validate', '%d comments to validate', |
---|
[1549] | 424 | get_root_url().'admin.php?page=comments', $add_url ); |
---|
[1021] | 425 | |
---|
[1549] | 426 | add_news_line( $news, |
---|
[1637] | 427 | nb_new_users($start, $end), '%d new user', '%d new users', |
---|
[1550] | 428 | get_root_url().'admin.php?page=user_list', $add_url ); |
---|
[1021] | 429 | } |
---|
| 430 | |
---|
| 431 | return $news; |
---|
| 432 | } |
---|
| 433 | |
---|
[1639] | 434 | /** |
---|
[25578] | 435 | * Returns information about recently published elements grouped by post date. |
---|
| 436 | * |
---|
| 437 | * @param int $max_dates maximum number of recent dates |
---|
| 438 | * @param int $max_elements maximum number of elements per date |
---|
| 439 | * @param int $max_cats maximum number of categories per date |
---|
| 440 | * @return array |
---|
[1639] | 441 | */ |
---|
| 442 | function get_recent_post_dates($max_dates, $max_elements, $max_cats) |
---|
| 443 | { |
---|
[28560] | 444 | global $conf, $user, $persistent_cache; |
---|
[1639] | 445 | |
---|
[28560] | 446 | $cache_key = $persistent_cache->make_key('recent_posts'.$user['id'].$user['cache_update_time'].$max_dates.$max_elements.$max_cats); |
---|
| 447 | if ($persistent_cache->get($cache_key, $cached)) |
---|
| 448 | { |
---|
| 449 | return $cached; |
---|
| 450 | } |
---|
[2543] | 451 | $where_sql = get_std_sql_where_restrict_filter('WHERE', 'i.id', true); |
---|
[1639] | 452 | |
---|
| 453 | $query = ' |
---|
[25578] | 454 | SELECT |
---|
| 455 | date_available, |
---|
| 456 | COUNT(DISTINCT id) AS nb_elements, |
---|
| 457 | COUNT(DISTINCT category_id) AS nb_cats |
---|
[2543] | 458 | FROM '.IMAGES_TABLE.' i INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON id=image_id |
---|
[1639] | 459 | '.$where_sql.' |
---|
| 460 | GROUP BY date_available |
---|
| 461 | ORDER BY date_available DESC |
---|
[4334] | 462 | LIMIT '.$max_dates.' |
---|
[1639] | 463 | ;'; |
---|
[27369] | 464 | $dates = query2array($query); |
---|
[1639] | 465 | |
---|
| 466 | for ($i=0; $i<count($dates); $i++) |
---|
| 467 | { |
---|
| 468 | if ($max_elements>0) |
---|
| 469 | { // get some thumbnails ... |
---|
| 470 | $query = ' |
---|
[12917] | 471 | SELECT DISTINCT i.* |
---|
[25578] | 472 | FROM '.IMAGES_TABLE.' i |
---|
| 473 | INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON id=image_id |
---|
[1639] | 474 | '.$where_sql.' |
---|
[6597] | 475 | AND date_available=\''.$dates[$i]['date_available'].'\' |
---|
[4542] | 476 | ORDER BY '.DB_RANDOM_FUNCTION.'() |
---|
[4334] | 477 | LIMIT '.$max_elements.' |
---|
[1639] | 478 | ;'; |
---|
[27369] | 479 | $dates[$i]['elements'] = query2array($query); |
---|
[1639] | 480 | } |
---|
| 481 | |
---|
| 482 | if ($max_cats>0) |
---|
| 483 | {// get some categories ... |
---|
| 484 | $query = ' |
---|
[25578] | 485 | SELECT |
---|
| 486 | DISTINCT c.uppercats, |
---|
| 487 | COUNT(DISTINCT i.id) AS img_count |
---|
| 488 | FROM '.IMAGES_TABLE.' i |
---|
| 489 | INNER JOIN '.IMAGE_CATEGORY_TABLE.' AS ic ON i.id=image_id |
---|
[1639] | 490 | INNER JOIN '.CATEGORIES_TABLE.' c ON c.id=category_id |
---|
| 491 | '.$where_sql.' |
---|
[6597] | 492 | AND date_available=\''.$dates[$i]['date_available'].'\' |
---|
| 493 | GROUP BY category_id, c.uppercats |
---|
[1639] | 494 | ORDER BY img_count DESC |
---|
[4334] | 495 | LIMIT '.$max_cats.' |
---|
[1639] | 496 | ;'; |
---|
[27369] | 497 | $dates[$i]['categories'] = query2array($query); |
---|
[1639] | 498 | } |
---|
| 499 | } |
---|
[25578] | 500 | |
---|
[28560] | 501 | $persistent_cache->set($cache_key, $dates); |
---|
[1639] | 502 | return $dates; |
---|
[1789] | 503 | } |
---|
[1784] | 504 | |
---|
[25578] | 505 | /** |
---|
| 506 | * Returns information about recently published elements grouped by post date. |
---|
| 507 | * Same as get_recent_post_dates() but parameters as an indexed array. |
---|
| 508 | * @see get_recent_post_dates() |
---|
| 509 | * |
---|
| 510 | * @param array $args |
---|
| 511 | * @return array |
---|
| 512 | */ |
---|
[1871] | 513 | function get_recent_post_dates_array($args) |
---|
| 514 | { |
---|
[25578] | 515 | return get_recent_post_dates( |
---|
| 516 | (empty($args['max_dates']) ? 3 : $args['max_dates']), |
---|
| 517 | (empty($args['max_elements']) ? 3 : $args['max_elements']), |
---|
| 518 | (empty($args['max_cats']) ? 3 : $args['max_cats']) |
---|
[1871] | 519 | ); |
---|
| 520 | } |
---|
| 521 | |
---|
| 522 | |
---|
[1789] | 523 | /** |
---|
[25578] | 524 | * Returns html description about recently published elements grouped by post date. |
---|
[25602] | 525 | * @todo clean up HTML output, currently messy and invalid ! |
---|
[25578] | 526 | * |
---|
| 527 | * @param array $date_detail returned value of get_recent_post_dates() |
---|
| 528 | * @return string |
---|
[1789] | 529 | */ |
---|
| 530 | function get_html_description_recent_post_date($date_detail) |
---|
| 531 | { |
---|
| 532 | global $conf; |
---|
| 533 | |
---|
[3257] | 534 | $description = '<ul>'; |
---|
[2159] | 535 | |
---|
[1789] | 536 | $description .= |
---|
| 537 | '<li>' |
---|
[8665] | 538 | .l10n_dec('%d new photo', '%d new photos', $date_detail['nb_elements']) |
---|
[1789] | 539 | .' (' |
---|
| 540 | .'<a href="'.make_index_url(array('section'=>'recent_pics')).'">' |
---|
[8664] | 541 | .l10n('Recent photos').'</a>' |
---|
[1789] | 542 | .')' |
---|
[3185] | 543 | .'</li><br>'; |
---|
[1789] | 544 | |
---|
| 545 | foreach($date_detail['elements'] as $element) |
---|
| 546 | { |
---|
[12796] | 547 | $tn_src = DerivativeImage::thumb_url($element); |
---|
[1802] | 548 | $description .= '<a href="'. |
---|
[1814] | 549 | make_picture_url(array( |
---|
| 550 | 'image_id' => $element['id'], |
---|
| 551 | 'image_file' => $element['file'], |
---|
| 552 | )) |
---|
[3185] | 553 | .'"><img src="'.$tn_src.'"></a>'; |
---|
[1789] | 554 | } |
---|
[3185] | 555 | $description .= '...<br>'; |
---|
[1789] | 556 | |
---|
| 557 | $description .= |
---|
| 558 | '<li>' |
---|
[25018] | 559 | .l10n_dec('%d album updated', '%d albums updated', $date_detail['nb_cats']) |
---|
[1789] | 560 | .'</li>'; |
---|
| 561 | |
---|
| 562 | $description .= '<ul>'; |
---|
| 563 | foreach($date_detail['categories'] as $cat) |
---|
| 564 | { |
---|
| 565 | $description .= |
---|
| 566 | '<li>' |
---|
| 567 | .get_cat_display_name_cache($cat['uppercats']) |
---|
| 568 | .' ('. |
---|
[25018] | 569 | l10n_dec('%d new photo', '%d new photos', $cat['img_count']).')' |
---|
[1789] | 570 | .'</li>'; |
---|
| 571 | } |
---|
| 572 | $description .= '</ul>'; |
---|
| 573 | |
---|
[3257] | 574 | $description .= '</ul>'; |
---|
| 575 | |
---|
[1789] | 576 | return $description; |
---|
| 577 | } |
---|
| 578 | |
---|
| 579 | /** |
---|
[25578] | 580 | * Returns title about recently published elements grouped by post date. |
---|
| 581 | * |
---|
| 582 | * @param array $date_detail returned value of get_recent_post_dates() |
---|
| 583 | * @return string |
---|
[1789] | 584 | */ |
---|
| 585 | function get_title_recent_post_date($date_detail) |
---|
| 586 | { |
---|
| 587 | global $lang; |
---|
| 588 | |
---|
| 589 | $date = $date_detail['date_available']; |
---|
[6662] | 590 | $exploded_date = strptime($date, '%Y-%m-%d %H:%M:%S'); |
---|
[1789] | 591 | |
---|
[8665] | 592 | $title = l10n_dec('%d new photo', '%d new photos', $date_detail['nb_elements']); |
---|
[6668] | 593 | $title .= ' ('.$lang['month'][1+$exploded_date['tm_mon']].' '.$exploded_date['tm_mday'].')'; |
---|
[1789] | 594 | |
---|
| 595 | return $title; |
---|
| 596 | } |
---|
| 597 | |
---|
[25578] | 598 | if (!function_exists('strptime')) |
---|
[6668] | 599 | { |
---|
[25578] | 600 | function strptime($date, $fmt) |
---|
| 601 | { |
---|
| 602 | if ($fmt != '%Y-%m-%d %H:%M:%S') |
---|
| 603 | die('Invalid strptime format '.$fmt); |
---|
| 604 | list($y,$m,$d,$H,$M,$S) = preg_split('/[-: ]/', $date); |
---|
| 605 | $res = localtime( mktime($H,$M,$S,$m,$d,$y), true ); |
---|
| 606 | return $res; |
---|
| 607 | } |
---|
| 608 | } |
---|
| 609 | |
---|
[6951] | 610 | ?> |
---|