Add the attachment-only option to a source

The upload request can now contain a boolean for importing only
attachments when e-mails are uploaded. This option is now also added
to a source url.

Refs: #983
This commit is contained in:
eikek 2021-08-23 14:19:11 +02:00
parent 45f6357f49
commit 993a391c13
9 changed files with 71 additions and 7 deletions

View File

@ -183,7 +183,9 @@ object OUpload {
if (data.meta.fileFilter == Glob.all) src.source.fileFilterOrAll if (data.meta.fileFilter == Glob.all) src.source.fileFilterOrAll
else data.meta.fileFilter, else data.meta.fileFilter,
tags = (data.meta.tags ++ src.tags.map(_.tagId.id)).distinct, tags = (data.meta.tags ++ src.tags.map(_.tagId.id)).distinct,
language = data.meta.language.orElse(src.source.language) language = data.meta.language.orElse(src.source.language),
attachmentsOnly =
data.meta.attachmentsOnly.orElse(src.source.attachmentsOnly.some)
), ),
priority = src.source.priority priority = src.source.priority
) )

View File

@ -5402,6 +5402,7 @@ components:
- enabled - enabled
- priority - priority
- created - created
- attachmentsOnly
properties: properties:
id: id:
type: string type: string
@ -5434,6 +5435,8 @@ components:
description: DateTime description: DateTime
type: integer type: integer
format: date-time format: date-time
attachmentsOnly:
type: boolean
SourceTagIn: SourceTagIn:
description: | description: |
A source and optional tags (ids or names) for updating/adding. A source and optional tags (ids or names) for updating/adding.

View File

@ -584,7 +584,8 @@ trait Conversions {
s.source.folderId, s.source.folderId,
s.source.fileFilter, s.source.fileFilter,
s.source.language, s.source.language,
s.source.created s.source.created,
s.source.attachmentsOnly
), ),
TagList(s.tags.length, s.tags.map(mkTag).toList) TagList(s.tags.length, s.tags.map(mkTag).toList)
) )
@ -602,7 +603,8 @@ trait Conversions {
now, now,
s.folder, s.folder,
s.fileFilter, s.fileFilter,
s.language s.language,
s.attachmentsOnly
) )
} }
@ -618,7 +620,8 @@ trait Conversions {
s.created, s.created,
s.folder, s.folder,
s.fileFilter, s.fileFilter,
s.language s.language,
s.attachmentsOnly
) )
// equipment // equipment

View File

@ -0,0 +1,8 @@
ALTER TABLE "source"
ADD COLUMN "attachments_only" BOOLEAN NULL;
UPDATE "source"
SET "attachments_only" = FALSE;
ALTER TABLE "source"
ALTER COLUMN "attachments_only" SET NOT NULL;

View File

@ -0,0 +1,8 @@
ALTER TABLE `source`
ADD COLUMN (`attachments_only` BOOLEAN);
UPDATE `source`
SET `attachments_only` = false;
ALTER TABLE `source`
MODIFY `attachments_only` BOOLEAN NOT NULL;

View File

@ -0,0 +1,8 @@
ALTER TABLE "source"
ADD COLUMN "attachments_only" BOOLEAN NULL;
UPDATE "source"
SET "attachments_only" = FALSE;
ALTER TABLE "source"
ALTER COLUMN "attachments_only" SET NOT NULL;

View File

@ -26,7 +26,8 @@ case class RSource(
created: Timestamp, created: Timestamp,
folderId: Option[Ident], folderId: Option[Ident],
fileFilter: Option[Glob], fileFilter: Option[Glob],
language: Option[Language] language: Option[Language],
attachmentsOnly: Boolean
) { ) {
def fileFilterOrAll: Glob = def fileFilterOrAll: Glob =
@ -49,6 +50,7 @@ object RSource {
val folder = Column[Ident]("folder_id", this) val folder = Column[Ident]("folder_id", this)
val fileFilter = Column[Glob]("file_filter", this) val fileFilter = Column[Glob]("file_filter", this)
val language = Column[Language]("doc_lang", this) val language = Column[Language]("doc_lang", this)
val attachOnly = Column[Boolean]("attachments_only", this)
val all = val all =
NonEmptyList.of[Column[_]]( NonEmptyList.of[Column[_]](
@ -62,7 +64,8 @@ object RSource {
created, created,
folder, folder,
fileFilter, fileFilter,
language language,
attachOnly
) )
} }
@ -90,7 +93,8 @@ object RSource {
table.priority.setTo(v.priority), table.priority.setTo(v.priority),
table.folder.setTo(v.folderId), table.folder.setTo(v.folderId),
table.fileFilter.setTo(v.fileFilter), table.fileFilter.setTo(v.fileFilter),
table.language.setTo(v.language) table.language.setTo(v.language),
table.attachOnly.setTo(v.attachmentsOnly)
) )
) )

