2727 Commits

Author SHA1 Message Date
eikek
984dda9da0 Add OpenID support to webapp 2021-09-05 23:43:07 +02:00
eikek
f8362329a9 Authenticate with external accounts using OIDC
After successful authentication at the provider, an account is
automatically created at docspell and the user is logged in.
2021-09-05 21:39:30 +02:00
eikek
7edb96a297 Register external accounts
This creates the account if it doesn't exist yet; otherwise it's a
noop. Only valid for non-local accounts.
2021-09-05 21:38:14 +02:00
eikek
aa099a340e Remove unused code 2021-09-05 21:38:14 +02:00
eikek
aef56233a5 Add a new column to distinguish local from external users 2021-09-05 21:38:14 +02:00
eikek
b73c252762 Implement authentication via OpenIdConnect and OAuth2
The new subproject "oidc" handles all the details for working with an
OpenID Connect provider (like keycloak) or only OAuth2 - only
supporting the "Authorization Code Flow" for both variants.
2021-09-05 17:32:15 +02:00
mergify[bot]
7677340fa6
Merge pull request #1051 from scala-steward/update/scalafmt-core-3.0.2
Update scalafmt-core to 3.0.2
2021-09-03 20:33:04 +00:00
Scala Steward
177dc1fd10
Update scalafmt-core to 3.0.2 2021-09-03 22:19:45 +02:00
mergify[bot]
25e5f487ca
Merge pull request #1050 from scala-steward/update/http4s-blaze-client-0.23.3
Update http4s-blaze-client, ... to 0.23.3
2021-09-02 22:29:20 +00:00
Scala Steward
b4ab4f6d83
Update http4s-blaze-client, ... to 0.23.3 2021-09-03 00:16:02 +02:00
mergify[bot]
48b35e175f
Merge pull request #1049 from scala-steward/update/sbt-openapi-schema-0.8.2
Update sbt-openapi-schema to 0.8.2
2021-09-02 20:32:56 +00:00
Scala Steward
9f13058b23
Update sbt-openapi-schema to 0.8.2 2021-09-02 22:21:37 +02:00
eikek
4e57be6dfd Fix endpoint path in openapi spec 2021-09-02 22:06:33 +02:00
mergify[bot]
93f6f5c8c9
Merge pull request #1048 from scala-steward/update/flyway-core-7.14.1
Update flyway-core to 7.14.1
2021-09-01 22:45:48 +00:00
Scala Steward
21ecee4f87
Update flyway-core to 7.14.1 2021-09-02 00:34:46 +02:00
mergify[bot]
73de1330f3
Merge pull request #1047 from scala-steward/update/http4s-blaze-client-0.23.2
Update http4s-blaze-client, ... to 0.23.2
2021-09-01 18:50:50 +00:00
Scala Steward
25ce18cdef
Update http4s-blaze-client, ... to 0.23.2 2021-09-01 20:40:01 +02:00
mergify[bot]
ec6ebb9e96
Merge pull request #1046 from eikek/minor-cleanups
Minor cleanups
2021-08-31 23:07:54 +00:00
eikek
3a5ef62715 Add missing sql changesets 2021-09-01 00:57:03 +02:00
eikek
9dfe7f30a0 Remove unused contact kind 2021-09-01 00:57:03 +02:00
mergify[bot]
b0d676d70d
Merge pull request #1045 from scala-steward/update/scodec-bits-1.1.28
Update scodec-bits to 1.1.28
2021-08-31 20:36:30 +00:00
Scala Steward
fecd9d0d7a
Update scodec-bits to 1.1.28 2021-08-31 22:23:37 +02:00
mergify[bot]
b2589b9104
Merge pull request #1044 from eikek/feature/762-2fa
Add two-factor authentication using TOTP
2021-08-31 19:43:54 +00:00
eikek
1afc005a6c Adopt login process for two-factor auth 2021-08-31 21:29:07 +02:00
eikek
999c39833a Add user setting page for totp 2021-08-31 21:28:17 +02:00
eikek
309a52393a Initial impl for totp 2021-08-31 16:45:39 +02:00
eikek
2b46cc7970 Add a simple module for totps
This is a wrapper around the nice and minimal java-otp library [0].

