]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/noticelist.php
Merge branch 'master' of gitorious.org:statusnet/mainline into 0.9.x
[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         if (common_config('attachments', 'show_thumbs')) {
389             $al = new InlineAttachmentList($this->notice, $this->out);
390             $al->show();
391         }
392     }
393
394     /**
395      * show the link to the main page for the notice
396      *
397      * Displays a link to the page for a notice, with "relative" time. Tries to
398      * get remote notice URLs correct, but doesn't always succeed.
399      *
400      * @return void
401      */
402
403     function showNoticeLink()
404     {
405         $noticeurl = $this->notice->bestUrl();
406
407         // above should always return an URL
408
409         assert(!empty($noticeurl));
410
411         $this->out->elementStart('a', array('rel' => 'bookmark',
412                                             'class' => 'timestamp',
413                                             'href' => $noticeurl));
414         $dt = common_date_iso8601($this->notice->created);
415         $this->out->element('abbr', array('class' => 'published',
416                                           'title' => $dt),
417                             common_date_string($this->notice->created));
418         $this->out->elementEnd('a');
419     }
420
421     /**
422      * show the notice location
423      *
424      * shows the notice location in the correct language.
425      *
426      * If an URL is available, makes a link. Otherwise, just a span.
427      *
428      * @return void
429      */
430
431     function showNoticeLocation()
432     {
433         $id = $this->notice->id;
434
435         $location = $this->notice->getLocation();
436
437         if (empty($location)) {
438             return;
439         }
440
441         $name = $location->getName();
442
443         $lat = $this->notice->lat;
444         $lon = $this->notice->lon;
445         $latlon = (!empty($lat) && !empty($lon)) ? $lat.';'.$lon : '';
446
447         if (empty($name)) {
448             $latdms = $this->decimalDegreesToDMS(abs($lat));
449             $londms = $this->decimalDegreesToDMS(abs($lon));
450             // TRANS: Used in coordinates as abbreviation of north
451             $north = _('N');
452             // TRANS: Used in coordinates as abbreviation of south
453             $south = _('S');
454             // TRANS: Used in coordinates as abbreviation of east
455             $east = _('E');
456             // TRANS: Used in coordinates as abbreviation of west
457             $west = _('W');
458             $name = sprintf(
459                 _('%1$u°%2$u\'%3$u"%4$s %5$u°%6$u\'%7$u"%8$s'),
460                 $latdms['deg'],$latdms['min'], $latdms['sec'],($lat>0? $north:$south),
461                 $londms['deg'],$londms['min'], $londms['sec'],($lon>0? $east:$west));
462         }
463
464         $url  = $location->getUrl();
465
466         $this->out->text(' ');
467         $this->out->elementStart('span', array('class' => 'location'));
468         $this->out->text(_('at'));
469         $this->out->text(' ');
470         if (empty($url)) {
471             $this->out->element('abbr', array('class' => 'geo',
472                                               'title' => $latlon),
473                                 $name);
474         } else {
475             $xstr = new XMLStringer(false);
476             $xstr->elementStart('a', array('href' => $url,
477                                            'rel' => 'external'));
478             $xstr->element('abbr', array('class' => 'geo',
479                                          'title' => $latlon),
480                            $name);
481             $xstr->elementEnd('a');
482             $this->out->raw($xstr->getString());
483         }
484         $this->out->elementEnd('span');
485     }
486
487     /**
488      * @param number $dec decimal degrees
489      * @return array split into 'deg', 'min', and 'sec'
490      */
491     function decimalDegreesToDMS($dec)
492     {
493         $deg = intval($dec);
494         $tempma = abs($dec) - abs($deg);
495
496         $tempma = $tempma * 3600;
497         $min = floor($tempma / 60);
498         $sec = $tempma - ($min*60);
499
500         return array("deg"=>$deg,"min"=>$min,"sec"=>$sec);
501     }
502
503     /**
504      * Show the source of the notice
505      *
506      * Either the name (and link) of the API client that posted the notice,
507      * or one of other other channels.
508      *
509      * @return void
510      */
511
512     function showNoticeSource()
513     {
514         $ns = $this->notice->getSource();
515
516         if ($ns) {
517             $source_name = (empty($ns->name)) ? ($ns->code ? _($ns->code) : _('web')) : _($ns->name);
518             $this->out->text(' ');
519             $this->out->elementStart('span', 'source');
520             // FIXME: probably i18n issue. If "from" is followed by text, that should be a parameter to "from" (from %s).
521             $this->out->text(_('from'));
522             $this->out->text(' ');
523
524             $name  = $source_name;
525             $url   = $ns->url;
526             $title = null;
527
528             if (Event::handle('StartNoticeSourceLink', array($this->notice, &$name, &$url, &$title))) {
529                 $name = $source_name;
530                 $url  = $ns->url;
531             }
532             Event::handle('EndNoticeSourceLink', array($this->notice, &$name, &$url, &$title));
533
534             // if $ns->name and $ns->url are populated we have
535             // configured a source attr somewhere
536             if (!empty($name) && !empty($url)) {
537
538                 $this->out->elementStart('span', 'device');
539
540                 $attrs = array(
541                     'href' => $url,
542                     'rel' => 'external'
543                 );
544
545                 if (!empty($title)) {
546                     $attrs['title'] = $title;
547                 }
548
549                 $this->out->element('a', $attrs, $name);
550                 $this->out->elementEnd('span');
551             } else {
552                 $this->out->element('span', 'device', $name);
553             }
554
555             $this->out->elementEnd('span');
556         }
557     }
558
559     /**
560      * show link to notice this notice is a reply to
561      *
562      * If this notice is a reply, show a link to the notice it is replying to. The
563      * heavy lifting for figuring out replies happens at save time.
564      *
565      * @return void
566      */
567
568     function showContext()
569     {
570         if ($this->notice->hasConversation()) {
571             $conv = Conversation::staticGet(
572                 'id',
573                 $this->notice->conversation
574             );
575             $convurl = $conv->uri;
576             if (!empty($convurl)) {
577                 $this->out->text(' ');
578                 $this->out->element(
579                     'a',
580                     array(
581                     'href' => $convurl.'#notice-'.$this->notice->id,
582                     'class' => 'response'),
583                     _('in context')
584                 );
585             } else {
586                 $msg = sprintf(
587                     "Couldn't find Conversation ID %d to make 'in context'"
588                     . "link for Notice ID %d",
589                     $this->notice->conversation,
590                     $this->notice->id
591                 );
592                 common_log(LOG_WARNING, $msg);
593             }
594         }
595     }
596
597     /**
598      * show a link to the author of repeat
599      *
600      * @return void
601      */
602
603     function showRepeat()
604     {
605         if (!empty($this->repeat)) {
606
607             $repeater = Profile::staticGet('id', $this->repeat->profile_id);
608
609             $attrs = array('href' => $repeater->profileurl,
610                            'class' => 'url');
611
612             if (!empty($repeater->fullname)) {
613                 $attrs['title'] = $repeater->fullname . ' (' . $repeater->nickname . ')';
614             }
615
616             $this->out->elementStart('span', 'repeat vcard');
617
618             $this->out->raw(_('Repeated by'));
619
620             $this->out->elementStart('a', $attrs);
621             $this->out->element('span', 'fn nickname', $repeater->nickname);
622             $this->out->elementEnd('a');
623
624             $this->out->elementEnd('span');
625         }
626     }
627
628     /**
629      * show a link to reply to the current notice
630      *
631      * Should either do the reply in the current notice form (if available), or
632      * link out to the notice-posting form. A little flakey, doesn't always work.
633      *
634      * @return void
635      */
636
637     function showReplyLink()
638     {
639         if (common_logged_in()) {
640             $this->out->text(' ');
641             $reply_url = common_local_url('newnotice',
642                                           array('replyto' => $this->profile->nickname, 'inreplyto' => $this->notice->id));
643             $this->out->elementStart('a', array('href' => $reply_url,
644                                                 'class' => 'notice_reply',
645                                                 'title' => _('Reply to this notice')));
646             $this->out->text(_('Reply'));
647             $this->out->text(' ');
648             $this->out->element('span', 'notice_id', $this->notice->id);
649             $this->out->elementEnd('a');
650         }
651     }
652
653     /**
654      * if the user is the author, let them delete the notice
655      *
656      * @return void
657      */
658
659     function showDeleteLink()
660     {
661         $user = common_current_user();
662
663         $todel = (empty($this->repeat)) ? $this->notice : $this->repeat;
664
665         if (!empty($user) &&
666             ($todel->profile_id == $user->id || $user->hasRight(Right::DELETEOTHERSNOTICE))) {
667             $this->out->text(' ');
668             $deleteurl = common_local_url('deletenotice',
669                                           array('notice' => $todel->id));
670             $this->out->element('a', array('href' => $deleteurl,
671                                            'class' => 'notice_delete',
672                                            'title' => _('Delete this notice')), _('Delete'));
673         }
674     }
675
676     /**
677      * show the form to repeat a notice
678      *
679      * @return void
680      */
681
682     function showRepeatForm()
683     {
684         $user = common_current_user();
685         if ($user && $user->id != $this->notice->profile_id) {
686             $this->out->text(' ');
687             $profile = $user->getProfile();
688             if ($profile->hasRepeated($this->notice->id)) {
689                 $this->out->element('span', array('class' => 'repeated',
690                                                   'title' => _('Notice repeated')),
691                                             _('Repeated'));
692             } else {
693                 $rf = new RepeatForm($this->out, $this->notice);
694                 $rf->show();
695             }
696         }
697     }
698
699     /**
700      * finish the notice
701      *
702      * Close the last elements in the notice list item
703      *
704      * @return void
705      */
706
707     function showEnd()
708     {
709         $this->out->elementEnd('li');
710     }
711 }