Compare commits
7 Commits
1.0.2
...
feature/up
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
171c050368 | ||
|
|
e8081cd898 | ||
|
|
8c5ae22081 | ||
|
|
406d6a8f8d | ||
|
|
5f3cbc8b8c | ||
|
|
475c200b67 | ||
|
|
293a776d16 |
50
README.md
50
README.md
@@ -0,0 +1,50 @@
|
|||||||
|
## Installation
|
||||||
|
|
||||||
|
Place this in the composer.json.
|
||||||
|
|
||||||
|
```composer
|
||||||
|
{
|
||||||
|
"repositories": [{
|
||||||
|
"type": "composer",
|
||||||
|
"url": "https://satis.techtube.pl"
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
```
|
||||||
|
Then execute to get latest version:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
composer require techtube/bookinfo
|
||||||
|
```
|
||||||
|
|
||||||
|
or this to get specific version:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
composer require techtube/bookinfo:"1.0.4"
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
To get information about the book by the link:
|
||||||
|
|
||||||
|
```php
|
||||||
|
<?php
|
||||||
|
|
||||||
|
include_once 'vendor/autoload.php';
|
||||||
|
|
||||||
|
$searcher = new \Techtube\Bookinfo\BookFinder();
|
||||||
|
$data = $searcher->byUrl('https://lubimyczytac.pl/ksiazka/5008411/oni');
|
||||||
|
|
||||||
|
print_r($data);
|
||||||
|
```
|
||||||
|
|
||||||
|
To search the book by phrase:
|
||||||
|
```php
|
||||||
|
<?php
|
||||||
|
|
||||||
|
include_once 'vendor/autoload.php';
|
||||||
|
|
||||||
|
$searcher = new \Techtube\Bookinfo\BookFinder();
|
||||||
|
$data = $searcher->search('jack reacher');
|
||||||
|
|
||||||
|
print_r($data);
|
||||||
|
```
|
||||||
@@ -13,8 +13,8 @@
|
|||||||
},
|
},
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "kplaczek",
|
"name": "Krzysztof Płaczek",
|
||||||
"email": "kplaczek@wi.ps.pl"
|
"email": "krzysztofplaczek@techtube.pl"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,11 +9,15 @@ abstract class AbstractBookInfo
|
|||||||
public string $isbn;
|
public string $isbn;
|
||||||
public string $description;
|
public string $description;
|
||||||
public string $title;
|
public string $title;
|
||||||
|
public string $originalTitle;
|
||||||
public string $category;
|
public string $category;
|
||||||
public array $cover_url;
|
public array $cover_url;
|
||||||
public int $pages;
|
public int $pages;
|
||||||
public string $cycle;
|
public string $cycle;
|
||||||
public int $volume;
|
public string $cycleUrl;
|
||||||
public string $language;
|
public string $volume;
|
||||||
|
public ?string $language;
|
||||||
public string $datePublished;
|
public string $datePublished;
|
||||||
|
public ?string $publisher;
|
||||||
|
public ?string $translator;
|
||||||
}
|
}
|
||||||
@@ -7,7 +7,7 @@ use Techtube\Bookinfo\Api\AbstractBookInfo;
|
|||||||
|
|
||||||
class BookFinder
|
class BookFinder
|
||||||
{
|
{
|
||||||
private static $searchUrl = 'https://lubimyczytac.pl/szukaj/ksiazki?phrase=';
|
private static string $searchUrl = 'https://lubimyczytac.pl/szukaj/ksiazki?phrase=';
|
||||||
|
|
||||||
private DataParser $parser;
|
private DataParser $parser;
|
||||||
|
|
||||||
@@ -21,14 +21,14 @@ class BookFinder
|
|||||||
return $this->parser->searchPage(new Document($this->getSearchUrl($phrase), true));
|
return $this->parser->searchPage(new Document($this->getSearchUrl($phrase), true));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function byUrl($url): AbstractBookInfo
|
public function byUrl(string $url): AbstractBookInfo
|
||||||
{
|
{
|
||||||
return $this->parser->singlePage(new Document($url, true));
|
return $this->parser->singlePage(new Document($url, true));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getSearchUrl(string $phrase): string
|
private function getSearchUrl(string $phrase): string
|
||||||
{
|
{
|
||||||
return self::$searchUrl . $phrase;
|
return sprintf('%s%s', self::$searchUrl, $phrase);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ namespace Techtube\Bookinfo;
|
|||||||
|
|
||||||
use DiDom\Document;
|
use DiDom\Document;
|
||||||
use DiDom\Exceptions\InvalidSelectorException;
|
use DiDom\Exceptions\InvalidSelectorException;
|
||||||
|
use DiDom\Query;
|
||||||
use JetBrains\PhpStorm\ArrayShape;
|
use JetBrains\PhpStorm\ArrayShape;
|
||||||
use Techtube\Bookinfo\Api\AbstractBookInfo;
|
use Techtube\Bookinfo\Api\AbstractBookInfo;
|
||||||
|
|
||||||
@@ -18,21 +19,25 @@ class DataParser
|
|||||||
{
|
{
|
||||||
$info = new Info();
|
$info = new Info();
|
||||||
$jsonInfo = json_decode($document->first('script[type="application/ld+json"]')->text());
|
$jsonInfo = json_decode($document->first('script[type="application/ld+json"]')->text());
|
||||||
|
$info->url = $document->getDocument()->baseURI;
|
||||||
|
$info->publisher = $document->first('a[href*="wydawnictwo"]')?->text();
|
||||||
$info->author = $document->first('meta[property="books:author"]')->getAttribute('content');
|
$info->author = $document->first('meta[property="books:author"]')->getAttribute('content');
|
||||||
$info->isbn = $document->first('meta[property="books:isbn"]')->getAttribute('content');
|
$info->isbn = $document->first('meta[property="books:isbn"]')->getAttribute('content');
|
||||||
$info->description = $document->first('meta[property="og:description"]')->getAttribute('content');
|
$info->description = trim($document->first('#book-description p')->text());
|
||||||
$info->title = trim($document->first('h1.book__title')->text());
|
$info->title = trim($document->first('h1.book__title')->text());
|
||||||
|
$info->originalTitle = trim($document->first("//*[contains(text(), 'Tytuł oryginału:')]", Query::TYPE_XPATH)?->nextSibling('dd')?->text() ?? '');
|
||||||
$info->category = trim($document->first('.book__category')->text());
|
$info->category = trim($document->first('.book__category')->text());
|
||||||
$info->cover_url = $this->generateCoverUrls(
|
$info->cover_url = $this->generateCoverUrls(
|
||||||
$document->first('meta[property="og:image"]')->getAttribute('content')
|
$document->first('meta[property="og:image"]')->getAttribute('content')
|
||||||
);
|
);
|
||||||
$info->pages = (int)$document->first('span.book__pages')?->text();
|
$info->pages = (int)$document->first('span.book__pages')?->text();
|
||||||
if (preg_match('#(.*) \(tom (\d*)\)#ism', trim($document->first('a[href*="/cykl/"]')?->text()), $series)) {
|
if (preg_match('#(.*) \(tom (\d*)\)#ism', trim($document->first('a[href*="/cykl/"]')?->text() ?? ''), $series)) {
|
||||||
$info->cycle = $series[1];
|
$info->cycle = $series[1];
|
||||||
$info->volume = $series[2];
|
$info->volume = $series[2];
|
||||||
}
|
}
|
||||||
$info->language = $jsonInfo->inLanguage ?? null;
|
$info->language = $jsonInfo?->inLanguage ?? trim($document->xpath("//*[contains(text(), 'Język:')]")[0]->nextSibling('dd')->text());
|
||||||
$info->datePublished = $jsonInfo->datePublished ?? null;
|
$info->datePublished = $jsonInfo?->datePublished ?? null;
|
||||||
|
$info->translator = trim($document->first("//*[contains(text(), 'Tłumacz:')]", Query::TYPE_XPATH)?->nextSibling('dd')?->text() ?? '');
|
||||||
|
|
||||||
return $info;
|
return $info;
|
||||||
}
|
}
|
||||||
@@ -44,16 +49,22 @@ class DataParser
|
|||||||
*/
|
*/
|
||||||
public function searchPage(Document $document): array
|
public function searchPage(Document $document): array
|
||||||
{
|
{
|
||||||
$books = $document->find('#search .authorAllBooks__single');
|
$books = $document->find('#ksiazki .authorAllBooks__single');
|
||||||
|
|
||||||
$booksInfo = [];
|
$booksInfo = [];
|
||||||
foreach ($books as $book) {
|
if ($document->has('#searchksiazki')) {
|
||||||
$bookInfo = new Info();
|
foreach ($books as $book) {
|
||||||
$bookInfo->title = trim($book->first('.authorAllBooks__singleTextTitle')->text());
|
$bookInfo = new Info();
|
||||||
$bookInfo->author = trim($book->first('.authorAllBooks__singleTextAuthor')->text());
|
$bookInfo->title = trim($book->first('.authorAllBooks__singleTextTitle')->text());
|
||||||
$bookInfo->url = $book->first('button[data-book-url]')->getAttribute('data-book-url');
|
$bookInfo->author = trim($book->first('.authorAllBooks__singleTextAuthor')->text());
|
||||||
$bookInfo->cover_url = $this->generateCoverUrls($book->first('.img-fluid')->getAttribute('data-src'));
|
$bookInfo->url = $book->first('button[data-book-url]')->getAttribute('data-book-url');
|
||||||
$booksInfo[] = $bookInfo;
|
$bookInfo->cover_url = $this->generateCoverUrls($book->first('.img-fluid')->getAttribute('data-src'));
|
||||||
|
if (preg_match('#(.*) \(tom (.*)\)#ism', trim($book->first('a[href*="/cykl/"]')?->text() ?? ''), $series)) {
|
||||||
|
$bookInfo->cycle = $series[1];
|
||||||
|
$bookInfo->volume = $series[2];
|
||||||
|
$bookInfo->cycleUrl = $book->first('a[href*="/cykl/"]')?->href;
|
||||||
|
}
|
||||||
|
$booksInfo[] = $bookInfo;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return $booksInfo;
|
return $booksInfo;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user