2010-08-05 21:37:47 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: 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 Plugins
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Brion Vibber <brion@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
2015-07-17 16:09:36 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2010-08-05 21:37:47 +01:00
|
|
|
|
2011-01-23 17:35:35 +00:00
|
|
|
class MirrorSettingsAction extends SettingsAction
|
2010-08-05 21:37:47 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Title of the page
|
|
|
|
*
|
|
|
|
* @return string Page title
|
|
|
|
*/
|
|
|
|
function title()
|
|
|
|
{
|
2011-06-05 23:38:38 +01:00
|
|
|
// TRANS: Page title.
|
2010-08-05 21:37:47 +01:00
|
|
|
return _m('Feed mirror settings');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instructions for use
|
|
|
|
*
|
|
|
|
* @return string Instructions for use
|
|
|
|
*/
|
|
|
|
|
|
|
|
function getInstructions()
|
|
|
|
{
|
2011-06-05 23:38:38 +01:00
|
|
|
// TRANS: Page instructions.
|
2010-08-06 18:56:18 +01:00
|
|
|
return _m('You can mirror updates from many RSS and Atom feeds ' .
|
2014-03-02 21:53:48 +00:00
|
|
|
'into your GNU social timeline!');
|
2010-08-05 21:37:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the form for OpenID management
|
|
|
|
*
|
|
|
|
* We have one form with a few different submit buttons to do different things.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showContent()
|
|
|
|
{
|
2011-01-19 02:01:57 +00:00
|
|
|
$provider = $this->trimmed('provider');
|
2015-07-17 16:09:36 +01:00
|
|
|
if (!empty($provider) || GNUsocial::isAjax()) {
|
2011-01-19 02:01:57 +00:00
|
|
|
$this->showAddFeedForm($provider);
|
|
|
|
} else {
|
|
|
|
$this->elementStart('div', array('id' => 'add-mirror'));
|
|
|
|
$this->showAddWizard();
|
|
|
|
$this->elementEnd('div');
|
2010-08-06 18:56:18 +01:00
|
|
|
|
2011-01-19 02:01:57 +00:00
|
|
|
$mirror = new SubMirror();
|
2015-07-17 16:09:36 +01:00
|
|
|
$mirror->subscriber = $this->scoped->getID();
|
2011-01-19 02:01:57 +00:00
|
|
|
if ($mirror->find()) {
|
|
|
|
while ($mirror->fetch()) {
|
|
|
|
$this->showFeedForm($mirror);
|
|
|
|
}
|
2010-08-05 21:37:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-19 02:01:57 +00:00
|
|
|
function showAddWizard()
|
|
|
|
{
|
|
|
|
$form = new AddMirrorWizard($this);
|
|
|
|
$form->show();
|
|
|
|
}
|
|
|
|
|
2015-07-17 16:09:36 +01:00
|
|
|
function showFeedForm(SubMirror $mirror)
|
2010-08-05 21:37:47 +01:00
|
|
|
{
|
2015-07-17 16:09:36 +01:00
|
|
|
$profile = Profile::getByID($mirror->subscribed);
|
|
|
|
$form = new EditMirrorForm($this, $profile);
|
|
|
|
$form->show();
|
2010-08-05 21:37:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function showAddFeedForm()
|
|
|
|
{
|
2011-03-16 00:15:25 +00:00
|
|
|
switch ($this->arg('provider')) {
|
|
|
|
case 'statusnet':
|
|
|
|
break;
|
|
|
|
case 'wordpress':
|
|
|
|
break;
|
|
|
|
case 'linkedin':
|
|
|
|
break;
|
|
|
|
case 'feed':
|
|
|
|
default:
|
|
|
|
$form = new AddMirrorForm($this);
|
|
|
|
}
|
2010-08-05 21:37:47 +01:00
|
|
|
$form->show();
|
|
|
|
}
|
|
|
|
|
2011-09-29 08:58:52 +01:00
|
|
|
/**
|
|
|
|
* Show the local navigation menu
|
|
|
|
*
|
|
|
|
* This is the same for all settings, so we show it here.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-01-18 20:34:04 +00:00
|
|
|
function showLocalNav()
|
|
|
|
{
|
2011-09-29 08:58:52 +01:00
|
|
|
$menu = new SettingsNav($this);
|
|
|
|
$menu->show();
|
2011-01-18 20:34:04 +00:00
|
|
|
}
|
2011-01-19 02:01:57 +00:00
|
|
|
|
|
|
|
function showScripts()
|
|
|
|
{
|
|
|
|
parent::showScripts();
|
|
|
|
$this->script('plugins/SubMirror/js/mirrorsettings.js');
|
|
|
|
}
|
|
|
|
|
|
|
|
function showStylesheets()
|
|
|
|
{
|
|
|
|
parent::showStylesheets();
|
|
|
|
$this->cssLink('plugins/SubMirror/css/mirrorsettings.css');
|
|
|
|
}
|
2010-08-05 21:37:47 +01:00
|
|
|
}
|