source: trunk/feed.php @ 862

Last change on this file since 862 was 862, checked in by plg, 19 years ago
  • improvement: long localized messages are in HTML files instead of $lang array. This is the case of admin/help and about pages.
  • deletion: of unused functions (ts_to_mysqldt, is_image, TN_exists, check_date_format, date_convert, get_category_directories, get_used_metadata_list, array_remove, pwg_write_debug, get_group_restrictions, get_all_group_restrictions, is_group_allowed, style_select, deprecated_getAttribute).
  • new: many new contextual help pages to replace descriptions previously included in pages.
  • modification: reorganisation of language files. Deletion of unused language keys, alphabetical sort. No faq.lang.php anymore (replaced by help.html). Only done for en_UK.iso-8859-1.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.7 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | branch        : BSF (Best So Far)
8// | file          : $RCSfile$
9// | last update   : $Date: 2005-09-14 21:57:05 +0000 (Wed, 14 Sep 2005) $
10// | last modifier : $Author: plg $
11// | revision      : $Revision: 862 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27
28define('PHPWG_ROOT_PATH','./');
29include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
30
31// +-----------------------------------------------------------------------+
32// |                               functions                               |
33// +-----------------------------------------------------------------------+
34
35/**
36 * new comments between two dates, according to authorized categories
37 *
38 * @param string start (mysql datetime format)
39 * @param string end (mysql datetime format)
40 * @param string forbidden categories (comma separated)
41 * @return array comment ids
42 */
43function new_comments($start, $end)
44{
45  global $user;
46 
47  $query = '
48SELECT DISTINCT c.id AS comment_id
49  FROM '.COMMENTS_TABLE.' AS c
50     , '.IMAGE_CATEGORY_TABLE.' AS ic
51  WHERE c.image_id = ic.image_id
52    AND c.validation_date > \''.$start.'\'
53    AND c.validation_date <= \''.$end.'\'
54    AND category_id NOT IN ('.$user['forbidden_categories'].')
55;';
56  return array_from_query($query, 'comment_id');
57}
58
59/**
60 * unvalidated at a precise date
61 *
62 * Comments that are registered and not validated yet on a precise date
63 *
64 * @param string date (mysql datetime format)
65 * @return array comment ids
66 */
67function unvalidated_comments($date)
68{
69  $query = '
70SELECT DISTINCT id
71  FROM '.COMMENTS_TABLE.'
72  WHERE date <= \''.$date.'\'
73    AND (validated = \'false\'
74         OR validation_date > \''.$date.'\')
75;';
76  return array_from_query($query, 'id');
77}
78
79/**
80 * new elements between two dates, according to authorized categories
81 *
82 * @param string start (mysql datetime format)
83 * @param string end (mysql datetime format)
84 * @param string forbidden categories (comma separated)
85 * @return array element ids
86 */
87function new_elements($start, $end)
88{
89  global $user;
90 
91  $query = '
92SELECT DISTINCT image_id
93  FROM '.IMAGES_TABLE.' INNER JOIN '.IMAGE_CATEGORY_TABLE.' ON image_id = id
94  WHERE date_available > \''.$start.'\'
95    AND date_available <= \''.$end.'\'
96    AND category_id NOT IN ('.$user['forbidden_categories'].')
97;';
98  return array_from_query($query, 'image_id');
99}
100
101/**
102 * updated categories between two dates, according to authorized categories
103 *
104 * @param string start (mysql datetime format)
105 * @param string end (mysql datetime format)
106 * @param string forbidden categories (comma separated)
107 * @return array element ids
108 */
109function updated_categories($start, $end)
110{
111  global $user;
112 
113  $query = '
114SELECT DISTINCT category_id
115  FROM '.IMAGES_TABLE.' INNER JOIN '.IMAGE_CATEGORY_TABLE.' ON image_id = id
116  WHERE date_available > \''.$start.'\'
117    AND date_available <= \''.$end.'\'
118    AND category_id NOT IN ('.$user['forbidden_categories'].')
119;';
120  return array_from_query($query, 'category_id');
121}
122
123/**
124 * new registered users between two dates
125 *
126 * @param string start (mysql datetime format)
127 * @param string end (mysql datetime format)
128 * @return array user ids
129 */
130function new_users($start, $end)
131{
132  $query = '
133SELECT user_id
134  FROM '.USER_INFOS_TABLE.'
135  WHERE registration_date > \''.$start.'\'
136    AND registration_date <= \''.$end.'\'
137;';
138  return array_from_query($query, 'user_id');
139}
140
141/**
142 * What's new between two dates ?
143 *
144 * Informations : number of new comments, number of new elements, number of
145 * updated categories. Administrators are also informed about : number of
146 * unvalidated comments, number of new users (TODO : number of unvalidated
147 * elements)
148 *
149 * @param string start date (mysql datetime format)
150 * @param string end date (mysql datetime format)
151 */
152function news($start, $end)
153{
154  global $user;
155
156  $news = array();
157 
158  $nb_new_comments = count(new_comments($start, $end));
159  if ($nb_new_comments > 0)
160  {
161    array_push($news, sprintf(l10n('%d new comments'), $nb_new_comments));
162  }
163
164  $nb_new_elements = count(new_elements($start, $end));
165  if ($nb_new_elements > 0)
166  {
167    array_push($news, sprintf(l10n('%d new elements'), $nb_new_elements));
168  }
169
170  $nb_updated_categories = count(updated_categories($start, $end));
171  if ($nb_updated_categories > 0)
172  {
173    array_push($news, sprintf(l10n('%d categories updated'),
174                              $nb_updated_categories));
175  }
176 
177  if ('admin' == $user['status'])
178  {
179    $nb_unvalidated_comments = count(unvalidated_comments($end));
180    if ($nb_unvalidated_comments > 0)
181    {
182      array_push($news, sprintf(l10n('%d comments to validate'),
183                                $nb_unvalidated_comments));
184    }
185
186    $nb_new_users = count(new_users($start, $end));
187    if ($nb_new_users > 0)
188    {
189      array_push($news, sprintf(l10n('%d new users'), $nb_new_users));
190    }
191  }
192
193  return $news;
194}
195
196/**
197 * explodes a MySQL datetime format (2005-07-14 23:01:37) in fields "year",
198 * "month", "day", "hour", "minute", "second".
199 *
200 * @param string mysql datetime format
201 * @return array
202 */
203function explode_mysqldt($mysqldt)
204{
205  $date = array();
206  list($date['year'],
207       $date['month'],
208       $date['day'],
209       $date['hour'],
210       $date['minute'],
211       $date['second'])
212    = preg_split('/[-: ]/', $mysqldt);
213
214  return $date;
215}
216
217/**
218 * creates a Unix timestamp (number of seconds since 1970-01-01 00:00:00
219 * GMT) from a MySQL datetime format (2005-07-14 23:01:37)
220 *
221 * @param string mysql datetime format
222 * @return int timestamp
223 */
224function mysqldt_to_ts($mysqldt)
225{
226  $date = explode_mysqldt($mysqldt);
227  return mktime($date['hour'], $date['minute'], $date['second'],
228                $date['month'], $date['day'], $date['year']);
229}
230
231/**
232 * creates an ISO 8601 format date (2003-01-20T18:05:41+04:00) from Unix
233 * timestamp (number of seconds since 1970-01-01 00:00:00 GMT)
234 *
235 * function copied from Dotclear project http://dotclear.net
236 *
237 * @param int timestamp
238 * @return string ISO 8601 date format
239 */
240function ts_to_iso8601($ts)
241{
242  $tz = date('O',$ts);
243  $tz = substr($tz, 0, -2).':'.substr($tz, -2);
244  return date('Y-m-d\\TH:i:s',$ts).$tz;
245}
246
247// +-----------------------------------------------------------------------+
248// |                            initialization                             |
249// +-----------------------------------------------------------------------+
250
251// clean $user array (include/user.inc.php has been executed)
252$user = array();
253
254// echo '<pre>'.generate_key(50).'</pre>';
255if (isset($_GET['feed'])
256    and preg_match('/^[A-Za-z0-9]{50}$/', $_GET['feed']))
257{
258  $query = '
259SELECT uf.user_id AS id,
260       ui.status,
261       uf.last_check,
262       u.'.$conf['user_fields']['username'].' AS username
263  FROM '.USER_FEED_TABLE.' AS uf
264    INNER JOIN '.USER_INFOS_TABLE.' AS ui
265      ON ui.user_id = uf.user_id
266    INNER JOIN '.USERS_TABLE.' AS u
267      ON u.'.$conf['user_fields']['id'].' = uf.user_id
268  WHERE uf.id = \''.$_GET['feed'].'\'
269;';
270  $user = mysql_fetch_array(pwg_query($query));
271}
272else
273{
274  echo l10n('Unknown feed identifier');
275  exit();
276}
277
278$user['forbidden_categories'] = calculate_permissions($user['id'],
279                                                      $user['status']);
280if ('' == $user['forbidden_categories'])
281{
282  $user['forbidden_categories'] = '-1';
283}
284
285list($dbnow) = mysql_fetch_row(pwg_query('SELECT NOW();'));
286
287include_once(PHPWG_ROOT_PATH.'include/feedcreator.class.php');
288
289$rss = new UniversalFeedCreator();
290
291$rss->title = $conf['gallery_title'].', notifications';
292$rss->title.= ' (as '.$user['username'].')';
293
294$rss->link = $conf['gallery_url'];
295
296// +-----------------------------------------------------------------------+
297// |                            Feed creation                              |
298// +-----------------------------------------------------------------------+
299
300$news = news($user['last_check'], $dbnow);
301
302if (count($news) > 0)
303{
304  $item = new FeedItem(); 
305  $item->title = sprintf(l10n('New on %s'), $dbnow);
306  $item->link = 'http://phpwebgallery.net';
307 
308  // content creation
309  $item->description = '<ul>';
310  foreach ($news as $line)
311  {
312    $item->description.= '<li>'.$line.'</li>';
313  }
314  $item->description.= '</ul>';
315  $item->descriptionHtmlSyndicated = true;
316 
317  $item->date = ts_to_iso8601(mysqldt_to_ts($dbnow));
318  $item->author = 'PhpWebGallery notifier'; 
319 
320  $rss->addItem($item);
321}
322
323$query = '
324UPDATE '.USER_FEED_TABLE.'
325  SET last_check = \''.$dbnow.'\'
326  WHERE id = \''.$_GET['feed'].'\'
327;';
328pwg_query($query);
329
330// send XML feed
331echo $rss->saveFeed('RSS2.0', '', true);
332?>
Note: See TracBrowser for help on using the repository browser.