. * * @category Account * @package StatusNet * @author Evan Prodromou * @copyright 2010 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ if (!defined('GNUSOCIAL')) { exit(1); } /** * 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 * @copyright 2010 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ class BackupaccountAction extends FormAction { protected $form = 'BackupAccount'; function title() { // TRANS: Title for backup account page. return _('Backup account'); } protected function doPreparation() { if (!$this->scoped->hasRight(Right::BACKUPACCOUNT)) { // TRANS: Client exception thrown when trying to backup an account without having backup rights. throw new ClientException(_('You may not backup your account.'), 403); } return true; } protected function doPost() { $stream = new UserActivityStream($this->scoped->getUser(), true, UserActivityStream::OUTPUT_RAW); header('Content-Disposition: attachment; filename='.urlencode($this->scoped->getNickname()).'.atom'); header('Content-Type: application/atom+xml; charset=utf-8'); // @fixme atom feed logic is in getString... // but we just want it to output to the outputter. $this->raw($stream->getString()); // Don't print the page HTML exit(0); } public function isReadOnly($args) { return true; } function lastModified() { // For comparison with If-Last-Modified // If not applicable, return null return null; } function etag() { return null; } }