mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-03-01 05:29:41 +00:00
Update routes/controllers/db structure
This commit is contained in:
parent
258b9ec54e
commit
b62e88c4ed
7 changed files with 306 additions and 282 deletions
|
|
@ -1,265 +0,0 @@
|
|||
const { Sequelize } = require('sequelize')
|
||||
const Database = require('../Database')
|
||||
|
||||
class LibraryItemController {
|
||||
constructor() { }
|
||||
|
||||
// Example get library item full, expanded, minified
|
||||
async get(req, res) {
|
||||
const key = req.query.minified == 1 ? 'minified' : req.query.expanded == 1 ? 'expanded' : 'full'
|
||||
const include = {
|
||||
minified: [
|
||||
{
|
||||
model: Database.models.book,
|
||||
attributes: [
|
||||
'id', 'title', 'subtitle', 'publishedYear', 'publishedDate', 'publisher', 'description', 'isbn', 'asin', 'language', 'explicit',
|
||||
[Sequelize.literal('(SELECT COUNT(*) FROM "audioTracks" WHERE "audioTracks"."mediaItemId" = book.id)'), 'numAudioTracks'],
|
||||
[Sequelize.literal('(SELECT COUNT(*) FROM "bookChapters" WHERE "bookChapters"."bookId" = book.id)'), 'numChapters']
|
||||
],
|
||||
include: [
|
||||
{
|
||||
model: Database.models.genre,
|
||||
attributes: ['id', 'name'],
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.tag,
|
||||
attributes: ['id', 'name'],
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.person,
|
||||
as: 'authors',
|
||||
attributes: ['id', 'name'],
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.person,
|
||||
as: 'narrators',
|
||||
attributes: ['id', 'name'],
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.series,
|
||||
attributes: ['id', 'name'],
|
||||
through: {
|
||||
attributes: ['sequence']
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
model: Database.models.podcast,
|
||||
attributes: [
|
||||
'id', 'title', 'author', 'releaseDate', 'feedURL', 'imageURL', 'description', 'itunesPageURL', 'itunesId', 'itunesArtistId', 'language', 'podcastType', 'explicit', 'autoDownloadEpisodes',
|
||||
[Sequelize.literal('(SELECT COUNT(*) FROM "podcastEpisodes" WHERE "podcastEpisodes"."podcastId" = podcast.id)'), 'numPodcastEpisodes']
|
||||
],
|
||||
include: [
|
||||
{
|
||||
model: Database.models.genre,
|
||||
attributes: ['id', 'name'],
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.tag,
|
||||
attributes: ['id', 'name'],
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
]
|
||||
}
|
||||
],
|
||||
full: [
|
||||
{
|
||||
model: Database.models.book,
|
||||
include: [
|
||||
{
|
||||
model: Database.models.audioTrack
|
||||
},
|
||||
{
|
||||
model: Database.models.genre,
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.tag,
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.person,
|
||||
as: 'authors',
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.person,
|
||||
as: 'narrators',
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.series,
|
||||
through: {
|
||||
attributes: ['sequence']
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.bookChapter
|
||||
},
|
||||
{
|
||||
model: Database.models.eBookFile,
|
||||
include: 'fileMetadata'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
model: Database.models.podcast,
|
||||
include: [
|
||||
{
|
||||
model: Database.models.podcastEpisode,
|
||||
include: {
|
||||
model: Database.models.audioTrack
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.genre,
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.tag,
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
]
|
||||
}
|
||||
],
|
||||
expanded: [
|
||||
{
|
||||
model: Database.models.book,
|
||||
include: [
|
||||
{
|
||||
model: Database.models.fileMetadata,
|
||||
as: 'imageFile'
|
||||
},
|
||||
{
|
||||
model: Database.models.audioTrack,
|
||||
include: {
|
||||
model: Database.models.mediaFile,
|
||||
include: [
|
||||
'fileMetadata',
|
||||
'mediaStreams'
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.genre,
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.tag,
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.person,
|
||||
as: 'authors',
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.person,
|
||||
as: 'narrators',
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.series,
|
||||
through: {
|
||||
attributes: ['sequence']
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.bookChapter
|
||||
},
|
||||
{
|
||||
model: Database.models.eBookFile,
|
||||
include: 'fileMetadata'
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
model: Database.models.podcast,
|
||||
include: [
|
||||
{
|
||||
model: Database.models.fileMetadata,
|
||||
as: 'imageFile'
|
||||
},
|
||||
{
|
||||
model: Database.models.podcastEpisode,
|
||||
include: {
|
||||
model: Database.models.audioTrack,
|
||||
include: {
|
||||
model: Database.models.mediaFile,
|
||||
include: [
|
||||
'fileMetadata',
|
||||
'mediaStreams'
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.genre,
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
{
|
||||
model: Database.models.tag,
|
||||
through: {
|
||||
attributes: []
|
||||
}
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
model: Database.models.libraryFile,
|
||||
include: 'fileMetadata'
|
||||
},
|
||||
{
|
||||
model: Database.models.libraryFolder,
|
||||
include: 'library'
|
||||
}
|
||||
]
|
||||
}
|
||||
const LibraryItem = await Database.models.libraryItem.findByPk(req.params.id, {
|
||||
include: include[key]
|
||||
})
|
||||
|
||||
res.json(LibraryItem)
|
||||
}
|
||||
}
|
||||
module.exports = new LibraryItemController()
|
||||
18
server/controllers2/item.controller.js
Normal file
18
server/controllers2/item.controller.js
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
const itemDb = require('../db/item.db')
|
||||
|
||||
const getLibraryItem = async (req, res) => {
|
||||
let libraryItem = null
|
||||
if (req.query.minified == 1) {
|
||||
libraryItem = await itemDb.getLibraryItemMinified(req.params.id)
|
||||
} else if (req.query.expanded == 1) {
|
||||
libraryItem = await itemDb.getLibraryItemExpanded(req.params.id)
|
||||
} else {
|
||||
libraryItem = await itemDb.getLibraryItemFull(req.params.id)
|
||||
}
|
||||
|
||||
res.json(libraryItem)
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
getLibraryItem
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue