2010-12-13 21:32:39 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2010, StatusNet, Inc.
|
|
|
|
*
|
|
|
|
* Download a backup of your own account to the browser
|
2011-01-21 15:35:00 +00:00
|
|
|
*
|
2010-12-13 21:32:39 +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 Account
|
|
|
|
* @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/
|
|
|
|
*/
|
|
|
|
|
2016-02-03 00:04:14 +00:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2010-12-13 21:32:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Download a backup of your own account to the browser
|
|
|
|
*
|
|
|
|
* We go through some hoops to make this only respond to POST, since
|
|
|
|
* it's kind of expensive and there's probably some downside to having
|
|
|
|
* your account in all kinds of search engines.
|
|
|
|
*
|
|
|
|
* @category Account
|
|
|
|
* @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/
|
|
|
|
*/
|
2016-02-03 00:04:14 +00:00
|
|
|
class BackupaccountAction extends FormAction
|
2010-12-13 21:32:39 +00:00
|
|
|
{
|
2016-02-03 00:04:14 +00:00
|
|
|
protected $form = 'BackupAccount';
|
|
|
|
|
2010-12-13 21:32:39 +00:00
|
|
|
function title()
|
|
|
|
{
|
2011-01-21 15:35:00 +00:00
|
|
|
// TRANS: Title for backup account page.
|
2011-02-16 23:39:53 +00:00
|
|
|
return _('Backup account');
|
2010-12-13 21:32:39 +00:00
|
|
|
}
|
|
|
|
|
2016-02-03 00:04:14 +00:00
|
|
|
protected function doPreparation()
|
2010-12-13 21:32:39 +00:00
|
|
|
{
|
2016-02-03 00:04:14 +00:00
|
|
|
if (!$this->scoped->hasRight(Right::BACKUPACCOUNT)) {
|
2011-01-21 15:35:00 +00:00
|
|
|
// TRANS: Client exception thrown when trying to backup an account without having backup rights.
|
2010-12-13 21:32:39 +00:00
|
|
|
throw new ClientException(_('You may not backup your account.'), 403);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-02-03 00:04:14 +00:00
|
|
|
protected function doPost()
|
2010-12-13 21:32:39 +00:00
|
|
|
{
|
2016-02-03 00:04:14 +00:00
|
|
|
$stream = new UserActivityStream($this->scoped->getUser(), true, UserActivityStream::OUTPUT_RAW);
|
2010-12-13 21:32:39 +00:00
|
|
|
|
2016-02-03 00:04:14 +00:00
|
|
|
header('Content-Disposition: attachment; filename='.urlencode($this->scoped->getNickname()).'.atom');
|
2010-12-13 21:32:39 +00:00
|
|
|
header('Content-Type: application/atom+xml; charset=utf-8');
|
|
|
|
|
Scalability work on user backup stream generation.
UserActivityStream -- used to create a full activity stream including subscriptions, favorites, notices, etc -- normally buffers everything into memory at once. This is infeasible for accounts with long histories of serious usage; it can take tens of seconds just to pull all records from the database, and working with them all in memory is very likely to hit resource limits.
This commit adds an alternate mode for this class which avoids pulling notices until during the actual output. Instead of pre-sorting and buffering all the notices, empty spaces between the other activities are filled in with notices as we're making output. This means more smaller queries spread out during operations, and less stuff kept in memory.
Callers (backupaccount action, and backupuser.php) which can stream their output pass an $outputMode param of UserActivityStream::OUTPUT_RAW, and during getString() it'll send straight to output as well as slurping the notices in this extra funky fashion.
Other callers will let it default to the OUTPUT_STRING mode, which keeps the previous behavior.
There should be a better way to do this, swapping out the stringer output for raw output more consitently.
2011-02-25 19:04:57 +00:00
|
|
|
// @fixme atom feed logic is in getString...
|
|
|
|
// but we just want it to output to the outputter.
|
2010-12-13 21:32:39 +00:00
|
|
|
$this->raw($stream->getString());
|
|
|
|
}
|
|
|
|
|
2016-02-03 00:15:35 +00:00
|
|
|
public function isReadOnly($args) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2010-12-13 21:32:39 +00:00
|
|
|
function lastModified()
|
|
|
|
{
|
|
|
|
// For comparison with If-Last-Modified
|
|
|
|
// If not applicable, return null
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
function etag()
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|