Merge branch 'eikek:master' into master

This commit is contained in:
monnypython 2021-07-22 11:02:33 +02:00 committed by GitHub
commit bc308c3b1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
760 changed files with 4753 additions and 160 deletions

View File

@ -23,4 +23,6 @@ jobs:
- name: Build website (${{ env.DOCSPELL_VERSION }}) - name: Build website (${{ env.DOCSPELL_VERSION }})
run: nix-shell website/shell.nix --run "sbt make-website" run: nix-shell website/shell.nix --run "sbt make-website"
- name: Publish website (${{ env.DOCSPELL_VERSION }}) - name: Publish website (${{ env.DOCSPELL_VERSION }})
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: sbt publish-website run: sbt publish-website

View File

@ -1,5 +1,17 @@
# Changelog # Changelog
## v0.25.0
*Unreleased*
### Rest API Changes
- Removed `sec/collective/previews` endpoint, in favor for new
`admin/attachments/generatePreviews` endpoint which is now an admin
task to generate previews for all files. The now removed enpoint did
this only for one collective.
## v0.24.0 ## v0.24.0
*Jun 18, 2021* *Jun 18, 2021*
@ -61,6 +73,10 @@ state (the master branch). The `latest` tag points to the latest
release. Each release is also tagged with its version number, like release. Each release is also tagged with its version number, like
`v0.24.0`. `v0.24.0`.
The images changed slightly in that there is no assumption on where
the config file is placed. Now you need to pass the docspell config
file explicitely when using the images.
Multiarch: Images are now build for `amd64`, `arm64` and `armv7`. Multiarch: Images are now build for `amd64`, `arm64` and `armv7`.
The consumedir is being replaced by the more generic `docspell/tools` The consumedir is being replaced by the more generic `docspell/tools`
@ -80,7 +96,10 @@ The docker-compose setup is now at `docker/docker-compose`. Please
look at the new [compose look at the new [compose
file](https://github.com/eikek/docspell/blob/master/docker/docker-compose/docker-compose.yml) file](https://github.com/eikek/docspell/blob/master/docker/docker-compose/docker-compose.yml)
and do the corresponding changes at yours. Especially the consumedir and do the corresponding changes at yours. Especially the consumedir
container changed significantly. container changed significantly. Then due to the fact that the config
file must be given explicitely, you need to add this argument to each
docspell component (restserver and joex) via a `command` section (see
the compose file referenced above).
The `.envrc` has been cleaned from some settings. Since the config The `.envrc` has been cleaned from some settings. Since the config
files is mounted into the image, you can just edit this file instead. files is mounted into the image, you can just edit this file instead.
@ -912,7 +931,7 @@ improvements for processing files.
upload the file into memory for nothing if something fails (e.g. the upload the file into memory for nothing if something fails (e.g. the
source doesn't exist) source doesn't exist)
- Re-process files. A - Re-process files. A
[route](https://docspell.org/openapi/docspell-openapi.html#api-Item-secItemItemIdReprocessPost) [route](https://docspell.org/openapi/docspell-openapi.html#operation/sec-item-start-reprocess)
has been added that submits files for re-processing. It is possible has been added that submits files for re-processing. It is possible
to re-process some files of an item or all. There is no UI for this to re-process some files of an item or all. There is no UI for this
for now. You'd need to run `curl` or something manually to trigger for now. You'd need to run `curl` or something manually to trigger

View File

@ -1,5 +1,5 @@
Docspell Docspell
Copyright 2019-2021, Eike Kettner Copyright 2019-2021, Eike Kettner and Contributors
Licensed under the GPLv3 or later Licensed under the GPLv3 or later
This software contains portions of code from tika-parser This software contains portions of code from tika-parser

View File

@ -2,6 +2,7 @@ import com.github.eikek.sbt.openapi._
import scala.sys.process._ import scala.sys.process._
import com.typesafe.sbt.SbtGit.GitKeys._ import com.typesafe.sbt.SbtGit.GitKeys._
import docspell.build._ import docspell.build._
import de.heikoseeberger.sbtheader.CommentBlockCreator
val toolsPackage = taskKey[Seq[File]]("Package the scripts/extension tools") val toolsPackage = taskKey[Seq[File]]("Package the scripts/extension tools")
val elmCompileMode = settingKey[ElmCompileMode]("How to compile elm sources") val elmCompileMode = settingKey[ElmCompileMode]("How to compile elm sources")
@ -20,6 +21,13 @@ val scalafixSettings = Seq(
val sharedSettings = Seq( val sharedSettings = Seq(
organization := "com.github.eikek", organization := "com.github.eikek",
scalaVersion := "2.13.6", scalaVersion := "2.13.6",
organizationName := "Docspell Contributors",
licenses += ("GPL-3.0-or-later", url(
"https://spdx.org/licenses/GPL-3.0-or-later.html"
)),
startYear := Some(2020),
headerLicenseStyle := HeaderLicenseStyle.SpdxSyntax,
headerSources / excludeFilter := HiddenFileFilter || "*.java" || "StringUtil.scala",
scalacOptions ++= Seq( scalacOptions ++= Seq(
"-deprecation", "-deprecation",
"-encoding", "-encoding",
@ -35,6 +43,7 @@ val sharedSettings = Seq(
"-Wvalue-discard", "-Wvalue-discard",
"-Wnumeric-widen" "-Wnumeric-widen"
), ),
javacOptions ++= Seq("-target", "1.8", "-source", "1.8"),
LocalRootProject / toolsPackage := { LocalRootProject / toolsPackage := {
val v = version.value val v = version.value
val logger = streams.value.log val logger = streams.value.log
@ -75,7 +84,13 @@ val elmSettings = Seq(
(Compile / sourceDirectory).value / "elm", (Compile / sourceDirectory).value / "elm",
FileFilter.globFilter("*.elm"), FileFilter.globFilter("*.elm"),
HiddenFileFilter HiddenFileFilter
) ),
Compile / unmanagedSourceDirectories += (Compile / sourceDirectory).value / "elm",
headerSources / includeFilter := "*.elm",
headerMappings := headerMappings.value + (HeaderFileType("elm") -> HeaderCommentStyle(
new CommentBlockCreator("{-", " ", "-}"),
HeaderPattern.commentBetween("\\{\\-", " ", "\\-\\}")
))
) )
val stylesSettings = Seq( val stylesSettings = Seq(
stylesMode := StylesMode.Dev, stylesMode := StylesMode.Dev,
@ -113,7 +128,7 @@ def webjarSettings(queryJS: Project) = Seq(
def debianSettings(cfgFile: String) = def debianSettings(cfgFile: String) =
Seq( Seq(
maintainer := "Eike Kettner <eike.kettner@posteo.de>", maintainer := "Eike Kettner <eikek@posteo.de>",
Universal / mappings += { Universal / mappings += {
val conf = (Compile / resourceDirectory).value / "reference.conf" val conf = (Compile / resourceDirectory).value / "reference.conf"
if (!conf.exists) if (!conf.exists)
@ -788,8 +803,11 @@ addCommandAlias("make-pkg", ";clean ;make ;make-zip ;make-deb ;make-tools")
addCommandAlias("ci", "make; lint; test") addCommandAlias("ci", "make; lint; test")
addCommandAlias( addCommandAlias(
"lint", "lint",
"restapi/openapiLint; joexapi/openapiLint; scalafmtSbtCheck; scalafmtCheckAll; Compile/scalafix --check; Test/scalafix --check" "restapi/openapiLint; joexapi/openapiLint; headerCheck; scalafmtSbtCheck; scalafmtCheckAll; Compile/scalafix --check; Test/scalafix --check"
)
addCommandAlias(
"fix",
"headerCreateAll; Compile/scalafix; Test/scalafix; scalafmtSbt; scalafmtAll"
) )
addCommandAlias("fix", "Compile/scalafix; Test/scalafix; scalafmtSbt; scalafmtAll")
addCommandAlias("make-website", ";website/clean ;website/zolaBuild ;website/zolaCheck") addCommandAlias("make-website", ";website/clean ;website/zolaBuild ;website/zolaCheck")
addCommandAlias("publish-website", "website/publishToGitHubPages") addCommandAlias("publish-website", "website/publishToGitHubPages")

View File

@ -18,7 +18,7 @@
db_url="jdbc:postgresql://db:5432/dbname" db_url="jdbc:postgresql://db:5432/dbname"
db_user="dbuser" db_user="dbuser"
db_pass="dbpass" db_pass="dbpass"
solr_url="http://docspell-solr:8983/docspell" solr_url="http://docspell-solr:8983/solr/docspell"
# This configures the restserver # This configures the restserver
@ -34,6 +34,17 @@ docspell.server {
header-value = ${?DOCSPELL_HEADER_VALUE} header-value = ${?DOCSPELL_HEADER_VALUE}
} }
} }
# This is a special endpoint that allows some basic administration.
#
# This is used for some endpoints, for example:
# - re-create complete fulltext index:
# curl -XPOST -H'Docspell-Admin-Secret: xyz' http://localhost:7880/api/v1/admin/fts/reIndexAll
admin-endpoint {
# The secret. If empty, the endpoint is disabled.
secret = ""
}
# Configuration of the full-text search engine. # Configuration of the full-text search engine.
full-text-search { full-text-search {
enabled = true enabled = true

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis package docspell.analysis
import java.nio.file.Path import java.nio.file.Path

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis package docspell.analysis
import cats.Applicative import cats.Applicative

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis package docspell.analysis
import docspell.analysis.TextAnalysisConfig.NlpConfig import docspell.analysis.TextAnalysisConfig.NlpConfig

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.classifier package docspell.analysis.classifier
import java.nio.file.Path import java.nio.file.Path

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.classifier package docspell.analysis.classifier
import java.nio.file.Path import java.nio.file.Path

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.classifier package docspell.analysis.classifier
import cats.data.Kleisli import cats.data.Kleisli

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.classifier package docspell.analysis.classifier
import java.nio.file.Path import java.nio.file.Path

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.contact package docspell.analysis.contact
import cats.implicits._ import cats.implicits._

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.contact package docspell.analysis.contact
import cats.data.NonEmptyList import cats.data.NonEmptyList

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.contact package docspell.analysis.contact
private[analysis] object Tld { private[analysis] object Tld {

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.date package docspell.analysis.date
import java.time.LocalDate import java.time.LocalDate

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.date package docspell.analysis.date
import docspell.common.Language import docspell.common.Language

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.nlp package docspell.analysis.nlp
import cats.effect.Sync import cats.effect.Sync

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.nlp package docspell.analysis.nlp
import java.net.URL import java.net.URL

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.nlp package docspell.analysis.nlp
import docspell.common.{NerLabel, NerTag} import docspell.common.{NerLabel, NerTag}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.nlp package docspell.analysis.nlp
import scala.concurrent.duration.{Duration => _, _} import scala.concurrent.duration.{Duration => _, _}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.nlp package docspell.analysis.nlp
import java.nio.file.Path import java.nio.file.Path

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.nlp package docspell.analysis.nlp
import java.nio.file.Path import java.nio.file.Path

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.nlp package docspell.analysis.nlp
import java.nio.file.Path import java.nio.file.Path

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.split package docspell.analysis.split
import fs2.Stream import fs2.Stream

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.split package docspell.analysis.split
case class Word(value: String, begin: Int, end: Int) { case class Word(value: String, begin: Int, end: Int) {

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis package docspell.analysis
object Env { object Env {

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.classifier package docspell.analysis.classifier
import java.nio.file.Paths import java.nio.file.Paths

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.contact package docspell.analysis.contact
import docspell.common.{NerLabel, NerTag} import docspell.common.{NerLabel, NerTag}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.date package docspell.analysis.date
import java.time._ import java.time._

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.nlp package docspell.analysis.nlp
import docspell.analysis.Env import docspell.analysis.Env

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.nlp package docspell.analysis.nlp
import java.nio.file.Paths import java.nio.file.Paths

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.analysis.split package docspell.analysis.split
import munit._ import munit._

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend package docspell.backend
import scala.concurrent.ExecutionContext import scala.concurrent.ExecutionContext

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend package docspell.backend
import cats.effect._ import cats.effect._

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend package docspell.backend
import docspell.backend.signup.{Config => SignupConfig} import docspell.backend.signup.{Config => SignupConfig}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend package docspell.backend
import cats.effect._ import cats.effect._
@ -139,23 +145,26 @@ object JobFactory {
prio: Priority, prio: Priority,
tracker: Option[Ident] tracker: Option[Ident]
): F[Vector[RJob]] = { ): F[Vector[RJob]] = {
def create(id: Ident, now: Timestamp, arg: ProcessItemArgs): RJob = def create(now: Timestamp, arg: ProcessItemArgs): F[RJob] =
RJob.newJob( Ident
id, .randomId[F]
ProcessItemArgs.taskName, .map(id =>
account.collective, RJob.newJob(
arg, id,
arg.makeSubject, ProcessItemArgs.taskName,
now, account.collective,
account.user, arg,
prio, arg.makeSubject,
tracker now,
) account.user,
prio,
tracker
)
)
for { for {
id <- Ident.randomId[F] now <- Timestamp.current[F]
now <- Timestamp.current[F] jobs <- args.traverse(a => create(now, a))
jobs = args.map(a => create(id, now, a))
} yield jobs } yield jobs
} }

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend package docspell.backend
import docspell.common.Password import docspell.common.Password

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.auth package docspell.backend.auth
import java.time.Instant import java.time.Instant

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.auth package docspell.backend.auth
import cats.data.OptionT import cats.data.OptionT

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.auth package docspell.backend.auth
import java.time.Instant import java.time.Instant

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.auth package docspell.backend.auth
import javax.crypto.Mac import javax.crypto.Mac

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.data.OptionT import cats.data.OptionT

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.effect.{Async, Resource} import cats.effect.{Async, Resource}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.data.EitherT import cats.data.EitherT

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.effect.{Async, Resource} import cats.effect.{Async, Resource}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.effect._ import cats.effect._

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.data.NonEmptyList import cats.data.NonEmptyList

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.data.{NonEmptyList, OptionT} import cats.data.{NonEmptyList, OptionT}
@ -187,6 +193,14 @@ trait OItem[F[_]] {
account: AccountId, account: AccountId,
notifyJoex: Boolean notifyJoex: Boolean
): F[UpdateResult] ): F[UpdateResult]
/** Submits a task that (re)generates the preview images for all
* attachments.
*/
def generateAllPreviews(
storeMode: MakePreviewArgs.StoreMode,
notifyJoex: Boolean
): F[UpdateResult]
} }
object OItem { object OItem {
@ -693,6 +707,16 @@ object OItem {
_ <- if (notifyJoex) joex.notifyAllNodes else ().pure[F] _ <- if (notifyJoex) joex.notifyAllNodes else ().pure[F]
} yield UpdateResult.success } yield UpdateResult.success
def generateAllPreviews(
storeMode: MakePreviewArgs.StoreMode,
notifyJoex: Boolean
): F[UpdateResult] =
for {
job <- JobFactory.allPreviews[F](AllPreviewsArgs(None, storeMode), None)
_ <- queue.insertIfNew(job)
_ <- if (notifyJoex) joex.notifyAllNodes else ().pure[F]
} yield UpdateResult.success
private def onSuccessIgnoreError(update: F[Unit])(ar: UpdateResult): F[Unit] = private def onSuccessIgnoreError(update: F[Unit])(ar: UpdateResult): F[Unit] =
ar match { ar match {
case UpdateResult.Success => case UpdateResult.Success =>

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.data.OptionT import cats.data.OptionT
@ -49,7 +55,7 @@ trait OItemSearch[F[_]] {
def findByFileCollective(checksum: String, collective: Ident): F[Vector[RItem]] 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]]]
} }
@ -274,11 +280,11 @@ object OItemSearch {
def findByFileCollective(checksum: String, collective: Ident): F[Vector[RItem]] = def findByFileCollective(checksum: String, collective: Ident): F[Vector[RItem]] =
store.transact(QItem.findByChecksum(checksum, collective, Set.empty)) 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 { store.transact((for {
coll <- OptionT(RSource.findCollective(sourceId)) coll <- OptionT(RSource.findCollective(sourceId))
items <- OptionT.liftF(QItem.findByChecksum(checksum, coll, Set.empty)) items <- OptionT.liftF(QItem.findByChecksum(checksum, coll, Set.empty))
} yield items).getOrElse(Vector.empty)) } yield items).value)
}) })
} }

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.data.OptionT import cats.data.OptionT

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import scala.concurrent.ExecutionContext import scala.concurrent.ExecutionContext

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.data.OptionT import cats.data.OptionT

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.effect.{Async, Resource} import cats.effect.{Async, Resource}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.effect.{Async, Resource} import cats.effect.{Async, Resource}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.Applicative import cats.Applicative

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.effect.{Async, Resource} import cats.effect.{Async, Resource}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.effect.{Async, Resource} import cats.effect.{Async, Resource}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.Functor import cats.Functor

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import cats.data.OptionT import cats.data.OptionT

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
import docspell.common._ import docspell.common._

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.ops package docspell.backend.ops
final class WildcardString private (str: String) { final class WildcardString private (str: String) {

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.signup package docspell.backend.signup
import docspell.common.{Duration, Password} import docspell.common.{Duration, Password}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.signup package docspell.backend.signup
import docspell.common.Ident import docspell.common.Ident

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.signup package docspell.backend.signup
import cats.effect.{Async, Resource} import cats.effect.{Async, Resource}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.backend.signup package docspell.backend.signup
import docspell.store.AddResult import docspell.store.AddResult

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import io.circe._ import io.circe._

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import io.circe.generic.semiauto._ import io.circe.generic.semiauto._

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
case class Banner( case class Banner(

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import java.time.Instant import java.time.Instant

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import java.nio.charset.Charset import java.nio.charset.Charset

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import io.circe.Decoder import io.circe.Decoder

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import io.circe.{Decoder, Encoder} import io.circe.{Decoder, Encoder}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import io.circe.{Decoder, Encoder} import io.circe.{Decoder, Encoder}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import io.circe._ import io.circe._

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import java.time.LocalDate import java.time.LocalDate

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
sealed trait DataType {} sealed trait DataType {}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import io.circe.{Decoder, Encoder} import io.circe.{Decoder, Encoder}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
object DocspellSystem { object DocspellSystem {

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import java.time.{Duration => JDur} import java.time.{Duration => JDur}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import cats.implicits._ import cats.implicits._

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import cats.data.NonEmptyList import cats.data.NonEmptyList

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import java.nio.file.Path import java.nio.file.Path

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
case class FileName private (name: String) { case class FileName private (name: String) {

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import cats.data.NonEmptyList import cats.data.NonEmptyList

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import java.nio.charset.StandardCharsets import java.nio.charset.StandardCharsets

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import cats.Order import cats.Order

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import java.security.SecureRandom import java.security.SecureRandom

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
final case class ItemQueryString(query: String) { final case class ItemQueryString(query: String) {

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import cats.data.NonEmptyList import cats.data.NonEmptyList

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import cats.data.NonEmptyList import cats.data.NonEmptyList

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import java.time.Instant import java.time.Instant

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import cats.data.NonEmptyList import cats.data.NonEmptyList

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import docspell.common.syntax.all._ import docspell.common.syntax.all._

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import java.net.HttpURLConnection import java.net.HttpURLConnection

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import cats.data.NonEmptyList import cats.data.NonEmptyList

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import io.circe.{Decoder, Encoder} import io.circe.{Decoder, Encoder}

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import cats.effect.Sync import cats.effect.Sync

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
case class MailSendConfig(listId: String) case class MailSendConfig(listId: String)

View File

@ -1,3 +1,9 @@
/*
* Copyright 2020 Docspell Contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*/
package docspell.common package docspell.common
import io.circe.generic.semiauto._ import io.circe.generic.semiauto._

Some files were not shown because too many files have changed in this diff Show More