2009-02-28 23:12:31 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Display a conversation in the browser
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* @category Action
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2014-05-12 09:27:52 +01:00
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
2009-02-28 23:12:31 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-02-28 23:12:31 +00:00
|
|
|
*
|
2009-08-25 23:14:12 +01:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2009-08-25 23:12:20 +01:00
|
|
|
* Copyright (C) 2009, StatusNet, Inc.
|
2009-02-28 23:12:31 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2019-06-02 13:46:39 +01:00
|
|
|
if (!defined('GNUSOCIAL')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
2009-04-03 21:12:33 +01:00
|
|
|
|
2009-02-28 23:12:31 +00:00
|
|
|
/**
|
|
|
|
* Conversation tree in the browser
|
|
|
|
*
|
2014-05-12 09:27:52 +01:00
|
|
|
* Will always try to show the entire conversation, since that's how our
|
|
|
|
* ConversationNoticeStream works.
|
|
|
|
*
|
2009-02-28 23:12:31 +00:00
|
|
|
* @category Action
|
2009-08-25 23:12:20 +01:00
|
|
|
* @package StatusNet
|
2009-08-25 23:19:04 +01:00
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2014-05-12 09:27:52 +01:00
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
2009-02-28 23:12:31 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
|
2009-08-25 23:16:46 +01:00
|
|
|
* @link http://status.net/
|
2009-02-28 23:12:31 +00:00
|
|
|
*/
|
2014-05-11 20:11:09 +01:00
|
|
|
class ConversationAction extends ManagedAction
|
2009-02-28 23:12:31 +00:00
|
|
|
{
|
2019-06-02 13:55:12 +01:00
|
|
|
protected $redirectAfterLogin = true;
|
|
|
|
|
2019-06-02 13:46:39 +01:00
|
|
|
public $conv = null;
|
|
|
|
public $page = null;
|
|
|
|
public $notices = null;
|
2011-04-08 23:03:34 +01:00
|
|
|
|
2016-01-06 12:58:46 +00:00
|
|
|
protected function doPreparation()
|
2009-02-28 23:12:31 +00:00
|
|
|
{
|
2016-01-06 12:58:46 +00:00
|
|
|
$this->conv = Conversation::getByID($this->int('id'));
|
2009-02-28 23:12:31 +00:00
|
|
|
}
|
|
|
|
|
2009-05-21 16:43:09 +01:00
|
|
|
/**
|
|
|
|
* Returns the page title
|
|
|
|
*
|
|
|
|
* @return string page title
|
|
|
|
*/
|
2019-06-02 13:46:39 +01:00
|
|
|
public function title()
|
2009-02-28 23:12:31 +00:00
|
|
|
{
|
2010-10-30 23:58:35 +01:00
|
|
|
// TRANS: Title for page with a conversion (multiple notices in context).
|
|
|
|
return _('Conversation');
|
2009-02-28 23:12:31 +00:00
|
|
|
}
|
|
|
|
|
2009-05-21 16:43:09 +01:00
|
|
|
/**
|
|
|
|
* Show content.
|
|
|
|
*
|
2014-05-12 09:27:52 +01:00
|
|
|
* NoticeList extended classes do most heavy lifting. Plugins can override.
|
2009-05-21 16:43:09 +01:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2019-06-02 13:46:39 +01:00
|
|
|
public function showContent()
|
2009-02-28 23:12:31 +00:00
|
|
|
{
|
2019-06-02 13:46:39 +01:00
|
|
|
if (Event::handle('StartShowConversation', [$this, $this->conv, $this->scoped])) {
|
2016-01-06 12:58:46 +00:00
|
|
|
$notices = $this->conv->getNotices($this->scoped);
|
2014-05-12 09:27:52 +01:00
|
|
|
$nl = new FullThreadedNoticeList($notices, $this, $this->scoped);
|
|
|
|
$cnt = $nl->show();
|
2011-09-24 14:29:12 +01:00
|
|
|
}
|
2019-06-02 13:46:39 +01:00
|
|
|
Event::handle('EndShowConversation', [$this, $this->conv, $this->scoped]);
|
2009-02-28 23:12:31 +00:00
|
|
|
}
|
2009-07-15 21:57:39 +01:00
|
|
|
|
2019-06-02 13:46:39 +01:00
|
|
|
public function isReadOnly($args)
|
2009-07-15 21:57:39 +01:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2011-07-15 17:55:43 +01:00
|
|
|
|
2019-06-02 13:46:39 +01:00
|
|
|
public function getFeeds()
|
2011-07-15 17:55:43 +01:00
|
|
|
{
|
2019-06-02 13:46:39 +01:00
|
|
|
return [
|
|
|
|
new Feed(Feed::JSON,
|
|
|
|
common_local_url('apiconversation',
|
|
|
|
['id' => $this->conv->getID(),
|
|
|
|
'format' => 'as']),
|
|
|
|
// TRANS: Title for link to notice feed.
|
|
|
|
// TRANS: %s is a user nickname.
|
|
|
|
_('Conversation feed (Activity Streams JSON)')
|
|
|
|
),
|
|
|
|
new Feed(Feed::RSS2,
|
|
|
|
common_local_url('apiconversation',
|
|
|
|
['id' => $this->conv->getID(),
|
|
|
|
'format' => 'rss']),
|
|
|
|
// TRANS: Title for link to notice feed.
|
|
|
|
// TRANS: %s is a user nickname.
|
|
|
|
_('Conversation feed (RSS 2.0)')
|
|
|
|
),
|
|
|
|
new Feed(Feed::ATOM,
|
|
|
|
common_local_url('apiconversation',
|
|
|
|
['id' => $this->conv->getID(),
|
|
|
|
'format' => 'atom']),
|
|
|
|
// TRANS: Title for link to notice feed.
|
|
|
|
// TRANS: %s is a user nickname.
|
|
|
|
_('Conversation feed (Atom)')
|
|
|
|
)
|
|
|
|
];
|
2011-07-15 17:55:43 +01:00
|
|
|
}
|
2009-02-28 23:12:31 +00:00
|
|
|
}
|