mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
32 lines
736 B
Go
32 lines
736 B
Go
package inbox
|
|
|
|
import (
|
|
"context"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
"github.com/go-fed/activity/streams/vocab"
|
|
)
|
|
|
|
func handleUndoInboxRequest(c context.Context, activity vocab.ActivityStreamsUndo) error {
|
|
// Determine if this is an undo of a follow, favorite, announce, etc.
|
|
o := activity.GetActivityStreamsObject()
|
|
for iter := o.Begin(); iter != o.End(); iter = iter.Next() {
|
|
if iter.IsActivityStreamsFollow() {
|
|
// This is an Unfollow request
|
|
if err := handleUnfollowRequest(c, activity); err != nil {
|
|
return err
|
|
}
|
|
} else {
|
|
t := iter.GetType()
|
|
if t != nil {
|
|
log.Traceln("Undo", t.GetTypeName(), "ignored")
|
|
} else {
|
|
log.Traceln("Undo (no type) ignored")
|
|
}
|
|
return nil
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|