2011-01-18 21:55:51 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2011-02-07 14:46:26 +00:00
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
2011-02-07 17:28:58 +00:00
|
|
|
* Copyright (C) 2011, StatusNet, Inc.
|
2011-01-18 21:55:51 +00:00
|
|
|
*
|
2011-02-07 14:46:26 +00:00
|
|
|
* List of private messages to this group
|
2011-04-08 17:46:41 +01:00
|
|
|
*
|
2011-01-18 21:55:51 +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/>.
|
2011-02-07 14:46:26 +00:00
|
|
|
*
|
2011-02-07 17:28:58 +00:00
|
|
|
* @category GroupPrivateMessage
|
2011-02-07 14:46:26 +00:00
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2011-02-07 17:28:58 +00:00
|
|
|
* @copyright 2011 StatusNet, Inc.
|
2011-02-07 14:46:26 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
* @link http://status.net/
|
2011-01-18 21:55:51 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('STATUSNET')) {
|
2011-02-07 14:46:26 +00:00
|
|
|
// This check helps protect against security problems;
|
|
|
|
// your code file can't be executed directly from the web.
|
2011-01-18 21:55:51 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-02-07 14:46:26 +00:00
|
|
|
* Show a list of private messages to this group
|
2011-01-18 21:55:51 +00:00
|
|
|
*
|
2011-02-07 17:28:58 +00:00
|
|
|
* @category GroupPrivateMessage
|
2011-02-07 14:46:26 +00:00
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2011-02-07 17:28:58 +00:00
|
|
|
* @copyright 2011 StatusNet, Inc.
|
2011-02-07 14:46:26 +00:00
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
* @link http://status.net/
|
2011-01-18 21:55:51 +00:00
|
|
|
*/
|
2011-06-09 21:20:19 +01:00
|
|
|
class GroupinboxAction extends GroupAction
|
2011-01-18 21:55:51 +00:00
|
|
|
{
|
2011-02-07 14:46:26 +00:00
|
|
|
var $gm;
|
2011-01-18 21:55:51 +00:00
|
|
|
|
|
|
|
/**
|
2011-02-07 14:46:26 +00:00
|
|
|
* For initializing members of the class.
|
2011-01-18 21:55:51 +00:00
|
|
|
*
|
2011-02-07 14:46:26 +00:00
|
|
|
* @param array $argarray misc. arguments
|
2011-01-18 21:55:51 +00:00
|
|
|
*
|
2011-02-07 14:46:26 +00:00
|
|
|
* @return boolean true
|
2011-01-18 21:55:51 +00:00
|
|
|
*/
|
2011-02-07 14:46:26 +00:00
|
|
|
function prepare($argarray)
|
2011-01-18 21:55:51 +00:00
|
|
|
{
|
2011-02-07 14:46:26 +00:00
|
|
|
parent::prepare($argarray);
|
|
|
|
|
|
|
|
$cur = common_current_user();
|
|
|
|
|
|
|
|
if (empty($cur)) {
|
2011-04-08 17:46:41 +01:00
|
|
|
// TRANS: Client exception thrown when trying to view group inbox while not logged in.
|
2011-03-30 21:30:23 +01:00
|
|
|
throw new ClientException(_m('Only for logged-in users.'), 403);
|
2011-02-07 14:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$nicknameArg = $this->trimmed('nickname');
|
2011-01-18 21:55:51 +00:00
|
|
|
|
2011-02-07 14:46:26 +00:00
|
|
|
$nickname = common_canonical_nickname($nicknameArg);
|
2011-01-18 21:55:51 +00:00
|
|
|
|
2011-02-07 14:46:26 +00:00
|
|
|
if ($nickname != $nicknameArg) {
|
|
|
|
$url = common_local_url('groupinbox', array('nickname' => $nickname));
|
|
|
|
common_redirect($url);
|
|
|
|
return false;
|
2011-01-18 21:55:51 +00:00
|
|
|
}
|
|
|
|
|
2011-02-07 14:46:26 +00:00
|
|
|
$localGroup = Local_group::staticGet('nickname', $nickname);
|
|
|
|
|
|
|
|
if (empty($localGroup)) {
|
2011-04-08 17:46:41 +01:00
|
|
|
// TRANS: Client exception thrown when trying to view group inbox for non-existing group.
|
2011-03-30 21:30:23 +01:00
|
|
|
throw new ClientException(_m('No such group.'), 404);
|
2011-02-07 14:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->group = User_group::staticGet('id', $localGroup->group_id);
|
|
|
|
|
|
|
|
if (empty($this->group)) {
|
2011-04-08 17:46:41 +01:00
|
|
|
// TRANS: Client exception thrown when trying to view group inbox for non-existing group.
|
2011-03-30 21:30:23 +01:00
|
|
|
throw new ClientException(_m('No such group.'), 404);
|
2011-02-07 14:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!$cur->isMember($this->group)) {
|
2011-04-08 17:46:41 +01:00
|
|
|
// TRANS: Client exception thrown when trying to view group inbox while not a member.
|
2011-03-30 21:30:23 +01:00
|
|
|
throw new ClientException(_m('Only for members.'), 403);
|
2011-02-07 14:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$this->page = $this->trimmed('page');
|
|
|
|
|
|
|
|
if (!$this->page) {
|
|
|
|
$this->page = 1;
|
|
|
|
}
|
2011-04-08 17:46:41 +01:00
|
|
|
|
|
|
|
$this->gm = Group_message::forGroup($this->group,
|
2011-02-07 14:46:26 +00:00
|
|
|
($this->page - 1) * MESSAGES_PER_PAGE,
|
|
|
|
MESSAGES_PER_PAGE + 1);
|
2011-01-18 21:55:51 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-02-07 15:18:54 +00:00
|
|
|
function showLocalNav()
|
|
|
|
{
|
|
|
|
$nav = new GroupNav($this, $this->group);
|
|
|
|
$nav->show();
|
|
|
|
}
|
|
|
|
|
2011-02-07 16:24:00 +00:00
|
|
|
function showNoticeForm()
|
|
|
|
{
|
|
|
|
$form = new GroupMessageForm($this, $this->group);
|
|
|
|
$form->show();
|
|
|
|
}
|
|
|
|
|
2011-02-07 14:46:26 +00:00
|
|
|
function showContent()
|
2011-01-18 21:55:51 +00:00
|
|
|
{
|
2011-02-07 14:46:26 +00:00
|
|
|
$gml = new GroupMessageList($this, $this->gm);
|
2011-02-07 17:08:18 +00:00
|
|
|
$cnt = $gml->show();
|
|
|
|
|
2011-02-07 20:39:40 +00:00
|
|
|
if ($cnt == 0) {
|
2011-04-08 17:46:41 +01:00
|
|
|
// TRANS: Text of group inbox if no private messages were sent to it.
|
2011-02-07 20:39:40 +00:00
|
|
|
$this->element('p', 'guide', _m('This group has not received any private messages.'));
|
|
|
|
}
|
2011-02-07 17:08:18 +00:00
|
|
|
$this->pagination($this->page > 1,
|
|
|
|
$cnt > MESSAGES_PER_PAGE,
|
|
|
|
$this->page,
|
|
|
|
'groupinbox',
|
|
|
|
array('nickname' => $this->group->nickname));
|
2011-01-18 21:55:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-02-07 14:46:26 +00:00
|
|
|
* Handler method
|
2011-01-18 21:55:51 +00:00
|
|
|
*
|
2011-02-07 14:46:26 +00:00
|
|
|
* @param array $argarray is ignored since it's now passed in in prepare()
|
2011-01-18 21:55:51 +00:00
|
|
|
*
|
2011-02-07 14:46:26 +00:00
|
|
|
* @return void
|
2011-01-18 21:55:51 +00:00
|
|
|
*/
|
2011-02-07 14:46:26 +00:00
|
|
|
function handle($argarray=null)
|
2011-01-18 21:55:51 +00:00
|
|
|
{
|
2011-02-07 14:46:26 +00:00
|
|
|
$this->showPage();
|
2011-01-18 21:55:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-02-07 14:46:26 +00:00
|
|
|
* Return true if read only.
|
2011-01-18 21:55:51 +00:00
|
|
|
*
|
2011-02-07 14:46:26 +00:00
|
|
|
* MAY override
|
2011-01-18 21:55:51 +00:00
|
|
|
*
|
2011-02-07 14:46:26 +00:00
|
|
|
* @param array $args other arguments
|
2011-01-18 21:55:51 +00:00
|
|
|
*
|
2011-02-07 14:46:26 +00:00
|
|
|
* @return boolean is read only action?
|
2011-01-18 21:55:51 +00:00
|
|
|
*/
|
2011-02-07 14:46:26 +00:00
|
|
|
function isReadOnly($args)
|
2011-01-18 21:55:51 +00:00
|
|
|
{
|
2011-02-07 14:46:26 +00:00
|
|
|
return true;
|
2011-01-18 21:55:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-02-07 14:46:26 +00:00
|
|
|
* Title of the page
|
2011-01-18 21:55:51 +00:00
|
|
|
*
|
2011-02-07 14:46:26 +00:00
|
|
|
* @return string page title, with page number
|
2011-01-18 21:55:51 +00:00
|
|
|
*/
|
2011-02-07 14:46:26 +00:00
|
|
|
function title()
|
2011-01-18 21:55:51 +00:00
|
|
|
{
|
2011-02-07 14:46:26 +00:00
|
|
|
$base = $this->group->getFancyName();
|
|
|
|
|
|
|
|
if ($this->page == 1) {
|
2011-04-08 17:46:41 +01:00
|
|
|
// TRANS: Title of inbox for group %s.
|
2011-03-30 21:30:23 +01:00
|
|
|
return sprintf(_m('%s group inbox'), $base);
|
2011-02-07 14:46:26 +00:00
|
|
|
} else {
|
|
|
|
// TRANS: Page title for any but first group page.
|
|
|
|
// TRANS: %1$s is a group name, $2$s is a page number.
|
2011-03-30 21:30:23 +01:00
|
|
|
return sprintf(_m('%1$s group inbox, page %2$d'),
|
2011-02-07 14:46:26 +00:00
|
|
|
$base,
|
|
|
|
$this->page);
|
|
|
|
}
|
2011-01-18 21:55:51 +00:00
|
|
|
}
|
2011-02-07 20:39:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the page notice
|
|
|
|
*
|
|
|
|
* Shows instructions for the page
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showPageNotice()
|
|
|
|
{
|
|
|
|
$instr = $this->getInstructions();
|
|
|
|
$output = common_markup_to_html($instr);
|
|
|
|
|
|
|
|
$this->elementStart('div', 'instructions');
|
|
|
|
$this->raw($output);
|
|
|
|
$this->elementEnd('div');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instructions for using this page
|
|
|
|
*
|
|
|
|
* @return string localised instructions for using the page
|
|
|
|
*/
|
|
|
|
function getInstructions()
|
|
|
|
{
|
|
|
|
// TRANS: Instructions for user inbox page.
|
|
|
|
return _m('This is the group inbox, which lists all incoming private messages for this group.');
|
|
|
|
}
|
2011-01-18 21:55:51 +00:00
|
|
|
}
|