mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 02:49:32 +00:00
Return a 404 if a source was not found when checking a file
This commit is contained in:
parent
b0cdb35375
commit
f7eed33545
@ -55,7 +55,7 @@ trait OItemSearch[F[_]] {
|
||||
|
||||
def findByFileCollective(checksum: String, collective: Ident): F[Vector[RItem]]
|
||||
|
||||
def findByFileSource(checksum: String, sourceId: Ident): F[Vector[RItem]]
|
||||
def findByFileSource(checksum: String, sourceId: Ident): F[Option[Vector[RItem]]]
|
||||
|
||||
}
|
||||
|
||||
@ -280,11 +280,11 @@ object OItemSearch {
|
||||
def findByFileCollective(checksum: String, collective: Ident): F[Vector[RItem]] =
|
||||
store.transact(QItem.findByChecksum(checksum, collective, Set.empty))
|
||||
|
||||
def findByFileSource(checksum: String, sourceId: Ident): F[Vector[RItem]] =
|
||||
def findByFileSource(checksum: String, sourceId: Ident): F[Option[Vector[RItem]]] =
|
||||
store.transact((for {
|
||||
coll <- OptionT(RSource.findCollective(sourceId))
|
||||
items <- OptionT.liftF(QItem.findByChecksum(checksum, coll, Set.empty))
|
||||
} yield items).getOrElse(Vector.empty))
|
||||
} yield items).value)
|
||||
|
||||
})
|
||||
}
|
||||
|
@ -43,7 +43,7 @@ object CheckFileRoutes {
|
||||
HttpRoutes.of { case GET -> Root / Ident(id) / checksum =>
|
||||
for {
|
||||
items <- backend.itemSearch.findByFileSource(checksum, id)
|
||||
resp <- Ok(convert(items))
|
||||
resp <- items.map(convert).map(Ok(_)).getOrElse(NotFound())
|
||||
} yield resp
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user