[0] https://github.com/jchambers/java-otp
2021-08-31 16:45:39 +02:00
mergify[bot]
60c5120785
Merge pull request #1043 from scala-steward/update/munit-0.7.29
Update munit, munit-scalacheck to 0.7.29
2021-08-31 08:38:15 +00:00
Scala Steward
3210195062
Update munit, munit-scalacheck to 0.7.29 2021-08-31 10:26:12 +02:00
mergify[bot]
0dc43efa9f
Merge pull request #1042 from scala-steward/update/doobie-core-1.0.0-RC1
Update doobie-core, doobie-hikari to 1.0.0-RC1
2021-08-31 00:34:18 +00:00
mergify[bot]
aeeb0c252a
Merge pull request #1041 from scala-steward/update/testcontainers-scala-mariadb-0.39.7
Update testcontainers-scala-mariadb, ... to 0.39.7
2021-08-31 00:32:54 +00:00
Scala Steward
9c6329a5c6
Update doobie-core, doobie-hikari to 1.0.0-RC1 2021-08-31 02:22:13 +02:00
Scala Steward
c1c0bcbd6b
Update testcontainers-scala-mariadb, ... to 0.39.7 2021-08-31 02:22:09 +02:00
mergify[bot]
68f3d6101b
Merge pull request #1040 from eikek/query-improvements
Query improvements
2021-08-30 18:30:25 +00:00
eikek
733096f979 Improve querying item results
The join to retrieve the attachment count per item turned out to be
very expensive. And it is not used anymore for the result, only to
support fulltext search. It is now removed from the query. The
DISTINCT keyword is also removed, because it is not necessary and it
is expensive. With the DISTINCT removed, a new index (provided in the
previous commit) can now be used to avoid sorting items.
2021-08-29 11:09:06 +02:00
eikek
a5a8c2553b Add indexes to better support certain queries 2021-08-29 00:38:12 +02:00
eikek
9812b8f6c8 Set new version to 21.12-SNAPSHOT 2021-08-28 12:54:44 +02:00
eikek
5cc2ad92a2 Update nix setup
Removes the consumedir module, use the module in the dsc project [0]
instead.

[0] https://github.com/docspell/dsc/blob/master/nix/module.nix
2021-08-28 12:52:43 +02:00
eikek
be510b0363 Set version to 0.26.0 2021-08-28 11:54:08 +02:00
eikek
cf984e82bb Update Changelog 2021-08-28 11:52:00 +02:00
mergify[bot]
b98f6b96ba
Merge pull request #1038 from eikek/fix/add-proper-solr-heb-field
Fix solr setup by adding a text_he field
2021-08-27 22:29:18 +00:00
eikek
637f11d0f6 Fix solr setup by adding a text_he field
This field is used for Hebrew language. Solr doesn't support it out of
the box. The new field type is just a very basic field using the
standard tokenizer and lowercase filter. It is very likely not
providing good results. Hebrew is really difficult and it requires at
least installing plugins for solr - this is out of scope for docspell.
Users can setup their solr however they like and run a re-index
afterwards.
2021-08-28 00:10:36 +02:00
mergify[bot]
3520a2ec26
Merge pull request #1037 from eikek/small-list-improvements
Allow to specify ordering when retrieving meta data
2021-08-27 21:18:47 +00:00
eikek
cf88f5c2de Allow to specify ordering when retrieving meta data
The query now searches in more fields. For example, when getting a
list of tags, the query is applied to the tag name *and* category.
When listing persons, the query now also looks in the associated
organization name.

This has been used to make some headers in the meta data tables
clickable to sort the list accordingly.

Refs: #965, #538
2021-08-27 23:04:54 +02:00
mergify[bot]
eb53b08acd
Merge pull request #1036 from eikek/fix/1032-source-insert
Fix/1032 source insert
2021-08-27 21:01:51 +00:00
eikek
7b2fb70c04 Add missing data to insert statement
Closes: #1032
2021-08-27 22:51:34 +02:00
eikek
77d69bdcf6 Remove obsolete dockerignore file 2021-08-27 22:49:42 +02:00
mergify[bot]
5926565267
Merge pull request #1035 from scala-steward/update/scalafmt-core-3.0.1
Update scalafmt-core to 3.0.1
2021-08-27 19:03:56 +00:00
eikek
15f9f907e2
Merge pull request #1034 from seijikun/master
Add documentation for the new dsc export functionality
2021-08-27 20:56:00 +02:00
Scala Steward
ca382a02ef
Update scalafmt-core to 3.0.1 2021-08-27 20:53:57 +02:00