mirror of
https://github.com/hkalexling/Mango.git
synced 2026-04-24 00:03:12 -04:00
Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bec257c99f | |||
| f2df493d79 | |||
| b74f61c025 | |||
| c76c287e66 | |||
| 8e7eaa680a | |||
| 30cdb3ec8f | |||
| 9c367e7d35 | |||
| d2f95e5970 | |||
| 82bcd03f15 | |||
| fe799f30c8 | |||
| 54123917af | |||
| 3b737c0bee | |||
| 14bf4da06c | |||
| a72dfcecd3 | |||
| 160a249dc6 | |||
| f9a2534f80 | |||
| 06fe2ccf16 | |||
| e214e00dfb | |||
| 9b5aea223d | |||
| 1b9d83f367 | |||
| 96b8186add | |||
| 27dab3c989 | |||
| bcb95d1462 | |||
| 4371c7877d | |||
| d72d635c68 | |||
| b724b4d508 | |||
| 8bbbe650f1 | |||
| 651bd17612 | |||
| dd01e632a2 | |||
| 43ee8f3b85 | |||
| bedcac4e35 | |||
| 5260a82e88 | |||
| 1efb300988 | |||
| 6b43ee7fe5 |
@@ -1,3 +1,4 @@
|
|||||||
# These are supported funding model platforms
|
# These are supported funding model platforms
|
||||||
|
|
||||||
patreon: hkalexling
|
patreon: hkalexling
|
||||||
|
ko_fi: hkalexling
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: apk add --no-cache yarn yaml sqlite-static
|
run: apk add --no-cache yarn yaml sqlite-static libarchive-dev libarchive-static acl-static expat-static zstd-static lz4-static bzip2-static
|
||||||
- name: Build
|
- name: Build
|
||||||
run: make static
|
run: make static
|
||||||
- name: Linter
|
- name: Linter
|
||||||
|
|||||||
+1
-1
@@ -4,7 +4,7 @@ WORKDIR /Mango
|
|||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
COPY package*.json .
|
COPY package*.json .
|
||||||
RUN apk add --no-cache yarn yaml sqlite-static \
|
RUN apk add --no-cache yarn yaml sqlite-static libarchive-dev libarchive-static acl-static expat-static zstd-static lz4-static bzip2-static \
|
||||||
&& make static
|
&& make static
|
||||||
|
|
||||||
FROM library/alpine
|
FROM library/alpine
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ static: uglify | libs
|
|||||||
crystal build src/mango.cr --release --progress --static
|
crystal build src/mango.cr --release --progress --static
|
||||||
|
|
||||||
libs:
|
libs:
|
||||||
shards install
|
shards install --production
|
||||||
|
|
||||||
run:
|
run:
|
||||||
crystal run src/mango.cr --error-trace
|
crystal run src/mango.cr --error-trace
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ Mango is a self-hosted manga server and reader. Its features include
|
|||||||
|
|
||||||
- Multi-user support
|
- Multi-user support
|
||||||
- Dark/light mode switch
|
- Dark/light mode switch
|
||||||
- Supports both `.zip` and `.cbz` formats
|
- Supported formats: `.cbz`, `.zip`, `.cbr` and `.rar`
|
||||||
- Supports nested folders in library
|
- Supports nested folders in library
|
||||||
- Automatically stores reading progress
|
- Automatically stores reading progress
|
||||||
- Built-in [MangaDex](https://mangadex.org/) downloader
|
- Built-in [MangaDex](https://mangadex.org/) downloader
|
||||||
@@ -39,7 +39,7 @@ The official docker images are available on [Dockerhub](https://hub.docker.com/r
|
|||||||
|
|
||||||
### Build from source
|
### Build from source
|
||||||
|
|
||||||
1. Make sure you have `crystal`, `shards` and `yarn` installed. You might also need to install the development headers for `libsqlite3` and `libyaml`.
|
1. Make sure you have `crystal`, `shards` and `yarn` installed. You might also need to install the development headers of some libraries. Please see the [Dockerfile](https://github.com/hkalexling/Mango/blob/master/Dockerfile) for the full list of dependencies
|
||||||
2. Clone the repository
|
2. Clone the repository
|
||||||
3. `make && sudo make install`
|
3. `make && sudo make install`
|
||||||
4. Start Mango by running the command `mango`
|
4. Start Mango by running the command `mango`
|
||||||
@@ -50,11 +50,21 @@ The official docker images are available on [Dockerhub](https://hub.docker.com/r
|
|||||||
### CLI
|
### CLI
|
||||||
|
|
||||||
```
|
```
|
||||||
Mango e-manga server/reader. Version 0.4.0
|
Mango - Manga Server and Web Reader. Version 0.5.2
|
||||||
|
|
||||||
-v, --version Show version
|
Usage:
|
||||||
-h, --help Show help
|
|
||||||
-c PATH, --config=PATH Path to the config file. Default is `~/.config/mango/config.yml`
|
mango [sub_command] [options]
|
||||||
|
|
||||||
|
Options:
|
||||||
|
|
||||||
|
-c PATH, --config=PATH Path to the config file [type:String]
|
||||||
|
-h, --help Show this help.
|
||||||
|
-v, --version Show version.
|
||||||
|
|
||||||
|
Sub Commands:
|
||||||
|
|
||||||
|
admin Run admin tools
|
||||||
```
|
```
|
||||||
|
|
||||||
### Config
|
### Config
|
||||||
@@ -65,6 +75,7 @@ The default config file location is `~/.config/mango/config.yml`. It might be di
|
|||||||
---
|
---
|
||||||
port: 9000
|
port: 9000
|
||||||
base_url: /
|
base_url: /
|
||||||
|
library_path: ~/mango/library
|
||||||
db_path: ~/mango/mango.db
|
db_path: ~/mango/mango.db
|
||||||
scan_interval_minutes: 5
|
scan_interval_minutes: 5
|
||||||
log_level: info
|
log_level: info
|
||||||
@@ -84,7 +95,7 @@ mangadex:
|
|||||||
|
|
||||||
### Library Structure
|
### Library Structure
|
||||||
|
|
||||||
You can organize your `.cbz/.zip` files in nested folders in the library directory. Here's an example:
|
You can organize your archive files in nested folders in the library directory. Here's an example:
|
||||||
|
|
||||||
```
|
```
|
||||||
.
|
.
|
||||||
|
|||||||
+10
-1
@@ -242,7 +242,10 @@ const buildTable = () => {
|
|||||||
Object.entries(filters).forEach(([k, v]) => {
|
Object.entries(filters).forEach(([k, v]) => {
|
||||||
if (v === 'All') return;
|
if (v === 'All') return;
|
||||||
if (k === 'group') {
|
if (k === 'group') {
|
||||||
chapters = chapters.filter(c => v in c.groups);
|
chapters = chapters.filter(c => {
|
||||||
|
unescaped_groups = Object.entries(c.groups).map(([g, id]) => unescapeHTML(g));
|
||||||
|
return unescaped_groups.indexOf(v) >= 0;
|
||||||
|
});
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (k === 'lang') {
|
if (k === 'lang') {
|
||||||
@@ -297,3 +300,9 @@ const buildTable = () => {
|
|||||||
});
|
});
|
||||||
$('#selection-controls').removeAttr('hidden');
|
$('#selection-controls').removeAttr('hidden');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const unescapeHTML = (str) => {
|
||||||
|
var elt = document.createElement("span");
|
||||||
|
elt.innerHTML = str;
|
||||||
|
return elt.innerText;
|
||||||
|
};
|
||||||
|
|||||||
+9
-1
@@ -2,12 +2,20 @@ version: 1.0
|
|||||||
shards:
|
shards:
|
||||||
ameba:
|
ameba:
|
||||||
github: crystal-ameba/ameba
|
github: crystal-ameba/ameba
|
||||||
version: 0.12.0
|
version: 0.12.1
|
||||||
|
|
||||||
|
archive:
|
||||||
|
github: hkalexling/archive.cr
|
||||||
|
version: 0.2.0
|
||||||
|
|
||||||
baked_file_system:
|
baked_file_system:
|
||||||
github: schovi/baked_file_system
|
github: schovi/baked_file_system
|
||||||
version: 0.9.8
|
version: 0.9.8
|
||||||
|
|
||||||
|
clim:
|
||||||
|
github: at-grandpa/clim
|
||||||
|
version: 0.12.0
|
||||||
|
|
||||||
db:
|
db:
|
||||||
github: crystal-lang/crystal-db
|
github: crystal-lang/crystal-db
|
||||||
version: 0.9.0
|
version: 0.9.0
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
name: mango
|
name: mango
|
||||||
version: 0.4.0
|
version: 0.5.2
|
||||||
|
|
||||||
authors:
|
authors:
|
||||||
- Alex Ling <hkalexling@gmail.com>
|
- Alex Ling <hkalexling@gmail.com>
|
||||||
@@ -19,7 +19,9 @@ dependencies:
|
|||||||
github: crystal-lang/crystal-sqlite3
|
github: crystal-lang/crystal-sqlite3
|
||||||
baked_file_system:
|
baked_file_system:
|
||||||
github: schovi/baked_file_system
|
github: schovi/baked_file_system
|
||||||
|
archive:
|
||||||
development_dependencies:
|
github: hkalexling/archive.cr
|
||||||
ameba:
|
ameba:
|
||||||
github: crystal-ameba/ameba
|
github: crystal-ameba/ameba
|
||||||
|
clim:
|
||||||
|
github: at-grandpa/clim
|
||||||
|
|||||||
+1
-1
@@ -45,7 +45,7 @@ end
|
|||||||
def with_storage
|
def with_storage
|
||||||
with_default_config do
|
with_default_config do
|
||||||
temp_db = get_tempfile "mango-test-db"
|
temp_db = get_tempfile "mango-test-db"
|
||||||
storage = Storage.new temp_db.path
|
storage = Storage.new temp_db.path, false
|
||||||
clear = yield storage, temp_db.path
|
clear = yield storage, temp_db.path
|
||||||
if clear == true
|
if clear == true
|
||||||
temp_db.delete
|
temp_db.delete
|
||||||
|
|||||||
@@ -0,0 +1,59 @@
|
|||||||
|
require "zip"
|
||||||
|
require "archive"
|
||||||
|
|
||||||
|
# A unified class to handle all supported archive formats. It uses the ::Zip
|
||||||
|
# module in crystal standard library if the target file is a zip archive.
|
||||||
|
# Otherwise it uses `archive.cr`.
|
||||||
|
class ArchiveFile
|
||||||
|
def initialize(@filename : String)
|
||||||
|
if [".cbz", ".zip"].includes? File.extname filename
|
||||||
|
@archive_file = Zip::File.new filename
|
||||||
|
else
|
||||||
|
@archive_file = Archive::File.new filename
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.open(filename : String, &)
|
||||||
|
s = self.new filename
|
||||||
|
yield s
|
||||||
|
s.close
|
||||||
|
end
|
||||||
|
|
||||||
|
def close
|
||||||
|
if @archive_file.is_a? Zip::File
|
||||||
|
@archive_file.as(Zip::File).close
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# Lists all file entries
|
||||||
|
def entries
|
||||||
|
ary = [] of Zip::File::Entry | Archive::Entry
|
||||||
|
@archive_file.entries.map do |e|
|
||||||
|
if (e.is_a? Zip::File::Entry && e.file?) ||
|
||||||
|
(e.is_a? Archive::Entry && e.info.file?)
|
||||||
|
ary.push e
|
||||||
|
end
|
||||||
|
end
|
||||||
|
ary
|
||||||
|
end
|
||||||
|
|
||||||
|
def read_entry(e : Zip::File::Entry | Archive::Entry) : Bytes?
|
||||||
|
if e.is_a? Zip::File::Entry
|
||||||
|
data = nil
|
||||||
|
e.open do |io|
|
||||||
|
slice = Bytes.new e.uncompressed_size
|
||||||
|
bytes_read = io.read_fully? slice
|
||||||
|
data = slice if bytes_read
|
||||||
|
end
|
||||||
|
data
|
||||||
|
else
|
||||||
|
e.read
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def check
|
||||||
|
if @archive_file.is_a? Archive::File
|
||||||
|
@archive_file.as(Archive::File).check
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
@@ -9,7 +9,9 @@ class AuthHandler < Kemal::Handler
|
|||||||
def call(env)
|
def call(env)
|
||||||
return call_next(env) if request_path_startswith env, ["/login", "/logout"]
|
return call_next(env) if request_path_startswith env, ["/login", "/logout"]
|
||||||
|
|
||||||
cookie = env.request.cookies.find { |c| c.name == "token" }
|
cookie = env.request.cookies.find do |c|
|
||||||
|
c.name == "token-#{Config.current.port}"
|
||||||
|
end
|
||||||
if cookie.nil? || !@storage.verify_token cookie.value
|
if cookie.nil? || !@storage.verify_token cookie.value
|
||||||
return redirect env, "/login"
|
return redirect env, "/login"
|
||||||
end
|
end
|
||||||
|
|||||||
+22
-20
@@ -1,8 +1,8 @@
|
|||||||
require "zip"
|
|
||||||
require "mime"
|
require "mime"
|
||||||
require "json"
|
require "json"
|
||||||
require "uri"
|
require "uri"
|
||||||
require "./util"
|
require "./util"
|
||||||
|
require "./archive"
|
||||||
|
|
||||||
struct Image
|
struct Image
|
||||||
property data : Bytes
|
property data : Bytes
|
||||||
@@ -25,7 +25,7 @@ class Entry
|
|||||||
@title = File.basename path, File.extname path
|
@title = File.basename path, File.extname path
|
||||||
@encoded_title = URI.encode @title
|
@encoded_title = URI.encode @title
|
||||||
@size = (File.size path).humanize_bytes
|
@size = (File.size path).humanize_bytes
|
||||||
file = Zip::File.new path
|
file = ArchiveFile.new path
|
||||||
@pages = file.entries.count do |e|
|
@pages = file.entries.count do |e|
|
||||||
["image/jpeg", "image/png"].includes? \
|
["image/jpeg", "image/png"].includes? \
|
||||||
MIME.from_filename? e.filename
|
MIME.from_filename? e.filename
|
||||||
@@ -61,14 +61,15 @@ class Entry
|
|||||||
TitleInfo.new @book.dir do |info|
|
TitleInfo.new @book.dir do |info|
|
||||||
info_url = info.entry_cover_url[@title]?
|
info_url = info.entry_cover_url[@title]?
|
||||||
unless info_url.nil? || info_url.empty?
|
unless info_url.nil? || info_url.empty?
|
||||||
url = info_url
|
url = File.join Config.current.base_url, info_url
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
url
|
url
|
||||||
end
|
end
|
||||||
|
|
||||||
def read_page(page_num)
|
def read_page(page_num)
|
||||||
Zip::File.open @zip_path do |file|
|
img = nil
|
||||||
|
ArchiveFile.open @zip_path do |file|
|
||||||
page = file.entries
|
page = file.entries
|
||||||
.select { |e|
|
.select { |e|
|
||||||
["image/jpeg", "image/png"].includes? \
|
["image/jpeg", "image/png"].includes? \
|
||||||
@@ -78,16 +79,13 @@ class Entry
|
|||||||
compare_alphanumerically a.filename, b.filename
|
compare_alphanumerically a.filename, b.filename
|
||||||
}
|
}
|
||||||
.[page_num - 1]
|
.[page_num - 1]
|
||||||
page.open do |io|
|
data = file.read_entry page
|
||||||
slice = Bytes.new page.uncompressed_size
|
if data
|
||||||
bytes_read = io.read_fully? slice
|
img = Image.new data, MIME.from_filename(page.filename), page.filename,
|
||||||
unless bytes_read
|
data.size
|
||||||
return nil
|
|
||||||
end
|
|
||||||
return Image.new slice, MIME.from_filename(page.filename),
|
|
||||||
page.filename, bytes_read
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
img
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -115,12 +113,16 @@ class Title
|
|||||||
@title_ids << title.id
|
@title_ids << title.id
|
||||||
next
|
next
|
||||||
end
|
end
|
||||||
if [".zip", ".cbz"].includes? File.extname path
|
if [".zip", ".cbz", ".rar", ".cbr"].includes? File.extname path
|
||||||
zip_exception = validate_zip path
|
unless File.readable? path
|
||||||
unless zip_exception.nil?
|
Logger.warn "File #{path} is not readable. Please make sure the " \
|
||||||
Logger.warn "File #{path} is corrupted or is not a valid zip " \
|
"file permission is configured correctly."
|
||||||
"archive. Ignoring it."
|
next
|
||||||
Logger.debug "Zip error: #{zip_exception}"
|
end
|
||||||
|
archive_exception = validate_archive path
|
||||||
|
unless archive_exception.nil?
|
||||||
|
Logger.warn "Unable to extract archive #{path}. Ignoring it. " \
|
||||||
|
"Archive error: #{archive_exception}"
|
||||||
next
|
next
|
||||||
end
|
end
|
||||||
entry = Entry.new path, self, @id, storage
|
entry = Entry.new path, self, @id, storage
|
||||||
@@ -231,14 +233,14 @@ class Title
|
|||||||
end
|
end
|
||||||
|
|
||||||
def cover_url
|
def cover_url
|
||||||
url = "img/icon.png"
|
url = "#{Config.current.base_url}img/icon.png"
|
||||||
if @entries.size > 0
|
if @entries.size > 0
|
||||||
url = @entries[0].cover_url
|
url = @entries[0].cover_url
|
||||||
end
|
end
|
||||||
TitleInfo.new @dir do |info|
|
TitleInfo.new @dir do |info|
|
||||||
info_url = info.cover_url
|
info_url = info.cover_url
|
||||||
unless info_url.nil? || info_url.empty?
|
unless info_url.nil? || info_url.empty?
|
||||||
url = info_url
|
url = File.join Config.current.base_url, info_url
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
url
|
url
|
||||||
|
|||||||
@@ -371,7 +371,7 @@ module MangaDex
|
|||||||
writer.close
|
writer.close
|
||||||
Logger.debug "cbz File created at #{zip_path}"
|
Logger.debug "cbz File created at #{zip_path}"
|
||||||
|
|
||||||
zip_exception = validate_zip zip_path
|
zip_exception = validate_archive zip_path
|
||||||
if !zip_exception.nil?
|
if !zip_exception.nil?
|
||||||
@queue.add_message "The downloaded archive is corrupted. " \
|
@queue.add_message "The downloaded archive is corrupted. " \
|
||||||
"Error: #{zip_exception}", job
|
"Error: #{zip_exception}", job
|
||||||
|
|||||||
+92
-21
@@ -2,31 +2,102 @@ require "./config"
|
|||||||
require "./server"
|
require "./server"
|
||||||
require "./mangadex/*"
|
require "./mangadex/*"
|
||||||
require "option_parser"
|
require "option_parser"
|
||||||
|
require "clim"
|
||||||
|
|
||||||
VERSION = "0.4.0"
|
MANGO_VERSION = "0.5.2"
|
||||||
|
|
||||||
config_path = nil
|
macro common_option
|
||||||
|
option "-c PATH", "--config=PATH", type: String,
|
||||||
|
desc: "Path to the config file"
|
||||||
|
end
|
||||||
|
|
||||||
OptionParser.parse do |parser|
|
macro throw(msg)
|
||||||
parser.banner = "Mango e-manga server/reader. Version #{VERSION}\n"
|
puts "ERROR: #{{{msg}}}"
|
||||||
|
puts
|
||||||
|
puts "Please see the `--help`."
|
||||||
|
exit 1
|
||||||
|
end
|
||||||
|
|
||||||
parser.on "-v", "--version", "Show version" do
|
class CLI < Clim
|
||||||
puts "Version #{VERSION}"
|
main do
|
||||||
exit
|
desc "Mango - Manga Server and Web Reader. Version #{MANGO_VERSION}"
|
||||||
end
|
usage "mango [sub_command] [options]"
|
||||||
parser.on "-h", "--help", "Show help" do
|
help short: "-h"
|
||||||
puts parser
|
version "Version #{MANGO_VERSION}", short: "-v"
|
||||||
exit
|
common_option
|
||||||
end
|
run do |opts|
|
||||||
parser.on "-c PATH", "--config=PATH",
|
Config.load(opts.config).set_current
|
||||||
"Path to the config file. " \
|
MangaDex::Downloader.default
|
||||||
"Default is `~/.config/mango/config.yml`" do |path|
|
|
||||||
config_path = path
|
# empty ARGV so it won't be passed to Kemal
|
||||||
|
ARGV.clear
|
||||||
|
server = Server.new
|
||||||
|
server.start
|
||||||
|
end
|
||||||
|
|
||||||
|
sub "admin" do
|
||||||
|
desc "Run admin tools"
|
||||||
|
usage "mango admin [tool]"
|
||||||
|
help short: "-h"
|
||||||
|
run do |opts|
|
||||||
|
puts opts.help_string
|
||||||
|
end
|
||||||
|
sub "user" do
|
||||||
|
desc "User management tool"
|
||||||
|
usage "mango admin user [arguments] [options]"
|
||||||
|
help short: "-h"
|
||||||
|
argument "action", type: String,
|
||||||
|
desc: "Action to perform. Can be add/delete/update/list"
|
||||||
|
argument "username", type: String,
|
||||||
|
desc: "Username to update or delete"
|
||||||
|
option "-u USERNAME", "--username=USERNAME", type: String,
|
||||||
|
desc: "Username"
|
||||||
|
option "-p PASSWORD", "--password=PASSWORD", type: String,
|
||||||
|
desc: "Password"
|
||||||
|
option "-a", "--admin", desc: "Admin flag", type: Bool, default: false
|
||||||
|
common_option
|
||||||
|
run do |opts, args|
|
||||||
|
Config.load(opts.config).set_current
|
||||||
|
storage = Storage.new nil, false
|
||||||
|
|
||||||
|
case args.action
|
||||||
|
when "add"
|
||||||
|
throw "Options `-u` and `-p` required." if opts.username.nil? ||
|
||||||
|
opts.password.nil?
|
||||||
|
storage.new_user opts.username.not_nil!,
|
||||||
|
opts.password.not_nil!, opts.admin
|
||||||
|
when "delete"
|
||||||
|
throw "Argument `username` required." if args.username.nil?
|
||||||
|
storage.delete_user args.username
|
||||||
|
when "update"
|
||||||
|
throw "Argument `username` required." if args.username.nil?
|
||||||
|
username = opts.username || args.username
|
||||||
|
password = opts.password || ""
|
||||||
|
storage.update_user args.username, username.not_nil!,
|
||||||
|
password.not_nil!, opts.admin
|
||||||
|
when "list"
|
||||||
|
users = storage.list_users
|
||||||
|
name_length = users.map(&.[0].size).max? || 0
|
||||||
|
l_cell_width = ["username".size, name_length].max
|
||||||
|
r_cell_width = "admin access".size
|
||||||
|
header = " #{"username".ljust l_cell_width} | admin access "
|
||||||
|
puts "-" * header.size
|
||||||
|
puts header
|
||||||
|
puts "-" * header.size
|
||||||
|
users.each do |name, admin|
|
||||||
|
puts " #{name.ljust l_cell_width} | " \
|
||||||
|
"#{admin.to_s.ljust r_cell_width} "
|
||||||
|
end
|
||||||
|
puts "-" * header.size
|
||||||
|
when nil
|
||||||
|
puts opts.help_string
|
||||||
|
else
|
||||||
|
throw "Unknown action \"#{args.action}\"."
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
Config.load(config_path).set_current
|
CLI.start(ARGV)
|
||||||
MangaDex::Downloader.default
|
|
||||||
|
|
||||||
server = Server.new
|
|
||||||
server.start
|
|
||||||
|
|||||||
@@ -32,20 +32,6 @@ class AdminRouter < Router
|
|||||||
# would not contain `admin`
|
# would not contain `admin`
|
||||||
admin = !env.params.body["admin"]?.nil?
|
admin = !env.params.body["admin"]?.nil?
|
||||||
|
|
||||||
if username.size < 3
|
|
||||||
raise "Username should contain at least 3 characters"
|
|
||||||
end
|
|
||||||
if (username =~ /^[A-Za-z0-9_]+$/).nil?
|
|
||||||
raise "Username should contain alphanumeric characters " \
|
|
||||||
"and underscores only"
|
|
||||||
end
|
|
||||||
if password.size < 6
|
|
||||||
raise "Password should contain at least 6 characters"
|
|
||||||
end
|
|
||||||
if (password =~ /^[[:ascii:]]+$/).nil?
|
|
||||||
raise "password should contain ASCII characters only"
|
|
||||||
end
|
|
||||||
|
|
||||||
@context.storage.new_user username, password, admin
|
@context.storage.new_user username, password, admin
|
||||||
|
|
||||||
redirect env, "/admin/user"
|
redirect env, "/admin/user"
|
||||||
@@ -65,23 +51,6 @@ class AdminRouter < Router
|
|||||||
admin = !env.params.body["admin"]?.nil?
|
admin = !env.params.body["admin"]?.nil?
|
||||||
original_username = env.params.url["original_username"]
|
original_username = env.params.url["original_username"]
|
||||||
|
|
||||||
if username.size < 3
|
|
||||||
raise "Username should contain at least 3 characters"
|
|
||||||
end
|
|
||||||
if (username =~ /^[A-Za-z0-9_]+$/).nil?
|
|
||||||
raise "Username should contain alphanumeric characters " \
|
|
||||||
"and underscores only"
|
|
||||||
end
|
|
||||||
|
|
||||||
if password.size != 0
|
|
||||||
if password.size < 6
|
|
||||||
raise "Password should contain at least 6 characters"
|
|
||||||
end
|
|
||||||
if (password =~ /^[[:ascii:]]+$/).nil?
|
|
||||||
raise "password should contain ASCII characters only"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
@context.storage.update_user \
|
@context.storage.update_user \
|
||||||
original_username, username, password, admin
|
original_username, username, password, admin
|
||||||
|
|
||||||
|
|||||||
+5
-2
@@ -9,7 +9,9 @@ class MainRouter < Router
|
|||||||
|
|
||||||
get "/logout" do |env|
|
get "/logout" do |env|
|
||||||
begin
|
begin
|
||||||
cookie = env.request.cookies.find { |c| c.name == "token" }.not_nil!
|
cookie = env.request.cookies.find do |c|
|
||||||
|
c.name == "token-#{Config.current.port}"
|
||||||
|
end.not_nil!
|
||||||
@context.storage.logout cookie.value
|
@context.storage.logout cookie.value
|
||||||
rescue e
|
rescue e
|
||||||
@context.error "Error when attempting to log out: #{e}"
|
@context.error "Error when attempting to log out: #{e}"
|
||||||
@@ -24,7 +26,8 @@ class MainRouter < Router
|
|||||||
password = env.params.body["password"]
|
password = env.params.body["password"]
|
||||||
token = @context.storage.verify_user(username, password).not_nil!
|
token = @context.storage.verify_user(username, password).not_nil!
|
||||||
|
|
||||||
cookie = HTTP::Cookie.new "token", token
|
cookie = HTTP::Cookie.new "token-#{Config.current.port}", token
|
||||||
|
cookie.path = Config.current.base_url
|
||||||
cookie.expires = Time.local.shift years: 1
|
cookie.expires = Time.local.shift years: 1
|
||||||
env.response.cookies << cookie
|
env.response.cookies << cookie
|
||||||
redirect env, "/"
|
redirect env, "/"
|
||||||
|
|||||||
+22
-8
@@ -22,7 +22,7 @@ class Storage
|
|||||||
@@default.not_nil!
|
@@default.not_nil!
|
||||||
end
|
end
|
||||||
|
|
||||||
def initialize(db_path : String? = nil)
|
def initialize(db_path : String? = nil, init_user = true)
|
||||||
@path = db_path || Config.current.db_path
|
@path = db_path || Config.current.db_path
|
||||||
dir = File.dirname @path
|
dir = File.dirname @path
|
||||||
unless Dir.exists? dir
|
unless Dir.exists? dir
|
||||||
@@ -47,20 +47,30 @@ class Storage
|
|||||||
Logger.fatal "Error when checking tables in DB: #{e}"
|
Logger.fatal "Error when checking tables in DB: #{e}"
|
||||||
raise e
|
raise e
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# If the DB is initialized through CLI but no user is added, we need
|
||||||
|
# to create the admin user when first starting the app
|
||||||
|
user_count = db.query_one "select count(*) from users", as: Int32
|
||||||
|
init_admin if init_user && user_count == 0
|
||||||
else
|
else
|
||||||
Logger.debug "Creating DB file at #{@path}"
|
Logger.debug "Creating DB file at #{@path}"
|
||||||
db.exec "create unique index username_idx on users (username)"
|
db.exec "create unique index username_idx on users (username)"
|
||||||
db.exec "create unique index token_idx on users (token)"
|
db.exec "create unique index token_idx on users (token)"
|
||||||
random_pw = random_str
|
|
||||||
hash = hash_password random_pw
|
init_admin if init_user
|
||||||
db.exec "insert into users values (?, ?, ?, ?)",
|
|
||||||
"admin", hash, nil, 1
|
|
||||||
Logger.log "Initial user created. You can log in with " \
|
|
||||||
"#{{"username" => "admin", "password" => random_pw}}"
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
macro init_admin
|
||||||
|
random_pw = random_str
|
||||||
|
hash = hash_password random_pw
|
||||||
|
db.exec "insert into users values (?, ?, ?, ?)",
|
||||||
|
"admin", hash, nil, 1
|
||||||
|
Logger.log "Initial user created. You can log in with " \
|
||||||
|
"#{{"username" => "admin", "password" => random_pw}}"
|
||||||
|
end
|
||||||
|
|
||||||
def verify_user(username, password)
|
def verify_user(username, password)
|
||||||
DB.open "sqlite3://#{@path}" do |db|
|
DB.open "sqlite3://#{@path}" do |db|
|
||||||
begin
|
begin
|
||||||
@@ -124,6 +134,8 @@ class Storage
|
|||||||
end
|
end
|
||||||
|
|
||||||
def new_user(username, password, admin)
|
def new_user(username, password, admin)
|
||||||
|
validate_username username
|
||||||
|
validate_password password
|
||||||
admin = (admin ? 1 : 0)
|
admin = (admin ? 1 : 0)
|
||||||
DB.open "sqlite3://#{@path}" do |db|
|
DB.open "sqlite3://#{@path}" do |db|
|
||||||
hash = hash_password password
|
hash = hash_password password
|
||||||
@@ -134,8 +146,10 @@ class Storage
|
|||||||
|
|
||||||
def update_user(original_username, username, password, admin)
|
def update_user(original_username, username, password, admin)
|
||||||
admin = (admin ? 1 : 0)
|
admin = (admin ? 1 : 0)
|
||||||
|
validate_username username
|
||||||
|
validate_password password unless password.empty?
|
||||||
DB.open "sqlite3://#{@path}" do |db|
|
DB.open "sqlite3://#{@path}" do |db|
|
||||||
if password.size == 0
|
if password.empty?
|
||||||
db.exec "update users set username = (?), admin = (?) " \
|
db.exec "update users set username = (?), admin = (?) " \
|
||||||
"where username = (?)",
|
"where username = (?)",
|
||||||
username, admin, original_username
|
username, admin, original_username
|
||||||
|
|||||||
+28
-8
@@ -6,7 +6,9 @@ UPLOAD_URL_PREFIX = "/uploads"
|
|||||||
macro layout(name)
|
macro layout(name)
|
||||||
base_url = Config.current.base_url
|
base_url = Config.current.base_url
|
||||||
begin
|
begin
|
||||||
cookie = env.request.cookies.find { |c| c.name == "token" }
|
cookie = env.request.cookies.find do |c|
|
||||||
|
c.name == "token-#{Config.current.port}"
|
||||||
|
end
|
||||||
is_admin = false
|
is_admin = false
|
||||||
unless cookie.nil?
|
unless cookie.nil?
|
||||||
is_admin = @context.storage.verify_admin cookie.value
|
is_admin = @context.storage.verify_admin cookie.value
|
||||||
@@ -26,7 +28,9 @@ end
|
|||||||
macro get_username(env)
|
macro get_username(env)
|
||||||
# if the request gets here, it has gone through the auth handler, and
|
# if the request gets here, it has gone through the auth handler, and
|
||||||
# we can be sure that a valid token exists, so we can use not_nil! here
|
# we can be sure that a valid token exists, so we can use not_nil! here
|
||||||
cookie = {{env}}.request.cookies.find { |c| c.name == "token" }.not_nil!
|
cookie = {{env}}.request.cookies.find do |c|
|
||||||
|
c.name == "token-#{Config.current.port}"
|
||||||
|
end.not_nil!
|
||||||
(@context.storage.verify_token cookie.value).not_nil!
|
(@context.storage.verify_token cookie.value).not_nil!
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -85,12 +89,9 @@ def compare_alphanumerically(a : String, b : String)
|
|||||||
compare_alphanumerically split_by_alphanumeric(a), split_by_alphanumeric(b)
|
compare_alphanumerically split_by_alphanumeric(a), split_by_alphanumeric(b)
|
||||||
end
|
end
|
||||||
|
|
||||||
# When downloading from MangaDex, the zip/cbz file would not be valid
|
def validate_archive(path : String) : Exception?
|
||||||
# before the download is completed. If we scan the zip file,
|
file = ArchiveFile.new path
|
||||||
# Entry.new would throw, so we use this method to check before
|
file.check
|
||||||
# constructing Entry
|
|
||||||
def validate_zip(path : String) : Exception?
|
|
||||||
file = Zip::File.new path
|
|
||||||
file.close
|
file.close
|
||||||
return
|
return
|
||||||
rescue e
|
rescue e
|
||||||
@@ -105,3 +106,22 @@ def redirect(env, path)
|
|||||||
base = Config.current.base_url
|
base = Config.current.base_url
|
||||||
env.redirect File.join base, path
|
env.redirect File.join base, path
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def validate_username(username)
|
||||||
|
if username.size < 3
|
||||||
|
raise "Username should contain at least 3 characters"
|
||||||
|
end
|
||||||
|
if (username =~ /^[A-Za-z0-9_]+$/).nil?
|
||||||
|
raise "Username should contain alphanumeric characters " \
|
||||||
|
"and underscores only"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def validate_password(password)
|
||||||
|
if password.size < 6
|
||||||
|
raise "Password should contain at least 6 characters"
|
||||||
|
end
|
||||||
|
if (password =~ /^[[:ascii:]]+$/).nil?
|
||||||
|
raise "password should contain ASCII characters only"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|||||||
+1
-1
@@ -15,4 +15,4 @@
|
|||||||
|
|
||||||
<% content_for "script" do %>
|
<% content_for "script" do %>
|
||||||
<script src="<%= base_url %>js/admin.js"></script>
|
<script src="<%= base_url %>js/admin.js"></script>
|
||||||
<% end %>
|
<% end %>
|
||||||
@@ -1,32 +1,32 @@
|
|||||||
<div class="uk-margin">
|
<div class="uk-margin">
|
||||||
<div id="actions" class="uk-margin">
|
<div id="actions" class="uk-margin">
|
||||||
<button class="uk-button uk-button-default" onclick="remove()">Delete Completed Tasks</button>
|
<button class="uk-button uk-button-default" onclick="remove()">Delete Completed Tasks</button>
|
||||||
<button class="uk-button uk-button-default" onclick="refresh()">Retry Failed Tasks</button>
|
<button class="uk-button uk-button-default" onclick="refresh()">Retry Failed Tasks</button>
|
||||||
<button class="uk-button uk-button-default" onclick="load()">Refresh Queue</button>
|
<button class="uk-button uk-button-default" onclick="load()">Refresh Queue</button>
|
||||||
<button class="uk-button uk-button-default" onclick="toggle()" id="pause-resume-btn" hidden></button>
|
<button class="uk-button uk-button-default" onclick="toggle()" id="pause-resume-btn" hidden></button>
|
||||||
</div>
|
</div>
|
||||||
<div id="config" class="uk-margin">
|
<div id="config" class="uk-margin">
|
||||||
<label><input id="auto-refresh" class="uk-checkbox" type="checkbox" checked> Auto Refresh</label>
|
<label><input id="auto-refresh" class="uk-checkbox" type="checkbox" checked> Auto Refresh</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<table class="uk-table uk-table-striped uk-overflow-auto">
|
<table class="uk-table uk-table-striped uk-overflow-auto">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Chapter</th>
|
<th>Chapter</th>
|
||||||
<th>Manga</th>
|
<th>Manga</th>
|
||||||
<th>Progress</th>
|
<th>Progress</th>
|
||||||
<th>Time</th>
|
<th>Time</th>
|
||||||
<th>Status</th>
|
<th>Status</th>
|
||||||
<th>Actions</th>
|
<th>Actions</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<% content_for "script" do %>
|
<% content_for "script" do %>
|
||||||
<script>
|
<script>
|
||||||
var baseURL = "<%= mangadex_base_url %>".replace(/\/$/, "");
|
var baseURL = "<%= mangadex_base_url %>".replace(/\/$/, "");
|
||||||
</script>
|
</script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
|
||||||
<script src="<%= base_url %>js/alert.js"></script>
|
<script src="<%= base_url %>js/alert.js"></script>
|
||||||
<script src="<%= base_url %>js/download-manager.js"></script>
|
<script src="<%= base_url %>js/download-manager.js"></script>
|
||||||
<% end %>
|
<% end %>
|
||||||
+65
-65
@@ -1,83 +1,83 @@
|
|||||||
<h2 class=uk-title>Download from MangaDex</h2>
|
<h2 class=uk-title>Download from MangaDex</h2>
|
||||||
<div class="uk-grid-small" uk-grid>
|
<div class="uk-grid-small" uk-grid>
|
||||||
<div class="uk-width-3-4">
|
<div class="uk-width-3-4">
|
||||||
<input id="search-input" class="uk-input" type="text" placeholder="MangaDex manga ID or URL">
|
<input id="search-input" class="uk-input" type="text" placeholder="MangaDex manga ID or URL">
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-width-1-4">
|
<div class="uk-width-1-4">
|
||||||
<div id="spinner" uk-spinner class="uk-align-center" hidden></div>
|
<div id="spinner" uk-spinner class="uk-align-center" hidden></div>
|
||||||
<button id="search-btn" class="uk-button uk-button-default" onclick="search()">Search</button>
|
<button id="search-btn" class="uk-button uk-button-default" onclick="search()">Search</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class"uk-grid-small" uk-grid hidden id="manga-details">
|
<div class"uk-grid-small" uk-grid hidden id="manga-details">
|
||||||
<div class="uk-width-1-4@s">
|
<div class="uk-width-1-4@s">
|
||||||
<img id="cover">
|
<img id="cover">
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-width-1-4@s">
|
<div class="uk-width-1-4@s">
|
||||||
<p id="title"></p>
|
<p id="title"></p>
|
||||||
<p id="artist"></p>
|
<p id="artist"></p>
|
||||||
<p id="author"></p>
|
<p id="author"></p>
|
||||||
</div>
|
</div>
|
||||||
<div id="filter-form" class="uk-form-stacked uk-width-1-2@s" hidden>
|
<div id="filter-form" class="uk-form-stacked uk-width-1-2@s" hidden>
|
||||||
<p class="uk-text-lead uk-margin-remove-bottom">Filter Chapters</p>
|
<p class="uk-text-lead uk-margin-remove-bottom">Filter Chapters</p>
|
||||||
<p class="uk-text-meta uk-margin-remove-top" id="count-text"></p>
|
<p class="uk-text-meta uk-margin-remove-top" id="count-text"></p>
|
||||||
<div class="uk-margin">
|
<div class="uk-margin">
|
||||||
<label class="uk-form-label" for="lang-select">Language</label>
|
<label class="uk-form-label" for="lang-select">Language</label>
|
||||||
<div class="uk-form-controls">
|
<div class="uk-form-controls">
|
||||||
<select class="uk-select filter-field" id="lang-select">
|
<select class="uk-select filter-field" id="lang-select">
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-margin">
|
<div class="uk-margin">
|
||||||
<label class="uk-form-label" for="group-select">Group</label>
|
<label class="uk-form-label" for="group-select">Group</label>
|
||||||
<div class="uk-form-controls">
|
<div class="uk-form-controls">
|
||||||
<select class="uk-select filter-field" id="group-select">
|
<select class="uk-select filter-field" id="group-select">
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-margin">
|
<div class="uk-margin">
|
||||||
<label class="uk-form-label" for="volume-range">Volume</label>
|
<label class="uk-form-label" for="volume-range">Volume</label>
|
||||||
<div class="uk-form-controls">
|
<div class="uk-form-controls">
|
||||||
<input class="uk-input filter-field" type="text" id="volume-range" placeholder="e.g., 127, 10-14, >30, <=212, or leave it empty.">
|
<input class="uk-input filter-field" type="text" id="volume-range" placeholder="e.g., 127, 10-14, >30, <=212, or leave it empty.">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-margin">
|
<div class="uk-margin">
|
||||||
<label class="uk-form-label" for="chapter-range">Chapter</label>
|
<label class="uk-form-label" for="chapter-range">Chapter</label>
|
||||||
<div class="uk-form-controls">
|
<div class="uk-form-controls">
|
||||||
<input class="uk-input filter-field" type="text" id="chapter-range" placeholder="e.g., 127, 10-14, >30, <=212, or leave it empty.">
|
<input class="uk-input filter-field" type="text" id="chapter-range" placeholder="e.g., 127, 10-14, >30, <=212, or leave it empty.">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="selection-controls" class="uk-margin" hidden>
|
<div id="selection-controls" class="uk-margin" hidden>
|
||||||
<div class="uk-margin">
|
<div class="uk-margin">
|
||||||
<button class="uk-button uk-button-default" onclick="selectAll()">Select All</button>
|
<button class="uk-button uk-button-default" onclick="selectAll()">Select All</button>
|
||||||
<button class="uk-button uk-button-default" onclick="unselect()">Clear Selections</button>
|
<button class="uk-button uk-button-default" onclick="unselect()">Clear Selections</button>
|
||||||
<button class="uk-button uk-button-primary" id="download-btn" onclick="download()">Download Selected</button>
|
<button class="uk-button uk-button-primary" id="download-btn" onclick="download()">Download Selected</button>
|
||||||
<div id="download-spinner" uk-spinner class="uk-margin-left" hidden></div>
|
<div id="download-spinner" uk-spinner class="uk-margin-left" hidden></div>
|
||||||
</div>
|
</div>
|
||||||
<p class="uk-text-meta">Click on a table row to select the chapter. Drag your mouse over multiple rows to select them all. Hold Ctrl to make multiple non-adjacent selections.</p>
|
<p class="uk-text-meta">Click on a table row to select the chapter. Drag your mouse over multiple rows to select them all. Hold Ctrl to make multiple non-adjacent selections.</p>
|
||||||
</div>
|
</div>
|
||||||
<p id="filter-notification" hidden></p>
|
<p id="filter-notification" hidden></p>
|
||||||
<table class="uk-table uk-table-striped uk-overflow-auto" hidden>
|
<table class="uk-table uk-table-striped uk-overflow-auto" hidden>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>ID</th>
|
<th>ID</th>
|
||||||
<th>Title</th>
|
<th>Title</th>
|
||||||
<th>Language</th>
|
<th>Language</th>
|
||||||
<th>Group</th>
|
<th>Group</th>
|
||||||
<th>Volume</th>
|
<th>Volume</th>
|
||||||
<th>Chapter</th>
|
<th>Chapter</th>
|
||||||
<th>Timestamp</th>
|
<th>Timestamp</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<% content_for "script" do %>
|
<% content_for "script" do %>
|
||||||
<script>
|
<script>
|
||||||
var baseURL = "<%= mangadex_base_url %>".replace(/\/$/, "");
|
var baseURL = "<%= mangadex_base_url %>".replace(/\/$/, "");
|
||||||
</script>
|
</script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
|
||||||
<script src="<%= base_url %>js/alert.js"></script>
|
<script src="<%= base_url %>js/alert.js"></script>
|
||||||
<script src="<%= base_url %>js/download.js"></script>
|
<script src="<%= base_url %>js/download.js"></script>
|
||||||
<% end %>
|
<% end %>
|
||||||
+33
-33
@@ -1,43 +1,43 @@
|
|||||||
<h2 class=uk-title>Library</h2>
|
<h2 class=uk-title>Library</h2>
|
||||||
<p class="uk-text-meta"><%= titles.size %> titles found</p>
|
<p class="uk-text-meta"><%= titles.size %> titles found</p>
|
||||||
<div class="uk-grid-small" uk-grid>
|
<div class="uk-grid-small" uk-grid>
|
||||||
<div class="uk-margin-bottom uk-width-3-4@s">
|
<div class="uk-margin-bottom uk-width-3-4@s">
|
||||||
<form class="uk-search uk-search-default">
|
<form class="uk-search uk-search-default">
|
||||||
<span uk-search-icon></span>
|
<span uk-search-icon></span>
|
||||||
<input class="uk-search-input" type="search" placeholder="Search">
|
<input class="uk-search-input" type="search" placeholder="Search">
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-margin-bottom uk-width-1-4@s">
|
<div class="uk-margin-bottom uk-width-1-4@s">
|
||||||
<div class="uk-form-horizontal">
|
<div class="uk-form-horizontal">
|
||||||
<select class="uk-select" id="sort-select">
|
<select class="uk-select" id="sort-select">
|
||||||
<option id="name-up">â–˛ Name</option>
|
<option id="name-up">â–˛ Name</option>
|
||||||
<option id="name-down">â–Ľ Name</option>
|
<option id="name-down">â–Ľ Name</option>
|
||||||
<option id="date-up">â–˛ Date Modified</option>
|
<option id="date-up">â–˛ Date Modified</option>
|
||||||
<option id="date-down">â–Ľ Date Modified</option>
|
<option id="date-down">â–Ľ Date Modified</option>
|
||||||
<option id="progress-up">â–˛ Progress</option>
|
<option id="progress-up">â–˛ Progress</option>
|
||||||
<option id="progress-down">â–Ľ Progress</option>
|
<option id="progress-down">â–Ľ Progress</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="item-container" class="uk-child-width-1-4@m uk-child-width-1-2" uk-grid>
|
<div id="item-container" class="uk-child-width-1-4@m uk-child-width-1-2" uk-grid>
|
||||||
<%- titles.each_with_index do |t, i| -%>
|
<%- titles.each_with_index do |t, i| -%>
|
||||||
<div class="item" data-mtime="<%= t.mtime.to_unix %>" data-progress="<%= percentage[i] %>">
|
<div class="item" data-mtime="<%= t.mtime.to_unix %>" data-progress="<%= percentage[i] %>">
|
||||||
<a class="acard" href="<%= base_url %>book/<%= t.id %>">
|
<a class="acard" href="<%= base_url %>book/<%= t.id %>">
|
||||||
<div class="uk-card uk-card-default">
|
<div class="uk-card uk-card-default">
|
||||||
<div class="uk-card-media-top">
|
<div class="uk-card-media-top">
|
||||||
<img data-src="<%= t.cover_url %>" data-width data-height alt="" uk-img>
|
<img data-src="<%= t.cover_url %>" data-width data-height alt="" uk-img>
|
||||||
</div>
|
|
||||||
<div class="uk-card-body">
|
|
||||||
<%- if t.entries.size > 0 -%>
|
|
||||||
<div class="uk-card-badge uk-label"><%= (percentage[i] * 100).round(1) %>%</div>
|
|
||||||
<%- end -%>
|
|
||||||
<h3 class="uk-card-title break-word" data-title="<%= t.display_name.gsub("\"", """) %>"><%= t.display_name %></h3>
|
|
||||||
<p><%= t.size %> entries</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</a>
|
<div class="uk-card-body">
|
||||||
</div>
|
<%- if t.entries.size > 0 -%>
|
||||||
|
<div class="uk-card-badge uk-label"><%= (percentage[i] * 100).round(1) %>%</div>
|
||||||
|
<%- end -%>
|
||||||
|
<h3 class="uk-card-title break-word" data-title="<%= t.display_name.gsub("\"", """) %>"><%= t.display_name %></h3>
|
||||||
|
<p><%= t.size %> entries</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
<%- end -%>
|
<%- end -%>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -46,4 +46,4 @@
|
|||||||
<script src="<%= base_url %>js/dots.js"></script>
|
<script src="<%= base_url %>js/dots.js"></script>
|
||||||
<script src="<%= base_url %>js/search.js"></script>
|
<script src="<%= base_url %>js/search.js"></script>
|
||||||
<script src="<%= base_url %>js/sort-items.js"></script>
|
<script src="<%= base_url %>js/sort-items.js"></script>
|
||||||
<% end %>
|
<% end %>
|
||||||
+68
-65
@@ -1,76 +1,79 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="X-UA-Compatible" content="IE=edge">
|
|
||||||
<title>Mango</title>
|
|
||||||
<meta name="description" content="Mango Manga Server">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/css/uikit.min.css" />
|
|
||||||
<link rel="stylesheet" href="<%= base_url %>css/mango.css" />
|
|
||||||
<script defer src="<%= base_url %>js/fontawesome.min.js"></script>
|
|
||||||
<script defer src="<%= base_url %>js/solid.min.js"></script>
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
|
||||||
<script src="<%= base_url %>js/theme.js"></script>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
<head>
|
||||||
<div class="uk-offcanvas-content">
|
<meta charset="utf-8">
|
||||||
<div class="uk-navbar-container uk-navbar-transparent" uk-navbar="uk-navbar">
|
<meta name="X-UA-Compatible" content="IE=edge">
|
||||||
<div id="mobile-nav" uk-offcanvas="overlay: true">
|
<title>Mango</title>
|
||||||
<div class="uk-offcanvas-bar uk-flex uk-flex-column">
|
<meta name="description" content="Mango - Manga Server and Web Reader">
|
||||||
<ul class="uk-nav uk-nav-primary uk-nav-center uk-margin-auto-vertical">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<li><a href="<%= base_url %>">Home</a></li>
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/css/uikit.min.css" />
|
||||||
<% if is_admin %>
|
<link rel="stylesheet" href="<%= base_url %>css/mango.css" />
|
||||||
<li><a href="<%= base_url %>admin">Admin</a></li>
|
<link rel="icon" href="<%= base_url %>favicon.ico">
|
||||||
<li><a href="<%= base_url %>download">Download</a></li>
|
<script defer src="<%= base_url %>js/fontawesome.min.js"></script>
|
||||||
<% end %>
|
<script defer src="<%= base_url %>js/solid.min.js"></script>
|
||||||
<hr uk-divider>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
<li><a onclick="toggleTheme()"><i class="fas fa-adjust"></i></a></li>
|
<script src="<%= base_url %>js/theme.js"></script>
|
||||||
<li><a href="<%= base_url %>logout">Logout</a></li>
|
</head>
|
||||||
</ul>
|
|
||||||
</div>
|
<body>
|
||||||
</div>
|
<div class="uk-offcanvas-content">
|
||||||
</div>
|
<div class="uk-navbar-container uk-navbar-transparent" uk-navbar="uk-navbar">
|
||||||
</div>
|
<div id="mobile-nav" uk-offcanvas="overlay: true">
|
||||||
<div class="uk-position-top">
|
<div class="uk-offcanvas-bar uk-flex uk-flex-column">
|
||||||
<div class="uk-navbar-container uk-navbar-transparent" uk-navbar="uk-navbar">
|
<ul class="uk-nav uk-nav-primary uk-nav-center uk-margin-auto-vertical">
|
||||||
<div class="uk-navbar-left uk-hidden@s">
|
<li><a href="<%= base_url %>">Home</a></li>
|
||||||
<div class="uk-navbar-toggle" uk-navbar-toggle-icon="uk-navbar-toggle-icon" uk-toggle="target: #mobile-nav"></div>
|
<% if is_admin %>
|
||||||
</div>
|
<li><a href="<%= base_url %>admin">Admin</a></li>
|
||||||
<div class="uk-navbar-left uk-visible@s">
|
<li><a href="<%= base_url %>download">Download</a></li>
|
||||||
<a class="uk-navbar-item uk-logo" href="<%= base_url %>"><img src="<%= base_url %>img/icon.png"></a>
|
<% end %>
|
||||||
<ul class="uk-navbar-nav">
|
<hr uk-divider>
|
||||||
<li><a href="<%= base_url %>">Home</a></li>
|
<li><a onclick="toggleTheme()"><i class="fas fa-adjust"></i></a></li>
|
||||||
<% if is_admin %>
|
<li><a href="<%= base_url %>logout">Logout</a></li>
|
||||||
<li><a href="<%= base_url %>admin">Admin</a></li>
|
|
||||||
<li><a href="<%= base_url %>download">Download</a></li>
|
|
||||||
<% end %>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="uk-navbar-right uk-visible@s">
|
|
||||||
<ul class="uk-navbar-nav">
|
|
||||||
<li><a onclick="toggleTheme()"><i class="fas fa-adjust"></i></a></li>
|
|
||||||
<li><a href="<%= base_url %>logout">Logout</a></li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-section uk-section-small">
|
</div>
|
||||||
</div>
|
<div class="uk-position-top">
|
||||||
<div class="uk-section uk-section-small">
|
<div class="uk-navbar-container uk-navbar-transparent" uk-navbar="uk-navbar">
|
||||||
<div class="uk-container uk-container-small">
|
<div class="uk-navbar-left uk-hidden@s">
|
||||||
<div id="alert"></div>
|
<div class="uk-navbar-toggle" uk-navbar-toggle-icon="uk-navbar-toggle-icon" uk-toggle="target: #mobile-nav"></div>
|
||||||
<%= content %>
|
</div>
|
||||||
|
<div class="uk-navbar-left uk-visible@s">
|
||||||
|
<a class="uk-navbar-item uk-logo" href="<%= base_url %>"><img src="<%= base_url %>img/icon.png"></a>
|
||||||
|
<ul class="uk-navbar-nav">
|
||||||
|
<li><a href="<%= base_url %>">Home</a></li>
|
||||||
|
<% if is_admin %>
|
||||||
|
<li><a href="<%= base_url %>admin">Admin</a></li>
|
||||||
|
<li><a href="<%= base_url %>download">Download</a></li>
|
||||||
|
<% end %>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="uk-navbar-right uk-visible@s">
|
||||||
|
<ul class="uk-navbar-nav">
|
||||||
|
<li><a onclick="toggleTheme()"><i class="fas fa-adjust"></i></a></li>
|
||||||
|
<li><a href="<%= base_url %>logout">Logout</a></li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script>
|
</div>
|
||||||
setTheme(getTheme());
|
<div class="uk-section uk-section-small">
|
||||||
const base_url = "<%= base_url %>";
|
</div>
|
||||||
</script>
|
<div class="uk-section uk-section-small">
|
||||||
<script src="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/js/uikit.min.js"></script>
|
<div class="uk-container uk-container-small">
|
||||||
<script src="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/js/uikit-icons.min.js"></script>
|
<div id="alert"></div>
|
||||||
|
<%= content %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
setTheme(getTheme());
|
||||||
|
const base_url = "<%= base_url %>";
|
||||||
|
</script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/js/uikit.min.js"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/js/uikit-icons.min.js"></script>
|
||||||
|
|
||||||
|
<%= yield_content "script" %>
|
||||||
|
</body>
|
||||||
|
|
||||||
<%= yield_content "script" %>
|
|
||||||
</body>
|
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
+36
-33
@@ -1,43 +1,46 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="X-UA-Compatible" content="IE=edge">
|
<meta name="X-UA-Compatible" content="IE=edge">
|
||||||
<title>Mango</title>
|
<title>Mango</title>
|
||||||
<meta name="description" content="Mango Manga Server">
|
<meta name="description" content="Mango Manga Server">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/css/uikit.min.css" />
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/css/uikit.min.css" />
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
<script src="<%= base_url %>js/theme.js"></script>
|
<script src="<%= base_url %>js/theme.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="uk-section uk-flex uk-flex-middle uk-animation-fade" uk-height-viewport="">
|
<div class="uk-section uk-flex uk-flex-middle uk-animation-fade" uk-height-viewport="">
|
||||||
<div class="uk-width-1-1">
|
<div class="uk-width-1-1">
|
||||||
<div class="uk-container">
|
<div class="uk-container">
|
||||||
<div class="uk-grid-margin uk-grid uk-grid-stack" uk-grid="">
|
<div class="uk-grid-margin uk-grid uk-grid-stack" uk-grid="">
|
||||||
<div class="uk-width-1-1@m">
|
<div class="uk-width-1-1@m">
|
||||||
<div class="uk-margin uk-width-large uk-margin-auto uk-card uk-card-default uk-card-body uk-box-shadow-large">
|
<div class="uk-margin uk-width-large uk-margin-auto uk-card uk-card-default uk-card-body uk-box-shadow-large">
|
||||||
<h3 class="uk-card-title uk-text-center">Log In</h3>
|
<h3 class="uk-card-title uk-text-center">Log In</h3>
|
||||||
<form action="<%= base_url %>login" method="post">
|
<form action="<%= base_url %>login" method="post">
|
||||||
<div class="uk-margin">
|
<div class="uk-margin">
|
||||||
<div class="uk-inline uk-width-1-1"><span class="uk-form-icon" uk-icon="icon:user"></span><input class="uk-input uk-form-large" type="text" name="username"></div>
|
<div class="uk-inline uk-width-1-1"><span class="uk-form-icon" uk-icon="icon:user"></span><input class="uk-input uk-form-large" type="text" name="username"></div>
|
||||||
</div>
|
|
||||||
<div class="uk-margin">
|
|
||||||
<div class="uk-inline uk-width-1-1"><span class="uk-form-icon" uk-icon="icon:lock"></span><input class="uk-input uk-form-large" type="password" name="password"></div>
|
|
||||||
</div>
|
|
||||||
<div class="uk-margin"><button class="uk-button uk-button-primary uk-button-large uk-width-1-1">Login</button></div>
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="uk-margin">
|
||||||
|
<div class="uk-inline uk-width-1-1"><span class="uk-form-icon" uk-icon="icon:lock"></span><input class="uk-input uk-form-large" type="password" name="password"></div>
|
||||||
|
</div>
|
||||||
|
<div class="uk-margin"><button class="uk-button uk-button-primary uk-button-large uk-width-1-1">Login</button></div>
|
||||||
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script>
|
</div>
|
||||||
setTheme(getTheme());
|
<script>
|
||||||
</script>
|
setTheme(getTheme());
|
||||||
<script src="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/js/uikit.min.js"></script>
|
</script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/js/uikit-icons.min.js"></script>
|
<script src="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/js/uikit.min.js"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/js/uikit-icons.min.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
|
||||||
|
</html>
|
||||||
@@ -1 +1 @@
|
|||||||
<p class="uk-text-lead uk-text-center"><%= message %></p>
|
<p class="uk-text-lead uk-text-center"><%= message %></p>
|
||||||
+58
-56
@@ -1,68 +1,70 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html class="reader-bg">
|
<html class="reader-bg">
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="X-UA-Compatible" content="IE=edge">
|
|
||||||
<title>Mango</title>
|
|
||||||
<meta name="description" content="Mango Manga Server">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/css/uikit.min.css" />
|
|
||||||
<link rel="stylesheet" href="<%= base_url %>css/mango.css" />
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
<head>
|
||||||
<script src="<%= base_url %>js/theme.js"></script>
|
<meta charset="utf-8">
|
||||||
<div class="uk-section uk-section-default uk-section-small reader-bg">
|
<meta name="X-UA-Compatible" content="IE=edge">
|
||||||
<div class="uk-container uk-container-small">
|
<title>Mango</title>
|
||||||
<%- urls.each_with_index do |url, i| -%>
|
<meta name="description" content="Mango Manga Server">
|
||||||
<img class="uk-align-center" data-src="<%= url %>" data-width data-height uk-img id="<%= reader_urls[i] %>" onclick="showControl(<%= pages.to_a[i] %>);">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<%- end -%>
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/css/uikit.min.css" />
|
||||||
<%- if next_url -%>
|
<link rel="stylesheet" href="<%= base_url %>css/mango.css" />
|
||||||
<a class="next-url" href="<%= next_url %>"></a>
|
</head>
|
||||||
<%- end -%>
|
|
||||||
</div>
|
<body>
|
||||||
<%- if next_entry_url -%>
|
<script src="<%= base_url %>js/theme.js"></script>
|
||||||
<button id="next-btn" class="uk-align-center uk-button uk-button-primary" hidden onclick="redirect('<%= next_entry_url %>')">Next Entry</button>
|
<div class="uk-section uk-section-default uk-section-small reader-bg">
|
||||||
<%- else -%>
|
<div class="uk-container uk-container-small">
|
||||||
<button id="next-btn" class="uk-align-center uk-button uk-button-primary" hidden onclick="redirect('<%= exit_url %>')">Exit Reader</button>
|
<%- urls.each_with_index do |url, i| -%>
|
||||||
|
<img class="uk-align-center" data-src="<%= url %>" data-width data-height uk-img id="<%= reader_urls[i] %>" onclick="showControl(<%= pages.to_a[i] %>);">
|
||||||
|
<%- end -%>
|
||||||
|
<%- if next_url -%>
|
||||||
|
<a class="next-url" href="<%= next_url %>"></a>
|
||||||
<%- end -%>
|
<%- end -%>
|
||||||
</div>
|
</div>
|
||||||
|
<%- if next_entry_url -%>
|
||||||
|
<button id="next-btn" class="uk-align-center uk-button uk-button-primary" hidden onclick="redirect('<%= next_entry_url %>')">Next Entry</button>
|
||||||
|
<%- else -%>
|
||||||
|
<button id="next-btn" class="uk-align-center uk-button uk-button-primary" hidden onclick="redirect('<%= exit_url %>')">Exit Reader</button>
|
||||||
|
<%- end -%>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="hidden" hidden></div>
|
<div id="hidden" hidden></div>
|
||||||
|
|
||||||
<div id="modal-sections" class="uk-flex-top" uk-modal>
|
<div id="modal-sections" class="uk-flex-top" uk-modal>
|
||||||
<div class="uk-modal-dialog uk-margin-auto-vertical">
|
<div class="uk-modal-dialog uk-margin-auto-vertical">
|
||||||
<button class="uk-modal-close-default" type="button" uk-close></button>
|
<button class="uk-modal-close-default" type="button" uk-close></button>
|
||||||
<div class="uk-modal-header">
|
<div class="uk-modal-header">
|
||||||
<h3 class="uk-modal-title">Options</h3>
|
<h3 class="uk-modal-title">Options</h3>
|
||||||
|
</div>
|
||||||
|
<div class="uk-modal-body">
|
||||||
|
<div class="uk-margin">
|
||||||
|
<p id="progress-label"></p>
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-modal-body">
|
<div class="uk-margin">
|
||||||
<div class="uk-margin">
|
<label class="uk-form-label" for="form-stacked-select">Jump to page</label>
|
||||||
<p id="progress-label"></p>
|
<div class="uk-form-controls">
|
||||||
</div>
|
<select id="page-select" class="uk-select">
|
||||||
<div class="uk-margin">
|
<%- (1..entry.pages).each do |p| -%>
|
||||||
<label class="uk-form-label" for="form-stacked-select">Jump to page</label>
|
<option value="<%= p %>"><%= p %></option>
|
||||||
<div class="uk-form-controls">
|
<%- end -%>
|
||||||
<select id="page-select" class="uk-select">
|
</select>
|
||||||
<%- (1..entry.pages).each do |p| -%>
|
|
||||||
<option value="<%= p %>"><%= p %></option>
|
|
||||||
<%- end -%>
|
|
||||||
</select>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-modal-footer uk-text-right">
|
</div>
|
||||||
<button class="uk-button uk-button-danger" type="button" onclick="redirect('<%= exit_url %>')">Exit Reader</button>
|
<div class="uk-modal-footer uk-text-right">
|
||||||
</div>
|
<button class="uk-button uk-button-danger" type="button" onclick="redirect('<%= exit_url %>')">Exit Reader</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script>
|
</div>
|
||||||
const base_url = "<%= base_url %>"
|
<script>
|
||||||
</script>
|
const base_url = "<%= base_url %>"
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
</script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/js/uikit.min.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
<script src="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/js/uikit-icons.min.js"></script>
|
<script src="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/js/uikit.min.js"></script>
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/ScrollMagic.min.js"></script>
|
<script src="https://cdn.jsdelivr.net/npm/uikit@3.3.1/dist/js/uikit-icons.min.js"></script>
|
||||||
<script src="<%= base_url %>js/reader.js"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/ScrollMagic.min.js"></script>
|
||||||
</body>
|
<script src="<%= base_url %>js/reader.js"></script>
|
||||||
</html>
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
+103
-103
@@ -1,72 +1,72 @@
|
|||||||
<div>
|
<div>
|
||||||
<h2 class=uk-title><span><%= title.display_name %></span>
|
<h2 class=uk-title><span><%= title.display_name %></span>
|
||||||
|
|
||||||
<% if is_admin %>
|
<% if is_admin %>
|
||||||
<a onclick="edit()" class="uk-icon-button" uk-icon="icon:pencil"></a>
|
<a onclick="edit()" class="uk-icon-button" uk-icon="icon:pencil"></a>
|
||||||
<% end %>
|
<% end %>
|
||||||
</h2>
|
</h2>
|
||||||
</div>
|
</div>
|
||||||
<ul class="uk-breadcrumb">
|
<ul class="uk-breadcrumb">
|
||||||
<li><a href="<%= base_url %>">Library</a></li>
|
<li><a href="<%= base_url %>">Library</a></li>
|
||||||
<%- title.parents.each do |t| -%>
|
<%- title.parents.each do |t| -%>
|
||||||
<li><a href="<%= base_url %>book/<%= t.id %>"><%= t.display_name %></a></li>
|
<li><a href="<%= base_url %>book/<%= t.id %>"><%= t.display_name %></a></li>
|
||||||
<%- end -%>
|
<%- end -%>
|
||||||
<li class="uk-disabled"><a><%= title.display_name %></a></li>
|
<li class="uk-disabled"><a><%= title.display_name %></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<p class="uk-text-meta"><%= title.size %> entries found</p>
|
<p class="uk-text-meta"><%= title.size %> entries found</p>
|
||||||
<div class="uk-grid-small" uk-grid>
|
<div class="uk-grid-small" uk-grid>
|
||||||
<div class="uk-margin-bottom uk-width-3-4@s">
|
<div class="uk-margin-bottom uk-width-3-4@s">
|
||||||
<form class="uk-search uk-search-default">
|
<form class="uk-search uk-search-default">
|
||||||
<span uk-search-icon></span>
|
<span uk-search-icon></span>
|
||||||
<input class="uk-search-input" type="search" placeholder="Search">
|
<input class="uk-search-input" type="search" placeholder="Search">
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-margin-bottom uk-width-1-4@s">
|
<div class="uk-margin-bottom uk-width-1-4@s">
|
||||||
<div class="uk-form-horizontal">
|
<div class="uk-form-horizontal">
|
||||||
<select class="uk-select" id="sort-select">
|
<select class="uk-select" id="sort-select">
|
||||||
<option id="auto-up">â–˛ Auto</option>
|
<option id="auto-up">â–˛ Auto</option>
|
||||||
<option id="auto-down">â–Ľ Auto</option>
|
<option id="auto-down">â–Ľ Auto</option>
|
||||||
<option id="name-up">â–˛ Name</option>
|
<option id="name-up">â–˛ Name</option>
|
||||||
<option id="name-down">â–Ľ Name</option>
|
<option id="name-down">â–Ľ Name</option>
|
||||||
<option id="date-up">â–˛ Date Modified</option>
|
<option id="date-up">â–˛ Date Modified</option>
|
||||||
<option id="date-down">â–Ľ Date Modified</option>
|
<option id="date-down">â–Ľ Date Modified</option>
|
||||||
<option id="progress-up">â–˛ Progress</option>
|
<option id="progress-up">â–˛ Progress</option>
|
||||||
<option id="progress-down">â–Ľ Progress</option>
|
<option id="progress-down">â–Ľ Progress</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="item-container" class="uk-child-width-1-4@m uk-child-width-1-2" uk-grid>
|
<div id="item-container" class="uk-child-width-1-4@m uk-child-width-1-2" uk-grid>
|
||||||
<%- title.titles.each_with_index do |t, i| -%>
|
<%- title.titles.each_with_index do |t, i| -%>
|
||||||
<div class="item" data-mtime="<%= t.mtime.to_unix %>" data-progress="0.0">
|
<div class="item" data-mtime="<%= t.mtime.to_unix %>" data-progress="0.0">
|
||||||
<a class="acard" href="<%= base_url %>book/<%= t.id %>">
|
<a class="acard" href="<%= base_url %>book/<%= t.id %>">
|
||||||
<div class="uk-card uk-card-default">
|
<div class="uk-card uk-card-default">
|
||||||
<div class="uk-card-media-top">
|
<div class="uk-card-media-top">
|
||||||
<img data-src="<%= t.cover_url %>" data-width data-height alt="" uk-img>
|
<img data-src="<%= t.cover_url %>" data-width data-height alt="" uk-img>
|
||||||
</div>
|
|
||||||
<div class="uk-card-body">
|
|
||||||
<h3 class="uk-card-title break-word" data-title="<%= t.display_name.gsub("\"", """) %>"><%= t.display_name %></h3>
|
|
||||||
<p><%= t.size %> entries</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</a>
|
<div class="uk-card-body">
|
||||||
</div>
|
<h3 class="uk-card-title break-word" data-title="<%= t.display_name.gsub("\"", """) %>"><%= t.display_name %></h3>
|
||||||
<%- end -%>
|
<p><%= t.size %> entries</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<%- end -%>
|
||||||
<%- title.entries.each_with_index do |e, i| -%>
|
<%- title.entries.each_with_index do |e, i| -%>
|
||||||
<div class="item" data-mtime="<%= e.mtime.to_unix %>" data-progress="<%= percentage[i] %>" id="<%= e.id %>">
|
<div class="item" data-mtime="<%= e.mtime.to_unix %>" data-progress="<%= percentage[i] %>" id="<%= e.id %>">
|
||||||
<a class="acard">
|
<a class="acard">
|
||||||
<div class="uk-card uk-card-default" onclick="showModal("<%= e.encoded_path %>", '<%= e.pages %>', <%= (percentage[i] * 100).round(1) %>, "<%= title.encoded_display_name %>", "<%= e.encoded_display_name %>", '<%= e.title_id %>', '<%= e.id %>')">
|
<div class="uk-card uk-card-default" onclick="showModal("<%= e.encoded_path %>", '<%= e.pages %>', <%= (percentage[i] * 100).round(1) %>, "<%= title.encoded_display_name %>", "<%= e.encoded_display_name %>", '<%= e.title_id %>', '<%= e.id %>')">
|
||||||
<div class="uk-card-media-top">
|
<div class="uk-card-media-top">
|
||||||
<img data-src="<%= e.cover_url %>" alt="" data-width data-height uk-img>
|
<img data-src="<%= e.cover_url %>" alt="" data-width data-height uk-img>
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-card-body">
|
<div class="uk-card-body">
|
||||||
<div class="uk-card-badge uk-label"><%= (percentage[i] * 100).round(1) %>%</div>
|
<div class="uk-card-badge uk-label"><%= (percentage[i] * 100).round(1) %>%</div>
|
||||||
<h3 class="uk-card-title break-word" data-title="<%= e.display_name.gsub("\"", """) %>"><%= e.display_name %></h3>
|
<h3 class="uk-card-title break-word" data-title="<%= e.display_name.gsub("\"", """) %>"><%= e.display_name %></h3>
|
||||||
<p><%= e.pages %> pages</p>
|
<p><%= e.pages %> pages</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<%- end -%>
|
<%- end -%>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -74,14 +74,14 @@
|
|||||||
<div class="uk-modal-dialog uk-margin-auto-vertical">
|
<div class="uk-modal-dialog uk-margin-auto-vertical">
|
||||||
<button class="uk-modal-close-default" type="button" uk-close></button>
|
<button class="uk-modal-close-default" type="button" uk-close></button>
|
||||||
<div class="uk-modal-header">
|
<div class="uk-modal-header">
|
||||||
<div>
|
<div>
|
||||||
<h3 class="uk-modal-title break-word" id="modal-title"><span></span>
|
<h3 class="uk-modal-title break-word" id="modal-title"><span></span>
|
||||||
|
|
||||||
<% if is_admin %>
|
<% if is_admin %>
|
||||||
<a class="uk-icon-button" uk-icon="icon:pencil"></a>
|
<a class="uk-icon-button" uk-icon="icon:pencil"></a>
|
||||||
<% end %>
|
<% end %>
|
||||||
</h3>
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
<p class="uk-text-meta uk-margin-remove-bottom break-word" id="path-text"></p>
|
<p class="uk-text-meta uk-margin-remove-bottom break-word" id="path-text"></p>
|
||||||
<p class="uk-text-meta uk-margin-remove-top" id="pages-text"></p>
|
<p class="uk-text-meta uk-margin-remove-top" id="pages-text"></p>
|
||||||
</div>
|
</div>
|
||||||
@@ -104,47 +104,47 @@
|
|||||||
<div class="uk-modal-dialog uk-margin-auto-vertical">
|
<div class="uk-modal-dialog uk-margin-auto-vertical">
|
||||||
<button class="uk-modal-close-default" type="button" uk-close></button>
|
<button class="uk-modal-close-default" type="button" uk-close></button>
|
||||||
<div class="uk-modal-header">
|
<div class="uk-modal-header">
|
||||||
<div>
|
<div>
|
||||||
<h3 class="uk-modal-title break-word" id="modal-title">Edit</h3>
|
<h3 class="uk-modal-title break-word">Edit</h3>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-modal-body">
|
<div class="uk-modal-body">
|
||||||
<div class="uk-margin">
|
<div class="uk-margin">
|
||||||
<label class="uk-form-label" for="display-name">Display Name</label>
|
<label class="uk-form-label" for="display-name">Display Name</label>
|
||||||
<div class="uk-inline">
|
<div class="uk-inline">
|
||||||
<a class="uk-form-icon uk-form-icon-flip" uk-icon="icon:check"></a>
|
<a class="uk-form-icon uk-form-icon-flip" uk-icon="icon:check"></a>
|
||||||
<input class="uk-input" type="text" name="display-name" id="display-name-field">
|
<input class="uk-input" type="text" name="display-name" id="display-name-field">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-margin">
|
<div class="uk-margin">
|
||||||
<label class="uk-form-label">Cover Image</label>
|
<label class="uk-form-label">Cover Image</label>
|
||||||
<div class="uk-grid">
|
<div class="uk-grid">
|
||||||
<div class="uk-width-1-2@s">
|
<div class="uk-width-1-2@s">
|
||||||
<img id="cover" data-title-cover="<%= title.cover_url %>" alt="" data-width data-height uk-img>
|
<img id="cover" data-title-cover="<%= title.cover_url %>" alt="" data-width data-height uk-img>
|
||||||
</div>
|
</div>
|
||||||
<div class="uk-width-1-2@s">
|
<div class="uk-width-1-2@s">
|
||||||
<div id="cover-upload" class="upload-field uk-placeholder uk-text-center uk-flex uk-flex-middle" data-title-id="<%= title.id %>">
|
<div id="cover-upload" class="upload-field uk-placeholder uk-text-center uk-flex uk-flex-middle" data-title-id="<%= title.id %>">
|
||||||
<div>
|
<div>
|
||||||
<span uk-icon="icon: cloud-upload"></span>
|
<span uk-icon="icon: cloud-upload"></span>
|
||||||
<span class="uk-text-middle">Upload a cover image by dropping it here or</span>
|
<span class="uk-text-middle">Upload a cover image by dropping it here or</span>
|
||||||
<div uk-form-custom>
|
<div uk-form-custom>
|
||||||
<input type="file" accept="image/jpeg, image/png">
|
<input type="file" accept="image/jpeg, image/png">
|
||||||
<span class="uk-link">selecting one</span>
|
<span class="uk-link">selecting one</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<progress id="upload-progress" class="uk-progress" value="0" max="100" hidden></progress>
|
<progress id="upload-progress" class="uk-progress" value="0" max="100" hidden></progress>
|
||||||
</div>
|
</div>
|
||||||
<div id="title-progress-control" hidden>
|
<div id="title-progress-control" hidden>
|
||||||
<label class="uk-form-label">Progress</label>
|
<label class="uk-form-label">Progress</label>
|
||||||
<p class="uk-margin-remove-vertical">
|
<p class="uk-margin-remove-vertical">
|
||||||
<button id="read-btn" class="uk-button uk-button-default" onclick="updateProgress('<%= title.id %>', null, 1)">Mark all as read (100%)</button>
|
<button id="read-btn" class="uk-button uk-button-default" onclick="updateProgress('<%= title.id %>', null, 1)">Mark all as read (100%)</button>
|
||||||
<button id="unread-btn" class="uk-button uk-button-default" onclick="updateProgress('<%= title.id %>', null, 0)">Mark all as unread (0%)</button>
|
<button id="unread-btn" class="uk-button uk-button-default" onclick="updateProgress('<%= title.id %>', null, 0)">Mark all as unread (0%)</button>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
+6
-14
@@ -2,11 +2,7 @@
|
|||||||
|
|
||||||
<div class="uk-margin">
|
<div class="uk-margin">
|
||||||
<label class="uk-form-label" for="form-stacked-text">Username</label>
|
<label class="uk-form-label" for="form-stacked-text">Username</label>
|
||||||
<input class="uk-input" type="text" name="username"
|
<input class="uk-input" type="text" name="username" <%- if username -%> value=<%= username %> <%- end -%>>
|
||||||
<%- if username -%>
|
|
||||||
value=<%= username %>
|
|
||||||
<%- end -%>
|
|
||||||
>
|
|
||||||
</div>
|
</div>
|
||||||
<%- if new_user -%>
|
<%- if new_user -%>
|
||||||
<div class="uk-margin">
|
<div class="uk-margin">
|
||||||
@@ -16,11 +12,7 @@
|
|||||||
<%- end -%>
|
<%- end -%>
|
||||||
<div class="uk-margin">
|
<div class="uk-margin">
|
||||||
<label class="uk-form-label" for="form-stacked-text">Admin Access</label>
|
<label class="uk-form-label" for="form-stacked-text">Admin Access</label>
|
||||||
<input class="uk-checkbox" type="checkbox" name="admin"
|
<input class="uk-checkbox" type="checkbox" name="admin" <%- if admin == true -%> checked <%- end -%>>
|
||||||
<%- if admin == true -%>
|
|
||||||
checked
|
|
||||||
<%- end -%>
|
|
||||||
>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<%- if !new_user -%>
|
<%- if !new_user -%>
|
||||||
@@ -43,12 +35,12 @@
|
|||||||
var username;
|
var username;
|
||||||
var error;
|
var error;
|
||||||
<%- if !new_user -%>
|
<%- if !new_user -%>
|
||||||
username = '/<%= username %>';
|
username = '/<%= username %>';
|
||||||
<%- end -%>
|
<%- end -%>
|
||||||
<%- if error -%>
|
<%- if error -%>
|
||||||
error = '<%= error %>';
|
error = '<%= error %>';
|
||||||
<%- end -%>
|
<%- end -%>
|
||||||
</script>
|
</script>
|
||||||
<script src="<%= base_url %>js/alert.js"></script>
|
<script src="<%= base_url %>js/alert.js"></script>
|
||||||
<script src="<%= base_url %>js/user-edit.js"></script>
|
<script src="<%= base_url %>js/user-edit.js"></script>
|
||||||
<% end %>
|
<% end %>
|
||||||
+11
-11
@@ -8,16 +8,16 @@
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<%- users.each do |u| -%>
|
<%- users.each do |u| -%>
|
||||||
<tr>
|
<tr>
|
||||||
<td><%= u[0] %></td>
|
<td><%= u[0] %></td>
|
||||||
<td><%= u[1] %></td>
|
<td><%= u[1] %></td>
|
||||||
<td>
|
<td>
|
||||||
<a href="<%= base_url %>admin/user/edit?username=<%= u[0] %>&admin=<%= u[1] %>" uk-icon="file-edit"></a>
|
<a href="<%= base_url %>admin/user/edit?username=<%= u[0] %>&admin=<%= u[1] %>" uk-icon="file-edit"></a>
|
||||||
<%- if u[0] != username %>
|
<%- if u[0] != username %>
|
||||||
<a href="#" onclick="remove('<%= u[0] %>');return false;" uk-icon="trash"></a>
|
<a href="#" onclick="remove('<%= u[0] %>');return false;" uk-icon="trash"></a>
|
||||||
<%- end %>
|
<%- end %>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<%- end -%>
|
<%- end -%>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
@@ -28,4 +28,4 @@
|
|||||||
<% content_for "script" do %>
|
<% content_for "script" do %>
|
||||||
<script src="<%= base_url %>js/alert.js"></script>
|
<script src="<%= base_url %>js/alert.js"></script>
|
||||||
<script src="<%= base_url %>js/user.js"></script>
|
<script src="<%= base_url %>js/user.js"></script>
|
||||||
<% end %>
|
<% end %>
|
||||||
Reference in New Issue
Block a user