mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
refactor: action (#2836)
This commit is contained in:
parent
fad0dbb6ef
commit
ee80f4918e
@ -21,7 +21,10 @@
|
|||||||
* - Returns a responsive web page that automatically checks all whitelisted
|
* - Returns a responsive web page that automatically checks all whitelisted
|
||||||
* bridges (using JavaScript) if no bridge is specified.
|
* bridges (using JavaScript) if no bridge is specified.
|
||||||
*/
|
*/
|
||||||
class ConnectivityAction extends ActionAbstract {
|
class ConnectivityAction implements ActionInterface
|
||||||
|
{
|
||||||
|
public $userData = [];
|
||||||
|
|
||||||
public function execute() {
|
public function execute() {
|
||||||
|
|
||||||
if(!Debug::isEnabled()) {
|
if(!Debug::isEnabled()) {
|
||||||
|
@ -11,7 +11,10 @@
|
|||||||
* @link https://github.com/rss-bridge/rss-bridge
|
* @link https://github.com/rss-bridge/rss-bridge
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class DetectAction extends ActionAbstract {
|
class DetectAction implements ActionInterface
|
||||||
|
{
|
||||||
|
public $userData = [];
|
||||||
|
|
||||||
public function execute() {
|
public function execute() {
|
||||||
$targetURL = $this->userData['url']
|
$targetURL = $this->userData['url']
|
||||||
or returnClientError('You must specify a url!');
|
or returnClientError('You must specify a url!');
|
||||||
|
@ -11,7 +11,10 @@
|
|||||||
* @link https://github.com/rss-bridge/rss-bridge
|
* @link https://github.com/rss-bridge/rss-bridge
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class DisplayAction extends ActionAbstract {
|
class DisplayAction implements ActionInterface
|
||||||
|
{
|
||||||
|
public $userData = [];
|
||||||
|
|
||||||
private function get_return_code($error) {
|
private function get_return_code($error) {
|
||||||
$returnCode = $error->getCode();
|
$returnCode = $error->getCode();
|
||||||
if ($returnCode === 301 || $returnCode === 302) {
|
if ($returnCode === 301 || $returnCode === 302) {
|
||||||
|
@ -11,7 +11,8 @@
|
|||||||
* @link https://github.com/rss-bridge/rss-bridge
|
* @link https://github.com/rss-bridge/rss-bridge
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class ListAction extends ActionAbstract {
|
class ListAction implements ActionInterface
|
||||||
|
{
|
||||||
public function execute() {
|
public function execute() {
|
||||||
$list = new StdClass();
|
$list = new StdClass();
|
||||||
$list->bridges = array();
|
$list->bridges = array();
|
||||||
|
@ -19,7 +19,7 @@ try {
|
|||||||
|
|
||||||
if(array_key_exists('action', $params)) {
|
if(array_key_exists('action', $params)) {
|
||||||
$action = $actionFac->create($params['action']);
|
$action = $actionFac->create($params['action']);
|
||||||
$action->setUserData($params);
|
$action->userData = $params;
|
||||||
$action->execute();
|
$action->execute();
|
||||||
} else {
|
} else {
|
||||||
$showInactive = filter_input(INPUT_GET, 'show_inactive', FILTER_VALIDATE_BOOLEAN);
|
$showInactive = filter_input(INPUT_GET, 'show_inactive', FILTER_VALIDATE_BOOLEAN);
|
||||||
|
@ -1,33 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**
|
|
||||||
* This file is part of RSS-Bridge, a PHP project capable of generating RSS and
|
|
||||||
* Atom feeds for websites that don't have one.
|
|
||||||
*
|
|
||||||
* For the full license information, please view the UNLICENSE file distributed
|
|
||||||
* with this source code.
|
|
||||||
*
|
|
||||||
* @package Core
|
|
||||||
* @license http://unlicense.org/ UNLICENSE
|
|
||||||
* @link https://github.com/rss-bridge/rss-bridge
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* An abstract class for action objects
|
|
||||||
*/
|
|
||||||
abstract class ActionAbstract implements ActionInterface {
|
|
||||||
/**
|
|
||||||
* Holds the user data.
|
|
||||||
*
|
|
||||||
* @var array
|
|
||||||
*/
|
|
||||||
protected $userData = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* {@inheritdoc}
|
|
||||||
*
|
|
||||||
* @param array $userData {@inheritdoc}
|
|
||||||
*/
|
|
||||||
public function setUserData($userData) {
|
|
||||||
$this->userData = $userData;
|
|
||||||
}
|
|
||||||
}
|
|
@ -15,14 +15,6 @@
|
|||||||
* Interface for action objects.
|
* Interface for action objects.
|
||||||
*/
|
*/
|
||||||
interface ActionInterface {
|
interface ActionInterface {
|
||||||
/**
|
|
||||||
* Set user data for the action to consume.
|
|
||||||
*
|
|
||||||
* @param array $userData An associative array of user data.
|
|
||||||
* @return void
|
|
||||||
*/
|
|
||||||
function setUserData($userData);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Execute the action.
|
* Execute the action.
|
||||||
*
|
*
|
||||||
|
@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
namespace RssBridge\Tests\Actions;
|
namespace RssBridge\Tests\Actions;
|
||||||
|
|
||||||
use ActionAbstract;
|
|
||||||
use ActionInterface;
|
use ActionInterface;
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
@ -32,15 +31,15 @@ class ActionImplementationTest extends TestCase {
|
|||||||
* @dataProvider dataActionsProvider
|
* @dataProvider dataActionsProvider
|
||||||
*/
|
*/
|
||||||
public function testVisibleMethods($path) {
|
public function testVisibleMethods($path) {
|
||||||
$allowedActionAbstract = get_class_methods(ActionAbstract::class);
|
$allowedMethods = get_class_methods(ActionInterface::class);
|
||||||
sort($allowedActionAbstract);
|
sort($allowedMethods);
|
||||||
|
|
||||||
$this->setAction($path);
|
$this->setAction($path);
|
||||||
|
|
||||||
$methods = get_class_methods($this->obj);
|
$methods = get_class_methods($this->obj);
|
||||||
sort($methods);
|
sort($methods);
|
||||||
|
|
||||||
$this->assertEquals($allowedActionAbstract, $methods);
|
$this->assertEquals($allowedMethods, $methods);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function dataActionsProvider() {
|
public function dataActionsProvider() {
|
||||||
|
@ -80,7 +80,6 @@ class ListActionTest extends TestCase {
|
|||||||
$actionFac = new ActionFactory();
|
$actionFac = new ActionFactory();
|
||||||
|
|
||||||
$action = $actionFac->create('list');
|
$action = $actionFac->create('list');
|
||||||
$action->setUserData(array()); /* no user data required */
|
|
||||||
|
|
||||||
ob_start();
|
ob_start();
|
||||||
$action->execute();
|
$action->execute();
|
||||||
|
Loading…
Reference in New Issue
Block a user