-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rusty
committed
Mar 9, 2020
0 parents
commit 622cd70
Showing
13 changed files
with
2,409 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
MIT License | ||
|
||
Copyright (C) 2020, Alldebrid. support@alldebrid.com | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
# alldebrid-php | ||
|
||
Simple abstraction wrapper around Alldebrid API v4 in PHP. | ||
|
||
Requires PHP 7.1 or newer. | ||
|
||
## Documentation | ||
|
||
The documentation for the Alldebrid API can be found [here][apidocs]. | ||
|
||
The PHP library documentation can be found in this README. An example folder is also provided to show library usage. | ||
|
||
|
||
## Installation | ||
|
||
You can install **alldebrid-php** in two ways, by using composer or downloading and including the standalone file. | ||
|
||
|
||
### Via Composer: | ||
|
||
**alldebrid-php** is available on Packagist as the | ||
[`alldebrid/alldebrid`](https://packagist.org/packages/alldebrid/alldebrid) package: | ||
|
||
``` | ||
composer require alldebrid/alldebrid | ||
``` | ||
|
||
Then add the autoloader to your application with this line: ``require("vendor/autoload.php")`` | ||
|
||
### Via include: | ||
|
||
A standalone version of this library is provided, just download and include it manually : | ||
|
||
```php | ||
include './alldebrid.standalone.php'; | ||
``` | ||
|
||
|
||
## Quickstart | ||
|
||
### Authentication | ||
|
||
The Alldebrid API requires an agent and an apikey to authenticate requests. The agent is your app / library name ([doc](https://docs.alldebrid.com/v4/#authentication)). | ||
|
||
You can view , create and manage your API keys in your [Alldebrid Apikey dashboard][apikeys], or generate them remotly (with user action) through the PIN flow ([doc](https://docs.alldebrid.com/v4/#pin-auth) / [example](https://github.com/Alldebrid/alldebrid-php/blob/master/examples/pin.php)). | ||
|
||
```php | ||
$agent = 'myAppName'; // Your project name | ||
$apikey = 'YYYYYY'; // Apikey | ||
|
||
$alldebrid = new \Alldebrid\Alldebrid($agent, $apikey); | ||
``` | ||
|
||
### Use and error handling | ||
|
||
This library use Go-style error handling by default, but can be configured to use Exception if you choose so. | ||
|
||
```php | ||
$agent = 'myAppName'; // Your project name | ||
$apikey = 'YYYYYY'; // Apikey | ||
|
||
$alldebrid = new \Alldebrid\Alldebrid($agent, $apikey); | ||
|
||
// Go-style, always return an array [ $response, $error ] | ||
[ $user, $error ] = $alldebrid->user(); | ||
|
||
if($error) { | ||
// Api call failed or returned an error | ||
$errorMessage = $user; | ||
die("Could not get user informations, error " . $error . " : " . $errorMessage . "\n"); | ||
} | ||
|
||
// No error, you can consume the response | ||
echo "Hello, " . $user['username'] . "\n"; | ||
``` | ||
|
||
Using the library with Exceptions | ||
|
||
```php | ||
$agent = 'myAppName'; // Your project name | ||
$apikey = 'YYYYYY'; // Apikey | ||
|
||
$alldebrid = new \Alldebrid\Alldebrid($agent, $apikey); | ||
$alldebrid->setErrorMode('exception'); | ||
|
||
try { | ||
$user = $alldebrid->user(); | ||
} catch(Exception $e) { | ||
die("Exception " . $e->getMessage() . "\n"); | ||
} | ||
|
||
// No error, you can consume the response | ||
echo "Hello, " . $user['username'] . "\n"; | ||
``` | ||
|
||
### High-level and low-level use | ||
|
||
This library provides multiple ways to use the Alldebrid API, once the agent and apikey are set. | ||
|
||
The lowest-level use is to call the api() function with the desired endpoint and parameters : | ||
|
||
```php | ||
$alldebrid = new \Alldebrid\Alldebrid($agent, $apikey); | ||
$myLink = 'https://example.com/example'; | ||
[ $response, $error ] = $alldebrid->api('link/infos', ['link' => [ $myLink ] ]); | ||
``` | ||
|
||
Every API endpoint has its own wrapper function you can use, which handles proper parameters naming and some response checking : | ||
|
||
```php | ||
$alldebrid = new \Alldebrid\Alldebrid($agent, $apikey); | ||
$myLink = 'https://example.com/example'; | ||
[ $response, $error ] = $alldebrid->linkInfos($myLink); | ||
``` | ||
|
||
Finally, for links, magnets and pin auth, helper objects are provided to easily interact with them : | ||
|
||
```php | ||
$alldebrid = new \Alldebrid\Alldebrid($agent, $apikey); | ||
$myLink = 'https://example.com/example'; | ||
|
||
$link = $alldebrid->link($myLink); | ||
[ $response, $error ] = $link->infos(); | ||
// you can then call $link->unlock() if there is no error | ||
``` | ||
|
||
Every calls of this library are documented in the [example folder](https://github.com/Alldebrid/alldebrid-php/tree/master/examples). | ||
|
||
|
||
### Configuration | ||
|
||
Some options can tweak how this library behaves. The wrapper has a public options array property that you can update. | ||
|
||
```php | ||
$alldebrid = new \Alldebrid\Alldebrid($agent, $apikey); | ||
|
||
// By default retry=true and maxRetries=2, the library will retry failed request 2 times | ||
$alldebrid->options['retry'] = false; // Disable retry | ||
$alldebrid->options['maxRetries'] = 5; // Raise max retries | ||
|
||
// By default autoInit=false, the library wont make any api call you didn't request explicitly | ||
$alldebrid->options['autoInit'] = true; // Get user and hosts informations on wrapper creation | ||
|
||
// By default autoUnlockBestStreamQuality=false | ||
$alldebrid->options['autoUnlockBestStreamQuality'] = true; // On link with multiple stream options, the library will automatically unlock the highest quality source | ||
|
||
// By default ignoreRedirector=true | ||
$alldebrid->options['ignoreRedirector'] = true; // Flag to make the library handle redirectors | ||
|
||
// By default exceptions=false | ||
$alldebrid->options['exceptions'] = true; // Use Exception for error handling. Can also use $alldebrid->setErrorMode('exception'); | ||
``` | ||
|
||
## Getting help | ||
|
||
If you need help installing or using the library, please check the [Api docs][apidocs] first, check the [example codes](https://github.com/Alldebrid/alldebrid-php/tree/master/examples) and then [contact us](https://alldebrid.com/contact/) if you don't find an answer to your question. | ||
|
||
If you've instead found a bug in the library or would like new features added, go ahead and open issues or pull requests against this repo! | ||
|
||
[apidocs]: https://docs.alldebrid.com | ||
[apikeys]: https://alldebrid.com/apikeys/ |
Oops, something went wrong.