Merge remote branch 'origin/platal-0.10.2'
[platal.git] / modules / carnet / feed.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2010 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22 require_once 'notifs.inc.php';
23 @require_once 'Date.php';
24
25 class CarnetFeedIterator implements PlIterator
26 {
27 private $notifs;
28 private $it;
29
30 public function __construct(PlUser &$owner)
31 {
32 $notifs = Watch::getEvents($owner);
33 $infos = array();
34 foreach ($notifs as $n) {
35 foreach ($n['users'] as $user) {
36 $op = $n['operation'];
37 $date = $op->getDate($user);
38 @$datetext = new Date($date);
39 @$datetext = $datetext->format('%e %B %Y');
40 $infos[] = array('operation' => $op,
41 'title' => '[' . $op->getTitle(1) . '] - ' . $user->fullName() . ' le ' . $datetext,
42 'author' => $user->fullName(),
43 'publication' => $op->publicationDate($user),
44 'date' => strtotime($date),
45 'id' => $op->flag . '-' . $user->id() . '-' . strtotime($date),
46 'data' => $op->getData($user),
47 'hruid' => $user->login(),
48 'dead' => $user->deathdate,
49 'profile' => $user->profile()->hrid(),
50 'user' => $user,
51 'contact' => $owner->isContact($user));
52 }
53 }
54 $this->it = PlIteratorUtils::fromArray($infos);
55 }
56
57 public function next()
58 {
59 $data = $this->it->next();
60 return $data['value'];
61 }
62
63 public function total()
64 {
65 return $this->it->total();
66 }
67
68 public function first()
69 {
70 return $this->it->first();
71 }
72
73 public function last()
74 {
75 return $this->it->last();
76 }
77 }
78
79 class CarnetFeed extends PlFeed
80 {
81 public function __construct()
82 {
83 global $globals;
84 parent::__construct($globals->core->sitename . ' :: Carnet',
85 $globals->baseurl . '/carnet/panel',
86 'Ton carnet polytechnicien',
87 $globals->baseurl . '/images/logo.png',
88 'carnet/rss.tpl');
89 }
90
91 protected function fetch(PlUser &$user)
92 {
93 return new CarnetFeedIterator($user);
94 }
95 }
96
97 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
98 ?>