1. Go to this page and download the library: Download kiwilan/php-opds library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kiwilan / php-opds example snippets
use Kiwilan\Opds\Opds;
use Kiwilan\Opds\OpdsConfig;
$opds = Opds::make(new OpdsConfig()) // OpdsConfig::class, optional
->title('My feed')
->feeds([...]) // OpdsEntryNavigation[]|OpdsEntryBook[]|OpdsEntryNavigation|OpdsEntryBook
->get()
;
use Kiwilan\Opds\Opds;
$opds = Opds::make()
->title('My feed')
->feeds([...])
->get()
;
$opds->getConfig(); // OpdsConfig - Configuration used to create OPDS feed set into `make()` method
$opds->getUrl(); // string|null - Current URL, generated automatically but can be overrided with `url()` method
$opds->getTitle(); // string - Title of OPDS feed set with `title()` method
$opds->getVersion(); // OpdsVersionEnum - OPDS version used, determined by query parameter `v` or `OpdsConfig::class` method `forceJson()`
$opds->getQueryVersion(); // OpdsVersionEnum|null - Name of query parameter used to set OPDS version, default is `v`
$opds->getUrlParts(); // array - URL parts, determined from `url`
$opds->getQuery(); // array - Query parameters, determined from `url`
$opds->getFeeds(); // array - Feeds set with `feeds()` method
$opds->checkIfSearch(); // bool, default is false, set to true if `isSearch()` method is used
use Kiwilan\Opds\Opds;
$opds = Opds::make()
->title('My feed')
->feeds([...])
->get()
;
$opds->getEngine(); // OpdsEngine|null - Engine used to create OPDS feed, determined by OPDS version, can be `OpdsXmlEngine::class` or `OpdsJsonEngine::class`
$opds->getOutput(); // OpdsOutputEnum|null - Output of response, useful for debug
$opds->getPaginator(); // OpdsPaginator|OpdsPaginate|null - Paginator used to paginate feeds, if you use `paginate()` method
$opds->getResponse(); // OpdsResponse|null - Response of OPDS feed, will use `OpdsEngine` to create a response
use Kiwilan\Opds\Opds;
$opds = Opds::make()
->title('My feed')
->feeds([...])
->get() // `Opds` to fill `OpdsEngine`, `OpdsResponse` and paginator
;
use Kiwilan\Opds\Opds;
$opds = Opds::make()
->title('My feed')
->feeds([...])
->get()
;
$response = $opds->getResponse(); // OpdsResponse
$response->getStatus(); // int - Status code of response
$response->isJson(); // bool - If response is JSON
$response->isXml(); // bool - If response is XML
$response->getHeaders(); // array - Headers of response
$response->getContents(); // string - Contents of response
use Kiwilan\Opds\Opds;
Opds::make()
->title('My feed')
->feeds([...])
->send(); // XML or JSON response
;
use Kiwilan\Opds\Opds;
$opds = Opds::make()
->title('My feed')
->feeds([...])
->get()
;
// do something with `OpdsResponse` instance
$opds->send(); // XML or JSON response
use Kiwilan\Opds\Opds;
$opds = Opds::make()
->title('My feed')
->feeds([...])
->get();
$response = $opds->getResponse(); // OpdsResponse
$response->send(); // XML or JSON response
use Kiwilan\Opds\OpdsConfig;
$config = new OpdsConfig(
name: 'My OPDS Catalog', // Name of OPDS feed
author: 'John Doe', // Author name
authorUrl: 'https://example.com', // Author URL
iconUrl: 'https://example.com/icon.png', // Icon URL
startUrl: 'https://example.com/opds', // Start URL, will be fault is 16
forceJson: false, // To force JSON response as OPDS 2.0, default is false
);
use Kiwilan\Opds\Opds;
$opds = Opds::make()
->title('My feed')
->feeds([...])
->paginate() // will generate pagination
->get();
$opds->getPaginator(); // OpdsPaginator
use Kiwilan\Opds\Opds;
$opds = Opds::make(getConfig())
->title('My feed')
->url('http://localhost:8080/opds?u=2')
->feeds([...])
->paginate(new OpdsPaginate(
currentPage: $page,
totalItems: $total,
firstUrl: 'http://localhost:8080/opds?f=1',
lastUrl: 'http://localhost:8080/opds?l=42',
previousUrl: 'http://localhost:8080/opds?p=1',
nextUrl: 'http://localhost:8080/opds?n=3',
)) // will generate pagination based on `OpdsPaginate` object
->get();
$opds->getPaginator(); // OpdsPaginate
use Kiwilan\Opds\Entries\OpdsEntryNavigation;
$entry = new OpdsEntryNavigation(
id: 'authors',
title: 'Authors',
route: 'http://mylibrary.com/opds/authors',
summary: 'Authors, 1 available',
media: 'https://user-images.githubusercontent.com/48261459/201463225-0a5a084e-df15-4b11-b1d2-40fafd3555cf.svg',
updated: new DateTime(),
properties: [
'numberOfItems' => 1,
], // to
use Kiwilan\Opds\Opds;
$opds = Opds::make()
->feeds([$entry])
->get();
use Kiwilan\Opds\Entries\OpdsEntryBook;
use Kiwilan\Opds\Entries\OpdsEntryBookAuthor;
$entry = new OpdsEntryBook(
id: 'the-clan-of-the-cave-bear-epub-en',
title: 'The Clan of the Cave Bear',
route: 'http://mylibrary.com/opds/books/the-clan-of-the-cave-bear-epub-en',
summary: 'The Clan of the Cave Bear is an epic work of prehistoric fiction by Jean M. Auel.',
content: 'The Clan of the Cave Bear is an epic work of prehistoric fiction by Jean M. Auel about prehistoric times. It is the first book in the Earth\'s Children book series which speculates on the possibilities of interactions between Neanderthal and modern Cro-Magnon humans.',
media: 'https://user-images.githubusercontent.com/48261459/201463225-0a5a084e-df15-4b11-b1d2-40fafd3555cf.svg',
updated: new DateTime(),
download: 'http://mylibrary.com/api/download/books/the-clan-of-the-cave-bear-epub-en',
mediaThumbnail: 'https://user-images.githubusercontent.com/48261459/201463225-0a5a084e-df15-4b11-b1d2-40fafd3555cf.svg',
categories: ['category'],
authors: [
new OpdsEntryBookAuthor(
name: 'Jean M. Auel',
uri: 'http://mylibrary.com/opds/authors/jean-m-auel',
),
],
published: new DateTime(),
volume: 1,
serie: 'Earth\'s Children',
language: 'English',
identifier: 'urn:isbn:9780553381672', // to specify the actual identifier to use (instead of `urn:isbn:...`)
translator: 'translator',
publisher: 'publisher',
);
$opds = Opds::make()
->feeds([$entry])
->get();
use Kiwilan\Opds\Opds;
use Kiwilan\Opds\Entries\OpdsEntryBook;
$query = // get query from URL, `q` or `query` param
$feeds = [];
if ($query) {
$results = []; // use your search engine here
foreach ($results as $result) {
$feeds[] = new OpdsEntryBook(
title: $result->title,
// ...
);
}
}
$opds = Opds::make()
->title("Search for {$query}")
->isSearch()
->feeds($feeds)
->get();
bash
composer
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.