37 BridgeAbstract
LogMANOriginal edited this page 2019-02-03 21:26:35 +01:00

BridgeAbstract is a base class for standard bridges. It implements the most common functions to simplify the process of adding new bridges.


Creating a new bridge

You need four basic steps in order to create a new bridge:

Step 1 - Create a new file
Step 2 - Add a class, extending BridgeAbstract
Step 3 - Add general constants to the class
Step 4 - Implement a function to collect feed data

These steps are described in more detail below. At the end of this document you'll find a complete template based on these instructions. The pictures below show an example based on these instructions:

Show pictures

images/screenshot_bridgeabstract_example_card.png


images/screenshot_bridgeabstract_example_atom.png


Make sure to read these instructions carefully. Please don't hesitate to open an Issue if you have further questions (or suggestions). Once your bridge is finished, please open a Pull Request, in order to get your bridge merge into RSS-Bridge.


Step 1 - Create a new file

Please read these instructions on how to create a new file for RSS-Bridge.

Step 2 - Add a class, extending BridgeAbstract

Your bridge needs to be a class, which extends BridgeAbstract. The class name must exactly match the name of the file, without the file extension.

For example: MyBridge.php => MyBridge

Show example
<?PHP
class MyBridge extends BridgeAbstract {

}
// This line is empty (just imagine it!)

Step 3 - Add general constants to the class

In order to present your bridge on the front page, RSS-Bridge requires a few constants:

const NAME          // Name of the Bridge (default: "Unnamed Bridge")
const URI           // URI to the target website of the bridge (default: empty)
const DESCRIPTION   // A brief description of the Bridge (default: "No description provided")
const MAINTAINER    // Name of the maintainer, i.e. your name on GitHub (default: "No maintainer")
const PARAMETERS    // (optional) Definition of additional parameters (default: empty)
const CACHE_TIMEOUT // (optional) Defines the maximum duration for the cache in seconds (default: 3600)
Show example
<?PHP
class MyBridge extends BridgeAbstract {
	const NAME        = 'My Bridge';
	const URI         = 'https://github.com/RSS-Bridge/rss-bridge/wiki/BridgeAbstract';
	const DESCRIPTION = 'Returns "Hello World!"';
	const MAINTAINER  = 'ghost';
}
// This line is empty (just imagine it!)

Notice: const PARAMETERS can be used to request information from the user. Refer to these instructions for more information.

Step 4 - Implement a function to collect feed data

In order for RSS-Bridge to collect data, you must implement the public function collectData. This function takes no arguments and returns nothing. It generates a list of feed elements, which must be placed into the variable $this->items.

Show example
<?PHP
class MyBridge extends BridgeAbstract {
	const NAME        = 'My Bridge';
	const URI         = 'https://github.com/RSS-Bridge/rss-bridge/wiki/BridgeAbstract';
	const DESCRIPTION = 'Returns "Hello World!"';
	const MAINTAINER  = 'ghost';

	public function collectData() {
		$item = array(); // Create an empty item

		$item['title'] = 'Hello World!';

		$this->items[] = $item; // Add item to the list
	}
}
// This line is empty (just imagine it!)

For more details on the collectData function refer to these instructions.


Template

Use this template to create your own bridge. Please remove any unnecessary comments and parameters.

<?php
class MyBridge extends BridgeAbstract {
	const NAME = 'Unnamed bridge';
	const URI = '';
	const DESCRIPTION = 'No description provided';
	const MAINTAINER = 'No maintainer';
	const PARAMETERS = array(); // Can be omitted!
	const CACHE_TIMEOUT = 3600; // Can be omitted!

	public function collectData() {
		$item = array(); // Create an empty item

		$item['title'] = 'Hello World!';

		$this->items[] = $item; // Add item to the list
	}
}
// This line is empty (just imagine it!)