mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 19:09:32 +00:00
commit
8725487cc0
@ -1,9 +1,9 @@
|
|||||||
language: scala
|
language: scala
|
||||||
scala:
|
scala:
|
||||||
- 2.13.3
|
- 2.13.5
|
||||||
|
|
||||||
jdk:
|
jdk:
|
||||||
- openjdk8
|
- openjdk11
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
|
@ -696,8 +696,7 @@ def packageTools(logger: Logger, dir: File, version: String): Seq[File] = {
|
|||||||
wx / "icons" / "logo-96.png" -> "icons/logo-96.png",
|
wx / "icons" / "logo-96.png" -> "icons/logo-96.png",
|
||||||
wx / "manifest.json" -> "manifest.json"
|
wx / "manifest.json" -> "manifest.json"
|
||||||
),
|
),
|
||||||
webext,
|
webext
|
||||||
None
|
|
||||||
)
|
)
|
||||||
|
|
||||||
val excludes = Seq(wx, target)
|
val excludes = Seq(wx, target)
|
||||||
@ -714,8 +713,7 @@ def packageTools(logger: Logger, dir: File, version: String): Seq[File] = {
|
|||||||
wx / "native/app_manifest.json" -> s"docspell-tools-${version}/firefox/native/app_manifest.json",
|
wx / "native/app_manifest.json" -> s"docspell-tools-${version}/firefox/native/app_manifest.json",
|
||||||
wx / "native/native.py" -> s"docspell-tools-${version}/firefox/native/native.py"
|
wx / "native/native.py" -> s"docspell-tools-${version}/firefox/native/native.py"
|
||||||
) ++ files,
|
) ++ files,
|
||||||
archive,
|
archive
|
||||||
None
|
|
||||||
)
|
)
|
||||||
|
|
||||||
Seq(archive)
|
Seq(archive)
|
||||||
|
@ -82,7 +82,7 @@ object TextAnalyser {
|
|||||||
|
|
||||||
/** Provides the nlp pipeline based on the configuration. */
|
/** Provides the nlp pipeline based on the configuration. */
|
||||||
private object Nlp {
|
private object Nlp {
|
||||||
def apply[F[_]: Concurrent: Timer: BracketThrow](
|
def apply[F[_]: Concurrent: Timer](
|
||||||
cfg: TextAnalysisConfig.NlpConfig
|
cfg: TextAnalysisConfig.NlpConfig
|
||||||
): F[Input[F] => F[Vector[NerLabel]]] =
|
): F[Input[F] => F[Vector[NerLabel]]] =
|
||||||
cfg.mode match {
|
cfg.mode match {
|
||||||
|
@ -11,9 +11,9 @@ object PdfboxPreviewTest extends SimpleTestSuite {
|
|||||||
implicit val CS = TestFiles.CS
|
implicit val CS = TestFiles.CS
|
||||||
|
|
||||||
val testPDFs = List(
|
val testPDFs = List(
|
||||||
ExampleFiles.letter_de_pdf -> "83bdb379fe9ce86e830adfbe11238808bed9da6e31c1b66687d70b6b59a0d815",
|
ExampleFiles.letter_de_pdf -> "7d98be75b239816d6c751b3f3c56118ebf1a4632c43baf35a68a662f9d595ab8",
|
||||||
ExampleFiles.letter_en_pdf -> "699655a162c0c21dd9f19d8638f4e03811c6626a52bb30a1ac733d7fa5638932",
|
ExampleFiles.letter_en_pdf -> "2bffbd01634525c6ce1fe477de23464e038055c4917afa41dd6186fe03a49f5b",
|
||||||
ExampleFiles.scanner_pdf13_pdf -> "a1680b80b42d8e04365ffd1e806ea2a8adb0492104cc41d8b40435b0fe4d4e65"
|
ExampleFiles.scanner_pdf13_pdf -> "05ce4fd686b3d24b0e2d60df0c6d79b1df2338fcf7a6957e34cb4d11c65682b4"
|
||||||
)
|
)
|
||||||
|
|
||||||
test("extract first page image from PDFs") {
|
test("extract first page image from PDFs") {
|
||||||
|
@ -33,7 +33,7 @@ import emil.javamail._
|
|||||||
import org.http4s.client.Client
|
import org.http4s.client.Client
|
||||||
import org.http4s.client.blaze.BlazeClientBuilder
|
import org.http4s.client.blaze.BlazeClientBuilder
|
||||||
|
|
||||||
final class JoexAppImpl[F[_]: ConcurrentEffect: ContextShift: Timer](
|
final class JoexAppImpl[F[_]: ConcurrentEffect: Timer](
|
||||||
cfg: Config,
|
cfg: Config,
|
||||||
nodeOps: ONode[F],
|
nodeOps: ONode[F],
|
||||||
store: Store[F],
|
store: Store[F],
|
||||||
@ -214,7 +214,7 @@ object JoexAppImpl {
|
|||||||
appR <- Resource.make(app.init.map(_ => app))(_.shutdown)
|
appR <- Resource.make(app.init.map(_ => app))(_.shutdown)
|
||||||
} yield appR
|
} yield appR
|
||||||
|
|
||||||
private def createFtsClient[F[_]: ConcurrentEffect: ContextShift](
|
private def createFtsClient[F[_]: ConcurrentEffect](
|
||||||
cfg: Config
|
cfg: Config
|
||||||
)(client: Client[F]): Resource[F, FtsClient[F]] =
|
)(client: Client[F]): Resource[F, FtsClient[F]] =
|
||||||
if (cfg.fullTextSearch.enabled) SolrFtsClient(cfg.fullTextSearch.solr, client)
|
if (cfg.fullTextSearch.enabled) SolrFtsClient(cfg.fullTextSearch.solr, client)
|
||||||
|
@ -25,7 +25,7 @@ object MigrationTask {
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
def onCancel[F[_]: Sync]: Task[F, Unit, Unit] =
|
def onCancel[F[_]]: Task[F, Unit, Unit] =
|
||||||
Task.log[F, Unit](_.warn("Cancelling full-text-index task"))
|
Task.log[F, Unit](_.warn("Cancelling full-text-index task"))
|
||||||
|
|
||||||
def job[F[_]: Sync]: F[RJob] =
|
def job[F[_]: Sync]: F[RJob] =
|
||||||
|
@ -24,7 +24,7 @@ object ReIndexTask {
|
|||||||
Task(ctx => clearData[F](ctx.args.collective).forContext(cfg, fts).run(ctx))
|
Task(ctx => clearData[F](ctx.args.collective).forContext(cfg, fts).run(ctx))
|
||||||
)
|
)
|
||||||
|
|
||||||
def onCancel[F[_]: Sync]: Task[F, Args, Unit] =
|
def onCancel[F[_]]: Task[F, Args, Unit] =
|
||||||
Task.log[F, Args](_.warn("Cancelling full-text re-index task"))
|
Task.log[F, Args](_.warn("Cancelling full-text re-index task"))
|
||||||
|
|
||||||
private def clearData[F[_]: ConcurrentEffect](collective: Option[Ident]): FtsWork[F] =
|
private def clearData[F[_]: ConcurrentEffect](collective: Option[Ident]): FtsWork[F] =
|
||||||
|
@ -58,7 +58,7 @@ object CheckNodesTask {
|
|||||||
} yield res.isRight
|
} yield res.isRight
|
||||||
}
|
}
|
||||||
|
|
||||||
def removeNodes[F[_]: Sync](
|
def removeNodes[F[_]](
|
||||||
ctx: Context[F, _],
|
ctx: Context[F, _],
|
||||||
cfg: HouseKeepingConfig.CheckNodes
|
cfg: HouseKeepingConfig.CheckNodes
|
||||||
): F[Int] =
|
): F[Int] =
|
||||||
|
@ -23,7 +23,7 @@ object HouseKeepingTask {
|
|||||||
.flatMap(_ => CleanupJobsTask(cfg.houseKeeping.cleanupJobs))
|
.flatMap(_ => CleanupJobsTask(cfg.houseKeeping.cleanupJobs))
|
||||||
.flatMap(_ => CheckNodesTask(cfg.houseKeeping.checkNodes))
|
.flatMap(_ => CheckNodesTask(cfg.houseKeeping.checkNodes))
|
||||||
|
|
||||||
def onCancel[F[_]: Sync]: Task[F, Unit, Unit] =
|
def onCancel[F[_]]: Task[F, Unit, Unit] =
|
||||||
Task.log[F, Unit](_.warn("Cancelling house-keeping task"))
|
Task.log[F, Unit](_.warn("Cancelling house-keeping task"))
|
||||||
|
|
||||||
def periodicTask[F[_]: Sync](ce: CalEvent): F[RPeriodicTask] =
|
def periodicTask[F[_]: Sync](ce: CalEvent): F[RPeriodicTask] =
|
||||||
|
@ -17,7 +17,7 @@ object LearnClassifierTask {
|
|||||||
|
|
||||||
type Args = LearnClassifierArgs
|
type Args = LearnClassifierArgs
|
||||||
|
|
||||||
def onCancel[F[_]: Sync]: Task[F, Args, Unit] =
|
def onCancel[F[_]]: Task[F, Args, Unit] =
|
||||||
Task.log(_.warn("Cancelling learn-classifier task"))
|
Task.log(_.warn("Cancelling learn-classifier task"))
|
||||||
|
|
||||||
def apply[F[_]: Sync: ContextShift](
|
def apply[F[_]: Sync: ContextShift](
|
||||||
@ -100,7 +100,7 @@ object LearnClassifierTask {
|
|||||||
else
|
else
|
||||||
OptionT.none
|
OptionT.none
|
||||||
|
|
||||||
private def logInactiveWarning[F[_]: Sync](logger: Logger[F]): F[Unit] =
|
private def logInactiveWarning[F[_]](logger: Logger[F]): F[Unit] =
|
||||||
logger.warn(
|
logger.warn(
|
||||||
"Auto-tagging is disabled. Check joex config and the collective settings."
|
"Auto-tagging is disabled. Check joex config and the collective settings."
|
||||||
)
|
)
|
||||||
|
@ -15,7 +15,7 @@ import emil.{MimeType => _, _}
|
|||||||
|
|
||||||
object ReadMail {
|
object ReadMail {
|
||||||
|
|
||||||
def readBytesP[F[_]: ConcurrentEffect: ContextShift](
|
def readBytesP[F[_]: ConcurrentEffect](
|
||||||
logger: Logger[F],
|
logger: Logger[F],
|
||||||
glob: Glob
|
glob: Glob
|
||||||
): Pipe[F, Byte, Binary[F]] =
|
): Pipe[F, Byte, Binary[F]] =
|
||||||
@ -26,7 +26,7 @@ object ReadMail {
|
|||||||
Stream.eval(logger.debug(s"Converting e-mail file...")) >>
|
Stream.eval(logger.debug(s"Converting e-mail file...")) >>
|
||||||
s.through(Mail.readBytes[F])
|
s.through(Mail.readBytes[F])
|
||||||
|
|
||||||
def mailToEntries[F[_]: ConcurrentEffect: ContextShift](
|
def mailToEntries[F[_]: ConcurrentEffect](
|
||||||
logger: Logger[F],
|
logger: Logger[F],
|
||||||
glob: Glob
|
glob: Glob
|
||||||
)(mail: Mail[F]): Stream[F, Binary[F]] = {
|
)(mail: Mail[F]): Stream[F, Binary[F]] = {
|
||||||
|
@ -40,7 +40,7 @@ object NotifyDueItemsTask {
|
|||||||
} yield ()
|
} yield ()
|
||||||
}
|
}
|
||||||
|
|
||||||
def onCancel[F[_]: Sync]: Task[F, NotifyDueItemsArgs, Unit] =
|
def onCancel[F[_]]: Task[F, NotifyDueItemsArgs, Unit] =
|
||||||
Task.log(_.warn("Cancelling notify-due-items task"))
|
Task.log(_.warn("Cancelling notify-due-items task"))
|
||||||
|
|
||||||
def getMailSettings[F[_]: Sync](ctx: Context[F, Args]): F[RUserEmail] =
|
def getMailSettings[F[_]: Sync](ctx: Context[F, Args]): F[RUserEmail] =
|
||||||
|
@ -28,7 +28,7 @@ object AllPageCountTask {
|
|||||||
} yield ()
|
} yield ()
|
||||||
}
|
}
|
||||||
|
|
||||||
def onCancel[F[_]: Sync]: Task[F, Args, Unit] =
|
def onCancel[F[_]]: Task[F, Args, Unit] =
|
||||||
Task.log(_.warn("Cancelling all-previews task"))
|
Task.log(_.warn("Cancelling all-previews task"))
|
||||||
|
|
||||||
def submitConversionJobs[F[_]: Sync](
|
def submitConversionJobs[F[_]: Sync](
|
||||||
|
@ -30,7 +30,7 @@ object MakePageCountTask {
|
|||||||
} yield ()
|
} yield ()
|
||||||
}
|
}
|
||||||
|
|
||||||
def onCancel[F[_]: Sync]: Task[F, Args, Unit] =
|
def onCancel[F[_]]: Task[F, Args, Unit] =
|
||||||
Task.log(_.warn("Cancelling make-page-count task"))
|
Task.log(_.warn("Cancelling make-page-count task"))
|
||||||
|
|
||||||
private def generatePageCount[F[_]: Sync](
|
private def generatePageCount[F[_]: Sync](
|
||||||
@ -45,7 +45,7 @@ object MakePageCountTask {
|
|||||||
)
|
)
|
||||||
} yield ()
|
} yield ()
|
||||||
|
|
||||||
private def pageCountExists[F[_]: Sync](ctx: Context[F, Args]): F[Boolean] =
|
private def pageCountExists[F[_]](ctx: Context[F, Args]): F[Boolean] =
|
||||||
ctx.store.transact(
|
ctx.store.transact(
|
||||||
RAttachmentMeta
|
RAttachmentMeta
|
||||||
.findPageCountById(ctx.args.attachment)
|
.findPageCountById(ctx.args.attachment)
|
||||||
|
@ -28,7 +28,7 @@ object ConvertAllPdfTask {
|
|||||||
} yield ()
|
} yield ()
|
||||||
}
|
}
|
||||||
|
|
||||||
def onCancel[F[_]: Sync]: Task[F, Args, Unit] =
|
def onCancel[F[_]]: Task[F, Args, Unit] =
|
||||||
Task.log(_.warn("Cancelling convert-old-pdf task"))
|
Task.log(_.warn("Cancelling convert-old-pdf task"))
|
||||||
|
|
||||||
def submitConversionJobs[F[_]: Sync](
|
def submitConversionJobs[F[_]: Sync](
|
||||||
|
@ -44,7 +44,7 @@ object PdfConvTask {
|
|||||||
} yield ()
|
} yield ()
|
||||||
}
|
}
|
||||||
|
|
||||||
def onCancel[F[_]: Sync]: Task[F, Args, Unit] =
|
def onCancel[F[_]]: Task[F, Args, Unit] =
|
||||||
Task.log(_.warn("Cancelling pdfconv task"))
|
Task.log(_.warn("Cancelling pdfconv task"))
|
||||||
|
|
||||||
// --- Helper
|
// --- Helper
|
||||||
|
@ -28,7 +28,7 @@ object AllPreviewsTask {
|
|||||||
} yield ()
|
} yield ()
|
||||||
}
|
}
|
||||||
|
|
||||||
def onCancel[F[_]: Sync]: Task[F, Args, Unit] =
|
def onCancel[F[_]]: Task[F, Args, Unit] =
|
||||||
Task.log(_.warn("Cancelling all-previews task"))
|
Task.log(_.warn("Cancelling all-previews task"))
|
||||||
|
|
||||||
def submitConversionJobs[F[_]: Sync](
|
def submitConversionJobs[F[_]: Sync](
|
||||||
|
@ -34,7 +34,7 @@ object MakePreviewTask {
|
|||||||
} yield ()
|
} yield ()
|
||||||
}
|
}
|
||||||
|
|
||||||
def onCancel[F[_]: Sync]: Task[F, Args, Unit] =
|
def onCancel[F[_]]: Task[F, Args, Unit] =
|
||||||
Task.log(_.warn("Cancelling make-preview task"))
|
Task.log(_.warn("Cancelling make-preview task"))
|
||||||
|
|
||||||
private def generatePreview[F[_]: Sync](
|
private def generatePreview[F[_]: Sync](
|
||||||
|
@ -22,7 +22,7 @@ import bitpeace.{Mimetype, RangeDef}
|
|||||||
*/
|
*/
|
||||||
object AttachmentPageCount {
|
object AttachmentPageCount {
|
||||||
|
|
||||||
def apply[F[_]: Sync: ContextShift]()(
|
def apply[F[_]: Sync]()(
|
||||||
item: ItemData
|
item: ItemData
|
||||||
): Task[F, ProcessItemArgs, ItemData] =
|
): Task[F, ProcessItemArgs, ItemData] =
|
||||||
Task { ctx =>
|
Task { ctx =>
|
||||||
|
@ -24,7 +24,7 @@ import bitpeace.{Mimetype, MimetypeHint, RangeDef}
|
|||||||
*/
|
*/
|
||||||
object AttachmentPreview {
|
object AttachmentPreview {
|
||||||
|
|
||||||
def apply[F[_]: Sync: ContextShift](cfg: ConvertConfig, pcfg: PreviewConfig)(
|
def apply[F[_]: Sync](cfg: ConvertConfig, pcfg: PreviewConfig)(
|
||||||
item: ItemData
|
item: ItemData
|
||||||
): Task[F, ProcessItemArgs, ItemData] =
|
): Task[F, ProcessItemArgs, ItemData] =
|
||||||
Task { ctx =>
|
Task { ctx =>
|
||||||
|
@ -61,7 +61,7 @@ object ConvertPdf {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
def isConverted[F[_]: Sync](ctx: Context[F, ProcessItemArgs])(
|
def isConverted[F[_]](ctx: Context[F, ProcessItemArgs])(
|
||||||
ra: RAttachment
|
ra: RAttachment
|
||||||
): F[Boolean] =
|
): F[Boolean] =
|
||||||
ctx.store.transact(RAttachmentSource.isConverted(ra.id))
|
ctx.store.transact(RAttachmentSource.isConverted(ra.id))
|
||||||
|
@ -113,7 +113,7 @@ object CreateItem {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
def insertAttachment[F[_]: Sync](ctx: Context[F, _])(ra: RAttachment): F[Int] = {
|
def insertAttachment[F[_]](ctx: Context[F, _])(ra: RAttachment): F[Int] = {
|
||||||
val rs = RAttachmentSource.of(ra)
|
val rs = RAttachmentSource.of(ra)
|
||||||
ctx.store.transact(for {
|
ctx.store.transact(for {
|
||||||
n <- RAttachment.insert(ra)
|
n <- RAttachment.insert(ra)
|
||||||
|
@ -53,7 +53,7 @@ object DuplicateCheck {
|
|||||||
else ().pure[F]
|
else ().pure[F]
|
||||||
}
|
}
|
||||||
|
|
||||||
private def findDuplicates[F[_]: Sync](
|
private def findDuplicates[F[_]](
|
||||||
ctx: Context[F, Args]
|
ctx: Context[F, Args]
|
||||||
): F[Vector[FileMetaDupes]] =
|
): F[Vector[FileMetaDupes]] =
|
||||||
ctx.store.transact(for {
|
ctx.store.transact(for {
|
||||||
|
@ -150,7 +150,7 @@ object ExtractArchive {
|
|||||||
.lastOrError
|
.lastOrError
|
||||||
}
|
}
|
||||||
|
|
||||||
def extractMail[F[_]: ConcurrentEffect: ContextShift](
|
def extractMail[F[_]: ConcurrentEffect](
|
||||||
ctx: Context[F, ProcessItemArgs],
|
ctx: Context[F, ProcessItemArgs],
|
||||||
archive: Option[RAttachmentArchive]
|
archive: Option[RAttachmentArchive]
|
||||||
)(ra: RAttachment, pos: Int): F[Extracted] = {
|
)(ra: RAttachment, pos: Int): F[Extracted] = {
|
||||||
@ -225,7 +225,7 @@ object ExtractArchive {
|
|||||||
} yield n1 + n2
|
} yield n1 + n2
|
||||||
}
|
}
|
||||||
|
|
||||||
def storeArchive[F[_]: Sync](ctx: Context[F, _])(aa: RAttachmentArchive): F[Int] =
|
def storeArchive[F[_]](ctx: Context[F, _])(aa: RAttachmentArchive): F[Int] =
|
||||||
ctx.store.transact(RAttachmentArchive.insert(aa))
|
ctx.store.transact(RAttachmentArchive.insert(aa))
|
||||||
|
|
||||||
case class Extracted(
|
case class Extracted(
|
||||||
|
@ -18,7 +18,7 @@ import docspell.store.records.RItem
|
|||||||
object ItemHandler {
|
object ItemHandler {
|
||||||
type Args = ProcessItemArgs
|
type Args = ProcessItemArgs
|
||||||
|
|
||||||
def onCancel[F[_]: Sync: ContextShift]: Task[F, Args, Unit] =
|
def onCancel[F[_]: Sync]: Task[F, Args, Unit] =
|
||||||
logWarn("Now cancelling.").flatMap(_ =>
|
logWarn("Now cancelling.").flatMap(_ =>
|
||||||
markItemCreated.flatMap {
|
markItemCreated.flatMap {
|
||||||
case true =>
|
case true =>
|
||||||
@ -105,7 +105,7 @@ object ItemHandler {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
private def deleteByFileIds[F[_]: Sync: ContextShift]: Task[F, Args, Unit] =
|
private def deleteByFileIds[F[_]: Sync]: Task[F, Args, Unit] =
|
||||||
Task { ctx =>
|
Task { ctx =>
|
||||||
val states = ItemState.invalidStates
|
val states = ItemState.invalidStates
|
||||||
for {
|
for {
|
||||||
|
@ -29,7 +29,7 @@ object ReProcessItem {
|
|||||||
.flatMap(safeProcess[F](cfg, fts, analyser, regexNer))
|
.flatMap(safeProcess[F](cfg, fts, analyser, regexNer))
|
||||||
.map(_ => ())
|
.map(_ => ())
|
||||||
|
|
||||||
def onCancel[F[_]: Sync: ContextShift]: Task[F, Args, Unit] =
|
def onCancel[F[_]]: Task[F, Args, Unit] =
|
||||||
logWarn("Now cancelling re-processing.")
|
logWarn("Now cancelling re-processing.")
|
||||||
|
|
||||||
// --- Helpers
|
// --- Helpers
|
||||||
|
@ -119,7 +119,7 @@ object TextExtraction {
|
|||||||
)
|
)
|
||||||
} yield (meta, tags)
|
} yield (meta, tags)
|
||||||
|
|
||||||
def extractText[F[_]: Sync: ContextShift](
|
def extractText[F[_]: Sync](
|
||||||
ctx: Context[F, _],
|
ctx: Context[F, _],
|
||||||
extr: Extraction[F],
|
extr: Extraction[F],
|
||||||
lang: Language
|
lang: Language
|
||||||
|
@ -46,7 +46,7 @@ object ScanMailboxTask {
|
|||||||
} yield ()
|
} yield ()
|
||||||
}
|
}
|
||||||
|
|
||||||
def onCancel[F[_]: Sync]: Task[F, ScanMailboxArgs, Unit] =
|
def onCancel[F[_]]: Task[F, ScanMailboxArgs, Unit] =
|
||||||
Task.log(_.warn("Cancelling scan-mailbox task"))
|
Task.log(_.warn("Cancelling scan-mailbox task"))
|
||||||
|
|
||||||
def getMailSettings[F[_]: Sync](ctx: Context[F, Args]): F[RUserImap] =
|
def getMailSettings[F[_]: Sync](ctx: Context[F, Args]): F[RUserImap] =
|
||||||
|
@ -31,7 +31,7 @@ trait PeriodicScheduler[F[_]] {
|
|||||||
|
|
||||||
object PeriodicScheduler {
|
object PeriodicScheduler {
|
||||||
|
|
||||||
def create[F[_]: ConcurrentEffect: ContextShift](
|
def create[F[_]: ConcurrentEffect](
|
||||||
cfg: PeriodicSchedulerConfig,
|
cfg: PeriodicSchedulerConfig,
|
||||||
sch: Scheduler[F],
|
sch: Scheduler[F],
|
||||||
queue: JobQueue[F],
|
queue: JobQueue[F],
|
||||||
|
@ -15,7 +15,7 @@ import docspell.store.records.RPeriodicTask
|
|||||||
import com.github.eikek.fs2calev._
|
import com.github.eikek.fs2calev._
|
||||||
import org.log4s.getLogger
|
import org.log4s.getLogger
|
||||||
|
|
||||||
final class PeriodicSchedulerImpl[F[_]: ConcurrentEffect: ContextShift](
|
final class PeriodicSchedulerImpl[F[_]: ConcurrentEffect](
|
||||||
val config: PeriodicSchedulerConfig,
|
val config: PeriodicSchedulerConfig,
|
||||||
sch: Scheduler[F],
|
sch: Scheduler[F],
|
||||||
queue: JobQueue[F],
|
queue: JobQueue[F],
|
||||||
|
@ -12,7 +12,7 @@ import docspell.ftssolr.SolrFtsClient
|
|||||||
|
|
||||||
import org.http4s.client.Client
|
import org.http4s.client.Client
|
||||||
|
|
||||||
final class RestAppImpl[F[_]: Sync](val config: Config, val backend: BackendApp[F])
|
final class RestAppImpl[F[_]](val config: Config, val backend: BackendApp[F])
|
||||||
extends RestApp[F] {
|
extends RestApp[F] {
|
||||||
|
|
||||||
def init: F[Unit] =
|
def init: F[Unit] =
|
||||||
@ -38,7 +38,7 @@ object RestAppImpl {
|
|||||||
appR <- Resource.make(app.init.map(_ => app))(_.shutdown)
|
appR <- Resource.make(app.init.map(_ => app))(_.shutdown)
|
||||||
} yield appR
|
} yield appR
|
||||||
|
|
||||||
private def createFtsClient[F[_]: ConcurrentEffect: ContextShift](
|
private def createFtsClient[F[_]: ConcurrentEffect](
|
||||||
cfg: Config
|
cfg: Config
|
||||||
)(client: Client[F]): Resource[F, FtsClient[F]] =
|
)(client: Client[F]): Resource[F, FtsClient[F]] =
|
||||||
if (cfg.fullTextSearch.enabled) SolrFtsClient(cfg.fullTextSearch.solr, client)
|
if (cfg.fullTextSearch.enabled) SolrFtsClient(cfg.fullTextSearch.solr, client)
|
||||||
|
@ -606,7 +606,7 @@ trait Conversions {
|
|||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|
||||||
def changeSource[F[_]: Sync](s: Source, coll: Ident): RSource =
|
def changeSource[F[_]](s: Source, coll: Ident): RSource =
|
||||||
RSource(
|
RSource(
|
||||||
s.id,
|
s.id,
|
||||||
coll,
|
coll,
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
package docspell.store.queries
|
package docspell.store.queries
|
||||||
|
|
||||||
import cats.data.NonEmptyList
|
import cats.data.NonEmptyList
|
||||||
import cats.effect.Effect
|
import cats.effect._
|
||||||
import cats.implicits._
|
import cats.implicits._
|
||||||
import fs2.Stream
|
import fs2.Stream
|
||||||
|
|
||||||
@ -197,7 +197,7 @@ object QJob {
|
|||||||
def runningToWaiting[F[_]: Effect](workerId: Ident, store: Store[F]): F[Unit] =
|
def runningToWaiting[F[_]: Effect](workerId: Ident, store: Store[F]): F[Unit] =
|
||||||
store.transact(RJob.setRunningToWaiting(workerId)).map(_ => ())
|
store.transact(RJob.setRunningToWaiting(workerId)).map(_ => ())
|
||||||
|
|
||||||
def findAll[F[_]: Effect](ids: Seq[Ident], store: Store[F]): F[Vector[RJob]] =
|
def findAll[F[_]](ids: Seq[Ident], store: Store[F]): F[Vector[RJob]] =
|
||||||
store.transact(RJob.findFromIds(ids))
|
store.transact(RJob.findFromIds(ids))
|
||||||
|
|
||||||
def queueStateSnapshot(
|
def queueStateSnapshot(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user