aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulio Capote <jcapote@gmail.com>2023-01-01 22:10:23 +0000
committerJulio Capote <jcapote@gmail.com>2023-01-01 22:10:23 +0000
commitbce250b0e75812c4f61b925d898c320d6ef11c5c (patch)
tree46a9ebd1598cd6b5fd1e3914c761dc5dc5295de5
parentb5591aa8deed658cd3bb032d4800d7eb1c5b8a3f (diff)
downloadcommunique-bce250b0e75812c4f61b925d898c320d6ef11c5c.tar.gz
forgot to add note.go
-rw-r--r--views/note.go20
1 files changed, 20 insertions, 0 deletions
diff --git a/views/note.go b/views/note.go
new file mode 100644
index 0000000..6d354ed
--- /dev/null
+++ b/views/note.go
@@ -0,0 +1,20 @@
+package views
+
+import (
+ "net/url"
+
+ "git.capotej.com/capotej/communique/models"
+ "github.com/go-fed/activity/streams"
+)
+
+func RenderNote(name, domain string, item models.OutboxItem) (map[string]interface{}, error) {
+ publicUrl, err := url.Parse("https://www.w3.org/ns/activitystreams#Public")
+ if err != nil {
+ return nil, err
+ }
+ toProp := streams.NewActivityStreamsToProperty()
+ toProp.AppendIRI(publicUrl)
+ crea := streams.NewActivityStreamsNote()
+ crea.SetActivityStreamsTo(toProp)
+ return streams.Serialize(crea)
+}