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>
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2009-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-02-28 23:12:31 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2009-07-03 15:37:39 +01:00
|
|
|
// XXX: not sure how to do paging yet,
|
|
|
|
// so set a 60-notice limit
|
|
|
|
|
2009-05-21 16:43:09 +01:00
|
|
|
require_once INSTALLDIR.'/lib/noticelist.php';
|
2009-04-03 21:12:33 +01:00
|
|
|
|
2009-02-28 23:12:31 +00:00
|
|
|
/**
|
|
|
|
* Conversation tree in the browser
|
|
|
|
*
|
|
|
|
* @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>
|
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
|
|
|
*/
|
|
|
|
class ConversationAction extends Action
|
|
|
|
{
|
2011-04-11 01:16:51 +01:00
|
|
|
var $id = null;
|
|
|
|
var $page = null;
|
|
|
|
var $notices = null;
|
|
|
|
var $userProfile = null;
|
2011-04-08 23:03:34 +01:00
|
|
|
|
|
|
|
const MAX_NOTICES = 500;
|
2009-02-28 23:12:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialization.
|
|
|
|
*
|
|
|
|
* @param array $args Web and URL arguments
|
|
|
|
*
|
|
|
|
* @return boolean false if id not passed in
|
|
|
|
*/
|
|
|
|
function prepare($args)
|
|
|
|
{
|
|
|
|
parent::prepare($args);
|
|
|
|
$this->id = $this->trimmed('id');
|
2009-04-03 21:12:33 +01:00
|
|
|
if (empty($this->id)) {
|
2009-02-28 23:12:31 +00:00
|
|
|
return false;
|
|
|
|
}
|
2009-06-25 17:43:30 +01:00
|
|
|
$this->id = $this->id+0;
|
2009-02-28 23:12:31 +00:00
|
|
|
$this->page = $this->trimmed('page');
|
|
|
|
if (empty($this->page)) {
|
|
|
|
$this->page = 1;
|
|
|
|
}
|
2011-04-08 23:03:34 +01:00
|
|
|
|
|
|
|
$cur = common_current_user();
|
|
|
|
|
|
|
|
if (empty($cur)) {
|
2011-04-11 01:16:51 +01:00
|
|
|
$this->userProfile = null;
|
2011-04-08 23:03:34 +01:00
|
|
|
} else {
|
2011-04-11 01:16:51 +01:00
|
|
|
$this->userProfile = $cur->getProfile();
|
2011-04-08 23:03:34 +01:00
|
|
|
}
|
|
|
|
|
2011-04-11 01:16:51 +01:00
|
|
|
$stream = new ConversationNoticeStream($this->id, $this->userProfile);
|
2011-04-08 23:03:34 +01:00
|
|
|
|
2011-04-11 01:16:51 +01:00
|
|
|
$this->notices = $stream->getNotices(0, self::MAX_NOTICES);
|
2011-04-08 23:03:34 +01:00
|
|
|
|
2009-02-28 23:12:31 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-05-21 16:43:09 +01:00
|
|
|
/**
|
|
|
|
* Handle the action
|
|
|
|
*
|
|
|
|
* @param array $args Web and URL arguments
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2009-02-28 23:12:31 +00:00
|
|
|
function handle($args)
|
|
|
|
{
|
2009-04-03 21:12:33 +01:00
|
|
|
parent::handle($args);
|
2009-02-28 23:12:31 +00:00
|
|
|
$this->showPage();
|
|
|
|
}
|
|
|
|
|
2009-05-21 16:43:09 +01:00
|
|
|
/**
|
|
|
|
* Returns the page title
|
|
|
|
*
|
|
|
|
* @return string page title
|
|
|
|
*/
|
2009-02-28 23:12:31 +00:00
|
|
|
function title()
|
|
|
|
{
|
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.
|
|
|
|
*
|
|
|
|
* Display a hierarchical unordered list in the content area.
|
|
|
|
* Uses ConversationTree to do most of the heavy lifting.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2009-02-28 23:12:31 +00:00
|
|
|
function showContent()
|
|
|
|
{
|
2011-04-11 17:39:06 +01:00
|
|
|
$tnl = new FullThreadedNoticeList($this->notices, $this, $this->userProfile);
|
2009-04-03 21:12:33 +01:00
|
|
|
|
2011-04-08 23:03:34 +01:00
|
|
|
$cnt = $tnl->show();
|
2009-02-28 23:12:31 +00:00
|
|
|
}
|
2009-07-15 21:57:39 +01:00
|
|
|
|
|
|
|
function isReadOnly()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2009-02-28 23:12:31 +00:00
|
|
|
}
|