Merge commit 'origin/fusionax' into account
[platal.git] / modules / carnet / feed.inc.php
CommitLineData
4e9a7a6d
FB
1<?php
2/***************************************************************************
8d84c630 3 * Copyright (C) 2003-2009 Polytechnique.org *
4e9a7a6d
FB
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
22require_once 'notifs.inc.php';
2f85f758 23@require_once 'Date.php';
4e9a7a6d
FB
24
25class CarnetFeedIterator implements PlIterator
26{
27 private $notifs;
4018f0b3 28 private $it;
4e9a7a6d 29
c350577b 30 public function __construct(PlUser &$owner)
4e9a7a6d 31 {
c350577b
FB
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);
2f85f758
FB
38 @$datetext = new Date($date);
39 @$datetext = $datetext->format('%e %B %Y');
c350577b 40 $infos[] = array('operation' => $op,
2f85f758 41 'title' => '[' . $op->getTitle(1) . '] - ' . $user->fullName() . ' le ' . $datetext,
c350577b 42 'author' => $user->fullName(),
2f85f758 43 'publication' => $op->publicationDate($user),
c350577b 44 'date' => strtotime($date),
2f85f758 45 'id' => $op->flag . '-' . $user->id() . '-' . strtotime($date),
c350577b
FB
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);
4e9a7a6d
FB
55 }
56
57 public function next()
58 {
4018f0b3 59 $data = $this->it->next();
c350577b 60 return $data['value'];
4e9a7a6d
FB
61 }
62
63 public function total()
64 {
4018f0b3 65 return $this->it->total();
4e9a7a6d
FB
66 }
67
68 public function first()
69 {
4018f0b3 70 return $this->it->first();
4e9a7a6d
FB
71 }
72
73 public function last()
74 {
4018f0b3 75 return $this->it->last();
4e9a7a6d
FB
76 }
77}
78
79class 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
3f63a693 91 protected function fetch(PlUser &$user)
4e9a7a6d 92 {
c350577b 93 return new CarnetFeedIterator($user);
4e9a7a6d
FB
94 }
95}
96
97// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
98?>