]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/noticelist.php
0fe967da381388beb15e7e0c459f4e2c3586df58
[quix0rs-gnu-social.git] / lib / noticelist.php
1 <?php
2 /**
3  * Laconica, the distributed open-source microblogging tool
4  *
5  * widget for displaying a list of notices
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  UI
23  * @package   Laconica
24  * @author    Evan Prodromou <evan@controlyourself.ca>
25  * @copyright 2008 Control Yourself, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://laconi.ca/
28  */
29
30 if (!defined('LACONICA')) {
31     exit(1);
32 }
33
34 /**
35  * widget for displaying a list of notices
36  *
37  * There are a number of actions that display a list of notices, in
38  * reverse chronological order. This widget abstracts out most of the
39  * code for UI for notice lists. It's overridden to hide some
40  * data for e.g. the profile page.
41  *
42  * @category UI
43  * @package  Laconica
44  * @author   Evan Prodromou <evan@controlyourself.ca>
45  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
46  * @link     http://laconi.ca/
47  * @see      Notice
48  * @see      StreamAction
49  * @see      NoticeListItem
50  * @see      ProfileNoticeList
51  */
52
53 class NoticeList
54 {
55     /** the current stream of notices being displayed. */
56
57     var $notice = null;
58
59     /**
60      * constructor
61      *
62      * @param Notice $notice stream of notices from DB_DataObject
63      */
64
65     function __construct($notice)
66     {
67         $this->notice = $notice;
68     }
69
70     /**
71      * show the list of notices
72      *
73      * "Uses up" the stream by looping through it. So, probably can't
74      * be called twice on the same list.
75      *
76      * @return int count of notices listed.
77      */
78
79     function show()
80     {
81         common_element_start('ul', array('id' => 'notices'));
82
83         $cnt = 0;
84
85         while ($this->notice->fetch() && $cnt <= NOTICES_PER_PAGE) {
86             $cnt++;
87
88             if ($cnt > NOTICES_PER_PAGE) {
89                 break;
90             }
91
92             $item = $this->newListItem($this->notice);
93             $item->show();
94         }
95
96         common_element_end('ul');
97
98         return $cnt;
99     }
100
101     /**
102      * returns a new list item for the current notice
103      *
104      * Recipe (factory?) method; overridden by sub-classes to give
105      * a different list item class.
106      *
107      * @param Notice $notice the current notice
108      *
109      * @return NoticeListItem a list item for displaying the notice
110      */
111
112     function newListItem($notice)
113     {
114         return new NoticeListItem($notice);
115     }
116 }
117
118 /**
119  * widget for displaying a single notice
120  *
121  * This widget has the core smarts for showing a single notice: what to display,
122  * where, and under which circumstances. Its key method is show(); this is a recipe
123  * that calls all the other show*() methods to build up a single notice. The
124  * ProfileNoticeListItem subclass, for example, overrides showAuthor() to skip
125  * author info (since that's implicit by the data in the page).
126  *
127  * @category UI
128  * @package  Laconica
129  * @author   Evan Prodromou <evan@controlyourself.ca>
130  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
131  * @link     http://laconi.ca/
132  * @see      NoticeList
133  * @see      ProfileNoticeListItem
134  */
135
136 class NoticeListItem
137 {
138     /** The notice this item will show. */
139
140     var $notice = null;
141
142     /** The profile of the author of the notice, extracted once for convenience. */
143
144     var $profile = null;
145
146     /**
147      * constructor
148      *
149      * Also initializes the profile attribute.
150      *
151      * @param Notice $notice The notice we'll display
152      */
153
154     function __construct($notice)
155     {
156         $this->notice  = $notice;
157         $this->profile = $notice->getProfile();
158     }
159
160     /**
161      * recipe function for displaying a single notice.
162      *
163      * This uses all the other methods to correctly display a notice. Override
164      * it or one of the others to fine-tune the output.
165      *
166      * @return void
167      */
168
169     function show()
170     {
171         $this->showStart();
172         $this->showFaveForm();
173         $this->showAuthor();
174         $this->showContent();
175         $this->startTimeSection();
176         $this->showNoticeLink();
177         $this->showNoticeSource();
178         $this->showReplyTo();
179         $this->showReplyLink();
180         $this->showDeleteLink();
181         $this->endTimeSection();
182         $this->showEnd();
183     }
184
185     /**
186      * start a single notice.
187      *
188      * @return void
189      */
190
191     function showStart()
192     {
193         // XXX: RDFa
194         // TODO: add notice_type class e.g., notice_video, notice_image
195         common_element_start('li', array('class' => 'hentry notice',
196                                          'id' => 'notice-' . $this->notice->id));
197     }
198
199     /**
200      * show the "favorite" form
201      *
202      * @return void
203      */
204
205     function showFaveForm()
206     {
207         $user = common_current_user();
208         if ($user) {
209             if ($user->hasFave($this->notice)) {
210                 common_disfavor_form($this->notice);
211             } else {
212                 common_favor_form($this->notice);
213             }
214         }
215     }
216
217     /**
218      * show the author of a notice
219      *
220      * By default, this shows the avatar and (linked) nickname of the author.
221      *
222      * @return void
223      */
224
225     function showAuthor()
226     {
227         common_element_start('span', 'vcard author');
228         common_element_start('a', array('href' => $this->profile->profileurl),
229                                         'class' => 'url');
230         $this->showAvatar();
231         $this->showNickname();
232         common_element_end('a');
233         common_element_end('span');
234     }
235
236     /**
237      * show the avatar of the notice's author
238      *
239      * This will use the default avatar if no avatar is assigned for the author.
240      * It makes a link to the author's profile.
241      *
242      * @return void
243      */
244
245     function showAvatar()
246     {
247         $avatar = $this->profile->getAvatar(AVATAR_STREAM_SIZE);
248
249         common_element('img', array('src' => ($avatar) ?
250                                     common_avatar_display_url($avatar) :
251                                     common_default_avatar(AVATAR_STREAM_SIZE),
252                                     'class' => 'avatar photo',
253                                     'width' => AVATAR_STREAM_SIZE,
254                                     'height' => AVATAR_STREAM_SIZE,
255                                     'alt' =>
256                                     ($this->profile->fullname) ?
257                                     $this->profile->fullname :
258                                     $this->profile->nickname));
259     }
260
261     /**
262      * show the nickname of the author
263      *
264      * Links to the author's profile page
265      *
266      * @return void
267      */
268
269     function showNickname()
270     {
271         common_element('span', array('class' => 'nickname fn'),
272                        $this->profile->nickname);
273     }
274
275     /**
276      * show the content of the notice
277      *
278      * Shows the content of the notice. This is pre-rendered for efficiency
279      * at save time. Some very old notices might not be pre-rendered, so
280      * they're rendered on the spot.
281      *
282      * @return void
283      */
284
285     function showContent()
286     {
287         // FIXME: URL, image, video, audio
288         common_element_start('p', array('class' => 'content entry-title'));
289         if ($this->notice->rendered) {
290             common_raw($this->notice->rendered);
291         } else {
292             // XXX: may be some uncooked notices in the DB,
293             // we cook them right now. This should probably disappear in future
294             // versions (>> 0.4.x)
295             common_raw(common_render_content($this->notice->content, $this->notice));
296         }
297         common_element_end('p');
298     }
299
300     /**
301      * show the "time" section of a notice
302      *
303      * This is the greyed-out section that appears beneath the content, including
304      * links to delete or reply to the notice. Probably should be called something
305      * else.
306      *
307      * @return void
308      */
309
310     function startTimeSection()
311     {
312         common_element_start('p', 'time');
313     }
314
315     /**
316      * show the link to the main page for the notice
317      *
318      * Displays a link to the page for a notice, with "relative" time. Tries to
319      * get remote notice URLs correct, but doesn't always succeed.
320      *
321      * @return void
322      */
323
324     function showNoticeLink()
325     {
326         $noticeurl = common_local_url('shownotice',
327                                       array('notice' => $this->notice->id));
328         // XXX: we need to figure this out better. Is this right?
329         if (strcmp($this->notice->uri, $noticeurl) != 0 &&
330             preg_match('/^http/', $this->notice->uri)) {
331             $noticeurl = $this->notice->uri;
332         }
333         common_element_start('a', array('class' => 'permalink',
334                                         'rel' => 'bookmark',
335                                         'href' => $noticeurl));
336         $dt = common_date_iso8601($this->notice->created);
337         common_element('abbr', array('class' => 'published',
338                                      'title' => $dt),
339                        common_date_string($this->notice->created));
340         common_element_end('a');
341     }
342
343     /**
344      * Show the source of the notice
345      *
346      * Either the name (and link) of the API client that posted the notice,
347      * or one of other other channels.
348      *
349      * @return void
350      */
351
352     function showNoticeSource()
353     {
354         if ($this->notice->source) {
355             common_element('span', null, _(' from '));
356             $source_name = _($this->notice->source);
357             switch ($this->notice->source) {
358             case 'web':
359             case 'xmpp':
360             case 'mail':
361             case 'omb':
362             case 'api':
363                 common_element('span', 'noticesource', $source_name);
364                 break;
365             default:
366                 $ns = Notice_source::staticGet($this->notice->source);
367                 if ($ns) {
368                     common_element('a', array('href' => $ns->url),
369                                    $ns->name);
370                 } else {
371                     common_element('span', 'noticesource', $source_name);
372                 }
373                 break;
374             }
375         }
376     }
377
378     /**
379      * show link to notice this notice is a reply to
380      *
381      * If this notice is a reply, show a link to the notice it is replying to. The
382      * heavy lifting for figuring out replies happens at save time.
383      *
384      * @return void
385      */
386
387     function showReplyTo()
388     {
389         if ($this->notice->reply_to) {
390             $replyurl = common_local_url('shownotice',
391                                          array('notice' => $this->notice->reply_to));
392             $this->elementStart('dl', 'response');
393             $this->element('dt', null, _('To'));
394             $this->elementStart('dd');
395             $this->element('a', array('class' => 'inreplyto',
396                                       'href' => $replyurl),
397                                       'rel' => 'in-reply-to',
398                            _('in reply to'));
399             $this->elementEnd('dd');
400             $this->elementEnd('dl');
401         }
402     }
403
404     /**
405      * show a link to reply to the current notice
406      *
407      * Should either do the reply in the current notice form (if available), or
408      * link out to the notice-posting form. A little flakey, doesn't always work.
409      *
410      * @return void
411      */
412
413     function showReplyLink()
414     {
415         $reply_url = common_local_url('newnotice',
416                                       array('replyto' => $this->profile->nickname));
417
418         $reply_js =
419           'return doreply("'.$this->profile->nickname.'",'.$this->notice->id.');';
420
421         common_element_start('a',
422                              array('href' => $reply_url,
423                                    'onclick' => $reply_js,
424                                    'title' => _('reply'),
425                                    'class' => 'replybutton'));
426         common_raw(' &#8594;');
427         common_element_end('a');
428     }
429
430     /**
431      * if the user is the author, let them delete the notice
432      *
433      * @return void
434      */
435
436     function showDeleteLink()
437     {
438         $user = common_current_user();
439         if ($user && $this->notice->profile_id == $user->id) {
440             $deleteurl = common_local_url('deletenotice',
441                                           array('notice' => $this->notice->id));
442             common_element_start('a', array('class' => 'deletenotice',
443                                             'href' => $deleteurl,
444                                             'title' => _('delete')));
445             common_raw(' &#215;');
446             common_element_end('a');
447         }
448     }
449
450     /**
451      * end the time section
452      *
453      * @return void
454      */
455
456     function endTimeSection()
457     {
458         common_element_end('p');
459     }
460
461     /**
462      * finish the notice
463      *
464      * Close the last elements in the notice list item
465      *
466      * @return void
467      */
468
469     function showEnd()
470     {
471         common_element_end('li');
472     }
473 }