46 lines
2.5 KiB
PHP
46 lines
2.5 KiB
PHP
<?php
|
|
include 'vendor/autoload.php';
|
|
|
|
|
|
set_time_limit(-1);
|
|
$db = new SQLite3('data.db');
|
|
if (isset($_GET['category']) && strlen($_GET['category'])) {
|
|
$stmt = $db->prepare('SELECT * FROM book WHERE category_slug = :category_slug');
|
|
$stmt->bindValue(':category_slug', $_GET['category'], SQLITE3_TEXT);
|
|
} elseif (isset($_GET['search']) && isset($_GET['search_title']) && !empty($_GET['search_title'])) {
|
|
$stmt = $db->prepare('SELECT * FROM book WHERE title like :search');
|
|
$stmt->bindValue(':search', '%' . $_GET['search_title'] . '%', SQLITE3_TEXT);
|
|
} else {
|
|
$stmt = $db->prepare('SELECT * FROM book ');
|
|
}
|
|
$result = $stmt->execute();
|
|
|
|
echo "<form method='get'><input type='text' name='search_title' value='" . ($_GET['search_title'] ?? '') . "' /><button type='submit' name='search'>Search</button><a href='/'>Clear</a></form>";
|
|
|
|
|
|
echo '<table style="width: 100%">';
|
|
print('<tr> <th>id</th><th>nid</th><th>Title</th><th>Category</th><th>Publish date</th><th>Pages</th><th>Votes</th><th>Rating</th> <th>Pdf</th> <th>Epub</th> <th>Mobi</th> <th>Code</th> </tr>');
|
|
while ($resultArray = $result->fetchArray(SQLITE3_ASSOC)) {
|
|
|
|
$pdfUrl = 'books/' . $resultArray['nid'] . '/' . $resultArray['nid'] . '.pdf';
|
|
$epubUrl = 'books/' . $resultArray['nid'] . '/' . $resultArray['nid'] . '.epub';
|
|
$mobiUrl = 'books/' . $resultArray['nid'] . '/' . $resultArray['nid'] . '.mobi';
|
|
$codeUrl = '';
|
|
if (preg_match('#\d+#', $resultArray['code'], $found)) {
|
|
$codeId = $found[0];
|
|
$codeUrl = 'books/' . $codeId . '/' . $codeId . '.zip';
|
|
}
|
|
printf('<tr> <td>%d</td><td>%d</td><td><a href="http://packtpub.com%s">%s</a></td><td><a href="?category=%s">%s</a></td><td>%s</td><td>%s</td><td>%d</td><td>%.1f</td> <td>%s</td><td>%s</td><td>%s</td><td>%s</td> </tr>',
|
|
$resultArray['id'], $resultArray['nid'], $resultArray['url'], $resultArray['title'], $resultArray['category_slug'], $resultArray['category'], $resultArray['datepublished'], $resultArray['numberofpages'], $resultArray['reviewCount'], $resultArray['ratingValue'],
|
|
is_file($pdfUrl) ? "<a href='{$pdfUrl}'>pdf</a>" : (strlen($resultArray['pdf']) ? 'nie pobrano' : ''),
|
|
is_file($epubUrl) ? "<a href='{$epubUrl}'>epub</a>" : (strlen($resultArray['epub']) ? 'nie pobrano' : ''),
|
|
is_file($mobiUrl) ? "<a href='{$mobiUrl}'>mobi</a>" : (strlen($resultArray['mobi']) ? 'nie pobrano' : ''),
|
|
is_file($codeUrl) ? "<a href='{$codeUrl}'>zip</a>" : (strlen($resultArray['code']) ? 'nie pobrano' : '')
|
|
);
|
|
if ($resultArray) {
|
|
$x = $resultArray;
|
|
}
|
|
}
|
|
echo '</table>';
|
|
|