Add shallow option to library API endpoints

This commit is contained in:
Alex Ling 2021-09-13 10:18:07 +00:00
parent d5847bb105
commit a9520d6f26
4 changed files with 50 additions and 78 deletions

View File

@ -46,28 +46,18 @@ class Entry
file.close file.close
end end
def to_slim_json : String def build_json(json : JSON::Builder, *, slim = false)
JSON.build do |json|
json.object do
{% for str in ["zip_path", "title", "size", "id"] %}
json.field {{str}}, @{{str.id}}
{% end %}
json.field "title_id", @book.id
json.field "pages" { json.number @pages }
end
end
end
def to_json(json : JSON::Builder)
json.object do json.object do
{% for str in ["zip_path", "title", "size", "id"] %} {% for str in ["zip_path", "title", "size", "id"] %}
json.field {{str}}, @{{str.id}} json.field {{str}}, @{{str.id}}
{% end %} {% end %}
json.field "title_id", @book.id json.field "title_id", @book.id
json.field "display_name", @book.display_name @title
json.field "cover_url", cover_url
json.field "pages" { json.number @pages } json.field "pages" { json.number @pages }
json.field "mtime" { json.number @mtime.to_unix } unless slim
json.field "display_name", @book.display_name @title
json.field "cover_url", cover_url
json.field "mtime" { json.number @mtime.to_unix }
end
end end
end end

View File

@ -65,26 +65,18 @@ class Library
titles.flat_map &.deep_entries titles.flat_map &.deep_entries
end end
def to_slim_json : String def build_json(json : JSON::Builder, *, slim = false, shallow = false)
JSON.build do |json|
json.object do
json.field "dir", @dir
json.field "titles" do
json.array do
self.titles.each do |title|
json.raw title.to_slim_json
end
end
end
end
end
end
def to_json(json : JSON::Builder)
json.object do json.object do
json.field "dir", @dir json.field "dir", @dir
json.field "titles" do json.field "titles" do
json.raw self.titles.to_json json.array do
self.titles.each do |title|
raw = JSON.build do |j|
title.build_json j, slim: slim, shallow: shallow
end
json.raw raw
end
end
end end
end end
end end

View File

@ -63,24 +63,35 @@ class Title
end end
end end
def to_slim_json : String def build_json(json : JSON::Builder, *, slim = false, shallow = false)
JSON.build do |json| json.object do
json.object do {% for str in ["dir", "title", "id"] %}
{% for str in ["dir", "title", "id"] %}
json.field {{str}}, @{{str.id}} json.field {{str}}, @{{str.id}}
{% end %} {% end %}
json.field "signature" { json.number @signature } json.field "signature" { json.number @signature }
unless slim
json.field "display_name", display_name
json.field "cover_url", cover_url
json.field "mtime" { json.number @mtime.to_unix }
end
unless shallow
json.field "titles" do json.field "titles" do
json.array do json.array do
self.titles.each do |title| self.titles.each do |title|
json.raw title.to_slim_json raw = JSON.build do |j|
title.build_json j, slim: slim, shallow: shallow
end
json.raw raw
end end
end end
end end
json.field "entries" do json.field "entries" do
json.array do json.array do
@entries.each do |entry| @entries.each do |entry|
json.raw entry.to_slim_json raw = JSON.build do |j|
entry.build_json j, slim: slim
end
json.raw raw
end end
end end
end end
@ -98,34 +109,6 @@ class Title
end end
end end
def to_json(json : JSON::Builder)
json.object do
{% for str in ["dir", "title", "id"] %}
json.field {{str}}, @{{str.id}}
{% end %}
json.field "signature" { json.number @signature }
json.field "display_name", display_name
json.field "cover_url", cover_url
json.field "mtime" { json.number @mtime.to_unix }
json.field "titles" do
json.raw self.titles.to_json
end
json.field "entries" do
json.raw @entries.to_json
end
json.field "parents" do
json.array do
self.parents.each do |title|
json.object do
json.field "title", title.title
json.field "id", title.id
end
end
end
end
end
end
def titles def titles
@title_ids.map { |tid| Library.default.get_title! tid } @title_ids.map { |tid| Library.default.get_title! tid }
end end

View File

@ -133,10 +133,12 @@ struct APIRouter
end end
Koa.describe "Returns the book with title `tid`", <<-MD Koa.describe "Returns the book with title `tid`", <<-MD
Supply the `tid` query parameter to strip away "display_name", "cover_url", and "mtime" from the returned object to speed up the loading time - Supply the `slim` query parameter to strip away "display_name", "cover_url", and "mtime" from the returned object to speed up the loading time
- Supply the `shallow` query parameter to get only the title information, without the list of entries and nested titles
MD MD
Koa.path "tid", desc: "Title ID" Koa.path "tid", desc: "Title ID"
Koa.query "slim" Koa.query "slim"
Koa.query "shallow"
Koa.response 200, schema: "title" Koa.response 200, schema: "title"
Koa.response 404, "Title not found" Koa.response 404, "Title not found"
Koa.tag "library" Koa.tag "library"
@ -146,10 +148,11 @@ struct APIRouter
title = Library.default.get_title tid title = Library.default.get_title tid
raise "Title ID `#{tid}` not found" if title.nil? raise "Title ID `#{tid}` not found" if title.nil?
if env.params.query["slim"]? slim = !env.params.query["slim"]?.nil?
send_json env, title.to_slim_json shallow = !env.params.query["shallow"]?.nil?
else
send_json env, title.to_json json = JSON.build do |j|
title.build_json j, slim: slim, shallow: shallow
end end
rescue e rescue e
Logger.error e Logger.error e
@ -159,20 +162,24 @@ struct APIRouter
end end
Koa.describe "Returns the entire library with all titles and entries", <<-MD Koa.describe "Returns the entire library with all titles and entries", <<-MD
Supply the `tid` query parameter to strip away "display_name", "cover_url", and "mtime" from the returned object to speed up the loading time - Supply the `slim` query parameter to strip away "display_name", "cover_url", and "mtime" from the returned object to speed up the loading time
- Supply the `shallow` query parameter to get only the top-level titles, without the nested titles and entries
MD MD
Koa.query "slim" Koa.query "slim"
Koa.query "shallow"
Koa.response 200, schema: { Koa.response 200, schema: {
"dir" => String, "dir" => String,
"titles" => ["title"], "titles" => ["title"],
} }
Koa.tag "library" Koa.tag "library"
get "/api/library" do |env| get "/api/library" do |env|
if env.params.query["slim"]? slim = !env.params.query["slim"]?.nil?
send_json env, Library.default.to_slim_json shallow = !env.params.query["shallow"]?.nil?
else
send_json env, Library.default.to_json json = JSON.build do |j|
Library.default.build_json j, slim: slim, shallow: shallow
end end
send_json env, json
end end
Koa.describe "Triggers a library scan" Koa.describe "Triggers a library scan"