mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Merge pull request #940 from eikek/fix/set-folder-on-process
Set folder on process
This commit is contained in:
commit
bf75662e82
@ -12,6 +12,7 @@ import cats.implicits._
|
|||||||
import docspell.backend.ops.OItem
|
import docspell.backend.ops.OItem
|
||||||
import docspell.common._
|
import docspell.common._
|
||||||
import docspell.joex.scheduler.Task
|
import docspell.joex.scheduler.Task
|
||||||
|
import docspell.store.UpdateResult
|
||||||
|
|
||||||
object SetGivenData {
|
object SetGivenData {
|
||||||
type Args = ProcessItemArgs
|
type Args = ProcessItemArgs
|
||||||
@ -46,7 +47,12 @@ object SetGivenData {
|
|||||||
e <- ops.setFolder(itemId, folderId, collective).attempt
|
e <- ops.setFolder(itemId, folderId, collective).attempt
|
||||||
_ <- e.fold(
|
_ <- e.fold(
|
||||||
ex => ctx.logger.warn(s"Error setting folder: ${ex.getMessage}"),
|
ex => ctx.logger.warn(s"Error setting folder: ${ex.getMessage}"),
|
||||||
_ => ().pure[F]
|
res =>
|
||||||
|
res match {
|
||||||
|
case UpdateResult.Failure(ex) =>
|
||||||
|
ctx.logger.warn(s"Error setting folder: ${ex.getMessage}")
|
||||||
|
case _ => ().pure[F]
|
||||||
|
}
|
||||||
)
|
)
|
||||||
} yield data
|
} yield data
|
||||||
}
|
}
|
||||||
|
@ -5073,7 +5073,8 @@ components:
|
|||||||
A direction can be given, `Incoming` is used if not specified.
|
A direction can be given, `Incoming` is used if not specified.
|
||||||
|
|
||||||
A folderId can be given, the item is placed into this folder
|
A folderId can be given, the item is placed into this folder
|
||||||
after creation.
|
after creation. It may be the exact id of the folder or its
|
||||||
|
name.
|
||||||
|
|
||||||
The `fileFilter` is an optional glob for filtering files to
|
The `fileFilter` is an optional glob for filtering files to
|
||||||
import. Only applicable if archive files are uploaded. It
|
import. Only applicable if archive files are uploaded. It
|
||||||
|
@ -74,6 +74,25 @@ object RFolder {
|
|||||||
sql.query[RFolder].option
|
sql.query[RFolder].option
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def requireIdByIdOrName(
|
||||||
|
folderId: Ident,
|
||||||
|
name: String,
|
||||||
|
collective: Ident
|
||||||
|
): ConnectionIO[Ident] = {
|
||||||
|
val sql = run(
|
||||||
|
select(T.id),
|
||||||
|
from(T),
|
||||||
|
T.id === folderId || (T.name === name && T.collective === collective)
|
||||||
|
)
|
||||||
|
sql.query[Ident].option.flatMap {
|
||||||
|
case Some(id) => id.pure[ConnectionIO]
|
||||||
|
case None =>
|
||||||
|
Sync[ConnectionIO].raiseError(
|
||||||
|
new Exception(s"No folder found for: id=${folderId.id} or name=${name}")
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
def findAll(
|
def findAll(
|
||||||
coll: Ident,
|
coll: Ident,
|
||||||
nameQ: Option[String],
|
nameQ: Option[String],
|
||||||
|
@ -274,10 +274,14 @@ object RItem {
|
|||||||
): ConnectionIO[Int] =
|
): ConnectionIO[Int] =
|
||||||
for {
|
for {
|
||||||
t <- currentTime
|
t <- currentTime
|
||||||
|
fid <- folderId match {
|
||||||
|
case Some(f) => RFolder.requireIdByIdOrName(f, f.id, coll).map(_.some)
|
||||||
|
case None => None.pure[ConnectionIO]
|
||||||
|
}
|
||||||
n <- DML.update(
|
n <- DML.update(
|
||||||
T,
|
T,
|
||||||
T.cid === coll && T.id === itemId,
|
T.cid === coll && T.id === itemId,
|
||||||
DML.set(T.folder.setTo(folderId), T.updated.setTo(t))
|
DML.set(T.folder.setTo(fid), T.updated.setTo(t))
|
||||||
)
|
)
|
||||||
} yield n
|
} yield n
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user