mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-27 03:39:57 +03:00
RSS feed improvements:
- send 404 when feed id missing/unknown - added a guid element for each feed item (make the difference between 2 different 0/1 items - they have the same link element) - don't update last_check unless some news are available - new images/updated albums removed from the 0/1 feed item - added 5 different feed items for new images/updated albums (generated by grouping post date) with more information, thumbnails and links git-svn-id: http://piwigo.org/svn/trunk@1549 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
fc19eb794d
commit
516df145c3
3 changed files with 393 additions and 275 deletions
139
feed.php
139
feed.php
|
@ -109,10 +109,10 @@ SELECT uf.user_id AS id,
|
||||||
;';
|
;';
|
||||||
$user = mysql_fetch_array(pwg_query($query));
|
$user = mysql_fetch_array(pwg_query($query));
|
||||||
}
|
}
|
||||||
else
|
|
||||||
|
if ( empty($user) )
|
||||||
{
|
{
|
||||||
echo l10n('Unknown feed identifier');
|
page_not_found('Unknown/missing feed identifier');
|
||||||
exit();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$user['forbidden_categories'] = calculate_permissions($user['id'],
|
$user['forbidden_categories'] = calculate_permissions($user['id'],
|
||||||
|
@ -126,9 +126,16 @@ list($dbnow) = mysql_fetch_row(pwg_query('SELECT NOW();'));
|
||||||
|
|
||||||
include_once(PHPWG_ROOT_PATH.'include/feedcreator.class.php');
|
include_once(PHPWG_ROOT_PATH.'include/feedcreator.class.php');
|
||||||
|
|
||||||
|
$base_url = 'http://'.$_SERVER["HTTP_HOST"].cookie_path();
|
||||||
|
if ( strrpos($base_url, '/') !== strlen($base_url)-1 )
|
||||||
|
{
|
||||||
|
$base_url .= '/';
|
||||||
|
}
|
||||||
|
$page['root_path']=$base_url;
|
||||||
|
|
||||||
$rss = new UniversalFeedCreator();
|
$rss = new UniversalFeedCreator();
|
||||||
|
|
||||||
$rss->title = $conf['gallery_title'].', notifications';
|
$rss->title = $conf['gallery_title'];
|
||||||
$rss->title.= ' (as '.$user['username'].')';
|
$rss->title.= ' (as '.$user['username'].')';
|
||||||
|
|
||||||
$rss->link = $conf['gallery_url'];
|
$rss->link = $conf['gallery_url'];
|
||||||
|
@ -137,14 +144,14 @@ $rss->link = $conf['gallery_url'];
|
||||||
// | Feed creation |
|
// | Feed creation |
|
||||||
// +-----------------------------------------------------------------------+
|
// +-----------------------------------------------------------------------+
|
||||||
|
|
||||||
$news = news($user['last_check'], $dbnow);
|
$news = news($user['last_check'], $dbnow, true);
|
||||||
|
|
||||||
if (count($news) > 0)
|
if (count($news) > 0)
|
||||||
{
|
{
|
||||||
$item = new FeedItem();
|
$item = new FeedItem();
|
||||||
$item->title = sprintf(l10n('New on %s'), $dbnow);
|
$item->title = sprintf(l10n('New on %s'), $dbnow);
|
||||||
$item->link = $conf['gallery_url'];
|
$item->link = $conf['gallery_url'];
|
||||||
|
|
||||||
// content creation
|
// content creation
|
||||||
$item->description = '<ul>';
|
$item->description = '<ul>';
|
||||||
foreach ($news as $line)
|
foreach ($news as $line)
|
||||||
|
@ -153,19 +160,121 @@ if (count($news) > 0)
|
||||||
}
|
}
|
||||||
$item->description.= '</ul>';
|
$item->description.= '</ul>';
|
||||||
$item->descriptionHtmlSyndicated = true;
|
$item->descriptionHtmlSyndicated = true;
|
||||||
|
|
||||||
$item->date = ts_to_iso8601(mysqldt_to_ts($dbnow));
|
|
||||||
$item->author = 'PhpWebGallery notifier';
|
|
||||||
|
|
||||||
$rss->addItem($item);
|
|
||||||
}
|
|
||||||
|
|
||||||
$query = '
|
$item->date = ts_to_iso8601(mysqldt_to_ts($dbnow));
|
||||||
|
$item->author = 'PhpWebGallery notifier';
|
||||||
|
$item->guid= sprintf('%s', $dbnow);;
|
||||||
|
|
||||||
|
$rss->addItem($item);
|
||||||
|
|
||||||
|
$query = '
|
||||||
UPDATE '.USER_FEED_TABLE.'
|
UPDATE '.USER_FEED_TABLE.'
|
||||||
SET last_check = \''.$dbnow.'\'
|
SET last_check = \''.$dbnow.'\'
|
||||||
WHERE id = \''.$_GET['feed'].'\'
|
WHERE id = \''.$_GET['feed'].'\'
|
||||||
;';
|
;';
|
||||||
pwg_query($query);
|
pwg_query($query);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// build items for new images/albums
|
||||||
|
$query = '
|
||||||
|
SELECT date_available,
|
||||||
|
COUNT(DISTINCT id) nb_images,
|
||||||
|
COUNT(DISTINCT category_id) nb_cats
|
||||||
|
FROM '.IMAGES_TABLE.' INNER JOIN '.IMAGE_CATEGORY_TABLE.' ON id=image_id
|
||||||
|
WHERE category_id NOT IN ('.$user['forbidden_categories'].')
|
||||||
|
GROUP BY date_available
|
||||||
|
ORDER BY date_available DESC
|
||||||
|
LIMIT 0,5
|
||||||
|
;';
|
||||||
|
$result = pwg_query($query);
|
||||||
|
$dates = array();
|
||||||
|
while ($row = mysql_fetch_array($result))
|
||||||
|
{
|
||||||
|
array_push($dates, $row);
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach($dates as $date_detail)
|
||||||
|
{ // for each recent post date we create a feed item
|
||||||
|
$date = $date_detail['date_available'];
|
||||||
|
$exploded_date = explode_mysqldt($date);
|
||||||
|
$item = new FeedItem();
|
||||||
|
$item->title = sprintf(l10n('%d new elements'), $date_detail['nb_images']);
|
||||||
|
$item->title .= ' ('.$lang['month'][(int)$exploded_date['month']].' '.$exploded_date['day'].')';
|
||||||
|
$item->link = make_index_url(
|
||||||
|
array(
|
||||||
|
'chronology_field' => 'posted',
|
||||||
|
'chronology_style'=> 'monthly',
|
||||||
|
'chronology_view' => 'calendar',
|
||||||
|
'chronology_date' => explode('-', substr($date,0,10) )
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
$item->description .=
|
||||||
|
'<a href="'.make_index_url().'">'.$conf['gallery_title'].'</a><br/> ';
|
||||||
|
|
||||||
|
$item->description .=
|
||||||
|
'<li>'
|
||||||
|
.sprintf(l10n('%d new elements'), $date_detail['nb_images'])
|
||||||
|
.' ('
|
||||||
|
.'<a href="'.make_index_url(array('section'=>'recent_pics')).'">'
|
||||||
|
.l10n('recent_pics_cat').'</a>'
|
||||||
|
.')'
|
||||||
|
.'</li>';
|
||||||
|
|
||||||
|
// get some thumbnails ...
|
||||||
|
$query = '
|
||||||
|
SELECT DISTINCT id, path, name, tn_ext
|
||||||
|
FROM '.IMAGES_TABLE.' INNER JOIN '.IMAGE_CATEGORY_TABLE.' ON id=image_id
|
||||||
|
WHERE category_id NOT IN ('.$user['forbidden_categories'].')
|
||||||
|
AND date_available="'.$date.'"
|
||||||
|
AND tn_ext IS NOT NULL
|
||||||
|
LIMIT 0,6
|
||||||
|
;';
|
||||||
|
$result = pwg_query($query);
|
||||||
|
while ($row = mysql_fetch_array($result))
|
||||||
|
{
|
||||||
|
$tn_src = get_thumbnail_src($row['path'], @$row['tn_ext']);
|
||||||
|
$item->description .= '<img src="'.$tn_src.'"/>';
|
||||||
|
}
|
||||||
|
$item->description .= '...<br/>';
|
||||||
|
|
||||||
|
|
||||||
|
$item->description .=
|
||||||
|
'<li>'
|
||||||
|
.sprintf(l10n('%d categories updated'), $date_detail['nb_cats'])
|
||||||
|
.'</li>';
|
||||||
|
// get some categories ...
|
||||||
|
$query = '
|
||||||
|
SELECT DISTINCT c.uppercats, COUNT(DISTINCT i.id) img_count
|
||||||
|
FROM '.IMAGES_TABLE.' i INNER JOIN '.IMAGE_CATEGORY_TABLE.' ON i.id=image_id
|
||||||
|
INNER JOIN '.CATEGORIES_TABLE.' c ON c.id=category_id
|
||||||
|
WHERE category_id NOT IN ('.$user['forbidden_categories'].')
|
||||||
|
AND date_available="'.$date.'"
|
||||||
|
GROUP BY category_id
|
||||||
|
ORDER BY img_count DESC
|
||||||
|
LIMIT 0,6
|
||||||
|
;';
|
||||||
|
$result = pwg_query($query);
|
||||||
|
$item->description .= '<ul>';
|
||||||
|
while ($row = mysql_fetch_array($result))
|
||||||
|
{
|
||||||
|
$item->description .=
|
||||||
|
'<li>'
|
||||||
|
.get_cat_display_name_cache($row['uppercats'])
|
||||||
|
.' ('.sprintf(l10n('%d new elements'), $row['img_count']).')'
|
||||||
|
.'</li>';
|
||||||
|
}
|
||||||
|
$item->description .= '</ul>';
|
||||||
|
|
||||||
|
$item->descriptionHtmlSyndicated = true;
|
||||||
|
|
||||||
|
$item->date = ts_to_iso8601(mysqldt_to_ts($date));
|
||||||
|
$item->author = 'PhpWebGallery notifier';
|
||||||
|
$item->guid= sprintf('%s', 'pics-'.$date);;
|
||||||
|
|
||||||
|
$rss->addItem($item);
|
||||||
|
}
|
||||||
|
|
||||||
// send XML feed
|
// send XML feed
|
||||||
echo $rss->saveFeed('RSS2.0', '', true);
|
echo $rss->saveFeed('RSS2.0', '', true);
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -127,7 +127,7 @@ function custom_notification_query($action, $type, $start, $end)
|
||||||
'.$query;
|
'.$query;
|
||||||
list($count) = mysql_fetch_array(pwg_query($query));
|
list($count) = mysql_fetch_array(pwg_query($query));
|
||||||
return $count;
|
return $count;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case 'info':
|
case 'info':
|
||||||
switch($type)
|
switch($type)
|
||||||
|
@ -152,12 +152,12 @@ function custom_notification_query($action, $type, $start, $end)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
$query = 'SELECT distinct '.implode(', ', $fields).'
|
$query = 'SELECT distinct '.implode(', ', $fields).'
|
||||||
'.$query;
|
'.$query;
|
||||||
$result = pwg_query($query);
|
$result = pwg_query($query);
|
||||||
|
|
||||||
$infos = array();
|
$infos = array();
|
||||||
|
|
||||||
while ($row = mysql_fetch_array($result))
|
while ($row = mysql_fetch_array($result))
|
||||||
{
|
{
|
||||||
array_push($infos, $row);
|
array_push($infos, $row);
|
||||||
|
@ -344,6 +344,22 @@ function news_exists($start, $end)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Formats a news line and adds it to the array (e.g. '5 new elements')
|
||||||
|
*/
|
||||||
|
function add_news_line(&$news, $count, $format, $url='', $add_url=false)
|
||||||
|
{
|
||||||
|
if ($count > 0)
|
||||||
|
{
|
||||||
|
$line = sprintf($format, $count);
|
||||||
|
if ($add_url and !empty($url) )
|
||||||
|
{
|
||||||
|
$line = '<a href="'.$url.'">'.$line.'</a>';
|
||||||
|
}
|
||||||
|
array_push($news, $line);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* What's new between two dates ?
|
* What's new between two dates ?
|
||||||
*
|
*
|
||||||
|
@ -354,58 +370,51 @@ function news_exists($start, $end)
|
||||||
*
|
*
|
||||||
* @param string start date (mysql datetime format)
|
* @param string start date (mysql datetime format)
|
||||||
* @param string end date (mysql datetime format)
|
* @param string end date (mysql datetime format)
|
||||||
|
* @param bool exclude_img_cats if true, no info about new images/categories
|
||||||
|
* @param bool add_url add html A link around news
|
||||||
*
|
*
|
||||||
* @return array of news
|
* @return array of news
|
||||||
*/
|
*/
|
||||||
function news($start, $end)
|
function news($start, $end, $exclude_img_cats=false, $add_url=false)
|
||||||
{
|
{
|
||||||
$news = array();
|
$news = array();
|
||||||
|
|
||||||
$nb_new_comments = nb_new_comments($start, $end);
|
if (!$exclude_img_cats)
|
||||||
if ($nb_new_comments > 0)
|
|
||||||
{
|
{
|
||||||
array_push($news, sprintf(l10n('%d new comments'), $nb_new_comments));
|
$nb_new_elements = nb_new_elements($start, $end);
|
||||||
|
if ($nb_new_elements > 0)
|
||||||
|
{
|
||||||
|
array_push($news, sprintf(l10n('%d new elements'), $nb_new_elements));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$nb_new_elements = nb_new_elements($start, $end);
|
if (!$exclude_img_cats)
|
||||||
if ($nb_new_elements > 0)
|
|
||||||
{
|
{
|
||||||
array_push($news, sprintf(l10n('%d new elements'), $nb_new_elements));
|
$nb_updated_categories = nb_updated_categories($start, $end);
|
||||||
|
if ($nb_updated_categories > 0)
|
||||||
|
{
|
||||||
|
array_push($news, sprintf(l10n('%d categories updated'),
|
||||||
|
$nb_updated_categories));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$nb_updated_categories = nb_updated_categories($start, $end);
|
add_news_line( $news,
|
||||||
if ($nb_updated_categories > 0)
|
nb_new_comments($start, $end), l10n('%d new comments'),
|
||||||
{
|
get_root_url().'comments.php', $add_url );
|
||||||
array_push($news, sprintf(l10n('%d categories updated'),
|
|
||||||
$nb_updated_categories));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (is_admin())
|
if (is_admin())
|
||||||
{
|
{
|
||||||
$nb_unvalidated_comments = nb_unvalidated_comments($end);
|
add_news_line( $news,
|
||||||
if ($nb_unvalidated_comments > 0)
|
nb_unvalidated_comments($end), l10n('%d comments to validate'),
|
||||||
{
|
get_root_url().'admin.php?page=comments', $add_url );
|
||||||
array_push($news, sprintf(l10n('%d comments to validate'),
|
|
||||||
$nb_unvalidated_comments));
|
|
||||||
}
|
|
||||||
|
|
||||||
$nb_new_users = nb_new_users($start, $end);
|
add_news_line( $news,
|
||||||
if ($nb_new_users > 0)
|
nb_new_users($start, $end), l10n('%d new users'),
|
||||||
{
|
PHPWG_ROOT_PATH.'admin.php?page=user_list', $add_url );
|
||||||
array_push($news, sprintf(l10n('%d new users'), $nb_new_users));
|
|
||||||
}
|
|
||||||
|
|
||||||
$nb_waiting_elements = nb_waiting_elements();
|
add_news_line( $news,
|
||||||
if ($nb_waiting_elements > 0)
|
nb_waiting_elements(), l10n('%d waiting elements'),
|
||||||
{
|
PHPWG_ROOT_PATH.'admin.php?page=waiting', $add_url );
|
||||||
array_push(
|
|
||||||
$news,
|
|
||||||
sprintf(
|
|
||||||
l10n('%d waiting elements'),
|
|
||||||
$nb_waiting_elements
|
|
||||||
)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return $news;
|
return $news;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue