summaryrefslogtreecommitdiff
path: root/index.php
blob: 5260b1ddffc7ad3efcda179aabd65535eafa392a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
<?php
	if (!file_exists("config.php")) {
		die("Please copy config.php-dist to config.php and edit it.");
	}

	if (!is_writable("sessions")) {
		die("sessions/ directory is not writable.");
	}

	if (isset($_SERVER["PHP_AUTH_USER"])) {
		die("HTTP Authentication is no longer supported, please see migration notes in git.");
	}

	require_once "config.php";
	require_once "sessions.php";
	require_once "db.php";

	@$owner = SQLite3::escapeString($_SESSION["owner"]);

	if (!$owner) {
		header("Location: login.php");
		exit;
	}

	if (basename(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)) != 'index.php') {
		header('Location: index.php');
		exit;
	}

	if (!$owner) {
		header($_SERVER["SERVER_PROTOCOL"]." 401 Unauthorized");
		echo "Unauthorized";
		die;
	}

	if (!is_writable(SCRATCH_DB)) {
		die(SCRATCH_DB . " is not writable");
	}

	if (!is_writable(dirname(SCRATCH_DB))) {
		die(dirname(SCRATCH_DB) . " directory is not writable");
	}

	$ldb = Db::get();
?>
<!DOCTYPE html>
<html>
<head>
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<link href="lib/bootstrap/v3/css/bootstrap.min.css" rel="stylesheet" media="screen">
	<link href="lib/bootstrap/v3/css/bootstrap-theme.min.css" rel="stylesheet" media="screen">
	<link href="lib/qtip2/jquery.qtip.min.css" rel="stylesheet" media="screen">
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<script src="lib/bootstrap/v3/js/jquery.js"></script>
	<script src="lib/bootstrap/v3/js/bootstrap.min.js"></script>
	<script src="lib/holder.min.js"></script>
	<script src="lib/localforage.min.js"></script>
	<script src="lib/qtip2/jquery.qtip.min.js"></script>
	<title>The Epube</title>
	<link type="text/css" rel="stylesheet" media="screen" href="css/index.css" />
	<link rel="shortcut icon" type="image/png" href="img/favicon.png" />
	<link rel="icon" sizes="192x192" href="img/favicon_hires.png">
	<link rel="manifest" href="manifest.json">
	<meta name="mobile-web-app-capable" content="yes">
	<script src="js/index.js"></script>
	<script src="js/common.js"></script>
</head>
<body>

<?php
	@$query = $_REQUEST["query"];
?>

<div class="navbar navbar-default navbar-static-top">
<div class="container">
	<div class="navbar-header">
		<span class="navbar-brand"><a href="?">The Epube</a></span>

		<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#nav-collapse" aria-expanded="false">
			<span class="sr-only">Toggle navigation</span>
			<span class="icon-bar"></span>
			<span class="icon-bar"></span>
			<span class="icon-bar"></span>
		</button>

	</div>

	<div class="collapse navbar-collapse" id="nav-collapse">

		<ul class="nav navbar-nav">
			<li class="active"><a href="index.php">All</a></li>
			<li><a href="offline.html">Local</a></li>
		</ul>

		<form class="navbar-form navbar-right">
			<input type="text" name="query" class="form-control"
				value="<?php echo htmlspecialchars($query) ?>">
			<button type="submit" class="btn btn-default">Search</button>
		</form>

		<ul class="nav navbar-nav navbar-right">
		<li><a href="logout.php">Logout</a></li>
		</li>

	</div>

</div>
</div>

<script type="text/javascript">
	$(document).ready(function() {

		if ('serviceWorker' in navigator) {
 			 navigator.serviceWorker
           .register('worker.js')
           .then(function() {
					console.log("service worker registered");
			  });
			 /*$(window).on('offline', function() {
				 window.location.reload();
			});*/
		}

		mark_offline_books();
		cache_refresh();
		init_tooltips();

	});
</script>

<div class="container">

<div class="modal fade" id="summary-modal" tabindex="-1" role="dialog">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title">Summary</h4>
      </div>
      <div class="modal-body">
			<div class="book-summary"> </div>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
      </div>
    </div>
  </div>
</div>


