gnu-social/plugins/PrivateGroup/groupinbox.php

159 lines
4.2 KiB
PHP
Raw Normal View History

2011-01-18 21:55:51 +00:00
<?php
/**
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2010, StatusNet, Inc.
2011-01-18 21:55:51 +00:00
*
* List of private messages to this group
*
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/>.
*
* @category PrivateGroup
* @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/
2011-01-18 21:55:51 +00:00
*/
if (!defined('STATUSNET')) {
// 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);
}
/**
* Show a list of private messages to this group
2011-01-18 21:55:51 +00:00
*
* @category PrivateGroup
* @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/
2011-01-18 21:55:51 +00:00
*/
class GroupinboxAction extends GroupDesignAction
2011-01-18 21:55:51 +00:00
{
var $gm;
2011-01-18 21:55:51 +00:00
/**
* For initializing members of the class.
2011-01-18 21:55:51 +00:00
*
* @param array $argarray misc. arguments
2011-01-18 21:55:51 +00:00
*
* @return boolean true
2011-01-18 21:55:51 +00:00
*/
function prepare($argarray)
2011-01-18 21:55:51 +00:00
{
parent::prepare($argarray);
$cur = common_current_user();
if (empty($cur)) {
throw new ClientException(_('Only for logged-in users'), 403);
}
$nicknameArg = $this->trimmed('nickname');
2011-01-18 21:55:51 +00:00
$nickname = common_canonical_nickname($nicknameArg);
2011-01-18 21:55:51 +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
}
$localGroup = Local_group::staticGet('nickname', $nickname);
if (empty($localGroup)) {
throw new ClientException(_('No such group'), 404);
}
$this->group = User_group::staticGet('id', $localGroup->group_id);
if (empty($this->group)) {
throw new ClientException(_('No such group'), 404);
}
if (!$cur->isMember($this->group)) {
throw new ClientException(_('Only for members'), 403);
}
$this->page = $this->trimmed('page');
if (!$this->page) {
$this->page = 1;
}
$this->gm = Group_message::forGroup($this->group,
($this->page - 1) * MESSAGES_PER_PAGE,
MESSAGES_PER_PAGE + 1);
2011-01-18 21:55:51 +00:00
return true;
}
function showContent()
2011-01-18 21:55:51 +00:00
{
$gml = new GroupMessageList($this, $this->gm);
$gml->show();
2011-01-18 21:55:51 +00:00
}
/**
* Handler method
2011-01-18 21:55:51 +00:00
*
* @param array $argarray is ignored since it's now passed in in prepare()
2011-01-18 21:55:51 +00:00
*
* @return void
2011-01-18 21:55:51 +00:00
*/
function handle($argarray=null)
2011-01-18 21:55:51 +00:00
{
$this->showPage();
2011-01-18 21:55:51 +00:00
}
/**
* Return true if read only.
2011-01-18 21:55:51 +00:00
*
* MAY override
2011-01-18 21:55:51 +00:00
*
* @param array $args other arguments
2011-01-18 21:55:51 +00:00
*
* @return boolean is read only action?
2011-01-18 21:55:51 +00:00
*/
function isReadOnly($args)
2011-01-18 21:55:51 +00:00
{
return true;
2011-01-18 21:55:51 +00:00
}
/**
* Title of the page
2011-01-18 21:55:51 +00:00
*
* @return string page title, with page number
2011-01-18 21:55:51 +00:00
*/
function title()
2011-01-18 21:55:51 +00:00
{
$base = $this->group->getFancyName();
if ($this->page == 1) {
return sprintf(_('%s group inbox'), $base);
} else {
// TRANS: Page title for any but first group page.
// TRANS: %1$s is a group name, $2$s is a page number.
return sprintf(_('%1$s group inbox, page %2$d'),
$base,
$this->page);
}
2011-01-18 21:55:51 +00:00
}
}