View File

@ -57,6 +57,7 @@ type alias Model =
, fileFilter : Maybe String , fileFilter : Maybe String
, languageModel : Comp.Dropdown.Model Language , languageModel : Comp.Dropdown.Model Language
, language : Maybe String , language : Maybe String
, attachmentsOnly : Bool
} }
@ -80,6 +81,7 @@ emptyModel =
, selected = Nothing , selected = Nothing
} }
, language = Nothing , language = Nothing
, attachmentsOnly = False
} }
@ -119,6 +121,7 @@ getSource model =
, folder = model.folderId , folder = model.folderId
, fileFilter = model.fileFilter , fileFilter = model.fileFilter
, language = model.language , language = model.language
, attachmentsOnly = model.attachmentsOnly
} }
in in
{ st | source = n, tags = TagList (List.length tags) tags } { st | source = n, tags = TagList (List.length tags) tags }
@ -136,6 +139,7 @@ type Msg
| TagDropdownMsg (Comp.Dropdown.Msg Tag) | TagDropdownMsg (Comp.Dropdown.Msg Tag)
| SetFileFilter String | SetFileFilter String
| LanguageMsg (Comp.Dropdown.Msg Language) | LanguageMsg (Comp.Dropdown.Msg Language)
| ToggleAttachmentsOnly
@ -219,6 +223,9 @@ update flags msg model =
ToggleEnabled -> ToggleEnabled ->
( { model | enabled = not model.enabled }, Cmd.none ) ( { model | enabled = not model.enabled }, Cmd.none )
ToggleAttachmentsOnly ->
( { model | attachmentsOnly = not model.attachmentsOnly }, Cmd.none )
SetAbbrev n -> SetAbbrev n ->
( { model | abbrev = n }, Cmd.none ) ( { model | abbrev = n }, Cmd.none )
@ -496,6 +503,24 @@ view2 flags texts settings model =
[ Markdown.toHtml [] texts.fileFilterInfo [ Markdown.toHtml [] texts.fileFilterInfo
] ]
] ]
, div [ class "mb-4" ]
[ label
[ class "inline-flex items-center"
, for "attachments-only"
]
[ input
[ type_ "checkbox"
, onCheck (\_ -> ToggleAttachmentsOnly)
, checked model.attachmentsOnly
, class S.checkboxInput
, id "attachments-only"
]
[]
, span [ class "ml-2" ]
[ text texts.attachmentsOnly
]
]
]
, div [ class "mb-4" ] , div [ class "mb-4" ]
[ label [ class S.inputLabel ] [ label [ class S.inputLabel ]
[ text (texts.language ++ ":") [ text (texts.language ++ ":")

View File

@ -31,6 +31,7 @@ type alias Texts =
, language : String , language : String
, languageInfo : String , languageInfo : String
, languageLabel : Language -> String , languageLabel : Language -> String
, attachmentsOnly : String
} }
@ -61,6 +62,7 @@ Specify a file glob to filter files when uploading archives
"Used for text extraction and analysis. The collective's " "Used for text extraction and analysis. The collective's "
++ "default language is used if not specified here." ++ "default language is used if not specified here."
, languageLabel = Messages.Data.Language.gb , languageLabel = Messages.Data.Language.gb
, attachmentsOnly = "Only import attachments for e-mails"
} }
@ -93,4 +95,5 @@ importieren: `*.pdf`. Globs können auch mittels OR kombiniert werden:
"Wird für die Texterkennung und -analyse verwendet. Die Standardsprache des Kollektivs " "Wird für die Texterkennung und -analyse verwendet. Die Standardsprache des Kollektivs "
++ "wird verwendet, falls hier nicht angegeben." ++ "wird verwendet, falls hier nicht angegeben."
, languageLabel = Messages.Data.Language.de , languageLabel = Messages.Data.Language.de
, attachmentsOnly = "Bei E-Mails nur die Anhänge importieren"
} }