Compare commits
60 Commits
Author | SHA1 | Date | |
---|---|---|---|
e8ced4711b | |||
|
0a40686974 | ||
ee09a6e2cd | |||
|
158e1425ec | ||
77f7ac20e0 | |||
|
7a411861af | ||
9967f979a3 | |||
|
5ff4ff0da8 | ||
284d7c2c9e | |||
14e5c7011f | |||
|
f8bcad4144 | ||
|
d02da37989 | ||
dfa21ad708 | |||
|
c47917dc6a | ||
c7540612ef | |||
d76466ce6d | |||
|
e742ebb0f0 | ||
|
b6c35644ea | ||
fecd3b4acd | |||
|
29444aaae7 | ||
afd0e9f18a | |||
|
fe5503450d | ||
abc1cdae82 | |||
|
245a3ba388 | ||
214acf21e4 | |||
2f8ea7c0a8 | |||
|
c6ea4d595f | ||
1c987f52ae | |||
|
5500f4cb14 | ||
1b0e89dcb2 | |||
e9b3cf18d6 | |||
|
6317bc33a4 | ||
24a95707f4 | |||
|
3ad44319e6 | ||
ee0d49df63 | |||
b96d195a77 | |||
6102bd0952 | |||
|
87b486b869 | ||
a7c674dc6d | |||
0fe00a2654 | |||
4a30c02521 | |||
7da83b2595 | |||
e481e23894 | |||
|
c23aebc94b | ||
489be1be9e | |||
|
315af9f984 | ||
40df436d61 | |||
43378574da | |||
a265237d53 | |||
|
a4d7253992 | ||
b4eb1cb84e | |||
26ab50464c | |||
56638ee710 | |||
dce3b5f0a4 | |||
6cddd5d4cc | |||
cb8cf250a5 | |||
aed2f2db38 | |||
257039be80 | |||
0575f11864 | |||
1cc6682ba9 |
7
.dockerignore
Normal file
7
.dockerignore
Normal file
@ -0,0 +1,7 @@
|
||||
.idea
|
||||
*.iml
|
||||
/vendor/
|
||||
/build/
|
||||
node_modules/
|
||||
/.php-cs-fixer.cache
|
||||
js/*hot-update.*
|
26
.drone.yml
26
.drone.yml
@ -1,26 +0,0 @@
|
||||
kind: pipeline
|
||||
name: default
|
||||
type: docker
|
||||
|
||||
steps:
|
||||
- name: php7.4
|
||||
image: php:7.4-cli
|
||||
commands:
|
||||
- apt-get update
|
||||
- apt-get install -y unzip
|
||||
- curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar
|
||||
- chmod +x /usr/local/bin/composer
|
||||
- composer install
|
||||
- composer run lint
|
||||
- composer run cs:check
|
||||
- composer run psalm:check
|
||||
|
||||
- name: nextcloud
|
||||
image: nextcloud:27.0.0
|
||||
commands:
|
||||
- curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar
|
||||
- chmod +x /usr/local/bin/composer
|
||||
- composer install
|
||||
- composer run lint
|
||||
- composer run cs:check
|
||||
- composer run psalm:check
|
31
.gitea/workflows/epubreader.yml
Normal file
31
.gitea/workflows/epubreader.yml
Normal file
@ -0,0 +1,31 @@
|
||||
name: epubreader
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
nextcloud-22:
|
||||
runs-on: ubuntu-latest
|
||||
container: nextcloud:28
|
||||
steps:
|
||||
- run: apt-get update
|
||||
- run: apt-get install -y git nodejs
|
||||
- uses: actions/checkout@v4
|
||||
- run: curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar
|
||||
- run: chmod +x /usr/local/bin/composer
|
||||
- run: composer install
|
||||
- run: composer run lint
|
||||
- run: composer run cs:check
|
||||
- run: composer run psalm:check
|
||||
|
||||
nextcloud-27:
|
||||
runs-on: ubuntu-latest
|
||||
container: nextcloud:28
|
||||
steps:
|
||||
- run: apt-get update
|
||||
- run: apt-get install -y git nodejs
|
||||
- uses: actions/checkout@v4
|
||||
- run: curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar
|
||||
- run: chmod +x /usr/local/bin/composer
|
||||
- run: composer install
|
||||
- run: composer run lint
|
||||
- run: composer run cs:check
|
||||
- run: composer run psalm:check
|
@ -6,7 +6,21 @@ require_once './vendor/autoload.php';
|
||||
|
||||
use Nextcloud\CodingStandard\Config;
|
||||
|
||||
$config = new Config();
|
||||
class MyConfig extends Config
|
||||
{
|
||||
public function getRules(): array
|
||||
{
|
||||
$rules = parent::getRules();
|
||||
$rules['@PhpCsFixer'] = true;
|
||||
$rules['curly_braces_position']['classes_opening_brace'] = 'next_line_unless_newline_at_signature_end';
|
||||
$rules['phpdoc_separation'] = false;
|
||||
$rules['phpdoc_to_comment'] = false;
|
||||
$rules['single_line_comment_style'] = false;
|
||||
return $rules;
|
||||
}
|
||||
}
|
||||
|
||||
$config = new MyConfig();
|
||||
$config
|
||||
->getFinder()
|
||||
->ignoreVCSIgnored(true)
|
||||
|
21
Dockerfile
Normal file
21
Dockerfile
Normal file
@ -0,0 +1,21 @@
|
||||
FROM nextcloud:28
|
||||
|
||||
ENV NEXTCLOUD_UPDATE 1
|
||||
ENV NEXTCLOUD_ADMIN_USER epubreader
|
||||
ENV NEXTCLOUD_ADMIN_PASSWORD epubreader
|
||||
ENV NEXTCLOUD_INIT_HTACCESS 1
|
||||
ENV SQLITE_DATABASE epubreader
|
||||
|
||||
RUN curl -sSLo /usr/local/bin/composer https://getcomposer.org/download/latest-stable/composer.phar && \
|
||||
chmod +x /usr/local/bin/composer && \
|
||||
rm -f /usr/local/etc/php/conf.d/opcache-recommended.ini && \
|
||||
/entrypoint.sh true
|
||||
|
||||
USER www-data
|
||||
|
||||
COPY --chown=www-data:www-data . apps/epubreader
|
||||
RUN cd apps/epubreader && composer install && cd - && \
|
||||
php occ app:enable epubreader && \
|
||||
php occ config:system:set debug --value=true
|
||||
|
||||
USER root
|
@ -29,7 +29,7 @@ See [README] for more exhaustive information on features and potential misfeatur
|
||||
[README]: https://github.com/e-alfred/epubreader/blob/master/epubreader/README.md
|
||||
]]>
|
||||
</description>
|
||||
<version>1.4.8</version>
|
||||
<version>1.5.0</version>
|
||||
<licence>agpl</licence>
|
||||
<author>Frank de Lange</author>
|
||||
<author>e-alfred</author>
|
||||
@ -46,7 +46,7 @@ See [README] for more exhaustive information on features and potential misfeatur
|
||||
<screenshot>https://github.com/e-alfred/epubreader/blob/master/screenshots/photo_2017-03-15_17-22-00.jpg?raw=true</screenshot>
|
||||
<screenshot>https://github.com/e-alfred/epubreader/blob/master/screenshots/photo_2017-03-15_17-22-02.jpg?raw=true</screenshot>
|
||||
<dependencies>
|
||||
<nextcloud min-version="21" max-version="27"/>
|
||||
<nextcloud min-version="22" max-version="27"/>
|
||||
</dependencies>
|
||||
<settings>
|
||||
<personal>OCA\Epubreader\Settings\Personal</personal>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* ownCloud - Epubreader App
|
||||
* ownCloud - Epubreader App.
|
||||
*
|
||||
* @author Frank de Lange
|
||||
* @copyright 2015 Frank de Lange
|
||||
|
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "nextcloud/epubreader",
|
||||
"description": "EPUB/CBZ/PDF ebook reader",
|
||||
"version": "1.4.8",
|
||||
"version": "1.4.9",
|
||||
"type": "project",
|
||||
"license": "AGPL-3.0-or-later",
|
||||
"require-dev": {
|
||||
"nextcloud/ocp": "^27.0.0",
|
||||
"psalm/phar": "^5.12.0",
|
||||
"nextcloud/ocp": "^28.0.0",
|
||||
"psalm/phar": "^5.14.1",
|
||||
"nextcloud/coding-standard": "^1.1.1"
|
||||
},
|
||||
"scripts": {
|
||||
@ -18,7 +18,7 @@
|
||||
},
|
||||
"config": {
|
||||
"platform": {
|
||||
"php": "7.4"
|
||||
"php": "8.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
46
composer.lock
generated
46
composer.lock
generated
@ -4,7 +4,7 @@
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "5c7be477b217d6074abc6c2f8d2c2256",
|
||||
"content-hash": "679331c6a73b23ca99c427cc59b72485",
|
||||
"packages": [],
|
||||
"packages-dev": [
|
||||
{
|
||||
@ -50,20 +50,20 @@
|
||||
},
|
||||
{
|
||||
"name": "nextcloud/ocp",
|
||||
"version": "v27.0.0",
|
||||
"version": "v28.0.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/nextcloud-deps/ocp.git",
|
||||
"reference": "c374aa2d4c3491812c19a53ce14063127daea08e"
|
||||
"reference": "646241abbb388138130331edfd6774bda62ad1b0"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/c374aa2d4c3491812c19a53ce14063127daea08e",
|
||||
"reference": "c374aa2d4c3491812c19a53ce14063127daea08e",
|
||||
"url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/646241abbb388138130331edfd6774bda62ad1b0",
|
||||
"reference": "646241abbb388138130331edfd6774bda62ad1b0",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.4 || ~8.0 || ~8.1",
|
||||
"php": "~8.0 || ~8.1 || ~8.2 || ~8.3",
|
||||
"psr/clock": "^1.0",
|
||||
"psr/container": "^2.0.2",
|
||||
"psr/event-dispatcher": "^1.0",
|
||||
@ -72,7 +72,7 @@
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-stable27": "27.0.0-dev"
|
||||
"dev-stable28": "28.0.0-dev"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
@ -88,22 +88,22 @@
|
||||
"description": "Composer package containing Nextcloud's public API (classes, interfaces)",
|
||||
"support": {
|
||||
"issues": "https://github.com/nextcloud-deps/ocp/issues",
|
||||
"source": "https://github.com/nextcloud-deps/ocp/tree/v27.0.0"
|
||||
"source": "https://github.com/nextcloud-deps/ocp/tree/v28.0.1"
|
||||
},
|
||||
"time": "2023-06-16T07:25:09+00:00"
|
||||
"time": "2023-12-20T00:27:31+00:00"
|
||||
},
|
||||
{
|
||||
"name": "php-cs-fixer/shim",
|
||||
"version": "v3.17.0",
|
||||
"version": "v3.22.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/PHP-CS-Fixer/shim.git",
|
||||
"reference": "f51b4aed90565c447136f1d015798f6f7c82490f"
|
||||
"reference": "f6692934a6d1fe40fd8bc3339487490baa4a6700"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/PHP-CS-Fixer/shim/zipball/f51b4aed90565c447136f1d015798f6f7c82490f",
|
||||
"reference": "f51b4aed90565c447136f1d015798f6f7c82490f",
|
||||
"url": "https://api.github.com/repos/PHP-CS-Fixer/shim/zipball/f6692934a6d1fe40fd8bc3339487490baa4a6700",
|
||||
"reference": "f6692934a6d1fe40fd8bc3339487490baa4a6700",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -140,22 +140,22 @@
|
||||
"description": "A tool to automatically fix PHP code style",
|
||||
"support": {
|
||||
"issues": "https://github.com/PHP-CS-Fixer/shim/issues",
|
||||
"source": "https://github.com/PHP-CS-Fixer/shim/tree/v3.17.0"
|
||||
"source": "https://github.com/PHP-CS-Fixer/shim/tree/v3.22.0"
|
||||
},
|
||||
"time": "2023-05-22T20:00:38+00:00"
|
||||
"time": "2023-07-16T23:08:49+00:00"
|
||||
},
|
||||
{
|
||||
"name": "psalm/phar",
|
||||
"version": "5.12.0",
|
||||
"version": "5.19.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/psalm/phar.git",
|
||||
"reference": "e7f9306ec83c706b4dba451f6adfb865ce4688e4"
|
||||
"reference": "c062e477cae7068a4cbcf3dba2a176687c5565a1"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/psalm/phar/zipball/e7f9306ec83c706b4dba451f6adfb865ce4688e4",
|
||||
"reference": "e7f9306ec83c706b4dba451f6adfb865ce4688e4",
|
||||
"url": "https://api.github.com/repos/psalm/phar/zipball/c062e477cae7068a4cbcf3dba2a176687c5565a1",
|
||||
"reference": "c062e477cae7068a4cbcf3dba2a176687c5565a1",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -175,9 +175,9 @@
|
||||
"description": "Composer-based Psalm Phar",
|
||||
"support": {
|
||||
"issues": "https://github.com/psalm/phar/issues",
|
||||
"source": "https://github.com/psalm/phar/tree/5.12.0"
|
||||
"source": "https://github.com/psalm/phar/tree/5.19.1"
|
||||
},
|
||||
"time": "2023-05-22T21:30:41+00:00"
|
||||
"time": "2024-01-17T11:52:12+00:00"
|
||||
},
|
||||
{
|
||||
"name": "psr/clock",
|
||||
@ -389,7 +389,7 @@
|
||||
"platform": [],
|
||||
"platform-dev": [],
|
||||
"platform-overrides": {
|
||||
"php": "7.4"
|
||||
"php": "8.0"
|
||||
},
|
||||
"plugin-api-version": "2.3.0"
|
||||
"plugin-api-version": "2.6.0"
|
||||
}
|
||||
|
42
js/plugin.js
42
js/plugin.js
@ -144,15 +144,37 @@ OC.Plugins.register('OCA.Files.FileList', OCA.Epubreader.Plugin);
|
||||
|
||||
// FIXME: Hack for single public file view since it is not attached to the fileslist
|
||||
window.addEventListener('DOMContentLoaded', function () {
|
||||
if ($('#isPublic').val()
|
||||
&& ($('#mimetype').val() === 'application/epub+zip'
|
||||
|| $('#mimetype').val() === 'application/pdf'
|
||||
|| $('#mimetype').val() === 'application/x-cbr')
|
||||
) {
|
||||
var sharingToken = $('#sharingToken').val();
|
||||
var downloadUrl = OC.generateUrl('/s/{token}/download', {token: sharingToken});
|
||||
var viewer = OCA.Epubreader.Plugin;
|
||||
var mime = $('#mimetype').val();
|
||||
viewer.show(downloadUrl, mime, false);
|
||||
var supported_mimetypes = ['application/epub+zip', 'application/pdf', 'application/x-cbr'];
|
||||
if (!$('#isPublic').val() || !supported_mimetypes.includes($('#mimetype').val())
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
var sharingToken = $('#sharingToken').val();
|
||||
var downloadUrl = OC.generateUrl('/s/{token}/download', {token: sharingToken});
|
||||
|
||||
var content = $('#files-public-content');
|
||||
var footerElmt = document.querySelector('body > footer') || document.querySelector('#app-content > footer')
|
||||
var mainContent = document.querySelector('#content')
|
||||
|
||||
var mime = $('#mimetype').val();
|
||||
var viewerUrl = OC.generateUrl('/apps/epubreader/?file={file}&type={type}', {file: downloadUrl, type: mime});
|
||||
|
||||
// Create viewer frame
|
||||
const viewerNode = document.createElement('iframe')
|
||||
viewerNode.style.height = '100%'
|
||||
viewerNode.style.width = '100%'
|
||||
viewerNode.style.position = 'absolute'
|
||||
|
||||
// Inject viewer
|
||||
content.empty()
|
||||
content.append(viewerNode)
|
||||
viewerNode.src = viewerUrl
|
||||
footerElmt.style.display = 'none'
|
||||
mainContent.style.minHeight = 'calc(100% - var(--header-height))' // Make the viewer take the whole height as the footer is now hidden.
|
||||
// overwrite style in order to fix the viewer on public pages
|
||||
mainContent.style.marginLeft = '0'
|
||||
mainContent.style.marginRight = '0'
|
||||
mainContent.style.width = '100%'
|
||||
mainContent.style.borderRadius = 'unset'
|
||||
});
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* ownCloud - Epubreader App
|
||||
* ownCloud - Epubreader App.
|
||||
*
|
||||
* @author Frank de Lange
|
||||
* @copyright 2015 - 2017 Frank de Lange
|
||||
@ -18,17 +18,20 @@ use OCP\Files\IRootFolder;
|
||||
use OCP\IDBConnection;
|
||||
use OCP\Util;
|
||||
|
||||
class Application extends App {
|
||||
|
||||
class Application extends App
|
||||
{
|
||||
public const APP_ID = 'epubreader';
|
||||
|
||||
public function __construct() {
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct(self::APP_ID);
|
||||
|
||||
/** @psalm-suppress DeprecatedInterface */
|
||||
$container = $this->getContainer();
|
||||
|
||||
/** @var IRootFolder $rootFolder */
|
||||
$rootFolder = $container->get(IRootFolder::class);
|
||||
|
||||
/** @var IDBConnection $dbConnection */
|
||||
$dbConnection = $container->get(IDBConnection::class);
|
||||
$hooks = new Hooks($rootFolder, $dbConnection);
|
||||
|
@ -15,15 +15,10 @@ use OCP\AppFramework\Controller;
|
||||
use OCP\AppFramework\Http\JSONResponse;
|
||||
use OCP\IRequest;
|
||||
|
||||
class BookmarkController extends Controller {
|
||||
|
||||
class BookmarkController extends Controller
|
||||
{
|
||||
private BookmarkService $bookmarkService;
|
||||
|
||||
/**
|
||||
* @param string $AppName
|
||||
* @param IRequest $request
|
||||
* @param BookmarkService $bookmarkService
|
||||
*/
|
||||
public function __construct(
|
||||
string $AppName,
|
||||
IRequest $request,
|
||||
@ -38,12 +33,9 @@ class BookmarkController extends Controller {
|
||||
*
|
||||
* @NoAdminRequired
|
||||
* @NoCSRFRequired
|
||||
*
|
||||
* @param int $fileId
|
||||
* @param ?string $name
|
||||
* @param ?string $type
|
||||
*/
|
||||
public function get(int $fileId, ?string $name = null, ?string $type = null): JSONResponse {
|
||||
public function get(int $fileId, ?string $name = null, ?string $type = null): JSONResponse
|
||||
{
|
||||
return new JSONResponse($this->bookmarkService->get($fileId, $name, $type));
|
||||
}
|
||||
|
||||
@ -52,14 +44,9 @@ class BookmarkController extends Controller {
|
||||
*
|
||||
* @NoAdminRequired
|
||||
* @NoCSRFRequired
|
||||
*
|
||||
* @param int $fileId
|
||||
* @param string $name
|
||||
* @param string $value
|
||||
* @param ?string $type
|
||||
* @param ?string $content
|
||||
*/
|
||||
public function set(int $fileId, string $name, string $value, ?string $type = null, ?string $content = null): JSONResponse {
|
||||
public function set(int $fileId, string $name, string $value, ?string $type = null, ?string $content = null): JSONResponse
|
||||
{
|
||||
return new JSONResponse($this->bookmarkService->set($fileId, $name, $value, $type, $content));
|
||||
}
|
||||
|
||||
@ -68,10 +55,9 @@ class BookmarkController extends Controller {
|
||||
*
|
||||
* @NoAdminRequired
|
||||
* @NoCSRFRequired
|
||||
*
|
||||
* @param int $fileId
|
||||
*/
|
||||
public function getCursor(int $fileId): JSONResponse {
|
||||
public function getCursor(int $fileId): JSONResponse
|
||||
{
|
||||
return new JSONResponse($this->bookmarkService->getCursor($fileId));
|
||||
}
|
||||
|
||||
@ -80,11 +66,9 @@ class BookmarkController extends Controller {
|
||||
*
|
||||
* @NoAdminRequired
|
||||
* @NoCSRFRequired
|
||||
*
|
||||
* @param int $fileId
|
||||
* @param string $value
|
||||
*/
|
||||
public function setCursor(int $fileId, string $value): JSONResponse {
|
||||
public function setCursor(int $fileId, string $value): JSONResponse
|
||||
{
|
||||
return new JSONResponse($this->bookmarkService->setCursor($fileId, $value));
|
||||
}
|
||||
|
||||
@ -93,11 +77,9 @@ class BookmarkController extends Controller {
|
||||
*
|
||||
* @NoAdminRequired
|
||||
* @NoCSRFRequired
|
||||
*
|
||||
* @param int $fileId
|
||||
* @param string name
|
||||
*/
|
||||
public function delete(int $fileId, string $name): void {
|
||||
public function delete(int $fileId, string $name): void
|
||||
{
|
||||
$this->bookmarkService->delete($fileId, $name);
|
||||
}
|
||||
|
||||
@ -106,10 +88,9 @@ class BookmarkController extends Controller {
|
||||
*
|
||||
* @NoAdminRequired
|
||||
* @NoCSRFRequired
|
||||
*
|
||||
* @param int $fileId
|
||||
*/
|
||||
public function deleteCursor(int $fileId): void {
|
||||
public function deleteCursor(int $fileId): void
|
||||
{
|
||||
$this->bookmarkService->deleteCursor($fileId);
|
||||
}
|
||||
}
|
||||
|
@ -17,15 +17,14 @@ use OCP\AppFramework\Http\ContentSecurityPolicy;
|
||||
use OCP\AppFramework\Http\TemplateResponse;
|
||||
use OCP\Files\FileInfo;
|
||||
use OCP\Files\Folder;
|
||||
use OCP\Files\InvalidPathException;
|
||||
use OCP\Files\IRootFolder;
|
||||
use OCP\Files\NotFoundException;
|
||||
use OCP\IRequest;
|
||||
use OCP\IURLGenerator;
|
||||
use OCP\Share\IManager;
|
||||
|
||||
class PageController extends Controller {
|
||||
|
||||
class PageController extends Controller
|
||||
{
|
||||
private IURLGenerator $urlGenerator;
|
||||
private IRootFolder $rootFolder;
|
||||
private IManager $shareManager;
|
||||
@ -33,16 +32,6 @@ class PageController extends Controller {
|
||||
private BookmarkService $bookmarkService;
|
||||
private PreferenceService $preferenceService;
|
||||
|
||||
/**
|
||||
* @param string $AppName
|
||||
* @param IRequest $request
|
||||
* @param IURLGenerator $urlGenerator
|
||||
* @param IRootFolder $rootFolder
|
||||
* @param IManager $shareManager
|
||||
* @param string $UserId
|
||||
* @param BookmarkService $bookmarkService
|
||||
* @param PreferenceService $preferenceService
|
||||
*/
|
||||
public function __construct(
|
||||
string $AppName,
|
||||
IRequest $request,
|
||||
@ -66,21 +55,17 @@ class PageController extends Controller {
|
||||
* @PublicPage
|
||||
* @NoCSRFRequired
|
||||
*/
|
||||
public function showReader(): TemplateResponse {
|
||||
public function showReader(): TemplateResponse
|
||||
{
|
||||
$templates = [
|
||||
'application/epub+zip' => 'epubreader',
|
||||
'application/x-cbr' => 'cbreader',
|
||||
'application/pdf' => 'pdfreader'
|
||||
'application/pdf' => 'pdfreader',
|
||||
];
|
||||
|
||||
/**
|
||||
* @var array{
|
||||
* fileId: int,
|
||||
* fileName: string,
|
||||
* fileType: string
|
||||
* } $fileInfo
|
||||
*/
|
||||
$fileInfo = $this->getFileInfo((string) $this->request->getParam('file'));
|
||||
|
||||
/** @var int $fileId */
|
||||
$fileId = $fileInfo['fileId'];
|
||||
$type = (string) $this->request->getParam('type');
|
||||
$scope = $template = $templates[$type];
|
||||
@ -96,7 +81,7 @@ class PageController extends Controller {
|
||||
'defaults' => $this->toJson($this->preferenceService->getDefault($scope)),
|
||||
'preferences' => $this->toJson($this->preferenceService->get($scope, $fileId)),
|
||||
'metadata' => $this->toJson([]),
|
||||
'annotations' => $this->toJson($this->bookmarkService->get($fileId))
|
||||
'annotations' => $this->toJson($this->bookmarkService->get($fileId)),
|
||||
];
|
||||
|
||||
$policy = new ContentSecurityPolicy();
|
||||
@ -123,19 +108,20 @@ class PageController extends Controller {
|
||||
*
|
||||
* @param string $path path-fragment from url
|
||||
*
|
||||
* @throws NotFoundException|InvalidPathException
|
||||
* @throws NotFoundException
|
||||
*/
|
||||
private function getFileInfo(string $path): array {
|
||||
private function getFileInfo(string $path): array
|
||||
{
|
||||
$count = 0;
|
||||
$shareToken = preg_replace("/(?:\/index\.php)?\/s\/([A-Za-z0-9]{15,32})\/download.*/", "$1", $path, 1, $count);
|
||||
$shareToken = preg_replace('/(?:\\/index\\.php)?\\/s\\/([A-Za-z0-9]{15,32})\\/download.*/', '$1', $path, 1, $count);
|
||||
|
||||
if ($count === 1) {
|
||||
if (1 === $count) {
|
||||
/* shared file or directory */
|
||||
$node = $this->shareManager->getShareByToken($shareToken)->getNode();
|
||||
$type = $node->getType();
|
||||
|
||||
/* shared directory, need file path to continue, */
|
||||
if ($type == FileInfo::TYPE_FOLDER && $node instanceof Folder) {
|
||||
if (FileInfo::TYPE_FOLDER == $type && $node instanceof Folder) {
|
||||
$query = [];
|
||||
parse_str(parse_url($path, PHP_URL_QUERY), $query);
|
||||
if (isset($query['path']) && is_string($query['path'])) {
|
||||
@ -151,26 +137,22 @@ class PageController extends Controller {
|
||||
} else {
|
||||
$filePath = $path;
|
||||
$fileId = $this->rootFolder->getUserFolder($this->userId)
|
||||
->get(preg_replace("/.*\/remote.php\/webdav(.*)/", "$1", rawurldecode((string) $this->request->getParam('file'))))
|
||||
->getId();
|
||||
->get(preg_replace('/.*\\/remote.php\\/webdav(.*)/', '$1', rawurldecode((string) $this->request->getParam('file'))))
|
||||
->getId()
|
||||
;
|
||||
}
|
||||
|
||||
$pathInfo = pathInfo($filePath);
|
||||
if (!is_array($pathInfo)) {
|
||||
throw new InvalidPathException("Can not get info for $filePath");
|
||||
}
|
||||
$pathInfo = pathinfo($filePath);
|
||||
|
||||
return [
|
||||
'fileName' => $pathInfo['filename'],
|
||||
'fileType' => strtolower($pathInfo['extension'] ?? ''),
|
||||
'fileId' => $fileId
|
||||
'fileId' => $fileId,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $value
|
||||
*/
|
||||
private function toJson($value): string {
|
||||
private function toJson(array $value): string
|
||||
{
|
||||
return htmlspecialchars(json_encode($value), ENT_QUOTES, 'UTF-8');
|
||||
}
|
||||
}
|
||||
|
@ -15,15 +15,10 @@ use OCP\AppFramework\Controller;
|
||||
use OCP\AppFramework\Http\JSONResponse;
|
||||
use OCP\IRequest;
|
||||
|
||||
class PreferenceController extends Controller {
|
||||
|
||||
class PreferenceController extends Controller
|
||||
{
|
||||
private PreferenceService $preferenceService;
|
||||
|
||||
/**
|
||||
* @param string $AppName
|
||||
* @param IRequest $request
|
||||
* @param PreferenceService $preferenceService
|
||||
*/
|
||||
public function __construct(
|
||||
string $AppName,
|
||||
IRequest $request,
|
||||
@ -39,11 +34,10 @@ class PreferenceController extends Controller {
|
||||
* @NoAdminRequired
|
||||
* @NoCSRFRequired
|
||||
*
|
||||
* @param string $scope
|
||||
* @param int $fileId
|
||||
* @param ?string $name if null, return all preferences for $scope + $fileId
|
||||
*/
|
||||
public function get(string $scope, int $fileId, ?string $name = null): JSONResponse {
|
||||
public function get(string $scope, int $fileId, ?string $name = null): JSONResponse
|
||||
{
|
||||
return new JSONResponse($this->preferenceService->get($scope, $fileId, $name));
|
||||
}
|
||||
|
||||
@ -52,27 +46,22 @@ class PreferenceController extends Controller {
|
||||
*
|
||||
* @NoAdminRequired
|
||||
* @NoCSRFRequired
|
||||
*
|
||||
* @param string $scope
|
||||
* @param int $fileId
|
||||
* @param string $name
|
||||
* @param string $value
|
||||
*/
|
||||
public function set(string $scope, int $fileId, string $name, string $value): JSONResponse {
|
||||
public function set(string $scope, int $fileId, string $name, string $value): JSONResponse
|
||||
{
|
||||
return new JSONResponse($this->preferenceService->set($scope, $fileId, $name, $value));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @brief return default preference
|
||||
*
|
||||
* @NoAdminRequired
|
||||
* @NoCSRFRequired
|
||||
*
|
||||
* @param string $scope
|
||||
* @param string $name if null, return all default preferences for scope
|
||||
*/
|
||||
public function getDefault(string $scope, string $name): JSONResponse {
|
||||
public function getDefault(string $scope, string $name): JSONResponse
|
||||
{
|
||||
return new JSONResponse($this->preferenceService->getDefault($scope, $name));
|
||||
}
|
||||
|
||||
@ -81,33 +70,25 @@ class PreferenceController extends Controller {
|
||||
*
|
||||
* @NoAdminRequired
|
||||
* @NoCSRFRequired
|
||||
*
|
||||
* @param string $scope
|
||||
* @param string $name
|
||||
* @param string $value
|
||||
*/
|
||||
public function setDefault(string $scope, string $name, string $value): JSONResponse {
|
||||
public function setDefault(string $scope, string $name, string $value): JSONResponse
|
||||
{
|
||||
return new JSONResponse($this->preferenceService->setDefault($scope, $name, $value));
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief delete preference
|
||||
*
|
||||
* @param string $scope
|
||||
* @param int $fileId
|
||||
* @param string $name
|
||||
*/
|
||||
public function delete(string $scope, int $fileId, string $name): void {
|
||||
public function delete(string $scope, int $fileId, string $name): void
|
||||
{
|
||||
$this->preferenceService->delete($scope, $fileId, $name);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief delete default preference
|
||||
*
|
||||
* @param string $scope
|
||||
* @param string $name
|
||||
*/
|
||||
public function deleteDefault(string $scope, string $name): void {
|
||||
public function deleteDefault(string $scope, string $name): void
|
||||
{
|
||||
$this->preferenceService->deleteDefault($scope, $name);
|
||||
}
|
||||
}
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* ownCloud - Epubreader App
|
||||
* ownCloud - Epubreader App.
|
||||
*
|
||||
* @author Frank de Lange
|
||||
* @copyright 2014,2018 Frank de Lange
|
||||
@ -19,8 +19,8 @@ use OCP\IConfig;
|
||||
use OCP\IL10N;
|
||||
use OCP\IRequest;
|
||||
|
||||
class SettingsController extends Controller {
|
||||
|
||||
class SettingsController extends Controller
|
||||
{
|
||||
private string $userId;
|
||||
private IL10N $l10n;
|
||||
private IConfig $configManager;
|
||||
@ -42,19 +42,16 @@ class SettingsController extends Controller {
|
||||
* @brief set preference for file type association
|
||||
*
|
||||
* @NoAdminRequired
|
||||
*
|
||||
* @param string $EpubEnable
|
||||
* @param string $PdfEnable
|
||||
* @param string $CbxEnable
|
||||
*/
|
||||
public function setPreference(string $EpubEnable, string $PdfEnable, string $CbxEnable): JSONResponse {
|
||||
public function setPreference(string $EpubEnable, string $PdfEnable, string $CbxEnable): JSONResponse
|
||||
{
|
||||
$this->configManager->setUserValue($this->userId, Application::APP_ID, 'epub_enable', $EpubEnable);
|
||||
$this->configManager->setUserValue($this->userId, Application::APP_ID, 'pdf_enable', $PdfEnable);
|
||||
$this->configManager->setUserValue($this->userId, Application::APP_ID, 'cbx_enable', $CbxEnable);
|
||||
|
||||
$response = [
|
||||
'data' => ['message' => $this->l10n->t('Settings updated successfully.')],
|
||||
'status' => 'success'
|
||||
'status' => 'success',
|
||||
];
|
||||
|
||||
return new JSONResponse($response);
|
||||
|
@ -10,8 +10,8 @@
|
||||
|
||||
namespace OCA\Epubreader\Db;
|
||||
|
||||
class Bookmark extends ReaderEntity implements \JsonSerializable {
|
||||
|
||||
class Bookmark extends ReaderEntity implements \JsonSerializable
|
||||
{
|
||||
protected string $userId; // user
|
||||
protected int $fileId; // book (identified by fileId) for which this mark is valid
|
||||
protected string $type; // type, defaults to "bookmark"
|
||||
@ -19,7 +19,8 @@ class Bookmark extends ReaderEntity implements \JsonSerializable {
|
||||
protected string $value; // bookmark value (format-specific, eg. page number for PDF, CFI for epub, etc)
|
||||
protected string $content; // bookmark content (annotations etc), can be empty
|
||||
|
||||
public function jsonSerialize(): array {
|
||||
public function jsonSerialize(): array
|
||||
{
|
||||
return [
|
||||
'id' => $this->getId(),
|
||||
'userId' => $this->getUserId(),
|
||||
@ -28,11 +29,12 @@ class Bookmark extends ReaderEntity implements \JsonSerializable {
|
||||
'name' => $this->getName(),
|
||||
'value' => $this->conditional_json_decode($this->getValue()),
|
||||
'content' => $this->conditional_json_decode($this->getContent()),
|
||||
'lastModified' => $this->getLastModified()
|
||||
'lastModified' => $this->getLastModified(),
|
||||
];
|
||||
}
|
||||
|
||||
public function toService(): array {
|
||||
public function toService(): array
|
||||
{
|
||||
return [
|
||||
'name' => $this->getName(),
|
||||
'type' => $this->getType(),
|
||||
@ -42,56 +44,68 @@ class Bookmark extends ReaderEntity implements \JsonSerializable {
|
||||
];
|
||||
}
|
||||
|
||||
public function getUserId(): string {
|
||||
public function getUserId(): string
|
||||
{
|
||||
return $this->userId;
|
||||
}
|
||||
|
||||
public function setUserId(string $userId): void {
|
||||
public function setUserId(string $userId): void
|
||||
{
|
||||
$this->userId = $userId;
|
||||
$this->markFieldUpdated('userId');
|
||||
}
|
||||
|
||||
public function getFileId(): int {
|
||||
public function getFileId(): int
|
||||
{
|
||||
return $this->fileId;
|
||||
}
|
||||
|
||||
public function setFileId(int $fileId): void {
|
||||
public function setFileId(int $fileId): void
|
||||
{
|
||||
$this->fileId = $fileId;
|
||||
$this->markFieldUpdated('fileId');
|
||||
}
|
||||
|
||||
public function getType(): string {
|
||||
public function getType(): string
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
|
||||
public function setType(string $type): void {
|
||||
public function setType(string $type): void
|
||||
{
|
||||
$this->type = $type;
|
||||
$this->markFieldUpdated('type');
|
||||
}
|
||||
|
||||
public function getName(): string {
|
||||
public function getName(): string
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
|
||||
public function setName(string $name): void {
|
||||
public function setName(string $name): void
|
||||
{
|
||||
$this->name = $name;
|
||||
$this->markFieldUpdated('name');
|
||||
}
|
||||
|
||||
public function getValue(): string {
|
||||
public function getValue(): string
|
||||
{
|
||||
return $this->value;
|
||||
}
|
||||
|
||||
public function setValue(string $value): void {
|
||||
public function setValue(string $value): void
|
||||
{
|
||||
$this->value = $value;
|
||||
$this->markFieldUpdated('value');
|
||||
}
|
||||
|
||||
public function getContent(): string {
|
||||
public function getContent(): string
|
||||
{
|
||||
return $this->content;
|
||||
}
|
||||
|
||||
public function setContent(string $content): void {
|
||||
public function setContent(string $content): void
|
||||
{
|
||||
$this->content = $content;
|
||||
$this->markFieldUpdated('content');
|
||||
}
|
||||
|
@ -13,40 +13,35 @@ namespace OCA\Epubreader\Db;
|
||||
use OCA\Epubreader\Utility\Time;
|
||||
use OCP\IDBConnection;
|
||||
|
||||
class BookmarkMapper extends ReaderMapper {
|
||||
|
||||
class BookmarkMapper extends ReaderMapper
|
||||
{
|
||||
private string $userId;
|
||||
|
||||
/**
|
||||
* @param IDbConnection $db
|
||||
* @param string $UserId
|
||||
* @param Time $time
|
||||
*/
|
||||
public function __construct(IDBConnection $db, string $UserId, Time $time) {
|
||||
public function __construct(IDBConnection $db, string $UserId, Time $time)
|
||||
{
|
||||
parent::__construct($db, 'reader_bookmarks', Bookmark::class, $time);
|
||||
$this->userId = $UserId;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief get bookmarks for $fileId+$userId(+$name)
|
||||
* @param int $fileId
|
||||
* @param ?string $name
|
||||
* @param ?string $type
|
||||
*
|
||||
* @return ReaderEntity[]
|
||||
*/
|
||||
public function get(int $fileId, ?string $name = null, ?string $type = null): array {
|
||||
public function get(int $fileId, ?string $name = null, ?string $type = null): array
|
||||
{
|
||||
$query = $this->db->getQueryBuilder();
|
||||
$query->select('*')
|
||||
->from($this->getTableName())
|
||||
->where($query->expr()->eq('file_id', $query->createNamedParameter($fileId)))
|
||||
->andWhere($query->expr()->eq('user_id', $query->createNamedParameter($this->userId)));
|
||||
->andWhere($query->expr()->eq('user_id', $query->createNamedParameter($this->userId)))
|
||||
;
|
||||
|
||||
if ($type !== null) {
|
||||
if (null !== $type) {
|
||||
$query->andWhere($query->expr()->eq('type', $query->createNamedParameter($type)));
|
||||
}
|
||||
|
||||
if ($name !== null) {
|
||||
if (null !== $name) {
|
||||
$query->andWhere($query->expr()->eq('name', $query->createNamedParameter($name)));
|
||||
}
|
||||
|
||||
@ -56,18 +51,13 @@ class BookmarkMapper extends ReaderMapper {
|
||||
/**
|
||||
* @brief write bookmark to database
|
||||
*
|
||||
* @param int $fileId
|
||||
* @param string $name
|
||||
* @param string $value
|
||||
* @param ?string $type
|
||||
* @param ?string $content
|
||||
*
|
||||
* @return ReaderEntity the newly created or updated bookmark
|
||||
*/
|
||||
public function set(int $fileId, string $name, string $value, ?string $type = null, ?string $content = null): ReaderEntity {
|
||||
public function set(int $fileId, string $name, string $value, ?string $type = null, ?string $content = null): ReaderEntity
|
||||
{
|
||||
$result = $this->get($fileId, $name);
|
||||
|
||||
if(empty($result)) {
|
||||
if (empty($result)) {
|
||||
// anonymous bookmarks are named after their contents
|
||||
if (empty($name)) {
|
||||
$name = $value;
|
||||
@ -75,7 +65,7 @@ class BookmarkMapper extends ReaderMapper {
|
||||
|
||||
// default type is "bookmark"
|
||||
if (null === $type) {
|
||||
$type = "bookmark";
|
||||
$type = 'bookmark';
|
||||
}
|
||||
|
||||
$bookmark = new Bookmark();
|
||||
|
@ -10,15 +10,16 @@
|
||||
|
||||
namespace OCA\Epubreader\Db;
|
||||
|
||||
class Preference extends ReaderEntity implements \JsonSerializable {
|
||||
|
||||
class Preference extends ReaderEntity implements \JsonSerializable
|
||||
{
|
||||
protected string $userId; // user for whom this preference is valid
|
||||
protected string $scope; // scope (default or specific renderer)
|
||||
protected int $fileId; // file for which this preference is set
|
||||
protected string $name; // preference name
|
||||
protected string $value; // preference value
|
||||
|
||||
public function jsonSerialize(): array {
|
||||
public function jsonSerialize(): array
|
||||
{
|
||||
return [
|
||||
'id' => $this->getId(),
|
||||
'scope' => $this->getScope(),
|
||||
@ -29,54 +30,65 @@ class Preference extends ReaderEntity implements \JsonSerializable {
|
||||
];
|
||||
}
|
||||
|
||||
public function toService(): array {
|
||||
public function toService(): array
|
||||
{
|
||||
return [
|
||||
'name' => $this->getName(),
|
||||
'value' => $this->conditional_json_decode($this->getValue()),
|
||||
];
|
||||
}
|
||||
|
||||
public function getUserId(): string {
|
||||
public function getUserId(): string
|
||||
{
|
||||
return $this->userId;
|
||||
}
|
||||
|
||||
public function setUserId(string $userId): void {
|
||||
public function setUserId(string $userId): void
|
||||
{
|
||||
$this->userId = $userId;
|
||||
$this->markFieldUpdated('userId');
|
||||
}
|
||||
|
||||
public function getScope(): string {
|
||||
public function getScope(): string
|
||||
{
|
||||
return $this->scope;
|
||||
}
|
||||
|
||||
public function setScope(string $scope): void {
|
||||
public function setScope(string $scope): void
|
||||
{
|
||||
$this->scope = $scope;
|
||||
$this->markFieldUpdated('scope');
|
||||
}
|
||||
|
||||
public function getFileId(): int {
|
||||
public function getFileId(): int
|
||||
{
|
||||
return $this->fileId;
|
||||
}
|
||||
|
||||
public function setFileId(int $fileId): void {
|
||||
public function setFileId(int $fileId): void
|
||||
{
|
||||
$this->fileId = $fileId;
|
||||
$this->markFieldUpdated('fileId');
|
||||
}
|
||||
|
||||
public function getName(): string {
|
||||
public function getName(): string
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
|
||||
public function setName(string $name): void {
|
||||
public function setName(string $name): void
|
||||
{
|
||||
$this->name = $name;
|
||||
$this->markFieldUpdated('name');
|
||||
}
|
||||
|
||||
public function getValue(): string {
|
||||
public function getValue(): string
|
||||
{
|
||||
return $this->value;
|
||||
}
|
||||
|
||||
public function setValue(string $value): void {
|
||||
public function setValue(string $value): void
|
||||
{
|
||||
$this->value = $value;
|
||||
$this->markFieldUpdated('value');
|
||||
}
|
||||
|
@ -13,11 +13,12 @@ namespace OCA\Epubreader\Db;
|
||||
use OCA\Epubreader\Utility\Time;
|
||||
use OCP\IDBConnection;
|
||||
|
||||
class PreferenceMapper extends ReaderMapper {
|
||||
|
||||
class PreferenceMapper extends ReaderMapper
|
||||
{
|
||||
private string $userId;
|
||||
|
||||
public function __construct(IDBConnection $db, string $UserId, Time $time) {
|
||||
public function __construct(IDBConnection $db, string $UserId, Time $time)
|
||||
{
|
||||
parent::__construct($db, 'reader_prefs', Preference::class, $time);
|
||||
$this->userId = $UserId;
|
||||
}
|
||||
@ -25,19 +26,17 @@ class PreferenceMapper extends ReaderMapper {
|
||||
/**
|
||||
* @brief get preferences for $scope+$fileId+$userId(+$name)
|
||||
*
|
||||
* @param string $scope
|
||||
* @param int $fileId
|
||||
* @param ?string $name
|
||||
*
|
||||
* @return ReaderEntity[]
|
||||
*/
|
||||
public function get(string $scope, int $fileId, ?string $name = null): array {
|
||||
public function get(string $scope, int $fileId, ?string $name = null): array
|
||||
{
|
||||
$query = $this->db->getQueryBuilder();
|
||||
$query->select('*')
|
||||
->from($this->getTableName())
|
||||
->where($query->expr()->eq('scope', $query->createNamedParameter($scope)))
|
||||
->andWhere($query->expr()->eq('file_id', $query->createNamedParameter($fileId)))
|
||||
->andWhere($query->expr()->eq('user_id', $query->createNamedParameter($this->userId)));
|
||||
->andWhere($query->expr()->eq('user_id', $query->createNamedParameter($this->userId)))
|
||||
;
|
||||
|
||||
if (!empty($name)) {
|
||||
$query->andWhere($query->expr()->eq('name', $query->createNamedParameter($name)));
|
||||
@ -49,17 +48,13 @@ class PreferenceMapper extends ReaderMapper {
|
||||
/**
|
||||
* @brief write preference to database
|
||||
*
|
||||
* @param string $scope
|
||||
* @param int $fileId
|
||||
* @param string $name
|
||||
* @param string $value
|
||||
*
|
||||
* @return ReaderEntity the newly created or updated preference
|
||||
*/
|
||||
public function set(string $scope, int $fileId, string $name, string $value): ReaderEntity {
|
||||
public function set(string $scope, int $fileId, string $name, string $value): ReaderEntity
|
||||
{
|
||||
$result = $this->get($scope, $fileId, $name);
|
||||
|
||||
if(empty($result)) {
|
||||
if (empty($result)) {
|
||||
$preference = new Preference();
|
||||
$preference->setScope($scope);
|
||||
$preference->setFileId($fileId);
|
||||
|
@ -15,41 +15,44 @@ use OCP\AppFramework\Db\Entity;
|
||||
/**
|
||||
* @psalm-type SerializedEntity = array<string|int|array>
|
||||
*/
|
||||
abstract class ReaderEntity extends Entity {
|
||||
|
||||
abstract class ReaderEntity extends Entity
|
||||
{
|
||||
protected int $lastModified; // modification timestamp
|
||||
|
||||
/**
|
||||
* returns decoded json if input is json, otherwise returns input
|
||||
* returns decoded json if input is json, otherwise returns input.
|
||||
*
|
||||
* @return string|array
|
||||
* @return array|string
|
||||
*/
|
||||
public function conditional_json_decode(string $el) {
|
||||
public function conditional_json_decode(string $el): mixed
|
||||
{
|
||||
/** @var array $result */
|
||||
$result = json_decode($el);
|
||||
if (json_last_error() === JSON_ERROR_NONE) {
|
||||
if (JSON_ERROR_NONE === json_last_error()) {
|
||||
return $result;
|
||||
} else {
|
||||
return $el;
|
||||
}
|
||||
|
||||
return $el;
|
||||
}
|
||||
|
||||
public function getLastModified(): int {
|
||||
public function getLastModified(): int
|
||||
{
|
||||
return $this->lastModified;
|
||||
}
|
||||
|
||||
public function setLastModified(int $lastModified): void {
|
||||
public function setLastModified(int $lastModified): void
|
||||
{
|
||||
$this->lastModified = $lastModified;
|
||||
$this->markFieldUpdated('lastModified');
|
||||
}
|
||||
|
||||
/**
|
||||
* @psalm-return SerializedEntity
|
||||
* @return SerializedEntity
|
||||
*/
|
||||
abstract public function toService(): array;
|
||||
|
||||
/**
|
||||
* @psalm-return SerializedEntity
|
||||
* @return SerializedEntity
|
||||
*/
|
||||
abstract public function jsonSerialize(): array;
|
||||
}
|
||||
|
@ -18,28 +18,32 @@ use OCP\IDBConnection;
|
||||
/**
|
||||
* @template-extends QBMapper<ReaderEntity>
|
||||
*/
|
||||
abstract class ReaderMapper extends QBMapper {
|
||||
|
||||
abstract class ReaderMapper extends QBMapper
|
||||
{
|
||||
private Time $time;
|
||||
|
||||
/**
|
||||
* @param IDBConnection $db Instance of the Db abstraction layer
|
||||
* @param string $table the name of the table. set this to allow entity
|
||||
* @param IDBConnection $db Instance of the Db abstraction layer
|
||||
* @param string $table the name of the table. set this to allow entity
|
||||
* @param class-string<ReaderEntity> $entity the name of the entity that the sql should be mapped to queries without using sql
|
||||
* @param Time $time
|
||||
*/
|
||||
public function __construct(IDBConnection $db, string $table, string $entity, Time $time) {
|
||||
public function __construct(IDBConnection $db, string $table, string $entity, Time $time)
|
||||
{
|
||||
parent::__construct($db, $table, $entity);
|
||||
$this->time = $time;
|
||||
}
|
||||
|
||||
public function update(Entity $entity): Entity {
|
||||
public function update(Entity $entity): Entity
|
||||
{
|
||||
$entity->setLastModified($this->time->getMicroTime());
|
||||
|
||||
return parent::update($entity);
|
||||
}
|
||||
|
||||
public function insert(Entity $entity): Entity {
|
||||
public function insert(Entity $entity): Entity
|
||||
{
|
||||
$entity->setLastModified($this->time->getMicroTime());
|
||||
|
||||
return parent::insert($entity);
|
||||
}
|
||||
}
|
||||
|
@ -11,25 +11,27 @@
|
||||
namespace OCA\Epubreader;
|
||||
|
||||
use OCA\Epubreader\AppInfo\Application;
|
||||
use OCA\Epubreader\Utility\Server;
|
||||
use OCP\Files\IRootFolder;
|
||||
use OCP\Files\Node;
|
||||
use OCP\IConfig;
|
||||
use OCP\IDBConnection;
|
||||
use OCP\IUser;
|
||||
use OCP\IUserSession;
|
||||
use OCP\Server;
|
||||
|
||||
class Hooks {
|
||||
|
||||
class Hooks
|
||||
{
|
||||
private IRootFolder $rootFolder;
|
||||
private IDBConnection $dbConnection;
|
||||
|
||||
public function __construct(IRootFolder $rootFolder, IDBConnection $dbConnection) {
|
||||
public function __construct(IRootFolder $rootFolder, IDBConnection $dbConnection)
|
||||
{
|
||||
$this->rootFolder = $rootFolder;
|
||||
$this->dbConnection = $dbConnection;
|
||||
}
|
||||
|
||||
public function register(): void {
|
||||
public function register(): void
|
||||
{
|
||||
$this->rootFolder->listen('\OC\Files', 'preDelete', function (Node $node) {
|
||||
$this->deleteFile($node->getId());
|
||||
});
|
||||
@ -39,27 +41,30 @@ class Hooks {
|
||||
});
|
||||
}
|
||||
|
||||
public static function announce_settings(array $settings): void {
|
||||
public static function announce_settings(array $settings): void
|
||||
{
|
||||
// Nextcloud encodes this as JSON, Owncloud does not (yet) (#75)
|
||||
// TODO: remove this when Owncloud starts encoding oc_appconfig as JSON just like it already encodes most other properties
|
||||
$user = Server::get(IUserSession::class)->getUser();
|
||||
if ($user &&
|
||||
is_array($settings['array']) &&
|
||||
array_key_exists('oc_appconfig', $settings['array'])
|
||||
if (is_array($settings['array'])
|
||||
&& array_key_exists('oc_appconfig', $settings['array'])
|
||||
) {
|
||||
$isJson = self::isJson($settings['array']['oc_appconfig']);
|
||||
$user = Server::get(IUserSession::class)->getUser();
|
||||
$userId = $user ? $user->getUID() : null;
|
||||
|
||||
/** @var array $array */
|
||||
$array = ($isJson) ? json_decode((string) $settings['array']['oc_appconfig'], true) : $settings['array']['oc_appconfig'];
|
||||
$array['filesReader'] = [
|
||||
'enableEpub' => Server::get(IConfig::class)->getUserValue($user->getUID(), Application::APP_ID, 'epub_enable', true),
|
||||
'enablePdf' => Server::get(IConfig::class)->getUserValue($user->getUID(), Application::APP_ID, 'pdf_enable', true),
|
||||
'enableCbx' => Server::get(IConfig::class)->getUserValue($user->getUID(), Application::APP_ID, 'cbx_enable', true),
|
||||
'enableEpub' => Server::get(IConfig::class)->getUserValue($userId, Application::APP_ID, 'epub_enable', true),
|
||||
'enablePdf' => Server::get(IConfig::class)->getUserValue($userId, Application::APP_ID, 'pdf_enable', true),
|
||||
'enableCbx' => Server::get(IConfig::class)->getUserValue($userId, Application::APP_ID, 'cbx_enable', true),
|
||||
];
|
||||
$settings['array']['oc_appconfig'] = ($isJson) ? json_encode($array) : $array;
|
||||
}
|
||||
}
|
||||
|
||||
protected function deleteFile(int $fileId): void {
|
||||
protected function deleteFile(int $fileId): void
|
||||
{
|
||||
$queryBuilder = $this->dbConnection->getQueryBuilder();
|
||||
$queryBuilder->delete('reader_bookmarks')->where('file_id = file_id')->setParameter('file_id', $fileId);
|
||||
$queryBuilder->executeStatement();
|
||||
@ -69,7 +74,8 @@ class Hooks {
|
||||
$queryBuilder->executeStatement();
|
||||
}
|
||||
|
||||
protected function deleteUser(string $userId): void {
|
||||
protected function deleteUser(string $userId): void
|
||||
{
|
||||
$queryBuilder = $this->dbConnection->getQueryBuilder();
|
||||
$queryBuilder->delete('reader_bookmarks')->where('user_id = user_id')->setParameter('user_id', $userId);
|
||||
$queryBuilder->executeStatement();
|
||||
@ -79,10 +85,8 @@ class Hooks {
|
||||
$queryBuilder->executeStatement();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $string
|
||||
*/
|
||||
private static function isJson($string): bool {
|
||||
return is_string($string) && is_array(json_decode($string, true)) && json_last_error() == JSON_ERROR_NONE;
|
||||
private static function isJson(mixed $string): bool
|
||||
{
|
||||
return is_string($string) && is_array(json_decode($string, true)) && JSON_ERROR_NONE == json_last_error();
|
||||
}
|
||||
}
|
||||
|
@ -4,30 +4,27 @@ declare(strict_types=1);
|
||||
|
||||
namespace OCA\Epubreader\Migration;
|
||||
|
||||
use Closure;
|
||||
use OCP\DB\ISchemaWrapper;
|
||||
use OCP\Migration\IOutput;
|
||||
use OCP\Migration\SimpleMigrationStep;
|
||||
|
||||
/**
|
||||
* Auto-generated migration step
|
||||
* Auto-generated migration step.
|
||||
*/
|
||||
class Version010404Date20201030180941 extends SimpleMigrationStep {
|
||||
|
||||
class Version010404Date20201030180941 extends SimpleMigrationStep
|
||||
{
|
||||
/**
|
||||
* @param IOutput $output
|
||||
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
||||
* @param array $options
|
||||
* @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
||||
*/
|
||||
public function preSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void {
|
||||
public function preSchemaChange(IOutput $output, \Closure $schemaClosure, array $options): void
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @param IOutput $output
|
||||
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
||||
* @param array $options
|
||||
* @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
||||
*/
|
||||
public function changeSchema(IOutput $output, Closure $schemaClosure, array $options): ?ISchemaWrapper {
|
||||
public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options): ?ISchemaWrapper
|
||||
{
|
||||
/** @var ISchemaWrapper $schema */
|
||||
$schema = $schemaClosure();
|
||||
|
||||
@ -129,14 +126,14 @@ class Version010404Date20201030180941 extends SimpleMigrationStep {
|
||||
$table->addIndex(['user_id'], 'reader_prefs_user_id_index');
|
||||
$table->addIndex(['scope'], 'reader_prefs_scope_index');
|
||||
}
|
||||
|
||||
return $schema;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param IOutput $output
|
||||
* @param Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
||||
* @param array $options
|
||||
* @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
|
||||
*/
|
||||
public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void {
|
||||
public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options): void
|
||||
{
|
||||
}
|
||||
}
|
||||
|
@ -16,15 +16,16 @@ use OCA\Epubreader\Db\ReaderEntity;
|
||||
/**
|
||||
* @psalm-import-type SerializedEntity from ReaderEntity
|
||||
*/
|
||||
class BookmarkService extends Service {
|
||||
|
||||
class BookmarkService extends Service
|
||||
{
|
||||
// "bookmark" name to use for the cursor (current reading position)
|
||||
private const CURSOR = '__CURSOR__';
|
||||
private const BOOKMARK_TYPE = 'bookmark';
|
||||
|
||||
private BookmarkMapper $bookmarkMapper;
|
||||
|
||||
public function __construct(BookmarkMapper $bookmarkMapper) {
|
||||
public function __construct(BookmarkMapper $bookmarkMapper)
|
||||
{
|
||||
parent::__construct($bookmarkMapper);
|
||||
$this->bookmarkMapper = $bookmarkMapper;
|
||||
}
|
||||
@ -34,68 +35,58 @@ class BookmarkService extends Service {
|
||||
*
|
||||
* bookmark type is format-dependent, eg CFI for epub, page number for CBR/CBZ, etc
|
||||
*
|
||||
* @param int $fileId
|
||||
* @param ?string $name
|
||||
* @param ?string $type
|
||||
*
|
||||
* @psalm-return SerializedEntity[]
|
||||
* @return SerializedEntity[]
|
||||
*/
|
||||
public function get($fileId, ?string $name = null, ?string $type = null): array {
|
||||
public function get(int $fileId, ?string $name = null, ?string $type = null): array
|
||||
{
|
||||
$result = $this->bookmarkMapper->get($fileId, $name, $type);
|
||||
|
||||
return array_map(
|
||||
function (ReaderEntity $entity): array {
|
||||
return $entity->toService();
|
||||
}, $result);
|
||||
},
|
||||
$result
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief write bookmark
|
||||
*
|
||||
* position type is format-dependent, eg CFI for epub, page number for CBR/CBZ, etc
|
||||
*
|
||||
* @param int $fileId
|
||||
* @param string $name
|
||||
* @param string $value
|
||||
* @param ?string $type
|
||||
* @param ?string $content
|
||||
*/
|
||||
public function set(int $fileId, string $name, string $value, ?string $type = null, ?string $content = null): ReaderEntity {
|
||||
public function set(int $fileId, string $name, string $value, ?string $type = null, ?string $content = null): ReaderEntity
|
||||
{
|
||||
return $this->bookmarkMapper->set($fileId, $name, $value, $type, $content);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief get cursor (current position in book)
|
||||
*
|
||||
* @param int $fileId
|
||||
*
|
||||
* @psalm-return SerializedEntity
|
||||
* @return SerializedEntity
|
||||
*/
|
||||
public function getCursor(int $fileId): array {
|
||||
public function getCursor(int $fileId): array
|
||||
{
|
||||
$result = $this->get($fileId, self::CURSOR);
|
||||
if (count($result) === 1) {
|
||||
if (1 === count($result)) {
|
||||
return $result[0];
|
||||
}
|
||||
|
||||
return [];
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief set cursor (current position in book)
|
||||
*
|
||||
* @param int $fileId
|
||||
* @param string $value
|
||||
*/
|
||||
public function setCursor(int $fileId, string $value): ReaderEntity {
|
||||
public function setCursor(int $fileId, string $value): ReaderEntity
|
||||
{
|
||||
return $this->bookmarkMapper->set($fileId, self::CURSOR, $value, self::BOOKMARK_TYPE);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief delete bookmark
|
||||
*
|
||||
* @param int $fileId
|
||||
* @param ?string $name
|
||||
* @param ?string $type
|
||||
*/
|
||||
public function delete($fileId, ?string $name = null, ?string $type = null): void {
|
||||
public function delete(int $fileId, ?string $name = null, ?string $type = null): void
|
||||
{
|
||||
foreach ($this->bookmarkMapper->get($fileId, $name, $type) as $bookmark) {
|
||||
$this->bookmarkMapper->delete($bookmark);
|
||||
}
|
||||
@ -103,10 +94,9 @@ class BookmarkService extends Service {
|
||||
|
||||
/**
|
||||
* @brief delete cursor
|
||||
*
|
||||
* @param int $fileId
|
||||
*/
|
||||
public function deleteCursor(int $fileId): void {
|
||||
public function deleteCursor(int $fileId): void
|
||||
{
|
||||
$this->delete($fileId, self::CURSOR, self::BOOKMARK_TYPE);
|
||||
}
|
||||
}
|
||||
|
@ -16,18 +16,16 @@ use OCA\Epubreader\Db\ReaderEntity;
|
||||
/**
|
||||
* @psalm-import-type SerializedEntity from ReaderEntity
|
||||
*/
|
||||
class PreferenceService extends Service {
|
||||
|
||||
class PreferenceService extends Service
|
||||
{
|
||||
// (ab)use the fact that $fileId never goes below 1 by using the
|
||||
// value 0 to indicate a default preference
|
||||
private const DEFAULTS = 0;
|
||||
|
||||
private PreferenceMapper $preferenceMapper;
|
||||
|
||||
/**
|
||||
* @param PreferenceMapper $preferenceMapper
|
||||
*/
|
||||
public function __construct(PreferenceMapper $preferenceMapper) {
|
||||
public function __construct(PreferenceMapper $preferenceMapper)
|
||||
{
|
||||
parent::__construct($preferenceMapper);
|
||||
$this->preferenceMapper = $preferenceMapper;
|
||||
}
|
||||
@ -38,18 +36,18 @@ class PreferenceService extends Service {
|
||||
* scope identifies preference source, i.e. which renderer the preference applies to
|
||||
* preference type is format-dependent, eg CFI for epub, page number for CBR/CBZ, etc
|
||||
*
|
||||
* @param string $scope
|
||||
* @param int $fileId
|
||||
* @param ?string $name
|
||||
*
|
||||
* @psalm-return SerializedEntity
|
||||
* @return SerializedEntity
|
||||
*/
|
||||
public function get(string $scope, int $fileId, ?string $name = null): array {
|
||||
public function get(string $scope, int $fileId, ?string $name = null): array
|
||||
{
|
||||
$result = $this->preferenceMapper->get($scope, $fileId, $name);
|
||||
|
||||
return array_map(
|
||||
function (ReaderEntity $entity): array {
|
||||
return $entity->toService();
|
||||
}, $result);
|
||||
},
|
||||
$result
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
@ -57,59 +55,43 @@ class PreferenceService extends Service {
|
||||
*
|
||||
* scope identifies preference source, i.e. which renderer the preference applies to
|
||||
* position type is format-dependent, eg CFI for epub, page number for CBR/CBZ, etc
|
||||
*
|
||||
* @param string $scope
|
||||
* @param int $fileId
|
||||
* @param string $name
|
||||
* @param string $value
|
||||
*/
|
||||
public function set(string $scope, int $fileId, string $name, string $value): ReaderEntity {
|
||||
public function set(string $scope, int $fileId, string $name, string $value): ReaderEntity
|
||||
{
|
||||
return $this->preferenceMapper->set($scope, $fileId, $name, $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief get default preference
|
||||
*
|
||||
* @param string $scope
|
||||
* @param ?string $name
|
||||
*/
|
||||
public function getDefault(string $scope, ?string $name = null): array {
|
||||
public function getDefault(string $scope, ?string $name = null): array
|
||||
{
|
||||
return $this->get($scope, self::DEFAULTS, $name);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief set default preference
|
||||
*
|
||||
* @param string $scope
|
||||
* @param string $name
|
||||
* @param string $value
|
||||
*/
|
||||
public function setDefault($scope, $name, $value): ReaderEntity {
|
||||
public function setDefault(string $scope, string $name, string $value): ReaderEntity
|
||||
{
|
||||
return $this->preferenceMapper->set($scope, self::DEFAULTS, $name, $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief delete preference
|
||||
*
|
||||
* @param string $scope
|
||||
* @param int $fileId
|
||||
* @param ?string $name
|
||||
*
|
||||
*/
|
||||
public function delete(string $scope, int $fileId, ?string $name = null): void {
|
||||
foreach($this->preferenceMapper->get($scope, $fileId, $name) as $preference) {
|
||||
public function delete(string $scope, int $fileId, ?string $name = null): void
|
||||
{
|
||||
foreach ($this->preferenceMapper->get($scope, $fileId, $name) as $preference) {
|
||||
$this->preferenceMapper->delete($preference);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief delete default
|
||||
*
|
||||
* @param string $scope
|
||||
* @param ?string $name
|
||||
*
|
||||
*/
|
||||
public function deleteDefault(string $scope, ?string $name = null): void {
|
||||
public function deleteDefault(string $scope, ?string $name = null): void
|
||||
{
|
||||
$this->delete($scope, self::DEFAULTS, $name);
|
||||
}
|
||||
}
|
||||
|
@ -12,10 +12,12 @@ namespace OCA\Epubreader\Service;
|
||||
|
||||
use OCA\Epubreader\Db\ReaderMapper;
|
||||
|
||||
abstract class Service {
|
||||
abstract class Service
|
||||
{
|
||||
protected ReaderMapper $mapper;
|
||||
|
||||
public function __construct(ReaderMapper $mapper) {
|
||||
public function __construct(ReaderMapper $mapper)
|
||||
{
|
||||
$this->mapper = $mapper;
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* ownCloud - Epubreader App
|
||||
* ownCloud - Epubreader App.
|
||||
*
|
||||
* @author Frank de Lange
|
||||
* @copyright 2014,2018 Frank de Lange
|
||||
@ -16,12 +16,13 @@ use OCP\AppFramework\Http\TemplateResponse;
|
||||
use OCP\IConfig;
|
||||
use OCP\Settings\ISettings;
|
||||
|
||||
class Personal implements ISettings {
|
||||
|
||||
class Personal implements ISettings
|
||||
{
|
||||
private string $userId;
|
||||
private IConfig $configManager;
|
||||
|
||||
public function __construct(string $userId, IConfig $configManager) {
|
||||
public function __construct(string $userId, IConfig $configManager)
|
||||
{
|
||||
$this->userId = $userId;
|
||||
$this->configManager = $configManager;
|
||||
}
|
||||
@ -30,7 +31,8 @@ class Personal implements ISettings {
|
||||
* @return TemplateResponse returns the instance with all parameters set, ready to be rendered
|
||||
* @since 9.1
|
||||
*/
|
||||
public function getForm(): TemplateResponse {
|
||||
public function getForm(): TemplateResponse
|
||||
{
|
||||
$parameters = [
|
||||
'EpubEnable' => $this->configManager->getUserValue($this->userId, Application::APP_ID, 'epub_enable', 'true'),
|
||||
'PdfEnable' => $this->configManager->getUserValue($this->userId, Application::APP_ID, 'pdf_enable', 'true'),
|
||||
@ -41,11 +43,10 @@ class Personal implements ISettings {
|
||||
}
|
||||
|
||||
/**
|
||||
* Print config section (ownCloud 10)
|
||||
*
|
||||
* @return TemplateResponse
|
||||
* Print config section (ownCloud 10).
|
||||
*/
|
||||
public function getPanel(): TemplateResponse {
|
||||
public function getPanel(): TemplateResponse
|
||||
{
|
||||
return $this->getForm();
|
||||
}
|
||||
|
||||
@ -53,28 +54,29 @@ class Personal implements ISettings {
|
||||
* @return string the section ID, e.g. 'sharing'
|
||||
* @since 9.1
|
||||
*/
|
||||
public function getSection(): string {
|
||||
public function getSection(): string
|
||||
{
|
||||
return Application::APP_ID;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get section ID (ownCloud 10)
|
||||
*
|
||||
* @return string
|
||||
* Get section ID (ownCloud 10).
|
||||
*/
|
||||
public function getSectionID(): string {
|
||||
public function getSectionID(): string
|
||||
{
|
||||
return Application::APP_ID;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return int whether the form should be rather on the top or bottom of
|
||||
* the admin section. The forms are arranged in ascending order of the
|
||||
* priority values. It is required to return a value between 0 and 100.
|
||||
* the admin section. The forms are arranged in ascending order of the
|
||||
* priority values. It is required to return a value between 0 and 100.
|
||||
*
|
||||
* E.g.: 70
|
||||
* @since 9.1
|
||||
*/
|
||||
public function getPriority(): int {
|
||||
public function getPriority(): int
|
||||
{
|
||||
return 10;
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* ownCloud - Epubreader App
|
||||
* ownCloud - Epubreader App.
|
||||
*
|
||||
* @author Frank de Lange
|
||||
* @copyright 2014,2018 Frank de Lange
|
||||
@ -16,49 +16,46 @@ use OCP\IL10N;
|
||||
use OCP\IURLGenerator;
|
||||
use OCP\Settings\IIconSection;
|
||||
|
||||
class PersonalSection implements IIconSection {
|
||||
|
||||
class PersonalSection implements IIconSection
|
||||
{
|
||||
private IURLGenerator $urlGenerator;
|
||||
private IL10N $l;
|
||||
|
||||
public function __construct(IURLGenerator $urlGenerator, IL10N $l) {
|
||||
public function __construct(IURLGenerator $urlGenerator, IL10N $l)
|
||||
{
|
||||
$this->urlGenerator = $urlGenerator;
|
||||
$this->l = $l;
|
||||
}
|
||||
|
||||
/**
|
||||
* returns the relative path to an 16*16 icon describing the section.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getIcon(): string {
|
||||
public function getIcon(): string
|
||||
{
|
||||
return $this->urlGenerator->imagePath(Application::APP_ID, 'app.svg');
|
||||
}
|
||||
|
||||
/**
|
||||
* returns the ID of the section. It is supposed to be a lower case string,
|
||||
*
|
||||
* @return string
|
||||
* returns the ID of the section. It is supposed to be a lower case string,.
|
||||
*/
|
||||
public function getID(): string {
|
||||
public function getID(): string
|
||||
{
|
||||
return Application::APP_ID;
|
||||
}
|
||||
|
||||
/**
|
||||
* returns the translated name as it should be displayed
|
||||
*
|
||||
* @return string
|
||||
* returns the translated name as it should be displayed.
|
||||
*/
|
||||
public function getName(): string {
|
||||
public function getName(): string
|
||||
{
|
||||
return $this->l->t('EPUB/CBZ/PDF ebook reader');
|
||||
}
|
||||
|
||||
/**
|
||||
* returns priority for positioning
|
||||
*
|
||||
* @return int
|
||||
* returns priority for positioning.
|
||||
*/
|
||||
public function getPriority(): int {
|
||||
public function getPriority(): int
|
||||
{
|
||||
return 20;
|
||||
}
|
||||
}
|
||||
|
57
lib/Utility/Server.php
Normal file
57
lib/Utility/Server.php
Normal file
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* @copyright Carl Schwan <carl@carlschwan.eu>
|
||||
*
|
||||
* @license AGPL-3.0-or-later
|
||||
*
|
||||
* This code is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License, version 3,
|
||||
* as published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*/
|
||||
|
||||
namespace OCA\Epubreader\Utility;
|
||||
|
||||
use Psr\Container\ContainerExceptionInterface;
|
||||
use Psr\Container\NotFoundExceptionInterface;
|
||||
|
||||
/**
|
||||
* Class allowing to inject services into your application. You should
|
||||
* use whenever possible dependency injections instead.
|
||||
*
|
||||
* ```php
|
||||
* use OCP\Server;
|
||||
*
|
||||
* $tagManager = Server::get(ITagManager::class);
|
||||
* ```
|
||||
*
|
||||
* @since 25.0.0
|
||||
*/
|
||||
final class Server
|
||||
{
|
||||
/**
|
||||
* @template T
|
||||
* @param class-string<T>|string $serviceName
|
||||
* @template S as class-string<T>|string
|
||||
* @psalm-param S $serviceName
|
||||
* @return (S is class-string<T> ? T : mixed)
|
||||
* @throws ContainerExceptionInterface
|
||||
* @throws NotFoundExceptionInterface
|
||||
* @since 25.0.0
|
||||
*/
|
||||
public static function get(string $serviceName)
|
||||
{
|
||||
/** @psalm-suppress UndefinedClass */
|
||||
return \OC::$server->get($serviceName);
|
||||
}
|
||||
}
|
@ -10,17 +10,20 @@
|
||||
|
||||
namespace OCA\Epubreader\Utility;
|
||||
|
||||
class Time {
|
||||
|
||||
public function getTime(): int {
|
||||
class Time
|
||||
{
|
||||
public function getTime(): int
|
||||
{
|
||||
return time();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return int the current unix time in miliseconds
|
||||
*/
|
||||
public function getMicroTime(): int {
|
||||
public function getMicroTime(): int
|
||||
{
|
||||
list($millisecs, $secs) = explode(' ', microtime());
|
||||
return (int) ($secs . substr($millisecs, 2, 6));
|
||||
|
||||
return (int) ($secs.substr($millisecs, 2, 6));
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0"?>
|
||||
<psalm
|
||||
errorLevel="2"
|
||||
errorLevel="1"
|
||||
resolveFromConfigFile="true"
|
||||
findUnusedBaselineEntry="true"
|
||||
findUnusedCode="false"
|
||||
@ -12,8 +12,8 @@
|
||||
<directory name="lib" />
|
||||
<directory name="stubs" />
|
||||
<ignoreFiles>
|
||||
<directory name="vendor" />
|
||||
</ignoreFiles>
|
||||
<directory name="vendor" />
|
||||
</ignoreFiles>
|
||||
</projectFiles>
|
||||
<extraFiles>
|
||||
<directory name="vendor" />
|
||||
|
@ -1,4 +1,3 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"ignorePaths": [".drone.yml"]
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
|
||||
}
|
||||
|
@ -20,32 +20,20 @@
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License, version 3,
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
||||
*
|
||||
*/
|
||||
|
||||
namespace OC\Hooks;
|
||||
|
||||
/**
|
||||
* Class Emitter
|
||||
* Class Emitter.
|
||||
*
|
||||
* interface for all classes that are able to emit events
|
||||
*
|
||||
* @package OC\Hooks
|
||||
* @deprecated 18.0.0 use events and the \OCP\EventDispatcher\IEventDispatcher service
|
||||
*/
|
||||
interface Emitter {
|
||||
/**
|
||||
* @param string $scope
|
||||
* @param string $method
|
||||
* @param callable $callback
|
||||
* @return void
|
||||
*/
|
||||
public function listen($scope, $method, callable $callback);
|
||||
interface Emitter
|
||||
{
|
||||
public function listen(string $scope, string $method, callable $callback): void;
|
||||
|
||||
/**
|
||||
* @param string $scope optional
|
||||
* @param string $method optional
|
||||
* @param callable $callback optional
|
||||
* @return void
|
||||
*/
|
||||
public function removeListener($scope = null, $method = null, callable $callback = null);
|
||||
public function removeListener(string $scope = null, string $method = null, callable $callback = null): void;
|
||||
}
|
||||
|
@ -14,7 +14,7 @@ $metadata = $_['metadata'];
|
||||
$annotations = $_['annotations'];
|
||||
$title = htmlentities(basename($downloadLink));
|
||||
$revision = '0048';
|
||||
$version = \OC::$server->getAppManager()->getAppVersion('epubreader') . '.' . $revision;
|
||||
$version = \OC::$server->getAppManager()->getAppVersion('epubreader').'.'.$revision;
|
||||
|
||||
/* Mobile safari, the new IE6 */
|
||||
$idevice = (strstr($_SERVER['HTTP_USER_AGENT'], 'iPhone')
|
||||
@ -28,28 +28,28 @@ $nonce = class_exists('\OC\Security\CSP\ContentSecurityPolicyNonceManager')
|
||||
?>
|
||||
|
||||
<html dir="ltr">
|
||||
<head class="session" data-nonce='<?php p($nonce);?>' data-downloadlink='<?php print_unescaped($downloadLink);?>' data-fileid='<?php print_unescaped($fileId);?>' data-filetype='<?php print_unescaped($fileType);?>' data-filename='<?php print_unescaped($fileName);?>' data-version='<?php print_unescaped($version);?>' data-basepath='<?php p($urlGenerator->linkToRoute('epubreader.page.showReader'));?>' data-staticpath='<?php p($urlGenerator->linkTo('epubreader', ''));?>' data-scope='<?php print_unescaped($scope);?>' data-cursor='<?php print_unescaped($cursor);?>' data-defaults='<?php print_unescaped($defaults);?>' data-preferences='<?php print_unescaped($preferences);?>' data-metadata='<?php print_unescaped($metadata);?>' data-annotations='<?php print_unescaped($annotations);?>'>
|
||||
<head class="session" data-nonce='<?php p($nonce); ?>' data-downloadlink='<?php print_unescaped($downloadLink); ?>' data-fileid='<?php print_unescaped($fileId); ?>' data-filetype='<?php print_unescaped($fileType); ?>' data-filename='<?php print_unescaped($fileName); ?>' data-version='<?php print_unescaped($version); ?>' data-basepath='<?php p($urlGenerator->linkToRoute('epubreader.page.showReader')); ?>' data-staticpath='<?php p($urlGenerator->linkTo('epubreader', '')); ?>' data-scope='<?php print_unescaped($scope); ?>' data-cursor='<?php print_unescaped($cursor); ?>' data-defaults='<?php print_unescaped($defaults); ?>' data-preferences='<?php print_unescaped($preferences); ?>' data-metadata='<?php print_unescaped($metadata); ?>' data-annotations='<?php print_unescaped($annotations); ?>'>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<!-- <base href="<?php p($urlGenerator->linkTo('epubreader', ''));?>"> -->
|
||||
<!-- <base href="<?php p($urlGenerator->linkTo('epubreader', '')); ?>"> -->
|
||||
<title>
|
||||
<?php p($title);?>
|
||||
<?php p($title); ?>
|
||||
</title>
|
||||
<link rel="shortcut icon" href="<?php p($urlGenerator->linkTo('epubreader', 'img/book.png')) ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/icomoon/style.css')) ?>?v=<?php p($version) ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/cbrjs/css/cbr.css')) ?>?v=<?php p($version) ?>">
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/libs/jquery.min.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/sindresorhus/screenfull.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pixastic/pixastic_combined.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/bitjs/archive/archive.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/cbrjs/cbr.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<link rel="shortcut icon" href="<?php p($urlGenerator->linkTo('epubreader', 'img/book.png')); ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/icomoon/style.css')); ?>?v=<?php p($version); ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/cbrjs/css/cbr.css')); ?>?v=<?php p($version); ?>">
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/libs/jquery.min.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/sindresorhus/screenfull.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pixastic/pixastic_combined.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/bitjs/archive/archive.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/cbrjs/cbr.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
|
||||
<?php if ($idevice): ?>
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/cbrjs/css/idevice.css')) ?>?v=<?php p($version) ?>">
|
||||
<?php endif; ?>
|
||||
<?php if ($idevice) { ?>
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/cbrjs/css/idevice.css')); ?>?v=<?php p($version); ?>">
|
||||
<?php } ?>
|
||||
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'js/ready.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'js/ready.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
@ -109,7 +109,7 @@ $nonce = class_exists('\OC\Security\CSP\ContentSecurityPolicyNonceManager')
|
||||
|
||||
<!-- loading overlay -->
|
||||
<div id="cbr-loading-overlay" class="cbr-control control overlay" name="loadingOverlay" style="display:none">
|
||||
<img src="<?php p($urlGenerator->linkTo('epubreader', 'img/loading.gif')) ?>">
|
||||
<img src="<?php p($urlGenerator->linkTo('epubreader', 'img/loading.gif')); ?>">
|
||||
</div>
|
||||
<!-- /loading overlay -->
|
||||
|
||||
|
@ -14,7 +14,7 @@ $metadata = $_['metadata'];
|
||||
$annotations = $_['annotations'];
|
||||
$title = htmlentities(basename($downloadLink));
|
||||
$revision = '0072';
|
||||
$version = \OC::$server->getAppManager()->getAppVersion('epubreader') . '.' . $revision;
|
||||
$version = \OC::$server->getAppManager()->getAppVersion('epubreader').'.'.$revision;
|
||||
|
||||
/* Mobile safari, the new IE6 */
|
||||
$idevice = (strstr($_SERVER['HTTP_USER_AGENT'], 'iPhone')
|
||||
@ -28,38 +28,38 @@ $nonce = class_exists('\OC\Security\CSP\ContentSecurityPolicyNonceManager')
|
||||
?>
|
||||
|
||||
<html dir="ltr">
|
||||
<head class="session" data-nonce='<?php p($nonce);?>' data-downloadlink='<?php print_unescaped($downloadLink);?>' data-fileid='<?php print_unescaped($fileId);?>' data-filetype='<?php print_unescaped($fileType);?>' data-filename='<?php print_unescaped($fileName);?>' data-version='<?php print_unescaped($version);?>' data-basepath='<?php p($urlGenerator->linkToRoute('epubreader.page.showReader'));?>' data-staticpath='<?php p($urlGenerator->linkTo('epubreader', ''));?>' data-scope='<?php print_unescaped($scope);?>' data-cursor='<?php print_unescaped($cursor);?>' data-defaults='<?php print_unescaped($defaults);?>' data-preferences='<?php print_unescaped($preferences);?>' data-metadata='<?php print_unescaped($metadata);?>' data-annotations='<?php print_unescaped($annotations);?>'>
|
||||
<head class="session" data-nonce='<?php p($nonce); ?>' data-downloadlink='<?php print_unescaped($downloadLink); ?>' data-fileid='<?php print_unescaped($fileId); ?>' data-filetype='<?php print_unescaped($fileType); ?>' data-filename='<?php print_unescaped($fileName); ?>' data-version='<?php print_unescaped($version); ?>' data-basepath='<?php p($urlGenerator->linkToRoute('epubreader.page.showReader')); ?>' data-staticpath='<?php p($urlGenerator->linkTo('epubreader', '')); ?>' data-scope='<?php print_unescaped($scope); ?>' data-cursor='<?php print_unescaped($cursor); ?>' data-defaults='<?php print_unescaped($defaults); ?>' data-preferences='<?php print_unescaped($preferences); ?>' data-metadata='<?php print_unescaped($metadata); ?>' data-annotations='<?php print_unescaped($annotations); ?>'>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<!-- <base href="<?php p($urlGenerator->linkTo('epubreader', ''));?>"> -->
|
||||
<!-- <base href="<?php p($urlGenerator->linkTo('epubreader', '')); ?>"> -->
|
||||
<title>
|
||||
<?php p($title);?>
|
||||
<?php p($title); ?>
|
||||
</title>
|
||||
<link rel="shortcut icon" href="<?php p($urlGenerator->linkTo('epubreader', 'img/book.png')) ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/icomoon/style.css')) ?>?v=<?php p($version) ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/css/main.css')) ?>?v=<?php p($version) ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/css/sidebar.css')) ?>?v=<?php p($version) ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/css/popup.css')) ?>?v=<?php p($version) ?>">
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'js/lib/typedarray.min.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'js/lib/wgxpath.install.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/libs/jquery.min.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/bartaz/jquery.highlight.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/jquery/put-delete.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/sindresorhus/screenfull.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/libs/zip.min.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/epub.min.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/hooks.min.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/hooks/extensions/highlight.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/reader.min.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<link rel="shortcut icon" href="<?php p($urlGenerator->linkTo('epubreader', 'img/book.png')); ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/icomoon/style.css')); ?>?v=<?php p($version); ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/css/main.css')); ?>?v=<?php p($version); ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/css/sidebar.css')); ?>?v=<?php p($version); ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/css/popup.css')); ?>?v=<?php p($version); ?>">
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'js/lib/typedarray.min.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'js/lib/wgxpath.install.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/libs/jquery.min.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/bartaz/jquery.highlight.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/jquery/put-delete.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/sindresorhus/screenfull.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/libs/zip.min.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/epub.min.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/hooks.min.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/hooks/extensions/highlight.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/reader.min.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
|
||||
<?php if ($idevice): ?>
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/css/idevice.css')) ?>?v=<?php p($version) ?>">
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/bgrins/spectrum.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/bgrins/spectrum.css')) ?>?v=<?php p($version) ?>">
|
||||
<?php endif; ?>
|
||||
<?php if ($idevice) { ?>
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/css/idevice.css')); ?>?v=<?php p($version); ?>">
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/bgrins/spectrum.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/bgrins/spectrum.css')); ?>?v=<?php p($version); ?>">
|
||||
<?php } ?>
|
||||
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'js/ready.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'js/ready.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="outerContainer">
|
||||
@ -113,21 +113,21 @@ $nonce = class_exists('\OC\Security\CSP\ContentSecurityPolicyNonceManager')
|
||||
<div class="control-group">
|
||||
<div>
|
||||
<input type="checkbox" id="custom_font_family" name="font_family">
|
||||
<label for="custom_font_family"><?php print($l->t('custom font')); ?></label>
|
||||
<label for="custom_font_family"><?php echo $l->t('custom font'); ?></label>
|
||||
<select id="font_family" disabled="">
|
||||
<option value="verdana, trebuchet, droid sans serif, sans, sans-serif"> sans </option>
|
||||
<option value="georgia, times new roman, droid serif, serif"> serif </option>
|
||||
<option value="monospace"><?php print($l->t('monospace')); ?> </option>
|
||||
<option value="monospace"><?php echo $l->t('monospace'); ?> </option>
|
||||
</select>
|
||||
</div>
|
||||
<div>
|
||||
<input type="checkbox" id="custom_font_size" name="font_size">
|
||||
<label for="custom_font_size"><?php print($l->t('font size')); ?></label>
|
||||
<label for="custom_font_size"><?php echo $l->t('font size'); ?></label>
|
||||
<input type="number" id="font_size" value="100" min="50" max="150" disabled=""> %
|
||||
</div>
|
||||
<div>
|
||||
<input type="checkbox" id="custom_font_weight" name="font_weight">
|
||||
<label for="custom_font_weight"><?php print($l->t('font weight')); ?></label>
|
||||
<label for="custom_font_weight"><?php echo $l->t('font weight'); ?></label>
|
||||
<select id="font_weight" disabled="">
|
||||
<option value="100">thin</option>
|
||||
<option value="200">extra light</option>
|
||||
@ -154,7 +154,7 @@ $nonce = class_exists('\OC\Security\CSP\ContentSecurityPolicyNonceManager')
|
||||
<div class="control-group">
|
||||
<input type="checkbox" id="use_custom_colors" name="use_custom_colors">
|
||||
<label for="use_custom_colors">
|
||||
<?php print($l->t('Use custom colors')); ?>;
|
||||
<?php echo $l->t('Use custom colors'); ?>;
|
||||
</label>
|
||||
<div class="center-box">
|
||||
<input type="color" id="day_color" value="#0a0a0a">
|
||||
@ -172,7 +172,7 @@ $nonce = class_exists('\OC\Security\CSP\ContentSecurityPolicyNonceManager')
|
||||
<legend>night</legend>
|
||||
<div class="control-group">
|
||||
<div class="center-box nightshift">
|
||||
<?php print($l->t('night mode can be toggled by clicking the book title')); ?>;
|
||||
<?php echo $l->t('night mode can be toggled by clicking the book title'); ?>;
|
||||
</div>
|
||||
<div class="center-box">
|
||||
<input type="color" id="night_color" value="#454545">
|
||||
@ -202,19 +202,19 @@ $nonce = class_exists('\OC\Security\CSP\ContentSecurityPolicyNonceManager')
|
||||
<div class="control-group">
|
||||
<input type="checkbox" id="sidebarReflow" name="sidebarReflow">
|
||||
<label for="sidebarReflow">
|
||||
<?php print($l->t('reflow text when sidebars are open')); ?>;
|
||||
<?php echo $l->t('reflow text when sidebars are open'); ?>;
|
||||
</label>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<input type="checkbox" id="touch_nav" name="touch_nav">
|
||||
<label for="touch_nav">
|
||||
<?php print($l->t('disable extra-wide page turn areas')); ?>;
|
||||
<?php echo $l->t('disable extra-wide page turn areas'); ?>;
|
||||
</label>
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<input type="checkbox" id="page_turn_arrows" name="page_turn_arrows">
|
||||
<label for="page_turn_arrows">
|
||||
<?php print($l->t('show page turn arrows')); ?>;
|
||||
<?php echo $l->t('show page turn arrows'); ?>;
|
||||
</label>
|
||||
</div>
|
||||
|
||||
@ -234,7 +234,7 @@ $nonce = class_exists('\OC\Security\CSP\ContentSecurityPolicyNonceManager')
|
||||
<div id="titlebar">
|
||||
<div id="opener">
|
||||
<a id="slider" class="icon-menu">
|
||||
<?php p($l->t("menu")); ?>
|
||||
<?php p($l->t('menu')); ?>
|
||||
</a>
|
||||
</div>
|
||||
<div id="metainfo">
|
||||
@ -282,7 +282,7 @@ $nonce = class_exists('\OC\Security\CSP\ContentSecurityPolicyNonceManager')
|
||||
</div>
|
||||
</div>
|
||||
<div id="loader">
|
||||
<img src="<?php p($urlGenerator->linkTo('epubreader', 'img/loading.gif')) ?>">
|
||||
<img src="<?php p($urlGenerator->linkTo('epubreader', 'img/loading.gif')); ?>">
|
||||
</div>
|
||||
|
||||
<!-- /navigation + viewer -->
|
||||
|
@ -14,7 +14,7 @@ $metadata = $_['metadata'];
|
||||
$annotations = $_['annotations'];
|
||||
$title = htmlentities(basename($downloadLink));
|
||||
$revision = '0130';
|
||||
$version = \OC::$server->getAppManager()->getAppVersion('epubreader') . '.' . $revision;
|
||||
$version = \OC::$server->getAppManager()->getAppVersion('epubreader').'.'.$revision;
|
||||
|
||||
/* Mobile safari, the new IE6 */
|
||||
$idevice = (strstr($_SERVER['HTTP_USER_AGENT'], 'iPhone')
|
||||
@ -28,50 +28,50 @@ $nonce = class_exists('\OC\Security\CSP\ContentSecurityPolicyNonceManager')
|
||||
?>
|
||||
|
||||
<html dir="ltr">
|
||||
<head class="session" data-nonce='<?php p($nonce);?>' data-downloadlink='<?php print_unescaped($downloadLink);?>' data-fileid='<?php print_unescaped($fileId);?>' data-filetype='<?php print_unescaped($fileType);?>' data-filename='<?php print_unescaped($fileName);?>' data-version='<?php print_unescaped($version);?>' data-basepath='<?php p($urlGenerator->linkToRoute('epubreader.page.showReader'));?>' data-staticpath='<?php p($urlGenerator->linkTo('epubreader', ''));?>' data-scope='<?php print_unescaped($scope);?>' data-cursor='<?php print_unescaped($cursor);?>' data-defaults='<?php print_unescaped($defaults);?>' data-preferences='<?php print_unescaped($preferences);?>' data-metadata='<?php print_unescaped($metadata);?>' data-annotations='<?php print_unescaped($annotations);?>'>
|
||||
<head class="session" data-nonce='<?php p($nonce); ?>' data-downloadlink='<?php print_unescaped($downloadLink); ?>' data-fileid='<?php print_unescaped($fileId); ?>' data-filetype='<?php print_unescaped($fileType); ?>' data-filename='<?php print_unescaped($fileName); ?>' data-version='<?php print_unescaped($version); ?>' data-basepath='<?php p($urlGenerator->linkToRoute('epubreader.page.showReader')); ?>' data-staticpath='<?php p($urlGenerator->linkTo('epubreader', '')); ?>' data-scope='<?php print_unescaped($scope); ?>' data-cursor='<?php print_unescaped($cursor); ?>' data-defaults='<?php print_unescaped($defaults); ?>' data-preferences='<?php print_unescaped($preferences); ?>' data-metadata='<?php print_unescaped($metadata); ?>' data-annotations='<?php print_unescaped($annotations); ?>'>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<!-- <base href="<?php p($urlGenerator->linkTo('epubreader', ''));?>"> -->
|
||||
<!-- <base href="<?php p($urlGenerator->linkTo('epubreader', '')); ?>"> -->
|
||||
<title>
|
||||
<?php p($title);?>
|
||||
<?php p($title); ?>
|
||||
</title>
|
||||
<link rel="shortcut icon" href="<?php p($urlGenerator->linkTo('epubreader', 'img/book.png')) ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/icomoon/style.css')) ?>?v=<?php p($version) ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/css/main.css')) ?>?v=<?php p($version) ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/css/sidebar.css')) ?>?v=<?php p($version) ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/css/text_layer_builder.css')) ?>?v=<?php p($version) ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/css/annotation_layer_builder.css')) ?>?v=<?php p($version) ?>">
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/libs/jquery.min.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/lib/pdf.worker.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/bartaz/jquery.highlight.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/jquery/put-delete.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/sindresorhus/screenfull.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/lib/pdf.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/pdf.reader.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/services/eventbus_service.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/services/link_service.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/services/simple_link_service.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/progress_controller.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/textlayer_controller.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/search_controller.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/reader_controller.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/sidebar_controller.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/settings_controller.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/controls_controller.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/toc_controller.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/outline_controller.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/annotationlayer_controller.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/notes_controller.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/bookmarks_controller.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/styles_controller.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<?php if ($idevice): ?>
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/css/idevice.css')) ?>?v=<?php p($version) ?>">
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/bgrins/spectrum.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/bgrins/spectrum.css')) ?>?v=<?php p($version) ?>">
|
||||
<?php endif; ?>
|
||||
<link rel="shortcut icon" href="<?php p($urlGenerator->linkTo('epubreader', 'img/book.png')); ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/icomoon/style.css')); ?>?v=<?php p($version); ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/css/main.css')); ?>?v=<?php p($version); ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/css/sidebar.css')); ?>?v=<?php p($version); ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/css/text_layer_builder.css')); ?>?v=<?php p($version); ?>">
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/css/annotation_layer_builder.css')); ?>?v=<?php p($version); ?>">
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/epubjs/libs/jquery.min.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/lib/pdf.worker.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/bartaz/jquery.highlight.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/jquery/put-delete.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/sindresorhus/screenfull.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/lib/pdf.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/pdf.reader.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/services/eventbus_service.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/services/link_service.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/services/simple_link_service.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/progress_controller.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/textlayer_controller.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/search_controller.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/reader_controller.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/sidebar_controller.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/settings_controller.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/controls_controller.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/toc_controller.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/outline_controller.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/annotationlayer_controller.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/notes_controller.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/bookmarks_controller.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/controllers/styles_controller.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<?php if ($idevice) { ?>
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/pdfjs/css/idevice.css')); ?>?v=<?php p($version); ?>">
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'public/bgrins/spectrum.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
<link rel="stylesheet" href="<?php p($urlGenerator->linkTo('epubreader', 'public/bgrins/spectrum.css')); ?>?v=<?php p($version); ?>">
|
||||
<?php } ?>
|
||||
|
||||
<script type="text/javascript" nonce="<?php p($nonce) ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'js/ready.js')) ?>?v=<?php p($version) ?>"> </script>
|
||||
<script type="text/javascript" nonce="<?php p($nonce); ?>" src="<?php p($urlGenerator->linkTo('epubreader', 'js/ready.js')); ?>?v=<?php p($version); ?>"> </script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="outerContainer">
|
||||
@ -216,7 +216,7 @@ $nonce = class_exists('\OC\Security\CSP\ContentSecurityPolicyNonceManager')
|
||||
<div id="titlebar">
|
||||
<div id="opener">
|
||||
<a id="slider" class="icon-menu">
|
||||
<?php p($l->t("menu")); ?>
|
||||
<?php p($l->t('menu')); ?>
|
||||
</a>
|
||||
<div id="status_message_left">
|
||||
</div>
|
||||
@ -311,7 +311,7 @@ $nonce = class_exists('\OC\Security\CSP\ContentSecurityPolicyNonceManager')
|
||||
</div>
|
||||
</div>
|
||||
<div id="loader">
|
||||
<img src="<?php p($urlGenerator->linkTo('epubreader', 'img/loading.gif')) ?>">
|
||||
<img src="<?php p($urlGenerator->linkTo('epubreader', 'img/loading.gif')); ?>">
|
||||
</div>
|
||||
|
||||
<!-- /navigation + viewer -->
|
||||
|
@ -7,42 +7,41 @@
|
||||
* later.
|
||||
* See the COPYING-README file.
|
||||
*/
|
||||
|
||||
script('epubreader', 'settings');
|
||||
style('epubreader', 'settings');
|
||||
|
||||
?>
|
||||
|
||||
<div id="reader-personal" class="section">
|
||||
<table><tr><td><h2><?php p($l->t('Reader'));?></h2></td><td> <span class="msg"></span></td></tr></table>
|
||||
<table><tr><td><h2><?php p($l->t('Reader')); ?></h2></td><td> <span class="msg"></span></td></tr></table>
|
||||
<p class="settings-hint"><?php p($l->t('Select file types for which Reader should be the default viewer.')); ?></p>
|
||||
|
||||
<p>
|
||||
<input type="checkbox" name="EpubEnable" id="EpubEnable" class="checkbox"
|
||||
value="1" <?php if ($_['EpubEnable'] === "true") {
|
||||
value="1" <?php if ('true' === $_['EpubEnable']) {
|
||||
print_unescaped('checked="checked"');
|
||||
} ?> />
|
||||
<label for="EpubEnable">
|
||||
<?php p($l->t('Epub'));?>
|
||||
<?php p($l->t('Epub')); ?>
|
||||
</label>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<input type="checkbox" name="PdfEnable" id="PdfEnable" class="checkbox"
|
||||
value="1" <?php if ($_['PdfEnable'] === "true") {
|
||||
value="1" <?php if ('true' === $_['PdfEnable']) {
|
||||
print_unescaped('checked="checked"');
|
||||
} ?> />
|
||||
<label for="PdfEnable">
|
||||
<?php p($l->t('PDF'));?>
|
||||
<?php p($l->t('PDF')); ?>
|
||||
</label><br/>
|
||||
</p>
|
||||
<p>
|
||||
<input type="checkbox" name="CbxEnable" id="CbxEnable" class="checkbox"
|
||||
value="1" <?php if ($_['CbxEnable'] === "true") {
|
||||
value="1" <?php if ('true' === $_['CbxEnable']) {
|
||||
print_unescaped('checked="checked"');
|
||||
} ?> />
|
||||
<label for="CbxEnable">
|
||||
<?php p($l->t('CBR/CBZ'));?>
|
||||
<?php p($l->t('CBR/CBZ')); ?>
|
||||
</label><br/>
|
||||
</p>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user