2011-03-09 03:48:16 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2010, StatusNet, Inc.
|
|
|
|
*
|
|
|
|
* An item in a notice list
|
2011-04-03 00:09:02 +01:00
|
|
|
*
|
2011-03-09 03:48:16 +00:00
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category Widget
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
2014-05-01 13:28:18 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2011-03-09 03:48:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* widget for displaying a single notice
|
|
|
|
*
|
|
|
|
* This widget has the core smarts for showing a single notice: what to display,
|
|
|
|
* where, and under which circumstances. Its key method is show(); this is a recipe
|
|
|
|
* that calls all the other show*() methods to build up a single notice. The
|
|
|
|
* ProfileNoticeListItem subclass, for example, overrides showAuthor() to skip
|
|
|
|
* author info (since that's implicit by the data in the page).
|
|
|
|
*
|
|
|
|
* @category UI
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
* @see NoticeList
|
|
|
|
* @see ProfileNoticeListItem
|
|
|
|
*/
|
|
|
|
class NoticeListItem extends Widget
|
|
|
|
{
|
|
|
|
/** The notice this item will show. */
|
|
|
|
var $notice = null;
|
|
|
|
|
|
|
|
/** The notice that was repeated. */
|
|
|
|
var $repeat = null;
|
|
|
|
|
|
|
|
/** The profile of the author of the notice, extracted once for convenience. */
|
|
|
|
var $profile = null;
|
|
|
|
|
2015-01-08 19:07:10 +00:00
|
|
|
protected $addressees = true;
|
|
|
|
protected $attachments = true;
|
2015-01-09 14:46:35 +00:00
|
|
|
protected $id_prefix = null;
|
2015-01-08 19:07:10 +00:00
|
|
|
protected $options = true;
|
|
|
|
protected $maxchars = 0; // if <= 0 it means use full posts
|
2015-03-10 12:07:36 +00:00
|
|
|
protected $item_tag = 'li';
|
2015-10-23 19:51:33 +01:00
|
|
|
protected $pa = null;
|
2015-01-08 19:07:10 +00:00
|
|
|
|
2011-03-09 03:48:16 +00:00
|
|
|
/**
|
|
|
|
* constructor
|
|
|
|
*
|
|
|
|
* Also initializes the profile attribute.
|
|
|
|
*
|
|
|
|
* @param Notice $notice The notice we'll display
|
|
|
|
*/
|
2015-01-08 19:07:10 +00:00
|
|
|
function __construct(Notice $notice, Action $out=null, array $prefs=array())
|
2011-03-09 03:48:16 +00:00
|
|
|
{
|
|
|
|
parent::__construct($out);
|
|
|
|
if (!empty($notice->repeat_of)) {
|
2013-08-18 12:04:58 +01:00
|
|
|
$original = Notice::getKV('id', $notice->repeat_of);
|
2014-06-04 23:59:13 +01:00
|
|
|
if (!$original instanceof Notice) { // could have been deleted
|
2011-03-09 03:48:16 +00:00
|
|
|
$this->notice = $notice;
|
|
|
|
} else {
|
|
|
|
$this->notice = $original;
|
|
|
|
$this->repeat = $notice;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->notice = $notice;
|
|
|
|
}
|
2015-01-08 19:07:10 +00:00
|
|
|
|
2011-03-09 03:48:16 +00:00
|
|
|
$this->profile = $this->notice->getProfile();
|
2015-01-08 19:07:10 +00:00
|
|
|
|
|
|
|
// integer preferences
|
|
|
|
foreach(array('maxchars') as $key) {
|
|
|
|
if (array_key_exists($key, $prefs)) {
|
|
|
|
$this->$key = (int)$prefs[$key];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// boolean preferences
|
|
|
|
foreach(array('addressees', 'attachments', 'options') as $key) {
|
|
|
|
if (array_key_exists($key, $prefs)) {
|
|
|
|
$this->$key = (bool)$prefs[$key];
|
|
|
|
}
|
|
|
|
}
|
2015-01-09 14:46:35 +00:00
|
|
|
// string preferences
|
2015-03-10 12:07:36 +00:00
|
|
|
foreach(array('id_prefix', 'item_tag') as $key) {
|
2015-01-09 14:46:35 +00:00
|
|
|
if (array_key_exists($key, $prefs)) {
|
|
|
|
$this->$key = $prefs[$key];
|
|
|
|
}
|
|
|
|
}
|
2011-03-09 03:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* recipe function for displaying a single notice.
|
|
|
|
*
|
|
|
|
* This uses all the other methods to correctly display a notice. Override
|
|
|
|
* it or one of the others to fine-tune the output.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function show()
|
|
|
|
{
|
|
|
|
if (empty($this->notice)) {
|
|
|
|
common_log(LOG_WARNING, "Trying to show missing notice; skipping.");
|
|
|
|
return;
|
|
|
|
} else if (empty($this->profile)) {
|
|
|
|
common_log(LOG_WARNING, "Trying to show missing profile (" . $this->notice->profile_id . "); skipping.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->showStart();
|
|
|
|
if (Event::handle('StartShowNoticeItem', array($this))) {
|
|
|
|
$this->showNotice();
|
|
|
|
Event::handle('EndShowNoticeItem', array($this));
|
|
|
|
}
|
|
|
|
$this->showEnd();
|
|
|
|
}
|
|
|
|
|
|
|
|
function showNotice()
|
|
|
|
{
|
2014-10-26 20:41:04 +00:00
|
|
|
if (Event::handle('StartShowNoticeItemNotice', array($this))) {
|
2015-01-08 15:42:26 +00:00
|
|
|
$this->showNoticeHeaders();
|
2014-10-26 20:41:04 +00:00
|
|
|
$this->showContent();
|
2015-01-08 15:42:26 +00:00
|
|
|
$this->showNoticeFooter();
|
2014-10-26 21:07:16 +00:00
|
|
|
Event::handle('EndShowNoticeItemNotice', array($this));
|
2014-10-26 20:41:04 +00:00
|
|
|
}
|
2014-06-21 20:01:17 +01:00
|
|
|
}
|
|
|
|
|
2015-01-08 15:42:26 +00:00
|
|
|
function showNoticeHeaders()
|
|
|
|
{
|
|
|
|
$this->elementStart('section', array('class'=>'notice-headers'));
|
|
|
|
$this->showNoticeTitle();
|
|
|
|
$this->showAuthor();
|
2015-10-19 19:40:40 +01:00
|
|
|
|
2015-10-23 19:51:33 +01:00
|
|
|
if (!empty($this->notice->reply_to) || count($this->getProfileAddressees()) > 0) {
|
2015-10-19 19:40:40 +01:00
|
|
|
$this->elementStart('div', array('class' => 'parents'));
|
|
|
|
if (!empty($this->notice->reply_to)) { $this->showParent(); }
|
|
|
|
if ($this->addressees) { $this->showAddressees(); }
|
|
|
|
$this->elementEnd('div');
|
|
|
|
}
|
2015-01-08 15:42:26 +00:00
|
|
|
$this->elementEnd('section');
|
|
|
|
}
|
|
|
|
|
|
|
|
function showNoticeFooter()
|
|
|
|
{
|
|
|
|
$this->elementStart('footer');
|
|
|
|
$this->showNoticeInfo();
|
2015-01-08 19:07:10 +00:00
|
|
|
if ($this->options) { $this->showNoticeOptions(); }
|
2015-02-25 15:22:59 +00:00
|
|
|
if ($this->attachments) { $this->showNoticeAttachments(); }
|
2015-01-08 15:42:26 +00:00
|
|
|
$this->elementEnd('footer');
|
|
|
|
}
|
|
|
|
|
2014-06-21 20:01:17 +01:00
|
|
|
function showNoticeTitle()
|
|
|
|
{
|
|
|
|
if (Event::handle('StartShowNoticeTitle', array($this))) {
|
2015-09-29 14:17:38 +01:00
|
|
|
$this->element('a', array('href' => $this->notice->getUrl(true),
|
2015-01-08 15:42:26 +00:00
|
|
|
'class' => 'notice-title'),
|
2014-06-21 20:01:17 +01:00
|
|
|
$this->notice->getTitle());
|
|
|
|
Event::handle('EndShowNoticeTitle', array($this));
|
|
|
|
}
|
2011-03-09 03:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function showNoticeInfo()
|
|
|
|
{
|
|
|
|
if (Event::handle('StartShowNoticeInfo', array($this))) {
|
|
|
|
$this->showNoticeLink();
|
|
|
|
$this->showNoticeSource();
|
|
|
|
$this->showNoticeLocation();
|
2014-11-05 18:34:39 +00:00
|
|
|
$this->showPermalink();
|
2011-03-09 03:48:16 +00:00
|
|
|
Event::handle('EndShowNoticeInfo', array($this));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function showNoticeOptions()
|
|
|
|
{
|
|
|
|
if (Event::handle('StartShowNoticeOptions', array($this))) {
|
|
|
|
$user = common_current_user();
|
|
|
|
if ($user) {
|
|
|
|
$this->out->elementStart('div', 'notice-options');
|
2012-03-08 12:58:45 +00:00
|
|
|
if (Event::handle('StartShowNoticeOptionItems', array($this))) {
|
|
|
|
$this->showReplyLink();
|
|
|
|
$this->showDeleteLink();
|
|
|
|
Event::handle('EndShowNoticeOptionItems', array($this));
|
|
|
|
}
|
2011-03-09 03:48:16 +00:00
|
|
|
$this->out->elementEnd('div');
|
|
|
|
}
|
|
|
|
Event::handle('EndShowNoticeOptions', array($this));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* start a single notice.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showStart()
|
|
|
|
{
|
|
|
|
if (Event::handle('StartOpenNoticeListItemElement', array($this))) {
|
|
|
|
$id = (empty($this->repeat)) ? $this->notice->id : $this->repeat->id;
|
2014-06-21 20:01:17 +01:00
|
|
|
$class = 'h-entry notice';
|
2011-03-26 20:47:36 +00:00
|
|
|
if ($this->notice->scope != 0 && $this->notice->scope != 1) {
|
|
|
|
$class .= ' limited-scope';
|
|
|
|
}
|
2011-08-25 17:19:22 +01:00
|
|
|
if (!empty($this->notice->source)) {
|
|
|
|
$class .= ' notice-source-'.$this->notice->source;
|
|
|
|
}
|
2015-01-09 14:46:35 +00:00
|
|
|
$id_prefix = (strlen($this->id_prefix) ? $this->id_prefix . '-' : '');
|
2015-03-10 12:07:36 +00:00
|
|
|
$this->out->elementStart($this->item_tag, array('class' => $class,
|
2015-01-09 14:46:35 +00:00
|
|
|
'id' => "${id_prefix}notice-${id}"));
|
2011-03-09 03:48:16 +00:00
|
|
|
Event::handle('EndOpenNoticeListItemElement', array($this));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* show the author of a notice
|
|
|
|
*
|
|
|
|
* By default, this shows the avatar and (linked) nickname of the author.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-04-16 16:22:46 +01:00
|
|
|
|
2011-03-09 03:48:16 +00:00
|
|
|
function showAuthor()
|
|
|
|
{
|
|
|
|
$attrs = array('href' => $this->profile->profileurl,
|
2015-10-27 17:19:03 +00:00
|
|
|
'class' => 'h-card',
|
2014-06-21 20:01:17 +01:00
|
|
|
'title' => $this->profile->getNickname());
|
2015-10-27 17:19:03 +00:00
|
|
|
if(empty($this->repeat)) { $attrs['class'] .= ' p-author'; }
|
2011-04-16 20:30:50 +01:00
|
|
|
|
2014-07-06 00:37:31 +01:00
|
|
|
if (Event::handle('StartShowNoticeItemAuthor', array($this->profile, $this->out, &$attrs))) {
|
|
|
|
$this->out->elementStart('a', $attrs);
|
|
|
|
$this->showAvatar($this->profile);
|
|
|
|
$this->out->text($this->profile->getStreamName());
|
|
|
|
$this->out->elementEnd('a');
|
|
|
|
Event::handle('EndShowNoticeItemAuthor', array($this->profile, $this->out));
|
|
|
|
}
|
2011-03-09 03:48:16 +00:00
|
|
|
}
|
|
|
|
|
2015-10-19 19:40:40 +01:00
|
|
|
function showParent()
|
|
|
|
{
|
|
|
|
$this->out->element(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => $this->notice->getParent()->getUrl(),
|
|
|
|
'class' => 'u-in-reply-to',
|
|
|
|
'rel' => 'in-reply-to'
|
|
|
|
),
|
|
|
|
'in reply to'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-04-16 20:30:50 +01:00
|
|
|
function showAddressees()
|
|
|
|
{
|
2011-05-30 21:20:34 +01:00
|
|
|
$pa = $this->getProfileAddressees();
|
|
|
|
|
2013-10-30 11:56:17 +00:00
|
|
|
if (!empty($pa)) {
|
2014-06-21 20:01:17 +01:00
|
|
|
$this->out->elementStart('ul', 'addressees');
|
2011-05-30 21:20:34 +01:00
|
|
|
$first = true;
|
2013-10-30 11:56:17 +00:00
|
|
|
foreach ($pa as $addr) {
|
2014-06-21 20:01:17 +01:00
|
|
|
$this->out->elementStart('li', 'h-card');
|
2011-05-30 21:20:34 +01:00
|
|
|
$text = $addr['text'];
|
|
|
|
unset($addr['text']);
|
|
|
|
$this->out->element('a', $addr, $text);
|
2014-06-21 20:01:17 +01:00
|
|
|
$this->out->elementEnd('li');
|
2011-05-30 21:20:34 +01:00
|
|
|
}
|
2014-06-21 20:01:17 +01:00
|
|
|
$this->out->elementEnd('ul', 'addressees');
|
2011-05-30 21:20:34 +01:00
|
|
|
}
|
2011-04-16 20:30:50 +01:00
|
|
|
}
|
|
|
|
|
2011-05-30 21:20:34 +01:00
|
|
|
function getProfileAddressees()
|
2011-04-16 20:30:50 +01:00
|
|
|
{
|
2015-10-23 19:51:33 +01:00
|
|
|
if($this->pa) { return $this->pa; }
|
|
|
|
$this->pa = array();
|
2011-05-30 21:20:34 +01:00
|
|
|
|
2013-10-30 11:56:17 +00:00
|
|
|
$attentions = $this->getReplyProfiles();
|
2011-04-16 20:30:50 +01:00
|
|
|
|
2013-10-30 11:56:17 +00:00
|
|
|
foreach ($attentions as $attn) {
|
|
|
|
$class = $attn->isGroup() ? 'group' : 'account';
|
2015-10-23 19:51:33 +01:00
|
|
|
$this->pa[] = array('href' => $attn->profileurl,
|
|
|
|
'title' => $attn->getNickname(),
|
|
|
|
'class' => "addressee {$class}",
|
|
|
|
'text' => $attn->getStreamName());
|
2011-04-16 20:30:50 +01:00
|
|
|
}
|
|
|
|
|
2015-10-23 19:51:33 +01:00
|
|
|
return $this->pa;
|
2011-04-16 20:30:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function getReplyProfiles()
|
|
|
|
{
|
|
|
|
return $this->notice->getReplyProfiles();
|
|
|
|
}
|
|
|
|
|
2011-03-09 03:48:16 +00:00
|
|
|
/**
|
|
|
|
* show the nickname of the author
|
|
|
|
*
|
|
|
|
* Links to the author's profile page
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showNickname()
|
|
|
|
{
|
2014-06-21 20:01:17 +01:00
|
|
|
$this->out->raw('<span class="p-name">' .
|
|
|
|
htmlspecialchars($this->profile->getNickname()) .
|
2011-03-09 03:48:16 +00:00
|
|
|
'</span>');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* show the content of the notice
|
|
|
|
*
|
|
|
|
* Shows the content of the notice. This is pre-rendered for efficiency
|
|
|
|
* at save time. Some very old notices might not be pre-rendered, so
|
|
|
|
* they're rendered on the spot.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showContent()
|
|
|
|
{
|
|
|
|
// FIXME: URL, image, video, audio
|
2015-01-08 15:42:26 +00:00
|
|
|
$this->out->elementStart('article', array('class' => 'e-content'));
|
2014-07-04 13:14:49 +01:00
|
|
|
if (Event::handle('StartShowNoticeContent', array($this->notice, $this->out, $this->out->getScoped()))) {
|
2015-01-08 19:07:10 +00:00
|
|
|
if ($this->maxchars > 0 && mb_strlen($this->notice->content) > $this->maxchars) {
|
|
|
|
$this->out->text(mb_substr($this->notice->content, 0, $this->maxchars) . '[…]');
|
|
|
|
} elseif ($this->notice->rendered) {
|
2014-07-04 13:14:49 +01:00
|
|
|
$this->out->raw($this->notice->rendered);
|
|
|
|
} else {
|
|
|
|
// XXX: may be some uncooked notices in the DB,
|
|
|
|
// we cook them right now. This should probably disappear in future
|
|
|
|
// versions (>> 0.4.x)
|
|
|
|
$this->out->raw(common_render_content($this->notice->content, $this->notice));
|
|
|
|
}
|
|
|
|
Event::handle('EndShowNoticeContent', array($this->notice, $this->out, $this->out->getScoped()));
|
2011-03-09 03:48:16 +00:00
|
|
|
}
|
2015-01-08 15:42:26 +00:00
|
|
|
$this->out->elementEnd('article');
|
2011-03-09 03:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function showNoticeAttachments() {
|
|
|
|
if (common_config('attachments', 'show_thumbs')) {
|
|
|
|
$al = new InlineAttachmentList($this->notice, $this->out);
|
|
|
|
$al->show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* show the link to the main page for the notice
|
|
|
|
*
|
2014-05-01 13:28:18 +01:00
|
|
|
* Displays a local link to the rendered notice, with "relative" time.
|
2011-03-09 03:48:16 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showNoticeLink()
|
|
|
|
{
|
|
|
|
$this->out->elementStart('a', array('rel' => 'bookmark',
|
2014-11-05 18:49:41 +00:00
|
|
|
'class' => 'timestamp',
|
2014-11-05 18:34:39 +00:00
|
|
|
'href' => Conversation::getUrlFromNotice($this->notice)));
|
2014-04-28 16:45:21 +01:00
|
|
|
$this->out->element('time', array('class' => 'dt-published',
|
|
|
|
'datetime' => common_date_iso8601($this->notice->created),
|
|
|
|
'title' => common_exact_date($this->notice->created)),
|
2011-03-09 03:48:16 +00:00
|
|
|
common_date_string($this->notice->created));
|
|
|
|
$this->out->elementEnd('a');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* show the notice location
|
|
|
|
*
|
|
|
|
* shows the notice location in the correct language.
|
|
|
|
*
|
|
|
|
* If an URL is available, makes a link. Otherwise, just a span.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showNoticeLocation()
|
|
|
|
{
|
2015-09-04 21:25:11 +01:00
|
|
|
return;
|
|
|
|
try {
|
|
|
|
$location = Notice_location::locFromStored($this->notice);
|
|
|
|
} catch (NoResultException $e) {
|
|
|
|
return;
|
|
|
|
} catch (ServerException $e) {
|
2011-03-09 03:48:16 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$name = $location->getName();
|
|
|
|
|
2015-09-04 21:25:11 +01:00
|
|
|
$lat = $location->lat;
|
|
|
|
$lon = $location->lon;
|
2011-03-09 03:48:16 +00:00
|
|
|
$latlon = (!empty($lat) && !empty($lon)) ? $lat.';'.$lon : '';
|
|
|
|
|
|
|
|
if (empty($name)) {
|
|
|
|
$latdms = $this->decimalDegreesToDMS(abs($lat));
|
|
|
|
$londms = $this->decimalDegreesToDMS(abs($lon));
|
2011-04-03 00:09:02 +01:00
|
|
|
// TRANS: Used in coordinates as abbreviation of north.
|
2011-03-09 03:48:16 +00:00
|
|
|
$north = _('N');
|
2011-04-03 00:09:02 +01:00
|
|
|
// TRANS: Used in coordinates as abbreviation of south.
|
2011-03-09 03:48:16 +00:00
|
|
|
$south = _('S');
|
2011-04-03 00:09:02 +01:00
|
|
|
// TRANS: Used in coordinates as abbreviation of east.
|
2011-03-09 03:48:16 +00:00
|
|
|
$east = _('E');
|
2011-04-03 00:09:02 +01:00
|
|
|
// TRANS: Used in coordinates as abbreviation of west.
|
2011-03-09 03:48:16 +00:00
|
|
|
$west = _('W');
|
|
|
|
$name = sprintf(
|
2011-04-03 00:09:02 +01:00
|
|
|
// TRANS: Coordinates message.
|
|
|
|
// TRANS: %1$s is lattitude degrees, %2$s is lattitude minutes,
|
|
|
|
// TRANS: %3$s is lattitude seconds, %4$s is N (north) or S (south) depending on lattitude,
|
|
|
|
// TRANS: %5$s is longitude degrees, %6$s is longitude minutes,
|
|
|
|
// TRANS: %7$s is longitude seconds, %8$s is E (east) or W (west) depending on longitude,
|
2011-03-09 03:48:16 +00:00
|
|
|
_('%1$u°%2$u\'%3$u"%4$s %5$u°%6$u\'%7$u"%8$s'),
|
|
|
|
$latdms['deg'],$latdms['min'], $latdms['sec'],($lat>0? $north:$south),
|
|
|
|
$londms['deg'],$londms['min'], $londms['sec'],($lon>0? $east:$west));
|
|
|
|
}
|
|
|
|
|
|
|
|
$url = $location->getUrl();
|
|
|
|
|
|
|
|
$this->out->text(' ');
|
|
|
|
$this->out->elementStart('span', array('class' => 'location'));
|
2011-04-03 00:09:02 +01:00
|
|
|
// TRANS: Followed by geo location.
|
2011-03-09 03:48:16 +00:00
|
|
|
$this->out->text(_('at'));
|
|
|
|
$this->out->text(' ');
|
|
|
|
if (empty($url)) {
|
|
|
|
$this->out->element('abbr', array('class' => 'geo',
|
|
|
|
'title' => $latlon),
|
|
|
|
$name);
|
|
|
|
} else {
|
|
|
|
$xstr = new XMLStringer(false);
|
|
|
|
$xstr->elementStart('a', array('href' => $url,
|
|
|
|
'rel' => 'external'));
|
|
|
|
$xstr->element('abbr', array('class' => 'geo',
|
|
|
|
'title' => $latlon),
|
|
|
|
$name);
|
|
|
|
$xstr->elementEnd('a');
|
|
|
|
$this->out->raw($xstr->getString());
|
|
|
|
}
|
|
|
|
$this->out->elementEnd('span');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param number $dec decimal degrees
|
|
|
|
* @return array split into 'deg', 'min', and 'sec'
|
|
|
|
*/
|
|
|
|
function decimalDegreesToDMS($dec)
|
|
|
|
{
|
|
|
|
$deg = intval($dec);
|
|
|
|
$tempma = abs($dec) - abs($deg);
|
|
|
|
|
|
|
|
$tempma = $tempma * 3600;
|
|
|
|
$min = floor($tempma / 60);
|
|
|
|
$sec = $tempma - ($min*60);
|
|
|
|
|
|
|
|
return array("deg"=>$deg,"min"=>$min,"sec"=>$sec);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the source of the notice
|
|
|
|
*
|
|
|
|
* Either the name (and link) of the API client that posted the notice,
|
|
|
|
* or one of other other channels.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showNoticeSource()
|
|
|
|
{
|
|
|
|
$ns = $this->notice->getSource();
|
|
|
|
|
2014-11-05 18:44:22 +00:00
|
|
|
if (!$ns instanceof Notice_source) {
|
|
|
|
return false;
|
|
|
|
}
|
2011-03-09 03:48:16 +00:00
|
|
|
|
2014-11-05 18:44:22 +00:00
|
|
|
// TRANS: A possible notice source (web interface).
|
|
|
|
$source_name = (empty($ns->name)) ? ($ns->code ? _($ns->code) : _m('SOURCE','web')) : _($ns->name);
|
|
|
|
$this->out->text(' ');
|
|
|
|
$this->out->elementStart('span', 'source');
|
|
|
|
// @todo FIXME: probably i18n issue. If "from" is followed by text, that should be a parameter to "from" (from %s).
|
|
|
|
// TRANS: Followed by notice source.
|
|
|
|
$this->out->text(_('from'));
|
|
|
|
$this->out->text(' ');
|
2011-03-09 03:48:16 +00:00
|
|
|
|
2014-11-05 18:44:22 +00:00
|
|
|
$name = $source_name;
|
|
|
|
$url = $ns->url;
|
|
|
|
$title = null;
|
2011-03-09 03:48:16 +00:00
|
|
|
|
2014-11-05 18:44:22 +00:00
|
|
|
if (Event::handle('StartNoticeSourceLink', array($this->notice, &$name, &$url, &$title))) {
|
|
|
|
$name = $source_name;
|
|
|
|
$url = $ns->url;
|
|
|
|
}
|
|
|
|
Event::handle('EndNoticeSourceLink', array($this->notice, &$name, &$url, &$title));
|
2011-03-09 03:48:16 +00:00
|
|
|
|
2014-11-05 18:44:22 +00:00
|
|
|
// if $ns->name and $ns->url are populated we have
|
|
|
|
// configured a source attr somewhere
|
|
|
|
if (!empty($name) && !empty($url)) {
|
|
|
|
$this->out->elementStart('span', 'device');
|
|
|
|
|
|
|
|
$attrs = array(
|
|
|
|
'href' => $url,
|
|
|
|
'rel' => 'external'
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!empty($title)) {
|
|
|
|
$attrs['title'] = $title;
|
2011-03-09 03:48:16 +00:00
|
|
|
}
|
|
|
|
|
2014-11-05 18:44:22 +00:00
|
|
|
$this->out->element('a', $attrs, $name);
|
2011-03-09 03:48:16 +00:00
|
|
|
$this->out->elementEnd('span');
|
2014-11-05 18:44:22 +00:00
|
|
|
} else {
|
|
|
|
$this->out->element('span', 'device', $name);
|
2011-03-09 03:48:16 +00:00
|
|
|
}
|
2014-11-05 18:44:22 +00:00
|
|
|
|
|
|
|
$this->out->elementEnd('span');
|
2011-03-09 03:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-11-05 18:34:39 +00:00
|
|
|
* show link to single-notice view for this notice item
|
2011-03-09 03:48:16 +00:00
|
|
|
*
|
2014-11-05 18:34:39 +00:00
|
|
|
* A permalink that goes to this specific object and nothing else
|
2011-03-09 03:48:16 +00:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2014-11-05 18:34:39 +00:00
|
|
|
function showPermalink()
|
2011-03-09 03:48:16 +00:00
|
|
|
{
|
2014-11-05 18:49:41 +00:00
|
|
|
$class = 'permalink u-url';
|
|
|
|
if (!$this->notice->isLocal()) {
|
|
|
|
$class .= ' external';
|
|
|
|
}
|
2015-10-23 20:00:08 +01:00
|
|
|
|
|
|
|
try {
|
|
|
|
if($this->repeat) {
|
|
|
|
$this->out->element('a',
|
|
|
|
array('href' => $this->repeat->getUrl(),
|
|
|
|
'class' => 'u-url'),
|
|
|
|
'');
|
|
|
|
$class = str_replace('u-url', 'u-repost-of', $class);
|
|
|
|
}
|
|
|
|
} catch (InvalidUrlException $e) {
|
|
|
|
// no permalink available
|
|
|
|
}
|
|
|
|
|
2014-11-05 18:49:41 +00:00
|
|
|
try {
|
|
|
|
$this->out->element('a',
|
2015-09-29 14:17:38 +01:00
|
|
|
array('href' => $this->notice->getUrl(true),
|
2014-11-05 18:49:41 +00:00
|
|
|
'class' => $class),
|
|
|
|
// TRANS: Addition in notice list item for single-notice view.
|
|
|
|
_('permalink'));
|
|
|
|
} catch (InvalidUrlException $e) {
|
|
|
|
// no permalink available
|
|
|
|
}
|
2011-03-09 03:48:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* show a link to reply to the current notice
|
|
|
|
*
|
|
|
|
* Should either do the reply in the current notice form (if available), or
|
|
|
|
* link out to the notice-posting form. A little flakey, doesn't always work.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showReplyLink()
|
|
|
|
{
|
|
|
|
if (common_logged_in()) {
|
|
|
|
$this->out->text(' ');
|
|
|
|
$reply_url = common_local_url('newnotice',
|
2014-06-21 20:01:17 +01:00
|
|
|
array('replyto' => $this->profile->getNickname(), 'inreplyto' => $this->notice->id));
|
2011-03-09 03:48:16 +00:00
|
|
|
$this->out->elementStart('a', array('href' => $reply_url,
|
|
|
|
'class' => 'notice_reply',
|
2011-04-03 00:09:02 +01:00
|
|
|
// TRANS: Link title in notice list item to reply to a notice.
|
2011-08-18 14:11:10 +01:00
|
|
|
'title' => _('Reply to this notice.')));
|
2011-04-03 00:09:02 +01:00
|
|
|
// TRANS: Link text in notice list item to reply to a notice.
|
2011-03-09 03:48:16 +00:00
|
|
|
$this->out->text(_('Reply'));
|
|
|
|
$this->out->text(' ');
|
|
|
|
$this->out->element('span', 'notice_id', $this->notice->id);
|
|
|
|
$this->out->elementEnd('a');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* if the user is the author, let them delete the notice
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showDeleteLink()
|
|
|
|
{
|
|
|
|
$user = common_current_user();
|
|
|
|
|
|
|
|
$todel = (empty($this->repeat)) ? $this->notice : $this->repeat;
|
|
|
|
|
|
|
|
if (!empty($user) &&
|
|
|
|
($todel->profile_id == $user->id || $user->hasRight(Right::DELETEOTHERSNOTICE))) {
|
|
|
|
$this->out->text(' ');
|
|
|
|
$deleteurl = common_local_url('deletenotice',
|
|
|
|
array('notice' => $todel->id));
|
|
|
|
$this->out->element('a', array('href' => $deleteurl,
|
2015-03-07 22:35:41 +00:00
|
|
|
'class' => 'notice_delete popup',
|
2011-04-03 00:09:02 +01:00
|
|
|
// TRANS: Link title in notice list item to delete a notice.
|
2011-08-18 14:11:10 +01:00
|
|
|
'title' => _('Delete this notice from the timeline.')),
|
2011-04-03 00:09:02 +01:00
|
|
|
// TRANS: Link text in notice list item to delete a notice.
|
|
|
|
_('Delete'));
|
2011-03-09 03:48:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* finish the notice
|
|
|
|
*
|
|
|
|
* Close the last elements in the notice list item
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showEnd()
|
|
|
|
{
|
|
|
|
if (Event::handle('StartCloseNoticeListItemElement', array($this))) {
|
|
|
|
$this->out->elementEnd('li');
|
|
|
|
Event::handle('EndCloseNoticeListItemElement', array($this));
|
|
|
|
}
|
|
|
|
}
|
2012-03-07 22:06:50 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the notice in question
|
|
|
|
*
|
|
|
|
* For hooks, etc., this may be useful
|
|
|
|
*
|
|
|
|
* @return Notice The notice we're showing
|
|
|
|
*/
|
|
|
|
|
|
|
|
function getNotice()
|
|
|
|
{
|
|
|
|
return $this->notice;
|
|
|
|
}
|
2011-03-09 03:48:16 +00:00
|
|
|
}
|