diff --git a/Bridge_API/BridgeAbstract.html b/Bridge_API/BridgeAbstract.html index bc9672ed..46989b13 100644 --- a/Bridge_API/BridgeAbstract.html +++ b/Bridge_API/BridgeAbstract.html @@ -100,7 +100,7 @@
The detectParameters
function takes a URL and attempts to extract a valid set of parameters for the current bridge.
If the passed URL is valid for this bridge the function should return an array of parameter -> value pairs that can be used by this bridge, or an empty array if the bridge requires no parameters. If the URL is not relevant for this bridge the function should return null
.
Notice: Implementing this function is optional. By default RSS-Bridge tries to match the supplied URL to the URI
constant defined in the bridge which may be enough for bridges without any parameters defined.
If the passed URL is valid for this bridge, the function should return an array of parameter -> value pairs that can be used by this bridge, including context if available, or an empty array if the bridge requires no parameters. If the URL is not relevant for this bridge, the function should return null
.
Notice: Implementing this function is optional. By default, RSS-Bridge tries to match the supplied URL to the URI
constant defined in the bridge, which may be enough for bridges without any parameters defined.
public function detectParameters($url){
$regex = '/^(https?:\/\/)?(www\.)?(.+?)(\/)?$/';
if(empty(static::PARAMETERS)
@@ -486,6 +486,16 @@ $item['uid'] // A unique ID to identify the current item
}
}
+Notice: This function is also used by the findFeed action. This action allows an user to get a list of all feeds corresponding to an URL.
+You can implement automated tests for the detectParameters
function by adding the TEST_DETECT_PARAMETERS
constant to your bridge class constant.
TEST_DETECT_PARAMETERS
is an array, with as key the URL passed to the detectParameters
function and as value, the array of parameters returned by detectParameters
const TEST_DETECT_PARAMETERS = [
+ 'https://www.instagram.com/metaverse' => ['context' => 'Username', 'u' => 'metaverse'],
+ 'https://instagram.com/metaverse' => ['context' => 'Username', 'u' => 'metaverse'],
+ 'http://www.instagram.com/metaverse' => ['context' => 'Username', 'u' => 'metaverse'],
+ ];
+
+Notice: Adding this constant is optional. If the constant is not present, no automated test will be executed.
BridgeAbstract
implements helper methods to make it easier for bridge maintainers to create bridges. Use these methods whenever possible instead of writing your own.