Add ID on Accept activities

Part of #8
This commit is contained in:
Matt Baer 2018-11-11 13:09:19 -05:00
parent bbed72ff6b
commit 393f6d6834
1 changed files with 10 additions and 0 deletions

View File

@ -255,6 +255,16 @@ func handleFetchCollectionInbox(app *app, w http.ResponseWriter, r *http.Request
b, _ := json.Marshal(m)
log.Info("Follow: %s", b)
_, followID := f.GetId()
if followID == nil {
log.Error("Didn't resolve follow ID")
} else {
acceptID, err := url.Parse(followID.String() + "-accept")
if err != nil {
log.Error("Couldn't parse generated Accept URL '%s': %v", followID.String()+"#accept", err)
}
a.SetId(acceptID)
}
a.AppendObject(f.Raw())
_, to = f.GetActor(0)
obj := f.Raw().GetObjectIRI(0)