]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/noticelist.php
split out InlineAttachmentList from AttachmentList
[quix0rs-gnu-social.git] / lib / noticelist.php
1 <?php
2 /**
3  * StatusNet, 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   StatusNet
24  * @author    Evan Prodromou <evan@status.net>
25  * @author    Sarven Capadisli <csarven@status.net>
26  * @copyright 2008 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/favorform.php';
36 require_once INSTALLDIR.'/lib/disfavorform.php';
37 require_once INSTALLDIR.'/lib/attachmentlist.php';
38
39 /**
40  * widget for displaying a list of notices
41  *
42  * There are a number of actions that display a list of notices, in
43  * reverse chronological order. This widget abstracts out most of the
44  * code for UI for notice lists. It's overridden to hide some
45  * data for e.g. the profile page.
46  *
47  * @category UI
48  * @package  StatusNet
49  * @author   Evan Prodromou <evan@status.net>
50  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
51  * @link     http://status.net/
52  * @see      Notice
53  * @see      NoticeListItem
54  * @see      ProfileNoticeList
55  */
56
57 class NoticeList extends Widget
58 {
59     /** the current stream of notices being displayed. */
60
61     var $notice = null;
62
63     /**
64      * constructor
65      *
66      * @param Notice $notice stream of notices from DB_DataObject
67      */
68
69     function __construct($notice, $out=null)
70     {
71         parent::__construct($out);
72         $this->notice = $notice;
73     }
74
75     /**
76      * show the list of notices
77      *
78      * "Uses up" the stream by looping through it. So, probably can't
79      * be called twice on the same list.
80      *
81      * @return int count of notices listed.
82      */
83
84     function show()
85     {
86         $this->out->elementStart('div', array('id' =>'notices_primary'));
87         $this->out->element('h2', null, _('Notices'));
88         $this->out->elementStart('ol', array('class' => 'notices xoxo'));
89
90         $cnt = 0;
91
92         while ($this->notice->fetch() && $cnt <= NOTICES_PER_PAGE) {
93             $cnt++;
94
95             if ($cnt > NOTICES_PER_PAGE) {
96                 break;
97             }
98
99             try {
100                 $item = $this->newListItem($this->notice);
101                 $item->show();
102             } catch (Exception $e) {
103                 // we log exceptions and continue
104                 common_log(LOG_ERR, $e->getMessage());
105                 continue;
106             }
107         }
108
109         $this->out->elementEnd('ol');
110         $this->out->elementEnd('div');
111
112         return $cnt;
113     }
114
115     /**
116      * returns a new list item for the current notice
117      *
118      * Recipe (factory?) method; overridden by sub-classes to give
119      * a different list item class.
120      *
121      * @param Notice $notice the current notice
122      *
123      * @return NoticeListItem a list item for displaying the notice
124      */
125
126     function newListItem($notice)
127     {
128         return new NoticeListItem($notice, $this->out);
129     }
130 }
131
132 /**
133  * widget for displaying a single notice
134  *
135  * This widget has the core smarts for showing a single notice: what to display,
136  * where, and under which circumstances. Its key method is show(); this is a recipe
137  * that calls all the other show*() methods to build up a single notice. The
138  * ProfileNoticeListItem subclass, for example, overrides showAuthor() to skip
139  * author info (since that's implicit by the data in the page).
140  *
141  * @category UI
142  * @package  StatusNet
143  * @author   Evan Prodromou <evan@status.net>
144  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
145  * @link     http://status.net/
146  * @see      NoticeList
147  * @see      ProfileNoticeListItem
148  */
149
150 class NoticeListItem extends Widget
151 {
152     /** The notice this item will show. */
153
154     var $notice = null;
155
156     /** The notice that was repeated. */
157
158     var $repeat = null;
159
160     /** The profile of the author of the notice, extracted once for convenience. */
161
162     var $profile = null;
163
164     /**
165      * constructor
166      *
167      * Also initializes the profile attribute.
168      *
169      * @param Notice $notice The notice we'll display
170      */
171
172     function __construct($notice, $out=null)
173     {
174         parent::__construct($out);
175         if (!empty($notice->repeat_of)) {
176             $original = Notice::staticGet('id', $notice->repeat_of);
177             if (empty($original)) { // could have been deleted
178                 $this->notice = $notice;
179             } else {
180                 $this->notice = $original;
181                 $this->repeat = $notice;
182             }
183         } else {
184             $this->notice  = $notice;
185         }
186         $this->profile = $this->notice->getProfile();
187     }
188
189     /**
190      * recipe function for displaying a single notice.
191      *
192      * This uses all the other methods to correctly display a notice. Override
193      * it or one of the others to fine-tune the output.
194      *
195      * @return void
196      */
197
198     function show()
199     {
200         if (empty($this->notice)) {
201             common_log(LOG_WARNING, "Trying to show missing notice; skipping.");
202             return;
203         } else if (empty($this->profile)) {
204             common_log(LOG_WARNING, "Trying to show missing profile (" . $this->notice->profile_id . "); skipping.");
205             return;
206         }
207
208         $this->showStart();
209         if (Event::handle('StartShowNoticeItem', array($this))) {
210             $this->showNotice();
211             $this->showNoticeAttachments();
212             $this->showNoticeInfo();
213             $this->showNoticeOptions();
214             Event::handle('EndShowNoticeItem', array($this));
215         }
216         $this->showEnd();
217     }
218
219     function showNotice()
220     {
221         $this->out->elementStart('div', 'entry-title');
222         $this->showAuthor();
223         $this->showContent();
224         $this->out->elementEnd('div');
225     }
226
227     function showNoticeInfo()
228     {
229         $this->out->elementStart('div', 'entry-content');
230         if (Event::handle('StartShowNoticeInfo', array($this))) {
231             $this->showNoticeLink();
232             $this->showNoticeSource();
233             $this->showNoticeLocation();
234             $this->showContext();
235             $this->showRepeat();
236             Event::handle('EndShowNoticeInfo', array($this));
237         }
238
239         $this->out->elementEnd('div');
240     }
241
242     function showNoticeOptions()
243     {
244         if (Event::handle('StartShowNoticeOptions', array($this))) {
245             $user = common_current_user();
246             if ($user) {
247                 $this->out->elementStart('div', 'notice-options');
248                 $this->showFaveForm();
249                 $this->showReplyLink();
250                 $this->showRepeatForm();
251                 $this->showDeleteLink();
252                 $this->out->elementEnd('div');
253             }
254             Event::handle('EndShowNoticeOptions', array($this));
255         }
256     }
257
258     /**
259      * start a single notice.
260      *
261      * @return void
262      */
263
264     function showStart()
265     {
266         // XXX: RDFa
267         // TODO: add notice_type class e.g., notice_video, notice_image
268         $id = (empty($this->repeat)) ? $this->notice->id : $this->repeat->id;
269         $this->out->elementStart('li', array('class' => 'hentry notice',
270                                              'id' => 'notice-' . $id));
271     }
272
273     /**
274      * show the "favorite" form
275      *
276      * @return void
277      */
278
279     function showFaveForm()
280     {
281         if (Event::handle('StartShowFaveForm', array($this))) {
282             $user = common_current_user();
283             if ($user) {
284                 if ($user->hasFave($this->notice)) {
285                     $disfavor = new DisfavorForm($this->out, $this->notice);
286                     $disfavor->show();
287                 } else {
288                     $favor = new FavorForm($this->out, $this->notice);
289                     $favor->show();
290                 }
291             }
292             Event::handle('EndShowFaveForm', array($this));
293         }
294     }
295
296     /**
297      * show the author of a notice
298      *
299      * By default, this shows the avatar and (linked) nickname of the author.
300      *
301      * @return void
302      */
303
304     function showAuthor()
305     {
306         $this->out->elementStart('span', 'vcard author');
307         $attrs = array('href' => $this->profile->profileurl,
308                        'class' => 'url');
309         if (!empty($this->profile->fullname)) {
310             $attrs['title'] = $this->profile->getFancyName();
311         }
312         $this->out->elementStart('a', $attrs);
313         $this->showAvatar();
314         $this->out->text(' ');
315         $this->showNickname();
316         $this->out->elementEnd('a');
317         $this->out->elementEnd('span');
318     }
319
320     /**
321      * show the avatar of the notice's author
322      *
323      * This will use the default avatar if no avatar is assigned for the author.
324      * It makes a link to the author's profile.
325      *
326      * @return void
327      */
328
329     function showAvatar()
330     {
331         $avatar_size = AVATAR_STREAM_SIZE;
332
333         $avatar = $this->profile->getAvatar($avatar_size);
334
335         $this->out->element('img', array('src' => ($avatar) ?
336                                          $avatar->displayUrl() :
337                                          Avatar::defaultImage($avatar_size),
338                                          'class' => 'avatar photo',
339                                          'width' => $avatar_size,
340                                          'height' => $avatar_size,
341                                          'alt' =>
342                                          ($this->profile->fullname) ?
343                                          $this->profile->fullname :
344                                          $this->profile->nickname));
345     }
346
347     /**
348      * show the nickname of the author
349      *
350      * Links to the author's profile page
351      *
352      * @return void
353      */
354
355     function showNickname()
356     {
357         $this->out->raw('<span class="nickname fn">' .
358                         htmlspecialchars($this->profile->nickname) .
359                         '</span>');
360     }
361
362     /**
363      * show the content of the notice
364      *
365      * Shows the content of the notice. This is pre-rendered for efficiency
366      * at save time. Some very old notices might not be pre-rendered, so
367      * they're rendered on the spot.
368      *
369      * @return void
370      */
371
372     function showContent()
373     {
374         // FIXME: URL, image, video, audio
375         $this->out->elementStart('p', array('class' => 'entry-content'));
376         if ($this->notice->rendered) {
377             $this->out->raw($this->notice->rendered);
378         } else {
379             // XXX: may be some uncooked notices in the DB,
380             // we cook them right now. This should probably disappear in future
381             // versions (>> 0.4.x)
382             $this->out->raw(common_render_content($this->notice->content, $this->notice));
383         }
384         $this->out->elementEnd('p');
385     }
386
387     function showNoticeAttachments() {
388         $al = new InlineAttachmentList($this->notice, $this->out);
389         $al->show();
390     }
391
392     /**
393      * show the link to the main page for the notice
394      *
395      * Displays a link to the page for a notice, with "relative" time. Tries to
396      * get remote notice URLs correct, but doesn't always succeed.
397      *
398      * @return void
399      */
400
401     function showNoticeLink()
402     {
403         $noticeurl = $this->notice->bestUrl();
404
405         // above should always return an URL
406
407         assert(!empty($noticeurl));
408
409         $this->out->elementStart('a', array('rel' => 'bookmark',
410                                             'class' => 'timestamp',
411                                             'href' => $noticeurl));
412         $dt = common_date_iso8601($this->notice->created);
413         $this->out->element('abbr', array('class' => 'published',
414                                           'title' => $dt),
415                             common_date_string($this->notice->created));
416         $this->out->elementEnd('a');
417     }
418
419     /**
420      * show the notice location
421      *
422      * shows the notice location in the correct language.
423      *
424      * If an URL is available, makes a link. Otherwise, just a span.
425      *
426      * @return void
427      */
428
429     function showNoticeLocation()
430     {
431         $id = $this->notice->id;
432
433         $location = $this->notice->getLocation();
434
435         if (empty($location)) {
436             return;
437         }
438
439         $name = $location->getName();
440
441         $lat = $this->notice->lat;
442         $lon = $this->notice->lon;
443         $latlon = (!empty($lat) && !empty($lon)) ? $lat.';'.$lon : '';
444
445         if (empty($name)) {
446             $latdms = $this->decimalDegreesToDMS(abs($lat));
447             $londms = $this->decimalDegreesToDMS(abs($lon));
448             // TRANS: Used in coordinates as abbreviation of north
449             $north = _('N');
450             // TRANS: Used in coordinates as abbreviation of south
451             $south = _('S');
452             // TRANS: Used in coordinates as abbreviation of east
453             $east = _('E');
454             // TRANS: Used in coordinates as abbreviation of west
455             $west = _('W');
456             $name = sprintf(
457                 _('%1$u°%2$u\'%3$u"%4$s %5$u°%6$u\'%7$u"%8$s'),
458                 $latdms['deg'],$latdms['min'], $latdms['sec'],($lat>0? $north:$south),
459                 $londms['deg'],$londms['min'], $londms['sec'],($lon>0? $east:$west));
460         }
461
462         $url  = $location->getUrl();
463
464         $this->out->text(' ');
465         $this->out->elementStart('span', array('class' => 'location'));
466         $this->out->text(_('at'));
467         $this->out->text(' ');
468         if (empty($url)) {
469             $this->out->element('abbr', array('class' => 'geo',
470                                               'title' => $latlon),
471                                 $name);
472         } else {
473             $xstr = new XMLStringer(false);
474             $xstr->elementStart('a', array('href' => $url,
475                                            'rel' => 'external'));
476             $xstr->element('abbr', array('class' => 'geo',
477                                          'title' => $latlon),
478                            $name);
479             $xstr->elementEnd('a');
480             $this->out->raw($xstr->getString());
481         }
482         $this->out->elementEnd('span');
483     }
484
485     /**
486      * @param number $dec decimal degrees
487      * @return array split into 'deg', 'min', and 'sec'
488      */
489     function decimalDegreesToDMS($dec)
490     {
491         $deg = intval($dec);
492         $tempma = abs($dec) - abs($deg);
493
494         $tempma = $tempma * 3600;
495         $min = floor($tempma / 60);
496         $sec = $tempma - ($min*60);
497
498         return array("deg"=>$deg,"min"=>$min,"sec"=>$sec);
499     }
500
501     /**
502      * Show the source of the notice
503      *
504      * Either the name (and link) of the API client that posted the notice,
505      * or one of other other channels.
506      *
507      * @return void
508      */
509
510     function showNoticeSource()
511     {
512         $ns = $this->notice->getSource();
513
514         if ($ns) {
515             $source_name = (empty($ns->name)) ? ($ns->code ? _($ns->code) : _('web')) : _($ns->name);
516             $this->out->text(' ');
517             $this->out->elementStart('span', 'source');
518             // FIXME: probably i18n issue. If "from" is followed by text, that should be a parameter to "from" (from %s).
519             $this->out->text(_('from'));
520             $this->out->text(' ');
521
522             $name  = $source_name;
523             $url   = $ns->url;
524             $title = null;
525
526             if (Event::handle('StartNoticeSourceLink', array($this->notice, &$name, &$url, &$title))) {
527                 $name = $source_name;
528                 $url  = $ns->url;
529             }
530             Event::handle('EndNoticeSourceLink', array($this->notice, &$name, &$url, &$title));
531
532             // if $ns->name and $ns->url are populated we have
533             // configured a source attr somewhere
534             if (!empty($name) && !empty($url)) {
535
536                 $this->out->elementStart('span', 'device');
537
538                 $attrs = array(
539                     'href' => $url,
540                     'rel' => 'external'
541                 );
542
543                 if (!empty($title)) {
544                     $attrs['title'] = $title;
545                 }
546
547                 $this->out->element('a', $attrs, $name);
548                 $this->out->elementEnd('span');
549             } else {
550                 $this->out->element('span', 'device', $name);
551             }
552
553             $this->out->elementEnd('span');
554         }
555     }
556
557     /**
558      * show link to notice this notice is a reply to
559      *
560      * If this notice is a reply, show a link to the notice it is replying to. The
561      * heavy lifting for figuring out replies happens at save time.
562      *
563      * @return void
564      */
565
566     function showContext()
567     {
568         if ($this->notice->hasConversation()) {
569             $conv = Conversation::staticGet(
570                 'id',
571                 $this->notice->conversation
572             );
573             $convurl = $conv->uri;
574             if (!empty($convurl)) {
575                 $this->out->text(' ');
576                 $this->out->element(
577                     'a',
578                     array(
579                     'href' => $convurl.'#notice-'.$this->notice->id,
580                     'class' => 'response'),
581                     _('in context')
582                 );
583             } else {
584                 $msg = sprintf(
585                     "Couldn't find Conversation ID %d to make 'in context'"
586                     . "link for Notice ID %d",
587                     $this->notice->conversation,
588                     $this->notice->id
589                 );
590                 common_log(LOG_WARNING, $msg);
591             }
592         }
593     }
594
595     /**
596      * show a link to the author of repeat
597      *
598      * @return void
599      */
600
601     function showRepeat()
602     {
603         if (!empty($this->repeat)) {
604
605             $repeater = Profile::staticGet('id', $this->repeat->profile_id);
606
607             $attrs = array('href' => $repeater->profileurl,
608                            'class' => 'url');
609
610             if (!empty($repeater->fullname)) {
611                 $attrs['title'] = $repeater->fullname . ' (' . $repeater->nickname . ')';
612             }
613
614             $this->out->elementStart('span', 'repeat vcard');
615
616             $this->out->raw(_('Repeated by'));
617
618             $this->out->elementStart('a', $attrs);
619             $this->out->element('span', 'fn nickname', $repeater->nickname);
620             $this->out->elementEnd('a');
621
622             $this->out->elementEnd('span');
623         }
624     }
625
626     /**
627      * show a link to reply to the current notice
628      *
629      * Should either do the reply in the current notice form (if available), or
630      * link out to the notice-posting form. A little flakey, doesn't always work.
631      *
632      * @return void
633      */
634
635     function showReplyLink()
636     {
637         if (common_logged_in()) {
638             $this->out->text(' ');
639             $reply_url = common_local_url('newnotice',
640                                           array('replyto' => $this->profile->nickname, 'inreplyto' => $this->notice->id));
641             $this->out->elementStart('a', array('href' => $reply_url,
642                                                 'class' => 'notice_reply',
643                                                 'title' => _('Reply to this notice')));
644             $this->out->text(_('Reply'));
645             $this->out->text(' ');
646             $this->out->element('span', 'notice_id', $this->notice->id);
647             $this->out->elementEnd('a');
648         }
649     }
650
651     /**
652      * if the user is the author, let them delete the notice
653      *
654      * @return void
655      */
656
657     function showDeleteLink()
658     {
659         $user = common_current_user();
660
661         $todel = (empty($this->repeat)) ? $this->notice : $this->repeat;
662
663         if (!empty($user) &&
664             ($todel->profile_id == $user->id || $user->hasRight(Right::DELETEOTHERSNOTICE))) {
665             $this->out->text(' ');
666             $deleteurl = common_local_url('deletenotice',
667                                           array('notice' => $todel->id));
668             $this->out->element('a', array('href' => $deleteurl,
669                                            'class' => 'notice_delete',
670                                            'title' => _('Delete this notice')), _('Delete'));
671         }
672     }
673
674     /**
675      * show the form to repeat a notice
676      *
677      * @return void
678      */
679
680     function showRepeatForm()
681     {
682         $user = common_current_user();
683         if ($user && $user->id != $this->notice->profile_id) {
684             $this->out->text(' ');
685             $profile = $user->getProfile();
686             if ($profile->hasRepeated($this->notice->id)) {
687                 $this->out->element('span', array('class' => 'repeated',
688                                                   'title' => _('Notice repeated')),
689                                             _('Repeated'));
690             } else {
691                 $rf = new RepeatForm($this->out, $this->notice);
692                 $rf->show();
693             }
694         }
695     }
696
697     /**
698      * finish the notice
699      *
700      * Close the last elements in the notice list item
701      *
702      * @return void
703      */
704
705     function showEnd()
706     {
707         $this->out->elementEnd('li');
708     }
709 }