mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-04 10:29:34 +00:00
Include archive infos in item detail
This commit is contained in:
parent
cbc95b11e6
commit
7e6eec9533
@ -1897,6 +1897,7 @@ components:
|
||||
- updated
|
||||
- attachments
|
||||
- sources
|
||||
- archives
|
||||
- tags
|
||||
properties:
|
||||
id:
|
||||
@ -1947,6 +1948,10 @@ components:
|
||||
type: array
|
||||
items:
|
||||
$ref: "#/components/schemas/AttachmentSource"
|
||||
archives:
|
||||
type: array
|
||||
items:
|
||||
$ref: "#/components/schemas/AttachmentSource"
|
||||
tags:
|
||||
type: array
|
||||
items:
|
||||
|
@ -86,6 +86,7 @@ trait Conversions {
|
||||
data.item.notes,
|
||||
data.attachments.map((mkAttachment(data) _).tupled).toList,
|
||||
data.sources.map((mkAttachmentSource _).tupled).toList,
|
||||
data.archives.map((mkAttachmentArchive _).tupled).toList,
|
||||
data.tags.map(mkTag).toList
|
||||
)
|
||||
|
||||
@ -97,6 +98,9 @@ trait Conversions {
|
||||
def mkAttachmentSource(ra: RAttachmentSource, m: FileMeta): AttachmentSource =
|
||||
AttachmentSource(ra.id, ra.name, m.length, MimeType.unsafe(m.mimetype.asString))
|
||||
|
||||
def mkAttachmentArchive(ra: RAttachmentArchive, m: FileMeta): AttachmentSource =
|
||||
AttachmentSource(ra.id, ra.name, m.length, MimeType.unsafe(m.mimetype.asString))
|
||||
|
||||
// item list
|
||||
|
||||
def mkQuery(m: ItemSearch, coll: Ident): OItem.Query =
|
||||
|
@ -24,7 +24,8 @@ object QItem {
|
||||
inReplyTo: Option[IdRef],
|
||||
tags: Vector[RTag],
|
||||
attachments: Vector[(RAttachment, FileMeta)],
|
||||
sources: Vector[(RAttachmentSource, FileMeta)]
|
||||
sources: Vector[(RAttachmentSource, FileMeta)],
|
||||
archives: Vector[(RAttachmentArchive, FileMeta)]
|
||||
) {
|
||||
|
||||
def filterCollective(coll: Ident): Option[ItemData] =
|
||||
@ -76,6 +77,7 @@ object QItem {
|
||||
.option
|
||||
val attachs = RAttachment.findByItemWithMeta(id)
|
||||
val sources = RAttachmentSource.findByItemWithMeta(id)
|
||||
val archives = RAttachmentArchive.findByItemWithMeta(id)
|
||||
|
||||
val tags = RTag.findByItem(id)
|
||||
|
||||
@ -83,8 +85,9 @@ object QItem {
|
||||
data <- q
|
||||
att <- attachs
|
||||
srcs <- sources
|
||||
arch <- archives
|
||||
ts <- tags
|
||||
} yield data.map(d => ItemData(d._1, d._2, d._3, d._4, d._5, d._6, ts, att, srcs))
|
||||
} yield data.map(d => ItemData(d._1, d._2, d._3, d._4, d._5, d._6, ts, att, srcs, arch))
|
||||
}
|
||||
|
||||
case class ListItem(
|
||||
|
Loading…
x
Reference in New Issue
Block a user