From c1910ae000b436d4e96d8cbfa774f3de5e855220 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Fri, 10 Nov 2023 17:09:09 +0100 Subject: [PATCH 1/3] Add documentation for #2362 Document the new `set-date` addon action introduced by #2362. Signed-off-by: martin f. krafft --- website/site/content/docs/addons/writing.md | 4 ++-- .../src/main/scala/docspell/website/AddonOutputExample.scala | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/website/site/content/docs/addons/writing.md b/website/site/content/docs/addons/writing.md index 5e68969e..2f8b1ef9 100644 --- a/website/site/content/docs/addons/writing.md +++ b/website/site/content/docs/addons/writing.md @@ -162,8 +162,8 @@ You find the complete structure below. It consists of these parts: - `newItems`: declares files relative to `OUTPUT_DIR` that should be processed as new uploads -The `commands` allows to set tags, fields and other things. All parts -are optional, you don't need to return the complete structure. Just +The `commands` allows to set the item date, tags, fields and other things. All +parts are optional, you don't need to return the complete structure. Just returning `commands` or only `files` is ok. **Example** diff --git a/website/src/main/scala/docspell/website/AddonOutputExample.scala b/website/src/main/scala/docspell/website/AddonOutputExample.scala index c7059ea4..46e15b52 100644 --- a/website/src/main/scala/docspell/website/AddonOutputExample.scala +++ b/website/src/main/scala/docspell/website/AddonOutputExample.scala @@ -15,6 +15,7 @@ object AddonOutputExample extends Helper { BackendCommand.ItemUpdate( itemId = id("XabZ-item-id"), actions = List( + ItemAction.SetDate(1699632496000), ItemAction.AddTags(Set("tag1", "tag2")), ItemAction.ReplaceTags(Set("tagX", "tagY")), ItemAction.RemoveTags(Set("tag0", "tag9")), From ffce5868a6ab23557ede57701573d05a0b910602 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Sat, 11 Nov 2023 20:32:42 +0100 Subject: [PATCH 2/3] Make timestamp a 64bit integer Signed-off-by: martin f. krafft --- .../src/main/scala/docspell/website/AddonOutputExample.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/main/scala/docspell/website/AddonOutputExample.scala b/website/src/main/scala/docspell/website/AddonOutputExample.scala index 46e15b52..c752d465 100644 --- a/website/src/main/scala/docspell/website/AddonOutputExample.scala +++ b/website/src/main/scala/docspell/website/AddonOutputExample.scala @@ -15,7 +15,7 @@ object AddonOutputExample extends Helper { BackendCommand.ItemUpdate( itemId = id("XabZ-item-id"), actions = List( - ItemAction.SetDate(1699632496000), + ItemAction.SetDate(1699632496000L), ItemAction.AddTags(Set("tag1", "tag2")), ItemAction.ReplaceTags(Set("tagX", "tagY")), ItemAction.RemoveTags(Set("tag0", "tag9")), From d26f1d29c739bacdfe03d76ae4cabe677b1e1d6d Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Sun, 12 Nov 2023 11:00:35 +0100 Subject: [PATCH 3/3] Pass a Timestamp to set-date, not a Long Signed-off-by: martin f. krafft --- .../src/main/scala/docspell/website/AddonOutputExample.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/src/main/scala/docspell/website/AddonOutputExample.scala b/website/src/main/scala/docspell/website/AddonOutputExample.scala index c752d465..7cdf6e67 100644 --- a/website/src/main/scala/docspell/website/AddonOutputExample.scala +++ b/website/src/main/scala/docspell/website/AddonOutputExample.scala @@ -5,6 +5,7 @@ import docspell.addons.out.{AddonOutput, ItemFile, NewFile, NewItem} import docspell.addons.out.NewFile.{Meta => FileMeta} import docspell.addons.out.NewItem.{Meta => ItemMeta} import docspell.common._ +import docspell.common.Timestamp import docspell.common.bc.{AttachmentAction, BackendCommand, ItemAction} import io.circe.syntax._ @@ -15,7 +16,7 @@ object AddonOutputExample extends Helper { BackendCommand.ItemUpdate( itemId = id("XabZ-item-id"), actions = List( - ItemAction.SetDate(1699632496000L), + ItemAction.SetDate(Timestamp.ofMillis(1699697471000L)), ItemAction.AddTags(Set("tag1", "tag2")), ItemAction.ReplaceTags(Set("tagX", "tagY")), ItemAction.RemoveTags(Set("tag0", "tag9")),