]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/noticelist.php
Use inlineScript() instead of element() to write inline javascript
[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             $item = $this->newListItem($this->notice);
100             $item->show();
101         }
102
103         $this->out->elementEnd('ol');
104         $this->out->elementEnd('div');
105
106         return $cnt;
107     }
108
109     /**
110      * returns a new list item for the current notice
111      *
112      * Recipe (factory?) method; overridden by sub-classes to give
113      * a different list item class.
114      *
115      * @param Notice $notice the current notice
116      *
117      * @return NoticeListItem a list item for displaying the notice
118      */
119
120     function newListItem($notice)
121     {
122         return new NoticeListItem($notice, $this->out);
123     }
124 }
125
126 /**
127  * widget for displaying a single notice
128  *
129  * This widget has the core smarts for showing a single notice: what to display,
130  * where, and under which circumstances. Its key method is show(); this is a recipe
131  * that calls all the other show*() methods to build up a single notice. The
132  * ProfileNoticeListItem subclass, for example, overrides showAuthor() to skip
133  * author info (since that's implicit by the data in the page).
134  *
135  * @category UI
136  * @package  StatusNet
137  * @author   Evan Prodromou <evan@status.net>
138  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
139  * @link     http://status.net/
140  * @see      NoticeList
141  * @see      ProfileNoticeListItem
142  */
143
144 class NoticeListItem extends Widget
145 {
146     /** The notice this item will show. */
147
148     var $notice = null;
149
150     /** The profile of the author of the notice, extracted once for convenience. */
151
152     var $profile = null;
153
154     /**
155      * constructor
156      *
157      * Also initializes the profile attribute.
158      *
159      * @param Notice $notice The notice we'll display
160      */
161
162     function __construct($notice, $out=null)
163     {
164         parent::__construct($out);
165         $this->notice  = $notice;
166         $this->profile = $notice->getProfile();
167     }
168
169     /**
170      * recipe function for displaying a single notice.
171      *
172      * This uses all the other methods to correctly display a notice. Override
173      * it or one of the others to fine-tune the output.
174      *
175      * @return void
176      */
177
178     function show()
179     {
180         $this->showStart();
181         if (Event::handle('StartShowNoticeItem', array($this))) {
182             $this->showNotice();
183             $this->showNoticeInfo();
184             $this->showNoticeOptions();
185             Event::handle('EndShowNoticeItem', array($this));
186         }
187         $this->showEnd();
188     }
189
190     function showNotice()
191     {
192         $this->out->elementStart('div', 'entry-title');
193         $this->showAuthor();
194         $this->showContent();
195         $this->out->elementEnd('div');
196     }
197
198     function showNoticeInfo()
199     {
200         $this->out->elementStart('div', 'entry-content');
201         $this->showNoticeLink();
202         $this->showNoticeSource();
203         $this->showNoticeLocation();
204         $this->showContext();
205         $this->out->elementEnd('div');
206     }
207
208     function showNoticeOptions()
209     {
210         $user = common_current_user();
211         if ($user) {
212             $this->out->elementStart('div', 'notice-options');
213             $this->showFaveForm();
214             $this->showReplyLink();
215             $this->showDeleteLink();
216             $this->out->elementEnd('div');
217         }
218     }
219
220     /**
221      * start a single notice.
222      *
223      * @return void
224      */
225
226     function showStart()
227     {
228         // XXX: RDFa
229         // TODO: add notice_type class e.g., notice_video, notice_image
230         $this->out->elementStart('li', array('class' => 'hentry notice',
231                                              'id' => 'notice-' . $this->notice->id));
232     }
233
234     /**
235      * show the "favorite" form
236      *
237      * @return void
238      */
239
240     function showFaveForm()
241     {
242         $user = common_current_user();
243         if ($user) {
244             if ($user->hasFave($this->notice)) {
245                 $disfavor = new DisfavorForm($this->out, $this->notice);
246                 $disfavor->show();
247             } else {
248                 $favor = new FavorForm($this->out, $this->notice);
249                 $favor->show();
250             }
251         }
252     }
253
254     /**
255      * show the author of a notice
256      *
257      * By default, this shows the avatar and (linked) nickname of the author.
258      *
259      * @return void
260      */
261
262     function showAuthor()
263     {
264         $this->out->elementStart('span', 'vcard author');
265         $attrs = array('href' => $this->profile->profileurl,
266                        'class' => 'url');
267         if (!empty($this->profile->fullname)) {
268             $attrs['title'] = $this->profile->fullname . ' (' . $this->profile->nickname . ')';
269         }
270         $this->out->elementStart('a', $attrs);
271         $this->showAvatar();
272         $this->showNickname();
273         $this->out->elementEnd('a');
274         $this->out->elementEnd('span');
275     }
276
277     /**
278      * show the avatar of the notice's author
279      *
280      * This will use the default avatar if no avatar is assigned for the author.
281      * It makes a link to the author's profile.
282      *
283      * @return void
284      */
285
286     function showAvatar()
287     {
288         if ('shownotice' === $this->out->trimmed('action')) {
289             $avatar_size = AVATAR_PROFILE_SIZE;
290         } else {
291             $avatar_size = AVATAR_STREAM_SIZE;
292         }
293         $avatar = $this->profile->getAvatar($avatar_size);
294
295         $this->out->element('img', array('src' => ($avatar) ?
296                                          $avatar->displayUrl() :
297                                          Avatar::defaultImage($avatar_size),
298                                          'class' => 'avatar photo',
299                                          'width' => $avatar_size,
300                                          'height' => $avatar_size,
301                                          'alt' =>
302                                          ($this->profile->fullname) ?
303                                          $this->profile->fullname :
304                                          $this->profile->nickname));
305     }
306
307     /**
308      * show the nickname of the author
309      *
310      * Links to the author's profile page
311      *
312      * @return void
313      */
314
315     function showNickname()
316     {
317         $this->out->element('span', array('class' => 'nickname fn'),
318                             $this->profile->nickname);
319     }
320
321     /**
322      * show the content of the notice
323      *
324      * Shows the content of the notice. This is pre-rendered for efficiency
325      * at save time. Some very old notices might not be pre-rendered, so
326      * they're rendered on the spot.
327      *
328      * @return void
329      */
330
331     function showContent()
332     {
333         // FIXME: URL, image, video, audio
334         $this->out->elementStart('p', array('class' => 'entry-content'));
335         if ($this->notice->rendered) {
336             $this->out->raw($this->notice->rendered);
337         } else {
338             // XXX: may be some uncooked notices in the DB,
339             // we cook them right now. This should probably disappear in future
340             // versions (>> 0.4.x)
341             $this->out->raw(common_render_content($this->notice->content, $this->notice));
342         }
343         $this->out->elementEnd('p');
344     }
345
346     /**
347      * show the link to the main page for the notice
348      *
349      * Displays a link to the page for a notice, with "relative" time. Tries to
350      * get remote notice URLs correct, but doesn't always succeed.
351      *
352      * @return void
353      */
354
355     function showNoticeLink()
356     {
357         if($this->notice->is_local){
358             $noticeurl = common_local_url('shownotice',
359                                       array('notice' => $this->notice->id));
360         }else{
361             $noticeurl = $this->notice->uri;
362         }
363         $this->out->elementStart('a', array('rel' => 'bookmark',
364                                             'class' => 'timestamp',
365                                             'href' => $noticeurl));
366         $dt = common_date_iso8601($this->notice->created);
367         $this->out->element('abbr', array('class' => 'published',
368                                           'title' => $dt),
369                             common_date_string($this->notice->created));
370         $this->out->elementEnd('a');
371     }
372
373     /**
374      * show the notice location
375      *
376      * shows the notice location in the correct language.
377      *
378      * If an URL is available, makes a link. Otherwise, just a span.
379      *
380      * @return void
381      */
382
383     function showNoticeLocation()
384     {
385         $id = $this->notice->id;
386
387         $location = $this->notice->getLocation();
388
389         if (empty($location)) {
390             return;
391         }
392
393         $name = $location->getName();
394
395         $lat = $this->notice->lat;
396         $lon = $this->notice->lon;
397         $latlon = (!empty($lat) && !empty($lon)) ? $lat.';'.$lon : '';
398
399         if (empty($name)) {
400             $latdms = $this->decimalDegreesToDMS(abs($lat));
401             $londms = $this->decimalDegreesToDMS(abs($lon));
402             $name = sprintf(
403                 _('%1$u°%2$u\'%3$u"%4$s %5$u°%6$u\'%7$u"%8$s'),
404                 $latdms['deg'],$latdms['min'], $latdms['sec'],($lat>0?_('N'):_('S')),
405                 $londms['deg'],$londms['min'], $londms['sec'],($lon>0?_('E'):_('W')));
406         }
407
408         $url  = $location->getUrl();
409
410         $this->out->elementStart('span', array('class' => 'location'));
411         $this->out->text(_('at'));
412         if (empty($url)) {
413             $this->out->element('span', array('class' => 'geo',
414                                               'title' => $latlon),
415                                 $name);
416         } else {
417             $this->out->element('a', array('class' => 'geo',
418                                            'title' => $latlon,
419                                            'href' => $url),
420                                 $name);
421         }
422         $this->out->elementEnd('span');
423     }
424
425     function decimalDegreesToDMS($dec)
426     {
427
428         $vars = explode(".",$dec);
429         $deg = $vars[0];
430         $tempma = "0.".$vars[1];
431
432         $tempma = $tempma * 3600;
433         $min = floor($tempma / 60);
434         $sec = $tempma - ($min*60);
435
436         return array("deg"=>$deg,"min"=>$min,"sec"=>$sec);
437     }
438
439     /**
440      * Show the source of the notice
441      *
442      * Either the name (and link) of the API client that posted the notice,
443      * or one of other other channels.
444      *
445      * @return void
446      */
447
448     function showNoticeSource()
449     {
450         if ($this->notice->source) {
451             $this->out->elementStart('span', 'source');
452             $this->out->text(_('from'));
453             $source_name = _($this->notice->source);
454             switch ($this->notice->source) {
455              case 'web':
456              case 'xmpp':
457              case 'mail':
458              case 'omb':
459              case 'system':
460              case 'api':
461                 $this->out->element('span', 'device', $source_name);
462                 break;
463              default:
464                 $ns = Notice_source::staticGet($this->notice->source);
465                 if ($ns) {
466                     $this->out->elementStart('span', 'device');
467                     $this->out->element('a', array('href' => $ns->url,
468                                                    'rel' => 'external'),
469                                         $ns->name);
470                     $this->out->elementEnd('span');
471                 } else {
472                     $this->out->element('span', 'device', $source_name);
473                 }
474                 break;
475             }
476             $this->out->elementEnd('span');
477         }
478     }
479
480     /**
481      * show link to notice this notice is a reply to
482      *
483      * If this notice is a reply, show a link to the notice it is replying to. The
484      * heavy lifting for figuring out replies happens at save time.
485      *
486      * @return void
487      */
488
489     function showContext()
490     {
491         $hasConversation = false;
492         if( !empty($this->notice->conversation)
493             && $this->notice->conversation != $this->notice->id){
494             $hasConversation = true;
495         }else{
496             $conversation = Notice::conversationStream($this->notice->id, 1, 1);
497             if($conversation->N > 0){
498                 $hasConversation = true;
499             }
500         }
501         if ($hasConversation){
502             $convurl = common_local_url('conversation',
503                                          array('id' => $this->notice->conversation));
504             $this->out->element('a', array('href' => $convurl.'#notice-'.$this->notice->id,
505                                            'class' => 'response'),
506                                 _('in context'));
507         }
508     }
509
510     /**
511      * show a link to reply to the current notice
512      *
513      * Should either do the reply in the current notice form (if available), or
514      * link out to the notice-posting form. A little flakey, doesn't always work.
515      *
516      * @return void
517      */
518
519     function showReplyLink()
520     {
521         if (common_logged_in()) {
522             $reply_url = common_local_url('newnotice',
523                                           array('replyto' => $this->profile->nickname, 'inreplyto' => $this->notice->id));
524             $this->out->elementStart('a', array('href' => $reply_url,
525                                                 'class' => 'notice_reply',
526                                                 'title' => _('Reply to this notice')));
527             $this->out->text(_('Reply'));
528             $this->out->element('span', 'notice_id', $this->notice->id);
529             $this->out->elementEnd('a');
530         }
531     }
532
533     /**
534      * if the user is the author, let them delete the notice
535      *
536      * @return void
537      */
538
539     function showDeleteLink()
540     {
541         $user = common_current_user();
542
543         if (!empty($user) &&
544             ($this->notice->profile_id == $user->id || $user->hasRight(Right::DELETEOTHERSNOTICE))) {
545
546             $deleteurl = common_local_url('deletenotice',
547                                           array('notice' => $this->notice->id));
548             $this->out->element('a', array('href' => $deleteurl,
549                                            'class' => 'notice_delete',
550                                            'title' => _('Delete this notice')), _('Delete'));
551         }
552     }
553
554     /**
555      * finish the notice
556      *
557      * Close the last elements in the notice list item
558      *
559      * @return void
560      */
561
562     function showEnd()
563     {
564         $this->out->elementEnd('li');
565     }
566 }