<?php

	require_once "config.php";

	$db = new SQLite3(CALIBRE_DB, SQLITE3_OPEN_READONLY);

	if ($query) {
		$query_esc = SQLite3::escapeString($query);
		$search_qpart = "(LOWER(books.author_sort) LIKE LOWER('%$query_esc%') OR
			LOWER(books.title) LIKE LOWER('%$query_esc%') OR
			LOWER(series_name) LIKE LOWER('%$query_esc%'))";
	} else {
		$search_qpart = "1";
	}

	$limit = 60;
	@$offset = (int) $_REQUEST["offset"];

	$order_by = $query ? "author_sort, series_name, series_index, title, books.id" : "books.id DESC";

	$result = $db->query("SELECT books.*, s.name AS series_name,
		(SELECT id FROM data WHERE book = books.id AND format = 'EPUB' LIMIT 1) AS epub_id FROM books
		LEFT JOIN books_series_link AS bsl ON (bsl.book = books.id)
		LEFT JOIN series AS s ON (bsl.series = s.id)
		WHERE $search_qpart ORDER BY $order_by LIMIT $limit OFFSET $offset");

	print "<div class='row'>";

	$rows = 0;

	while ($line = $result->fetchArray(SQLITE3_ASSOC)) {
		++$rows;

		$cover_link = "backend.php?" . http_build_query(["op" => "cover", "id" => $line["id"]]);
		$author_link = "?" . http_build_query(["query" => $line["author_sort"]]);

		$in_progress = false;
		$is_read = false;

		if ($line["epub_id"]) {
			$read_link = "read.html?" . http_build_query(["id" => $line["epub_id"], "b" => $line["id"]]);

			$lastread_result = $ldb->query("SELECT lastread, total_pages FROM epube_books, epube_pagination
				WHERE epube_pagination.bookid = epube_books.bookid AND
					epube_books.bookid = " . $line["epub_id"] . " AND owner = '$owner'");

			if ($lastread_line = $lastread_result->fetchArray(SQLITE3_ASSOC)) {
				$lastread = $lastread_line["lastread"];
				$total_pages = $lastread_line["total_pages"];

				$is_read = $total_pages - $lastread < 5;
				$in_progress = $lastread > 1;

			}

		} else {
			$read_link = "";
		}

		$cover_read = $is_read ? "read" : "";

		print "<div class='col-xs-6 col-sm-3 col-md-2 index_cell' id=\"cell-".$line["id"]."\">";
		print "<div class=\"thumb $cover_read\">";

		if ($read_link) print "<a href=\"$read_link\">";

		if ($line["has_cover"]) {
			print "<img data-book-id='".$line["id"]."' src='$cover_link'>";
		} else {
			print "<img data-book-id='".$line["id"]."' data-src='holder.js/120x180'>";
		}

		if ($read_link) print "</a>";

		print "<div class='caption'>";

		$title_class = $in_progress ? "in_progress" : "";

		print "<div title=\"".htmlspecialchars($line["title"])."\" class=\"$title_class\">";

		if ($read_link) {
			print "<a href=\"$read_link\">" . $line["title"] . "</a>";
		} else {
			print $line["title"];
		}

		print "</div>";

		if ($line["series_name"]) {
			$series_link = "?" . http_build_query(["query" => $line["series_name"]]);
			$series_full = $line["series_name"] . " [" . $line["series_index"] . "]";

			print "<div><a title=\"".htmlspecialchars($series_full)."\"
				href=\"$series_link\">$series_full</a></div>";
		}

		print "<div><a title=\"".htmlspecialchars($line["author_sort"])."\"
			href=\"$author_link\">" . $line["author_sort"] . "</a></div>";

		$data_result = $db->query("SELECT * FROM data WHERE book = " . $line["id"] . " LIMIT 3");

		/*print "<span class=\"label label-default\">
			<span class=\"glyphicon glyphicon-download-alt\">
			</span>";*/

		print "</div>";

		?>
		<div class="dropdown" style="white-space : nowrap">
		  <a href="#" data-toggle="dropdown" role="button">
		  		More...
				<span class="caret"></span>
  			</a>

			<ul class="dropdown-menu" aria-labelledby="dLabel">

				<!-- <?php if ($line["series_name"]) {
					$series_link = "?" . http_build_query(["query" => $line["series_name"]]);
					$series_full = $line["series_name"] . " [" . $line["series_index"] . "]";

					print "<li><a title=\"".htmlspecialchars($series_full)."\"
						href=\"$series_link\">$series_full</a></li>";
				}
				?> -->

				<li><a href="#" onclick="return show_summary(this)"
					data-book-id="<?php echo $line["id"] ?>">Summary</a></li>

				<?php if ($line["epub_id"]) { ?>
				<li><a href="#" onclick=""
					data-book-id="<?php echo $line["id"] ?>" class="offline_dropitem"></a></li>
				<li class="divider"></li>
				<?php } ?>

				<?php while ($data_line = $data_result->fetchArray(SQLITE3_ASSOC)) {
					if ($data_line["format"] != "ORIGINAL_EPUB") {
						$label_class = $data_line["format"] == "EPUB" ? "label-success" : "label-primary";

						$download_link = "backend.php?op=download&id=" . $data_line["id"];

						print "<li><a target=\"_blank\" href=\"$download_link\">Download: <span class=\"label $label_class\">" .
							$data_line["format"] . "</span></a></li>";
					}
				} ?>
			</ul>
		</div>

		<?php

		print "</div>";
		print "</div>";

	}

	?>

	</div>

	<?php
		$prev_link = http_build_query(["query" => $query, "offset" => $offset - $limit]);
		$next_link = http_build_query(["query" => $query, "offset" => $offset + $limit]);
	?>

	<ul class="pager">
		<?php if ($offset > 0) { ?>
		<li class="previous"><a href="?<?php echo $prev_link ?>">&larr; Previous</a></li>
		<?php } else { ?>
		<li class="previous disabled"><a href="#">&larr; Previous</a></li>
		<?php } ?>

		<?php if ($rows == $limit) { ?>
			<li class="next"><a href="?<?php echo $next_link ?>">Next&rarr;</a></li>
		<?php } else { ?>
			<li class="next disabled"><a href="#">Next&rarr;</a></li>
		<?php } ?>
	</ul>

</div>
</body>
</html>