mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-30 09:52:25 -05:00
[feature] Allow delivery to sharedInboxes where possible (#847)
* update Activity * add instance-deliver-to-shared-inboxes setting * update activity version again * add SharedInboxURI field to accounts * serdes for endpoints/sharedInbox * deliver to sharedInbox if one is available * update tests * only assign shared inbox if shared domain * look for shared inbox if currently nil * go fmt * finger to get params.RemoteAccountID if necessary * make comments clearer * compare dns more consistently
This commit is contained in:
parent
eb1bb8b1b3
commit
69a193dae5
69 changed files with 2212 additions and 32 deletions
9
vendor/github.com/superseriousbusiness/activity/streams/gen_consts.go
generated
vendored
9
vendor/github.com/superseriousbusiness/activity/streams/gen_consts.go
generated
vendored
|
|
@ -56,6 +56,9 @@ var ActivityStreamsDocumentName string = "Document"
|
|||
// TootEmojiName is the string literal of the name for the Emoji type in the Toot vocabulary.
|
||||
var TootEmojiName string = "Emoji"
|
||||
|
||||
// ActivityStreamsEndpointsName is the string literal of the name for the Endpoints type in the ActivityStreams vocabulary.
|
||||
var ActivityStreamsEndpointsName string = "Endpoints"
|
||||
|
||||
// ActivityStreamsEventName is the string literal of the name for the Event type in the ActivityStreams vocabulary.
|
||||
var ActivityStreamsEventName string = "Event"
|
||||
|
||||
|
|
@ -281,6 +284,9 @@ var ForgeFedEarlyItemsPropertyName string = "earlyItems"
|
|||
// ActivityStreamsEndTimePropertyName is the string literal of the name for the endTime property in the ActivityStreams vocabulary.
|
||||
var ActivityStreamsEndTimePropertyName string = "endTime"
|
||||
|
||||
// ActivityStreamsEndpointsPropertyName is the string literal of the name for the endpoints property in the ActivityStreams vocabulary.
|
||||
var ActivityStreamsEndpointsPropertyName string = "endpoints"
|
||||
|
||||
// TootFeaturedPropertyName is the string literal of the name for the featured property in the Toot vocabulary.
|
||||
var TootFeaturedPropertyName string = "featured"
|
||||
|
||||
|
|
@ -440,6 +446,9 @@ var ActivityStreamsResultPropertyName string = "result"
|
|||
// ActivityStreamsSensitivePropertyName is the string literal of the name for the sensitive property in the ActivityStreams vocabulary.
|
||||
var ActivityStreamsSensitivePropertyName string = "sensitive"
|
||||
|
||||
// ActivityStreamsSharedInboxPropertyName is the string literal of the name for the sharedInbox property in the ActivityStreams vocabulary.
|
||||
var ActivityStreamsSharedInboxPropertyName string = "sharedInbox"
|
||||
|
||||
// ActivityStreamsSharesPropertyName is the string literal of the name for the shares property in the ActivityStreams vocabulary.
|
||||
var ActivityStreamsSharesPropertyName string = "shares"
|
||||
|
||||
|
|
|
|||
7
vendor/github.com/superseriousbusiness/activity/streams/gen_init.go
generated
vendored
7
vendor/github.com/superseriousbusiness/activity/streams/gen_init.go
generated
vendored
|
|
@ -20,6 +20,7 @@ import (
|
|||
propertydeleted "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_deleted"
|
||||
propertydescribes "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes"
|
||||
propertyduration "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_duration"
|
||||
propertyendpoints "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints"
|
||||
propertyendtime "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endtime"
|
||||
propertyfirst "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first"
|
||||
propertyfollowers "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers"
|
||||
|
|
@ -61,6 +62,7 @@ import (
|
|||
propertyreplies "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies"
|
||||
propertyresult "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result"
|
||||
propertysensitive "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive"
|
||||
propertysharedinbox "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sharedinbox"
|
||||
propertyshares "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares"
|
||||
propertysource "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source"
|
||||
propertystartindex "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_startindex"
|
||||
|
|
@ -91,6 +93,7 @@ import (
|
|||
typedelete "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete"
|
||||
typedislike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike"
|
||||
typedocument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document"
|
||||
typeendpoints "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_endpoints"
|
||||
typeevent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event"
|
||||
typeflag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag"
|
||||
typefollow "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow"
|
||||
|
|
@ -199,6 +202,7 @@ func init() {
|
|||
propertydeleted.SetManager(mgr)
|
||||
propertydescribes.SetManager(mgr)
|
||||
propertyduration.SetManager(mgr)
|
||||
propertyendpoints.SetManager(mgr)
|
||||
propertyendtime.SetManager(mgr)
|
||||
propertyfirst.SetManager(mgr)
|
||||
propertyfollowers.SetManager(mgr)
|
||||
|
|
@ -240,6 +244,7 @@ func init() {
|
|||
propertyreplies.SetManager(mgr)
|
||||
propertyresult.SetManager(mgr)
|
||||
propertysensitive.SetManager(mgr)
|
||||
propertysharedinbox.SetManager(mgr)
|
||||
propertyshares.SetManager(mgr)
|
||||
propertysource.SetManager(mgr)
|
||||
propertystartindex.SetManager(mgr)
|
||||
|
|
@ -270,6 +275,7 @@ func init() {
|
|||
typedelete.SetManager(mgr)
|
||||
typedislike.SetManager(mgr)
|
||||
typedocument.SetManager(mgr)
|
||||
typeendpoints.SetManager(mgr)
|
||||
typeevent.SetManager(mgr)
|
||||
typeflag.SetManager(mgr)
|
||||
typefollow.SetManager(mgr)
|
||||
|
|
@ -361,6 +367,7 @@ func init() {
|
|||
typedelete.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
typedislike.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
typedocument.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
typeendpoints.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
typeevent.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
typeflag.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
typefollow.SetTypePropertyConstructor(NewJSONLDTypeProperty)
|
||||
|
|
|
|||
13
vendor/github.com/superseriousbusiness/activity/streams/gen_json_resolver.go
generated
vendored
13
vendor/github.com/superseriousbusiness/activity/streams/gen_json_resolver.go
generated
vendored
|
|
@ -67,6 +67,8 @@ func NewJSONResolver(callbacks ...interface{}) (*JSONResolver, error) {
|
|||
// Do nothing, this callback has a correct signature.
|
||||
case func(context.Context, vocab.TootEmoji) error:
|
||||
// Do nothing, this callback has a correct signature.
|
||||
case func(context.Context, vocab.ActivityStreamsEndpoints) error:
|
||||
// Do nothing, this callback has a correct signature.
|
||||
case func(context.Context, vocab.ActivityStreamsEvent) error:
|
||||
// Do nothing, this callback has a correct signature.
|
||||
case func(context.Context, vocab.ActivityStreamsFlag) error:
|
||||
|
|
@ -456,6 +458,17 @@ func (this JSONResolver) Resolve(ctx context.Context, m map[string]interface{})
|
|||
}
|
||||
}
|
||||
return ErrNoCallbackMatch
|
||||
} else if typeString == ActivityStreamsAlias+"Endpoints" {
|
||||
v, err := mgr.DeserializeEndpointsActivityStreams()(m, aliasMap)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
for _, i := range this.callbacks {
|
||||
if fn, ok := i.(func(context.Context, vocab.ActivityStreamsEndpoints) error); ok {
|
||||
return fn(ctx, v)
|
||||
}
|
||||
}
|
||||
return ErrNoCallbackMatch
|
||||
} else if typeString == ActivityStreamsAlias+"Event" {
|
||||
v, err := mgr.DeserializeEventActivityStreams()(m, aliasMap)
|
||||
if err != nil {
|
||||
|
|
|
|||
42
vendor/github.com/superseriousbusiness/activity/streams/gen_manager.go
generated
vendored
42
vendor/github.com/superseriousbusiness/activity/streams/gen_manager.go
generated
vendored
|
|
@ -20,6 +20,7 @@ import (
|
|||
propertydeleted "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_deleted"
|
||||
propertydescribes "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes"
|
||||
propertyduration "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_duration"
|
||||
propertyendpoints "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints"
|
||||
propertyendtime "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endtime"
|
||||
propertyfirst "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first"
|
||||
propertyfollowers "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers"
|
||||
|
|
@ -61,6 +62,7 @@ import (
|
|||
propertyreplies "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies"
|
||||
propertyresult "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result"
|
||||
propertysensitive "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive"
|
||||
propertysharedinbox "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sharedinbox"
|
||||
propertyshares "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares"
|
||||
propertysource "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source"
|
||||
propertystartindex "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_startindex"
|
||||
|
|
@ -91,6 +93,7 @@ import (
|
|||
typedelete "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete"
|
||||
typedislike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike"
|
||||
typedocument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document"
|
||||
typeendpoints "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_endpoints"
|
||||
typeevent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event"
|
||||
typeflag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag"
|
||||
typefollow "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow"
|
||||
|
|
@ -784,6 +787,32 @@ func (this Manager) DeserializeEndTimePropertyActivityStreams() func(map[string]
|
|||
}
|
||||
}
|
||||
|
||||
// DeserializeEndpointsActivityStreams returns the deserialization method for the
|
||||
// "ActivityStreamsEndpoints" non-functional property in the vocabulary
|
||||
// "ActivityStreams"
|
||||
func (this Manager) DeserializeEndpointsActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndpoints, error) {
|
||||
return func(m map[string]interface{}, aliasMap map[string]string) (vocab.ActivityStreamsEndpoints, error) {
|
||||
i, err := typeendpoints.DeserializeEndpoints(m, aliasMap)
|
||||
if i == nil {
|
||||
return nil, err
|
||||
}
|
||||
return i, err
|
||||
}
|
||||
}
|
||||
|
||||
// DeserializeEndpointsPropertyActivityStreams returns the deserialization method
|
||||
// for the "ActivityStreamsEndpointsProperty" non-functional property in the
|
||||
// vocabulary "ActivityStreams"
|
||||
func (this Manager) DeserializeEndpointsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndpointsProperty, error) {
|
||||
return func(m map[string]interface{}, aliasMap map[string]string) (vocab.ActivityStreamsEndpointsProperty, error) {
|
||||
i, err := propertyendpoints.DeserializeEndpointsProperty(m, aliasMap)
|
||||
if i == nil {
|
||||
return nil, err
|
||||
}
|
||||
return i, err
|
||||
}
|
||||
}
|
||||
|
||||
// DeserializeEventActivityStreams returns the deserialization method for the
|
||||
// "ActivityStreamsEvent" non-functional property in the vocabulary
|
||||
// "ActivityStreams"
|
||||
|
|
@ -1908,6 +1937,19 @@ func (this Manager) DeserializeServiceActivityStreams() func(map[string]interfac
|
|||
}
|
||||
}
|
||||
|
||||
// DeserializeSharedInboxPropertyActivityStreams returns the deserialization
|
||||
// method for the "ActivityStreamsSharedInboxProperty" non-functional property
|
||||
// in the vocabulary "ActivityStreams"
|
||||
func (this Manager) DeserializeSharedInboxPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSharedInboxProperty, error) {
|
||||
return func(m map[string]interface{}, aliasMap map[string]string) (vocab.ActivityStreamsSharedInboxProperty, error) {
|
||||
i, err := propertysharedinbox.DeserializeSharedInboxProperty(m, aliasMap)
|
||||
if i == nil {
|
||||
return nil, err
|
||||
}
|
||||
return i, err
|
||||
}
|
||||
}
|
||||
|
||||
// DeserializeSharesPropertyActivityStreams returns the deserialization method for
|
||||
// the "ActivityStreamsSharesProperty" non-functional property in the
|
||||
// vocabulary "ActivityStreams"
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ import (
|
|||
typedelete "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete"
|
||||
typedislike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike"
|
||||
typedocument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document"
|
||||
typeendpoints "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_endpoints"
|
||||
typeevent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event"
|
||||
typeflag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag"
|
||||
typefollow "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow"
|
||||
|
|
@ -150,6 +151,12 @@ func ActivityStreamsDocumentIsDisjointWith(other vocab.Type) bool {
|
|||
return typedocument.DocumentIsDisjointWith(other)
|
||||
}
|
||||
|
||||
// ActivityStreamsEndpointsIsDisjointWith returns true if Endpoints is disjoint
|
||||
// with the other's type.
|
||||
func ActivityStreamsEndpointsIsDisjointWith(other vocab.Type) bool {
|
||||
return typeendpoints.EndpointsIsDisjointWith(other)
|
||||
}
|
||||
|
||||
// ActivityStreamsEventIsDisjointWith returns true if Event is disjoint with the
|
||||
// other's type.
|
||||
func ActivityStreamsEventIsDisjointWith(other vocab.Type) bool {
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ import (
|
|||
typedelete "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete"
|
||||
typedislike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike"
|
||||
typedocument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document"
|
||||
typeendpoints "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_endpoints"
|
||||
typeevent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event"
|
||||
typeflag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag"
|
||||
typefollow "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow"
|
||||
|
|
@ -165,6 +166,13 @@ func ActivityStreamsDocumentIsExtendedBy(other vocab.Type) bool {
|
|||
return typedocument.DocumentIsExtendedBy(other)
|
||||
}
|
||||
|
||||
// ActivityStreamsEndpointsIsExtendedBy returns true if the other's type extends
|
||||
// from Endpoints. Note that it returns false if the types are the same; see
|
||||
// the "IsOrExtends" variant instead.
|
||||
func ActivityStreamsEndpointsIsExtendedBy(other vocab.Type) bool {
|
||||
return typeendpoints.EndpointsIsExtendedBy(other)
|
||||
}
|
||||
|
||||
// ActivityStreamsEventIsExtendedBy returns true if the other's type extends from
|
||||
// Event. Note that it returns false if the types are the same; see the
|
||||
// "IsOrExtends" variant instead.
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ import (
|
|||
typedelete "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete"
|
||||
typedislike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike"
|
||||
typedocument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document"
|
||||
typeendpoints "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_endpoints"
|
||||
typeevent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event"
|
||||
typeflag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag"
|
||||
typefollow "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow"
|
||||
|
|
@ -150,6 +151,12 @@ func ActivityStreamsActivityStreamsDocumentExtends(other vocab.Type) bool {
|
|||
return typedocument.ActivityStreamsDocumentExtends(other)
|
||||
}
|
||||
|
||||
// ActivityStreamsActivityStreamsEndpointsExtends returns true if Endpoints
|
||||
// extends from the other's type.
|
||||
func ActivityStreamsActivityStreamsEndpointsExtends(other vocab.Type) bool {
|
||||
return typeendpoints.ActivityStreamsEndpointsExtends(other)
|
||||
}
|
||||
|
||||
// ActivityStreamsActivityStreamsEventExtends returns true if Event extends from
|
||||
// the other's type.
|
||||
func ActivityStreamsActivityStreamsEventExtends(other vocab.Type) bool {
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ import (
|
|||
typedelete "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete"
|
||||
typedislike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike"
|
||||
typedocument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document"
|
||||
typeendpoints "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_endpoints"
|
||||
typeevent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event"
|
||||
typeflag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag"
|
||||
typefollow "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow"
|
||||
|
|
@ -150,6 +151,12 @@ func IsOrExtendsActivityStreamsDocument(other vocab.Type) bool {
|
|||
return typedocument.IsOrExtendsDocument(other)
|
||||
}
|
||||
|
||||
// IsOrExtendsActivityStreamsEndpoints returns true if the other provided type is
|
||||
// the Endpoints type or extends from the Endpoints type.
|
||||
func IsOrExtendsActivityStreamsEndpoints(other vocab.Type) bool {
|
||||
return typeendpoints.IsOrExtendsEndpoints(other)
|
||||
}
|
||||
|
||||
// IsOrExtendsActivityStreamsEvent returns true if the other provided type is the
|
||||
// Event type or extends from the Event type.
|
||||
func IsOrExtendsActivityStreamsEvent(other vocab.Type) bool {
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ import (
|
|||
propertydeleted "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_deleted"
|
||||
propertydescribes "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_describes"
|
||||
propertyduration "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_duration"
|
||||
propertyendpoints "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints"
|
||||
propertyendtime "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endtime"
|
||||
propertyfirst "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first"
|
||||
propertyfollowers "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_followers"
|
||||
|
|
@ -61,6 +62,7 @@ import (
|
|||
propertyreplies "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_replies"
|
||||
propertyresult "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_result"
|
||||
propertysensitive "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sensitive"
|
||||
propertysharedinbox "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sharedinbox"
|
||||
propertyshares "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_shares"
|
||||
propertysource "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_source"
|
||||
propertystartindex "github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_startindex"
|
||||
|
|
@ -187,6 +189,12 @@ func NewActivityStreamsEndTimeProperty() vocab.ActivityStreamsEndTimeProperty {
|
|||
return propertyendtime.NewActivityStreamsEndTimeProperty()
|
||||
}
|
||||
|
||||
// NewActivityStreamsActivityStreamsEndpointsProperty creates a new
|
||||
// ActivityStreamsEndpointsProperty
|
||||
func NewActivityStreamsEndpointsProperty() vocab.ActivityStreamsEndpointsProperty {
|
||||
return propertyendpoints.NewActivityStreamsEndpointsProperty()
|
||||
}
|
||||
|
||||
// NewActivityStreamsActivityStreamsFirstProperty creates a new
|
||||
// ActivityStreamsFirstProperty
|
||||
func NewActivityStreamsFirstProperty() vocab.ActivityStreamsFirstProperty {
|
||||
|
|
@ -427,6 +435,12 @@ func NewActivityStreamsSensitiveProperty() vocab.ActivityStreamsSensitivePropert
|
|||
return propertysensitive.NewActivityStreamsSensitiveProperty()
|
||||
}
|
||||
|
||||
// NewActivityStreamsActivityStreamsSharedInboxProperty creates a new
|
||||
// ActivityStreamsSharedInboxProperty
|
||||
func NewActivityStreamsSharedInboxProperty() vocab.ActivityStreamsSharedInboxProperty {
|
||||
return propertysharedinbox.NewActivityStreamsSharedInboxProperty()
|
||||
}
|
||||
|
||||
// NewActivityStreamsActivityStreamsSharesProperty creates a new
|
||||
// ActivityStreamsSharesProperty
|
||||
func NewActivityStreamsSharesProperty() vocab.ActivityStreamsSharesProperty {
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ import (
|
|||
typedelete "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_delete"
|
||||
typedislike "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_dislike"
|
||||
typedocument "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_document"
|
||||
typeendpoints "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_endpoints"
|
||||
typeevent "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_event"
|
||||
typeflag "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_flag"
|
||||
typefollow "github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_follow"
|
||||
|
|
@ -135,6 +136,11 @@ func NewActivityStreamsDocument() vocab.ActivityStreamsDocument {
|
|||
return typedocument.NewActivityStreamsDocument()
|
||||
}
|
||||
|
||||
// NewActivityStreamsEndpoints creates a new ActivityStreamsEndpoints
|
||||
func NewActivityStreamsEndpoints() vocab.ActivityStreamsEndpoints {
|
||||
return typeendpoints.NewActivityStreamsEndpoints()
|
||||
}
|
||||
|
||||
// NewActivityStreamsEvent creates a new ActivityStreamsEvent
|
||||
func NewActivityStreamsEvent() vocab.ActivityStreamsEvent {
|
||||
return typeevent.NewActivityStreamsEvent()
|
||||
|
|
|
|||
3
vendor/github.com/superseriousbusiness/activity/streams/gen_resolver_utils.go
generated
vendored
3
vendor/github.com/superseriousbusiness/activity/streams/gen_resolver_utils.go
generated
vendored
|
|
@ -100,6 +100,9 @@ func ToType(c context.Context, m map[string]interface{}) (t vocab.Type, err erro
|
|||
}, func(ctx context.Context, i vocab.TootEmoji) error {
|
||||
t = i
|
||||
return nil
|
||||
}, func(ctx context.Context, i vocab.ActivityStreamsEndpoints) error {
|
||||
t = i
|
||||
return nil
|
||||
}, func(ctx context.Context, i vocab.ActivityStreamsEvent) error {
|
||||
t = i
|
||||
return nil
|
||||
|
|
|
|||
13
vendor/github.com/superseriousbusiness/activity/streams/gen_type_predicated_resolver.go
generated
vendored
13
vendor/github.com/superseriousbusiness/activity/streams/gen_type_predicated_resolver.go
generated
vendored
|
|
@ -65,6 +65,8 @@ func NewTypePredicatedResolver(delegate Resolver, predicate interface{}) (*TypeP
|
|||
// Do nothing, this predicate has a correct signature.
|
||||
case func(context.Context, vocab.TootEmoji) (bool, error):
|
||||
// Do nothing, this predicate has a correct signature.
|
||||
case func(context.Context, vocab.ActivityStreamsEndpoints) (bool, error):
|
||||
// Do nothing, this predicate has a correct signature.
|
||||
case func(context.Context, vocab.ActivityStreamsEvent) (bool, error):
|
||||
// Do nothing, this predicate has a correct signature.
|
||||
case func(context.Context, vocab.ActivityStreamsFlag) (bool, error):
|
||||
|
|
@ -372,6 +374,17 @@ func (this TypePredicatedResolver) Apply(ctx context.Context, o ActivityStreamsI
|
|||
} else {
|
||||
return false, ErrPredicateUnmatched
|
||||
}
|
||||
} else if o.VocabularyURI() == "https://www.w3.org/ns/activitystreams" && o.GetTypeName() == "Endpoints" {
|
||||
if fn, ok := this.predicate.(func(context.Context, vocab.ActivityStreamsEndpoints) (bool, error)); ok {
|
||||
if v, ok := o.(vocab.ActivityStreamsEndpoints); ok {
|
||||
predicatePasses, err = fn(ctx, v)
|
||||
} else {
|
||||
// This occurs when the value is either not a go-fed type and is improperly satisfying various interfaces, or there is a bug in the go-fed generated code.
|
||||
return false, errCannotTypeAssertType
|
||||
}
|
||||
} else {
|
||||
return false, ErrPredicateUnmatched
|
||||
}
|
||||
} else if o.VocabularyURI() == "https://www.w3.org/ns/activitystreams" && o.GetTypeName() == "Event" {
|
||||
if fn, ok := this.predicate.(func(context.Context, vocab.ActivityStreamsEvent) (bool, error)); ok {
|
||||
if v, ok := o.(vocab.ActivityStreamsEvent); ok {
|
||||
|
|
|
|||
11
vendor/github.com/superseriousbusiness/activity/streams/gen_type_resolver.go
generated
vendored
11
vendor/github.com/superseriousbusiness/activity/streams/gen_type_resolver.go
generated
vendored
|
|
@ -64,6 +64,8 @@ func NewTypeResolver(callbacks ...interface{}) (*TypeResolver, error) {
|
|||
// Do nothing, this callback has a correct signature.
|
||||
case func(context.Context, vocab.TootEmoji) error:
|
||||
// Do nothing, this callback has a correct signature.
|
||||
case func(context.Context, vocab.ActivityStreamsEndpoints) error:
|
||||
// Do nothing, this callback has a correct signature.
|
||||
case func(context.Context, vocab.ActivityStreamsEvent) error:
|
||||
// Do nothing, this callback has a correct signature.
|
||||
case func(context.Context, vocab.ActivityStreamsFlag) error:
|
||||
|
|
@ -331,6 +333,15 @@ func (this TypeResolver) Resolve(ctx context.Context, o ActivityStreamsInterface
|
|||
return errCannotTypeAssertType
|
||||
}
|
||||
}
|
||||
} else if o.VocabularyURI() == "https://www.w3.org/ns/activitystreams" && o.GetTypeName() == "Endpoints" {
|
||||
if fn, ok := i.(func(context.Context, vocab.ActivityStreamsEndpoints) error); ok {
|
||||
if v, ok := o.(vocab.ActivityStreamsEndpoints); ok {
|
||||
return fn(ctx, v)
|
||||
} else {
|
||||
// This occurs when the value is either not a go-fed type and is improperly satisfying various interfaces, or there is a bug in the go-fed generated code.
|
||||
return errCannotTypeAssertType
|
||||
}
|
||||
}
|
||||
} else if o.VocabularyURI() == "https://www.w3.org/ns/activitystreams" && o.GetTypeName() == "Event" {
|
||||
if fn, ok := i.(func(context.Context, vocab.ActivityStreamsEvent) error); ok {
|
||||
if v, ok := o.(vocab.ActivityStreamsEvent); ok {
|
||||
|
|
|
|||
17
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_doc.go
generated
vendored
Normal file
17
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_doc.go
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
// Package propertyendpoints contains the implementation for the endpoints
|
||||
// property. All applications are strongly encouraged to use the interface
|
||||
// instead of this concrete definition. The interfaces allow applications to
|
||||
// consume only the types and properties needed and be independent of the
|
||||
// go-fed implementation if another alternative implementation is created.
|
||||
// This package is code-generated and subject to the same license as the
|
||||
// go-fed tool used to generate it.
|
||||
//
|
||||
// This package is independent of other types' and properties' implementations
|
||||
// by having a Manager injected into it to act as a factory for the concrete
|
||||
// implementations. The implementations have been generated into their own
|
||||
// separate subpackages for each vocabulary.
|
||||
//
|
||||
// Strongly consider using the interfaces instead of this package.
|
||||
package propertyendpoints
|
||||
22
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_pkg.go
generated
vendored
Normal file
22
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_pkg.go
generated
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package propertyendpoints
|
||||
|
||||
import vocab "github.com/superseriousbusiness/activity/streams/vocab"
|
||||
|
||||
var mgr privateManager
|
||||
|
||||
// privateManager abstracts the code-generated manager that provides access to
|
||||
// concrete implementations.
|
||||
type privateManager interface {
|
||||
// DeserializeEndpointsActivityStreams returns the deserialization method
|
||||
// for the "ActivityStreamsEndpoints" non-functional property in the
|
||||
// vocabulary "ActivityStreams"
|
||||
DeserializeEndpointsActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndpoints, error)
|
||||
}
|
||||
|
||||
// SetManager sets the manager package-global variable. For internal use only, do
|
||||
// not use as part of Application behavior. Must be called at golang init time.
|
||||
func SetManager(m privateManager) {
|
||||
mgr = m
|
||||
}
|
||||
621
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_property_activitystreams_endpoints.go
generated
vendored
Normal file
621
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_property_activitystreams_endpoints.go
generated
vendored
Normal file
|
|
@ -0,0 +1,621 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package propertyendpoints
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
vocab "github.com/superseriousbusiness/activity/streams/vocab"
|
||||
"net/url"
|
||||
)
|
||||
|
||||
// ActivityStreamsEndpointsPropertyIterator is an iterator for a property. It is
|
||||
// permitted to be a single nilable value type.
|
||||
type ActivityStreamsEndpointsPropertyIterator struct {
|
||||
activitystreamsEndpointsMember vocab.ActivityStreamsEndpoints
|
||||
unknown interface{}
|
||||
iri *url.URL
|
||||
alias string
|
||||
myIdx int
|
||||
parent vocab.ActivityStreamsEndpointsProperty
|
||||
}
|
||||
|
||||
// NewActivityStreamsEndpointsPropertyIterator creates a new
|
||||
// ActivityStreamsEndpoints property.
|
||||
func NewActivityStreamsEndpointsPropertyIterator() *ActivityStreamsEndpointsPropertyIterator {
|
||||
return &ActivityStreamsEndpointsPropertyIterator{alias: ""}
|
||||
}
|
||||
|
||||
// deserializeActivityStreamsEndpointsPropertyIterator creates an iterator from an
|
||||
// element that has been unmarshalled from a text or binary format.
|
||||
func deserializeActivityStreamsEndpointsPropertyIterator(i interface{}, aliasMap map[string]string) (*ActivityStreamsEndpointsPropertyIterator, error) {
|
||||
alias := ""
|
||||
if a, ok := aliasMap["https://www.w3.org/ns/activitystreams"]; ok {
|
||||
alias = a
|
||||
}
|
||||
if s, ok := i.(string); ok {
|
||||
u, err := url.Parse(s)
|
||||
// If error exists, don't error out -- skip this and treat as unknown string ([]byte) at worst
|
||||
// Also, if no scheme exists, don't treat it as a URL -- net/url is greedy
|
||||
if err == nil && len(u.Scheme) > 0 {
|
||||
this := &ActivityStreamsEndpointsPropertyIterator{
|
||||
alias: alias,
|
||||
iri: u,
|
||||
}
|
||||
return this, nil
|
||||
}
|
||||
}
|
||||
if m, ok := i.(map[string]interface{}); ok {
|
||||
if v, err := mgr.DeserializeEndpointsActivityStreams()(m, aliasMap); err == nil {
|
||||
this := &ActivityStreamsEndpointsPropertyIterator{
|
||||
activitystreamsEndpointsMember: v,
|
||||
alias: alias,
|
||||
}
|
||||
return this, nil
|
||||
}
|
||||
}
|
||||
this := &ActivityStreamsEndpointsPropertyIterator{
|
||||
alias: alias,
|
||||
unknown: i,
|
||||
}
|
||||
return this, nil
|
||||
}
|
||||
|
||||
// Get returns the value of this property. When IsActivityStreamsEndpoints returns
|
||||
// false, Get will return any arbitrary value.
|
||||
func (this ActivityStreamsEndpointsPropertyIterator) Get() vocab.ActivityStreamsEndpoints {
|
||||
return this.activitystreamsEndpointsMember
|
||||
}
|
||||
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will
|
||||
// return any arbitrary value.
|
||||
func (this ActivityStreamsEndpointsPropertyIterator) GetIRI() *url.URL {
|
||||
return this.iri
|
||||
}
|
||||
|
||||
// GetType returns the value in this property as a Type. Returns nil if the value
|
||||
// is not an ActivityStreams type, such as an IRI or another value.
|
||||
func (this ActivityStreamsEndpointsPropertyIterator) GetType() vocab.Type {
|
||||
if this.IsActivityStreamsEndpoints() {
|
||||
return this.Get()
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// HasAny returns true if the value or IRI is set.
|
||||
func (this ActivityStreamsEndpointsPropertyIterator) HasAny() bool {
|
||||
return this.IsActivityStreamsEndpoints() || this.iri != nil
|
||||
}
|
||||
|
||||
// IsActivityStreamsEndpoints returns true if this property is set and not an IRI.
|
||||
func (this ActivityStreamsEndpointsPropertyIterator) IsActivityStreamsEndpoints() bool {
|
||||
return this.activitystreamsEndpointsMember != nil
|
||||
}
|
||||
|
||||
// IsIRI returns true if this property is an IRI.
|
||||
func (this ActivityStreamsEndpointsPropertyIterator) IsIRI() bool {
|
||||
return this.iri != nil
|
||||
}
|
||||
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string for this
|
||||
// property and the specific values that are set. The value in the map is the
|
||||
// alias used to import the property's value or values.
|
||||
func (this ActivityStreamsEndpointsPropertyIterator) JSONLDContext() map[string]string {
|
||||
m := map[string]string{"https://www.w3.org/ns/activitystreams": this.alias}
|
||||
var child map[string]string
|
||||
if this.IsActivityStreamsEndpoints() {
|
||||
child = this.Get().JSONLDContext()
|
||||
}
|
||||
/*
|
||||
Since the literal maps in this function are determined at
|
||||
code-generation time, this loop should not overwrite an existing key with a
|
||||
new value.
|
||||
*/
|
||||
for k, v := range child {
|
||||
m[k] = v
|
||||
}
|
||||
return m
|
||||
}
|
||||
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value. This is
|
||||
// a leaky API detail only for folks looking to replace the go-fed
|
||||
// implementation. Applications should not use this method.
|
||||
func (this ActivityStreamsEndpointsPropertyIterator) KindIndex() int {
|
||||
if this.IsActivityStreamsEndpoints() {
|
||||
return 0
|
||||
}
|
||||
if this.IsIRI() {
|
||||
return -2
|
||||
}
|
||||
return -1
|
||||
}
|
||||
|
||||
// LessThan compares two instances of this property with an arbitrary but stable
|
||||
// comparison. Applications should not use this because it is only meant to
|
||||
// help alternative implementations to go-fed to be able to normalize
|
||||
// nonfunctional properties.
|
||||
func (this ActivityStreamsEndpointsPropertyIterator) LessThan(o vocab.ActivityStreamsEndpointsPropertyIterator) bool {
|
||||
// LessThan comparison for if either or both are IRIs.
|
||||
if this.IsIRI() && o.IsIRI() {
|
||||
return this.iri.String() < o.GetIRI().String()
|
||||
} else if this.IsIRI() {
|
||||
// IRIs are always less than other values, none, or unknowns
|
||||
return true
|
||||
} else if o.IsIRI() {
|
||||
// This other, none, or unknown value is always greater than IRIs
|
||||
return false
|
||||
}
|
||||
// LessThan comparison for the single value or unknown value.
|
||||
if !this.IsActivityStreamsEndpoints() && !o.IsActivityStreamsEndpoints() {
|
||||
// Both are unknowns.
|
||||
return false
|
||||
} else if this.IsActivityStreamsEndpoints() && !o.IsActivityStreamsEndpoints() {
|
||||
// Values are always greater than unknown values.
|
||||
return false
|
||||
} else if !this.IsActivityStreamsEndpoints() && o.IsActivityStreamsEndpoints() {
|
||||
// Unknowns are always less than known values.
|
||||
return true
|
||||
} else {
|
||||
// Actual comparison.
|
||||
return this.Get().LessThan(o.Get())
|
||||
}
|
||||
}
|
||||
|
||||
// Name returns the name of this property: "ActivityStreamsEndpoints".
|
||||
func (this ActivityStreamsEndpointsPropertyIterator) Name() string {
|
||||
if len(this.alias) > 0 {
|
||||
return this.alias + ":" + "ActivityStreamsEndpoints"
|
||||
} else {
|
||||
return "ActivityStreamsEndpoints"
|
||||
}
|
||||
}
|
||||
|
||||
// Next returns the next iterator, or nil if there is no next iterator.
|
||||
func (this ActivityStreamsEndpointsPropertyIterator) Next() vocab.ActivityStreamsEndpointsPropertyIterator {
|
||||
if this.myIdx+1 >= this.parent.Len() {
|
||||
return nil
|
||||
} else {
|
||||
return this.parent.At(this.myIdx + 1)
|
||||
}
|
||||
}
|
||||
|
||||
// Prev returns the previous iterator, or nil if there is no previous iterator.
|
||||
func (this ActivityStreamsEndpointsPropertyIterator) Prev() vocab.ActivityStreamsEndpointsPropertyIterator {
|
||||
if this.myIdx-1 < 0 {
|
||||
return nil
|
||||
} else {
|
||||
return this.parent.At(this.myIdx - 1)
|
||||
}
|
||||
}
|
||||
|
||||
// Set sets the value of this property. Calling IsActivityStreamsEndpoints
|
||||
// afterwards will return true.
|
||||
func (this *ActivityStreamsEndpointsPropertyIterator) Set(v vocab.ActivityStreamsEndpoints) {
|
||||
this.clear()
|
||||
this.activitystreamsEndpointsMember = v
|
||||
}
|
||||
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards will return
|
||||
// true.
|
||||
func (this *ActivityStreamsEndpointsPropertyIterator) SetIRI(v *url.URL) {
|
||||
this.clear()
|
||||
this.iri = v
|
||||
}
|
||||
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an error
|
||||
// if it is not a valid type to set on this property.
|
||||
func (this *ActivityStreamsEndpointsPropertyIterator) SetType(t vocab.Type) error {
|
||||
if v, ok := t.(vocab.ActivityStreamsEndpoints); ok {
|
||||
this.Set(v)
|
||||
return nil
|
||||
}
|
||||
|
||||
return fmt.Errorf("illegal type to set on ActivityStreamsEndpoints property: %T", t)
|
||||
}
|
||||
|
||||
// clear ensures no value of this property is set. Calling
|
||||
// IsActivityStreamsEndpoints afterwards will return false.
|
||||
func (this *ActivityStreamsEndpointsPropertyIterator) clear() {
|
||||
this.unknown = nil
|
||||
this.iri = nil
|
||||
this.activitystreamsEndpointsMember = nil
|
||||
}
|
||||
|
||||
// serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not need this
|
||||
// function as most typical use cases serialize types instead of individual
|
||||
// properties. It is exposed for alternatives to go-fed implementations to use.
|
||||
func (this ActivityStreamsEndpointsPropertyIterator) serialize() (interface{}, error) {
|
||||
if this.IsActivityStreamsEndpoints() {
|
||||
return this.Get().Serialize()
|
||||
} else if this.IsIRI() {
|
||||
return this.iri.String(), nil
|
||||
}
|
||||
return this.unknown, nil
|
||||
}
|
||||
|
||||
// ActivityStreamsEndpointsProperty is the non-functional property "endpoints". It
|
||||
// is permitted to have one or more values, and of different value types.
|
||||
type ActivityStreamsEndpointsProperty struct {
|
||||
properties []*ActivityStreamsEndpointsPropertyIterator
|
||||
alias string
|
||||
}
|
||||
|
||||
// DeserializeEndpointsProperty creates a "endpoints" property from an interface
|
||||
// representation that has been unmarshalled from a text or binary format.
|
||||
func DeserializeEndpointsProperty(m map[string]interface{}, aliasMap map[string]string) (vocab.ActivityStreamsEndpointsProperty, error) {
|
||||
alias := ""
|
||||
if a, ok := aliasMap["https://www.w3.org/ns/activitystreams"]; ok {
|
||||
alias = a
|
||||
}
|
||||
propName := "endpoints"
|
||||
if len(alias) > 0 {
|
||||
propName = fmt.Sprintf("%s:%s", alias, "endpoints")
|
||||
}
|
||||
i, ok := m[propName]
|
||||
|
||||
if ok {
|
||||
this := &ActivityStreamsEndpointsProperty{
|
||||
alias: alias,
|
||||
properties: []*ActivityStreamsEndpointsPropertyIterator{},
|
||||
}
|
||||
if list, ok := i.([]interface{}); ok {
|
||||
for _, iterator := range list {
|
||||
if p, err := deserializeActivityStreamsEndpointsPropertyIterator(iterator, aliasMap); err != nil {
|
||||
return this, err
|
||||
} else if p != nil {
|
||||
this.properties = append(this.properties, p)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if p, err := deserializeActivityStreamsEndpointsPropertyIterator(i, aliasMap); err != nil {
|
||||
return this, err
|
||||
} else if p != nil {
|
||||
this.properties = append(this.properties, p)
|
||||
}
|
||||
}
|
||||
// Set up the properties for iteration.
|
||||
for idx, ele := range this.properties {
|
||||
ele.parent = this
|
||||
ele.myIdx = idx
|
||||
}
|
||||
return this, nil
|
||||
}
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
// NewActivityStreamsEndpointsProperty creates a new endpoints property.
|
||||
func NewActivityStreamsEndpointsProperty() *ActivityStreamsEndpointsProperty {
|
||||
return &ActivityStreamsEndpointsProperty{alias: ""}
|
||||
}
|
||||
|
||||
// AppendActivityStreamsEndpoints appends a Endpoints value to the back of a list
|
||||
// of the property "endpoints". Invalidates iterators that are traversing
|
||||
// using Prev.
|
||||
func (this *ActivityStreamsEndpointsProperty) AppendActivityStreamsEndpoints(v vocab.ActivityStreamsEndpoints) {
|
||||
this.properties = append(this.properties, &ActivityStreamsEndpointsPropertyIterator{
|
||||
activitystreamsEndpointsMember: v,
|
||||
alias: this.alias,
|
||||
myIdx: this.Len(),
|
||||
parent: this,
|
||||
})
|
||||
}
|
||||
|
||||
// AppendIRI appends an IRI value to the back of a list of the property "endpoints"
|
||||
func (this *ActivityStreamsEndpointsProperty) AppendIRI(v *url.URL) {
|
||||
this.properties = append(this.properties, &ActivityStreamsEndpointsPropertyIterator{
|
||||
alias: this.alias,
|
||||
iri: v,
|
||||
myIdx: this.Len(),
|
||||
parent: this,
|
||||
})
|
||||
}
|
||||
|
||||
// PrependType prepends an arbitrary type value to the front of a list of the
|
||||
// property "endpoints". Invalidates iterators that are traversing using Prev.
|
||||
// Returns an error if the type is not a valid one to set for this property.
|
||||
func (this *ActivityStreamsEndpointsProperty) AppendType(t vocab.Type) error {
|
||||
n := &ActivityStreamsEndpointsPropertyIterator{
|
||||
alias: this.alias,
|
||||
myIdx: this.Len(),
|
||||
parent: this,
|
||||
}
|
||||
if err := n.SetType(t); err != nil {
|
||||
return err
|
||||
}
|
||||
this.properties = append(this.properties, n)
|
||||
return nil
|
||||
}
|
||||
|
||||
// At returns the property value for the specified index. Panics if the index is
|
||||
// out of bounds.
|
||||
func (this ActivityStreamsEndpointsProperty) At(index int) vocab.ActivityStreamsEndpointsPropertyIterator {
|
||||
return this.properties[index]
|
||||
}
|
||||
|
||||
// Begin returns the first iterator, or nil if empty. Can be used with the
|
||||
// iterator's Next method and this property's End method to iterate from front
|
||||
// to back through all values.
|
||||
func (this ActivityStreamsEndpointsProperty) Begin() vocab.ActivityStreamsEndpointsPropertyIterator {
|
||||
if this.Empty() {
|
||||
return nil
|
||||
} else {
|
||||
return this.properties[0]
|
||||
}
|
||||
}
|
||||
|
||||
// Empty returns returns true if there are no elements.
|
||||
func (this ActivityStreamsEndpointsProperty) Empty() bool {
|
||||
return this.Len() == 0
|
||||
}
|
||||
|
||||
// End returns beyond-the-last iterator, which is nil. Can be used with the
|
||||
// iterator's Next method and this property's Begin method to iterate from
|
||||
// front to back through all values.
|
||||
func (this ActivityStreamsEndpointsProperty) End() vocab.ActivityStreamsEndpointsPropertyIterator {
|
||||
return nil
|
||||
}
|
||||
|
||||
// InsertActivityStreamsEndpoints inserts a Endpoints value at the specified index
|
||||
// for a property "endpoints". Existing elements at that index and higher are
|
||||
// shifted back once. Invalidates all iterators.
|
||||
func (this *ActivityStreamsEndpointsProperty) InsertActivityStreamsEndpoints(idx int, v vocab.ActivityStreamsEndpoints) {
|
||||
this.properties = append(this.properties, nil)
|
||||
copy(this.properties[idx+1:], this.properties[idx:])
|
||||
this.properties[idx] = &ActivityStreamsEndpointsPropertyIterator{
|
||||
activitystreamsEndpointsMember: v,
|
||||
alias: this.alias,
|
||||
myIdx: idx,
|
||||
parent: this,
|
||||
}
|
||||
for i := idx; i < this.Len(); i++ {
|
||||
(this.properties)[i].myIdx = i
|
||||
}
|
||||
}
|
||||
|
||||
// Insert inserts an IRI value at the specified index for a property "endpoints".
|
||||
// Existing elements at that index and higher are shifted back once.
|
||||
// Invalidates all iterators.
|
||||
func (this *ActivityStreamsEndpointsProperty) InsertIRI(idx int, v *url.URL) {
|
||||
this.properties = append(this.properties, nil)
|
||||
copy(this.properties[idx+1:], this.properties[idx:])
|
||||
this.properties[idx] = &ActivityStreamsEndpointsPropertyIterator{
|
||||
alias: this.alias,
|
||||
iri: v,
|
||||
myIdx: idx,
|
||||
parent: this,
|
||||
}
|
||||
for i := idx; i < this.Len(); i++ {
|
||||
(this.properties)[i].myIdx = i
|
||||
}
|
||||
}
|
||||
|
||||
// PrependType prepends an arbitrary type value to the front of a list of the
|
||||
// property "endpoints". Invalidates all iterators. Returns an error if the
|
||||
// type is not a valid one to set for this property.
|
||||
func (this *ActivityStreamsEndpointsProperty) InsertType(idx int, t vocab.Type) error {
|
||||
n := &ActivityStreamsEndpointsPropertyIterator{
|
||||
alias: this.alias,
|
||||
myIdx: idx,
|
||||
parent: this,
|
||||
}
|
||||
if err := n.SetType(t); err != nil {
|
||||
return err
|
||||
}
|
||||
this.properties = append(this.properties, nil)
|
||||
copy(this.properties[idx+1:], this.properties[idx:])
|
||||
this.properties[idx] = n
|
||||
for i := idx; i < this.Len(); i++ {
|
||||
(this.properties)[i].myIdx = i
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string for this
|
||||
// property and the specific values that are set. The value in the map is the
|
||||
// alias used to import the property's value or values.
|
||||
func (this ActivityStreamsEndpointsProperty) JSONLDContext() map[string]string {
|
||||
m := map[string]string{"https://www.w3.org/ns/activitystreams": this.alias}
|
||||
for _, elem := range this.properties {
|
||||
child := elem.JSONLDContext()
|
||||
/*
|
||||
Since the literal maps in this function are determined at
|
||||
code-generation time, this loop should not overwrite an existing key with a
|
||||
new value.
|
||||
*/
|
||||
for k, v := range child {
|
||||
m[k] = v
|
||||
}
|
||||
}
|
||||
return m
|
||||
}
|
||||
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value. This is
|
||||
// a leaky API method specifically needed only for alternate implementations
|
||||
// for go-fed. Applications should not use this method. Panics if the index is
|
||||
// out of bounds.
|
||||
func (this ActivityStreamsEndpointsProperty) KindIndex(idx int) int {
|
||||
return this.properties[idx].KindIndex()
|
||||
}
|
||||
|
||||
// Len returns the number of values that exist for the "endpoints" property.
|
||||
func (this ActivityStreamsEndpointsProperty) Len() (length int) {
|
||||
return len(this.properties)
|
||||
}
|
||||
|
||||
// Less computes whether another property is less than this one. Mixing types
|
||||
// results in a consistent but arbitrary ordering
|
||||
func (this ActivityStreamsEndpointsProperty) Less(i, j int) bool {
|
||||
idx1 := this.KindIndex(i)
|
||||
idx2 := this.KindIndex(j)
|
||||
if idx1 < idx2 {
|
||||
return true
|
||||
} else if idx1 == idx2 {
|
||||
if idx1 == 0 {
|
||||
lhs := this.properties[i].Get()
|
||||
rhs := this.properties[j].Get()
|
||||
return lhs.LessThan(rhs)
|
||||
} else if idx1 == -2 {
|
||||
lhs := this.properties[i].GetIRI()
|
||||
rhs := this.properties[j].GetIRI()
|
||||
return lhs.String() < rhs.String()
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
// LessThan compares two instances of this property with an arbitrary but stable
|
||||
// comparison. Applications should not use this because it is only meant to
|
||||
// help alternative implementations to go-fed to be able to normalize
|
||||
// nonfunctional properties.
|
||||
func (this ActivityStreamsEndpointsProperty) LessThan(o vocab.ActivityStreamsEndpointsProperty) bool {
|
||||
l1 := this.Len()
|
||||
l2 := o.Len()
|
||||
l := l1
|
||||
if l2 < l1 {
|
||||
l = l2
|
||||
}
|
||||
for i := 0; i < l; i++ {
|
||||
if this.properties[i].LessThan(o.At(i)) {
|
||||
return true
|
||||
} else if o.At(i).LessThan(this.properties[i]) {
|
||||
return false
|
||||
}
|
||||
}
|
||||
return l1 < l2
|
||||
}
|
||||
|
||||
// Name returns the name of this property ("endpoints") with any alias.
|
||||
func (this ActivityStreamsEndpointsProperty) Name() string {
|
||||
if len(this.alias) > 0 {
|
||||
return this.alias + ":" + "endpoints"
|
||||
} else {
|
||||
return "endpoints"
|
||||
}
|
||||
}
|
||||
|
||||
// PrependActivityStreamsEndpoints prepends a Endpoints value to the front of a
|
||||
// list of the property "endpoints". Invalidates all iterators.
|
||||
func (this *ActivityStreamsEndpointsProperty) PrependActivityStreamsEndpoints(v vocab.ActivityStreamsEndpoints) {
|
||||
this.properties = append([]*ActivityStreamsEndpointsPropertyIterator{{
|
||||
activitystreamsEndpointsMember: v,
|
||||
alias: this.alias,
|
||||
myIdx: 0,
|
||||
parent: this,
|
||||
}}, this.properties...)
|
||||
for i := 1; i < this.Len(); i++ {
|
||||
(this.properties)[i].myIdx = i
|
||||
}
|
||||
}
|
||||
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "endpoints".
|
||||
func (this *ActivityStreamsEndpointsProperty) PrependIRI(v *url.URL) {
|
||||
this.properties = append([]*ActivityStreamsEndpointsPropertyIterator{{
|
||||
alias: this.alias,
|
||||
iri: v,
|
||||
myIdx: 0,
|
||||
parent: this,
|
||||
}}, this.properties...)
|
||||
for i := 1; i < this.Len(); i++ {
|
||||
(this.properties)[i].myIdx = i
|
||||
}
|
||||
}
|
||||
|
||||
// PrependType prepends an arbitrary type value to the front of a list of the
|
||||
// property "endpoints". Invalidates all iterators. Returns an error if the
|
||||
// type is not a valid one to set for this property.
|
||||
func (this *ActivityStreamsEndpointsProperty) PrependType(t vocab.Type) error {
|
||||
n := &ActivityStreamsEndpointsPropertyIterator{
|
||||
alias: this.alias,
|
||||
myIdx: 0,
|
||||
parent: this,
|
||||
}
|
||||
if err := n.SetType(t); err != nil {
|
||||
return err
|
||||
}
|
||||
this.properties = append([]*ActivityStreamsEndpointsPropertyIterator{n}, this.properties...)
|
||||
for i := 1; i < this.Len(); i++ {
|
||||
(this.properties)[i].myIdx = i
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Remove deletes an element at the specified index from a list of the property
|
||||
// "endpoints", regardless of its type. Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
func (this *ActivityStreamsEndpointsProperty) Remove(idx int) {
|
||||
(this.properties)[idx].parent = nil
|
||||
copy((this.properties)[idx:], (this.properties)[idx+1:])
|
||||
(this.properties)[len(this.properties)-1] = &ActivityStreamsEndpointsPropertyIterator{}
|
||||
this.properties = (this.properties)[:len(this.properties)-1]
|
||||
for i := idx; i < this.Len(); i++ {
|
||||
(this.properties)[i].myIdx = i
|
||||
}
|
||||
}
|
||||
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not need this
|
||||
// function as most typical use cases serialize types instead of individual
|
||||
// properties. It is exposed for alternatives to go-fed implementations to use.
|
||||
func (this ActivityStreamsEndpointsProperty) Serialize() (interface{}, error) {
|
||||
s := make([]interface{}, 0, len(this.properties))
|
||||
for _, iterator := range this.properties {
|
||||
if b, err := iterator.serialize(); err != nil {
|
||||
return s, err
|
||||
} else {
|
||||
s = append(s, b)
|
||||
}
|
||||
}
|
||||
// Shortcut: if serializing one value, don't return an array -- pretty sure other Fediverse software would choke on a "type" value with array, for example.
|
||||
if len(s) == 1 {
|
||||
return s[0], nil
|
||||
}
|
||||
return s, nil
|
||||
}
|
||||
|
||||
// Set sets a Endpoints value to be at the specified index for the property
|
||||
// "endpoints". Panics if the index is out of bounds. Invalidates all
|
||||
// iterators.
|
||||
func (this *ActivityStreamsEndpointsProperty) Set(idx int, v vocab.ActivityStreamsEndpoints) {
|
||||
(this.properties)[idx].parent = nil
|
||||
(this.properties)[idx] = &ActivityStreamsEndpointsPropertyIterator{
|
||||
activitystreamsEndpointsMember: v,
|
||||
alias: this.alias,
|
||||
myIdx: idx,
|
||||
parent: this,
|
||||
}
|
||||
}
|
||||
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "endpoints". Panics if the index is out of bounds.
|
||||
func (this *ActivityStreamsEndpointsProperty) SetIRI(idx int, v *url.URL) {
|
||||
(this.properties)[idx].parent = nil
|
||||
(this.properties)[idx] = &ActivityStreamsEndpointsPropertyIterator{
|
||||
alias: this.alias,
|
||||
iri: v,
|
||||
myIdx: idx,
|
||||
parent: this,
|
||||
}
|
||||
}
|
||||
|
||||
// SetType sets an arbitrary type value to the specified index of the property
|
||||
// "endpoints". Invalidates all iterators. Returns an error if the type is not
|
||||
// a valid one to set for this property. Panics if the index is out of bounds.
|
||||
func (this *ActivityStreamsEndpointsProperty) SetType(idx int, t vocab.Type) error {
|
||||
n := &ActivityStreamsEndpointsPropertyIterator{
|
||||
alias: this.alias,
|
||||
myIdx: idx,
|
||||
parent: this,
|
||||
}
|
||||
if err := n.SetType(t); err != nil {
|
||||
return err
|
||||
}
|
||||
(this.properties)[idx] = n
|
||||
return nil
|
||||
}
|
||||
|
||||
// Swap swaps the location of values at two indices for the "endpoints" property.
|
||||
func (this ActivityStreamsEndpointsProperty) Swap(i, j int) {
|
||||
this.properties[i], this.properties[j] = this.properties[j], this.properties[i]
|
||||
}
|
||||
17
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sharedinbox/gen_doc.go
generated
vendored
Normal file
17
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sharedinbox/gen_doc.go
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
// Package propertysharedinbox contains the implementation for the sharedInbox
|
||||
// property. All applications are strongly encouraged to use the interface
|
||||
// instead of this concrete definition. The interfaces allow applications to
|
||||
// consume only the types and properties needed and be independent of the
|
||||
// go-fed implementation if another alternative implementation is created.
|
||||
// This package is code-generated and subject to the same license as the
|
||||
// go-fed tool used to generate it.
|
||||
//
|
||||
// This package is independent of other types' and properties' implementations
|
||||
// by having a Manager injected into it to act as a factory for the concrete
|
||||
// implementations. The implementations have been generated into their own
|
||||
// separate subpackages for each vocabulary.
|
||||
//
|
||||
// Strongly consider using the interfaces instead of this package.
|
||||
package propertysharedinbox
|
||||
15
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sharedinbox/gen_pkg.go
generated
vendored
Normal file
15
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_sharedinbox/gen_pkg.go
generated
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package propertysharedinbox
|
||||
|
||||
var mgr privateManager
|
||||
|
||||
// privateManager abstracts the code-generated manager that provides access to
|
||||
// concrete implementations.
|
||||
type privateManager interface{}
|
||||
|
||||
// SetManager sets the manager package-global variable. For internal use only, do
|
||||
// not use as part of Application behavior. Must be called at golang init time.
|
||||
func SetManager(m privateManager) {
|
||||
mgr = m
|
||||
}
|
||||
|
|
@ -0,0 +1,182 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package propertysharedinbox
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
anyuri "github.com/superseriousbusiness/activity/streams/values/anyURI"
|
||||
vocab "github.com/superseriousbusiness/activity/streams/vocab"
|
||||
"net/url"
|
||||
)
|
||||
|
||||
// ActivityStreamsSharedInboxProperty is the functional property "sharedInbox". It
|
||||
// is permitted to be a single nilable value type.
|
||||
type ActivityStreamsSharedInboxProperty struct {
|
||||
xmlschemaAnyURIMember *url.URL
|
||||
unknown interface{}
|
||||
alias string
|
||||
}
|
||||
|
||||
// DeserializeSharedInboxProperty creates a "sharedInbox" property from an
|
||||
// interface representation that has been unmarshalled from a text or binary
|
||||
// format.
|
||||
func DeserializeSharedInboxProperty(m map[string]interface{}, aliasMap map[string]string) (*ActivityStreamsSharedInboxProperty, error) {
|
||||
alias := ""
|
||||
if a, ok := aliasMap["https://www.w3.org/ns/activitystreams"]; ok {
|
||||
alias = a
|
||||
}
|
||||
propName := "sharedInbox"
|
||||
if len(alias) > 0 {
|
||||
// Use alias both to find the property, and set within the property.
|
||||
propName = fmt.Sprintf("%s:%s", alias, "sharedInbox")
|
||||
}
|
||||
i, ok := m[propName]
|
||||
|
||||
if ok {
|
||||
if v, err := anyuri.DeserializeAnyURI(i); err == nil {
|
||||
this := &ActivityStreamsSharedInboxProperty{
|
||||
alias: alias,
|
||||
xmlschemaAnyURIMember: v,
|
||||
}
|
||||
return this, nil
|
||||
}
|
||||
this := &ActivityStreamsSharedInboxProperty{
|
||||
alias: alias,
|
||||
unknown: i,
|
||||
}
|
||||
return this, nil
|
||||
}
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
// NewActivityStreamsSharedInboxProperty creates a new sharedInbox property.
|
||||
func NewActivityStreamsSharedInboxProperty() *ActivityStreamsSharedInboxProperty {
|
||||
return &ActivityStreamsSharedInboxProperty{alias: ""}
|
||||
}
|
||||
|
||||
// Clear ensures no value of this property is set. Calling IsXMLSchemaAnyURI
|
||||
// afterwards will return false.
|
||||
func (this *ActivityStreamsSharedInboxProperty) Clear() {
|
||||
this.unknown = nil
|
||||
this.xmlschemaAnyURIMember = nil
|
||||
}
|
||||
|
||||
// Get returns the value of this property. When IsXMLSchemaAnyURI returns false,
|
||||
// Get will return any arbitrary value.
|
||||
func (this ActivityStreamsSharedInboxProperty) Get() *url.URL {
|
||||
return this.xmlschemaAnyURIMember
|
||||
}
|
||||
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will
|
||||
// return any arbitrary value.
|
||||
func (this ActivityStreamsSharedInboxProperty) GetIRI() *url.URL {
|
||||
return this.xmlschemaAnyURIMember
|
||||
}
|
||||
|
||||
// HasAny returns true if the value or IRI is set.
|
||||
func (this ActivityStreamsSharedInboxProperty) HasAny() bool {
|
||||
return this.IsXMLSchemaAnyURI()
|
||||
}
|
||||
|
||||
// IsIRI returns true if this property is an IRI.
|
||||
func (this ActivityStreamsSharedInboxProperty) IsIRI() bool {
|
||||
return this.xmlschemaAnyURIMember != nil
|
||||
}
|
||||
|
||||
// IsXMLSchemaAnyURI returns true if this property is set and not an IRI.
|
||||
func (this ActivityStreamsSharedInboxProperty) IsXMLSchemaAnyURI() bool {
|
||||
return this.xmlschemaAnyURIMember != nil
|
||||
}
|
||||
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string for this
|
||||
// property and the specific values that are set. The value in the map is the
|
||||
// alias used to import the property's value or values.
|
||||
func (this ActivityStreamsSharedInboxProperty) JSONLDContext() map[string]string {
|
||||
m := map[string]string{"https://www.w3.org/ns/activitystreams": this.alias}
|
||||
var child map[string]string
|
||||
|
||||
/*
|
||||
Since the literal maps in this function are determined at
|
||||
code-generation time, this loop should not overwrite an existing key with a
|
||||
new value.
|
||||
*/
|
||||
for k, v := range child {
|
||||
m[k] = v
|
||||
}
|
||||
return m
|
||||
}
|
||||
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value. This is
|
||||
// a leaky API detail only for folks looking to replace the go-fed
|
||||
// implementation. Applications should not use this method.
|
||||
func (this ActivityStreamsSharedInboxProperty) KindIndex() int {
|
||||
if this.IsXMLSchemaAnyURI() {
|
||||
return 0
|
||||
}
|
||||
if this.IsIRI() {
|
||||
return -2
|
||||
}
|
||||
return -1
|
||||
}
|
||||
|
||||
// LessThan compares two instances of this property with an arbitrary but stable
|
||||
// comparison. Applications should not use this because it is only meant to
|
||||
// help alternative implementations to go-fed to be able to normalize
|
||||
// nonfunctional properties.
|
||||
func (this ActivityStreamsSharedInboxProperty) LessThan(o vocab.ActivityStreamsSharedInboxProperty) bool {
|
||||
if this.IsIRI() {
|
||||
// IRIs are always less than other values, none, or unknowns
|
||||
return true
|
||||
} else if o.IsIRI() {
|
||||
// This other, none, or unknown value is always greater than IRIs
|
||||
return false
|
||||
}
|
||||
// LessThan comparison for the single value or unknown value.
|
||||
if !this.IsXMLSchemaAnyURI() && !o.IsXMLSchemaAnyURI() {
|
||||
// Both are unknowns.
|
||||
return false
|
||||
} else if this.IsXMLSchemaAnyURI() && !o.IsXMLSchemaAnyURI() {
|
||||
// Values are always greater than unknown values.
|
||||
return false
|
||||
} else if !this.IsXMLSchemaAnyURI() && o.IsXMLSchemaAnyURI() {
|
||||
// Unknowns are always less than known values.
|
||||
return true
|
||||
} else {
|
||||
// Actual comparison.
|
||||
return anyuri.LessAnyURI(this.Get(), o.Get())
|
||||
}
|
||||
}
|
||||
|
||||
// Name returns the name of this property: "sharedInbox".
|
||||
func (this ActivityStreamsSharedInboxProperty) Name() string {
|
||||
if len(this.alias) > 0 {
|
||||
return this.alias + ":" + "sharedInbox"
|
||||
} else {
|
||||
return "sharedInbox"
|
||||
}
|
||||
}
|
||||
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not need this
|
||||
// function as most typical use cases serialize types instead of individual
|
||||
// properties. It is exposed for alternatives to go-fed implementations to use.
|
||||
func (this ActivityStreamsSharedInboxProperty) Serialize() (interface{}, error) {
|
||||
if this.IsXMLSchemaAnyURI() {
|
||||
return anyuri.SerializeAnyURI(this.Get())
|
||||
}
|
||||
return this.unknown, nil
|
||||
}
|
||||
|
||||
// Set sets the value of this property. Calling IsXMLSchemaAnyURI afterwards will
|
||||
// return true.
|
||||
func (this *ActivityStreamsSharedInboxProperty) Set(v *url.URL) {
|
||||
this.Clear()
|
||||
this.xmlschemaAnyURIMember = v
|
||||
}
|
||||
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards will return
|
||||
// true.
|
||||
func (this *ActivityStreamsSharedInboxProperty) SetIRI(v *url.URL) {
|
||||
this.Clear()
|
||||
this.Set(v)
|
||||
}
|
||||
|
|
@ -60,6 +60,10 @@ type privateManager interface {
|
|||
// method for the "ActivityStreamsEndTimeProperty" non-functional
|
||||
// property in the vocabulary "ActivityStreams"
|
||||
DeserializeEndTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndTimeProperty, error)
|
||||
// DeserializeEndpointsPropertyActivityStreams returns the deserialization
|
||||
// method for the "ActivityStreamsEndpointsProperty" non-functional
|
||||
// property in the vocabulary "ActivityStreams"
|
||||
DeserializeEndpointsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndpointsProperty, error)
|
||||
// DeserializeFeaturedPropertyToot returns the deserialization method for
|
||||
// the "TootFeaturedProperty" non-functional property in the
|
||||
// vocabulary "Toot"
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ type ActivityStreamsApplication struct {
|
|||
TootDiscoverable vocab.TootDiscoverableProperty
|
||||
ActivityStreamsDuration vocab.ActivityStreamsDurationProperty
|
||||
ActivityStreamsEndTime vocab.ActivityStreamsEndTimeProperty
|
||||
ActivityStreamsEndpoints vocab.ActivityStreamsEndpointsProperty
|
||||
TootFeatured vocab.TootFeaturedProperty
|
||||
ActivityStreamsFollowers vocab.ActivityStreamsFollowersProperty
|
||||
ActivityStreamsFollowing vocab.ActivityStreamsFollowingProperty
|
||||
|
|
@ -197,6 +198,11 @@ func DeserializeApplication(m map[string]interface{}, aliasMap map[string]string
|
|||
} else if p != nil {
|
||||
this.ActivityStreamsEndTime = p
|
||||
}
|
||||
if p, err := mgr.DeserializeEndpointsPropertyActivityStreams()(m, aliasMap); err != nil {
|
||||
return nil, err
|
||||
} else if p != nil {
|
||||
this.ActivityStreamsEndpoints = p
|
||||
}
|
||||
if p, err := mgr.DeserializeFeaturedPropertyToot()(m, aliasMap); err != nil {
|
||||
return nil, err
|
||||
} else if p != nil {
|
||||
|
|
@ -408,6 +414,8 @@ func DeserializeApplication(m map[string]interface{}, aliasMap map[string]string
|
|||
continue
|
||||
} else if k == "endTime" {
|
||||
continue
|
||||
} else if k == "endpoints" {
|
||||
continue
|
||||
} else if k == "featured" {
|
||||
continue
|
||||
} else if k == "followers" {
|
||||
|
|
@ -580,6 +588,12 @@ func (this ActivityStreamsApplication) GetActivityStreamsEndTime() vocab.Activit
|
|||
return this.ActivityStreamsEndTime
|
||||
}
|
||||
|
||||
// GetActivityStreamsEndpoints returns the "endpoints" property if it exists, and
|
||||
// nil otherwise.
|
||||
func (this ActivityStreamsApplication) GetActivityStreamsEndpoints() vocab.ActivityStreamsEndpointsProperty {
|
||||
return this.ActivityStreamsEndpoints
|
||||
}
|
||||
|
||||
// GetActivityStreamsFollowers returns the "followers" property if it exists, and
|
||||
// nil otherwise.
|
||||
func (this ActivityStreamsApplication) GetActivityStreamsFollowers() vocab.ActivityStreamsFollowersProperty {
|
||||
|
|
@ -834,6 +848,7 @@ func (this ActivityStreamsApplication) JSONLDContext() map[string]string {
|
|||
m = this.helperJSONLDContext(this.TootDiscoverable, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsDuration, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsEndTime, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsEndpoints, m)
|
||||
m = this.helperJSONLDContext(this.TootFeatured, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsFollowers, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsFollowing, m)
|
||||
|
|
@ -1046,6 +1061,20 @@ func (this ActivityStreamsApplication) LessThan(o vocab.ActivityStreamsApplicati
|
|||
// Anything else is greater than nil
|
||||
return false
|
||||
} // Else: Both are nil
|
||||
// Compare property "endpoints"
|
||||
if lhs, rhs := this.ActivityStreamsEndpoints, o.GetActivityStreamsEndpoints(); lhs != nil && rhs != nil {
|
||||
if lhs.LessThan(rhs) {
|
||||
return true
|
||||
} else if rhs.LessThan(lhs) {
|
||||
return false
|
||||
}
|
||||
} else if lhs == nil && rhs != nil {
|
||||
// Nil is less than anything else
|
||||
return true
|
||||
} else if rhs != nil && rhs == nil {
|
||||
// Anything else is greater than nil
|
||||
return false
|
||||
} // Else: Both are nil
|
||||
// Compare property "featured"
|
||||
if lhs, rhs := this.TootFeatured, o.GetTootFeatured(); lhs != nil && rhs != nil {
|
||||
if lhs.LessThan(rhs) {
|
||||
|
|
@ -1669,6 +1698,14 @@ func (this ActivityStreamsApplication) Serialize() (map[string]interface{}, erro
|
|||
m[this.ActivityStreamsEndTime.Name()] = i
|
||||
}
|
||||
}
|
||||
// Maybe serialize property "endpoints"
|
||||
if this.ActivityStreamsEndpoints != nil {
|
||||
if i, err := this.ActivityStreamsEndpoints.Serialize(); err != nil {
|
||||
return nil, err
|
||||
} else if i != nil {
|
||||
m[this.ActivityStreamsEndpoints.Name()] = i
|
||||
}
|
||||
}
|
||||
// Maybe serialize property "featured"
|
||||
if this.TootFeatured != nil {
|
||||
if i, err := this.TootFeatured.Serialize(); err != nil {
|
||||
|
|
@ -2026,6 +2063,11 @@ func (this *ActivityStreamsApplication) SetActivityStreamsEndTime(i vocab.Activi
|
|||
this.ActivityStreamsEndTime = i
|
||||
}
|
||||
|
||||
// SetActivityStreamsEndpoints sets the "endpoints" property.
|
||||
func (this *ActivityStreamsApplication) SetActivityStreamsEndpoints(i vocab.ActivityStreamsEndpointsProperty) {
|
||||
this.ActivityStreamsEndpoints = i
|
||||
}
|
||||
|
||||
// SetActivityStreamsFollowers sets the "followers" property.
|
||||
func (this *ActivityStreamsApplication) SetActivityStreamsFollowers(i vocab.ActivityStreamsFollowersProperty) {
|
||||
this.ActivityStreamsFollowers = i
|
||||
|
|
|
|||
17
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_endpoints/gen_doc.go
generated
vendored
Normal file
17
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_endpoints/gen_doc.go
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
// Package typeendpoints contains the implementation for the Endpoints type. All
|
||||
// applications are strongly encouraged to use the interface instead of this
|
||||
// concrete definition. The interfaces allow applications to consume only the
|
||||
// types and properties needed and be independent of the go-fed implementation
|
||||
// if another alternative implementation is created. This package is
|
||||
// code-generated and subject to the same license as the go-fed tool used to
|
||||
// generate it.
|
||||
//
|
||||
// This package is independent of other types' and properties' implementations
|
||||
// by having a Manager injected into it to act as a factory for the concrete
|
||||
// implementations. The implementations have been generated into their own
|
||||
// separate subpackages for each vocabulary.
|
||||
//
|
||||
// Strongly consider using the interfaces instead of this package.
|
||||
package typeendpoints
|
||||
50
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_endpoints/gen_pkg.go
generated
vendored
Normal file
50
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_endpoints/gen_pkg.go
generated
vendored
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package typeendpoints
|
||||
|
||||
import vocab "github.com/superseriousbusiness/activity/streams/vocab"
|
||||
|
||||
var mgr privateManager
|
||||
|
||||
var typePropertyConstructor func() vocab.JSONLDTypeProperty
|
||||
|
||||
// privateManager abstracts the code-generated manager that provides access to
|
||||
// concrete implementations.
|
||||
type privateManager interface {
|
||||
// DeserializeIdPropertyJSONLD returns the deserialization method for the
|
||||
// "JSONLDIdProperty" non-functional property in the vocabulary
|
||||
// "JSONLD"
|
||||
DeserializeIdPropertyJSONLD() func(map[string]interface{}, map[string]string) (vocab.JSONLDIdProperty, error)
|
||||
// DeserializeSharedInboxPropertyActivityStreams returns the
|
||||
// deserialization method for the "ActivityStreamsSharedInboxProperty"
|
||||
// non-functional property in the vocabulary "ActivityStreams"
|
||||
DeserializeSharedInboxPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsSharedInboxProperty, error)
|
||||
}
|
||||
|
||||
// jsonldContexter is a private interface to determine the JSON-LD contexts and
|
||||
// aliases needed for functional and non-functional properties. It is a helper
|
||||
// interface for this implementation.
|
||||
type jsonldContexter interface {
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
}
|
||||
|
||||
// SetManager sets the manager package-global variable. For internal use only, do
|
||||
// not use as part of Application behavior. Must be called at golang init time.
|
||||
func SetManager(m privateManager) {
|
||||
mgr = m
|
||||
}
|
||||
|
||||
// SetTypePropertyConstructor sets the "type" property's constructor in the
|
||||
// package-global variable. For internal use only, do not use as part of
|
||||
// Application behavior. Must be called at golang init time. Permits
|
||||
// ActivityStreams types to correctly set their "type" property at
|
||||
// construction time, so users don't have to remember to do so each time. It
|
||||
// is dependency injected so other go-fed compatible implementations could
|
||||
// inject their own type.
|
||||
func SetTypePropertyConstructor(f func() vocab.JSONLDTypeProperty) {
|
||||
typePropertyConstructor = f
|
||||
}
|
||||
250
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_endpoints/gen_type_activitystreams_endpoints.go
generated
vendored
Normal file
250
vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/type_endpoints/gen_type_activitystreams_endpoints.go
generated
vendored
Normal file
|
|
@ -0,0 +1,250 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package typeendpoints
|
||||
|
||||
import vocab "github.com/superseriousbusiness/activity/streams/vocab"
|
||||
|
||||
// A json object which maps additional (typically server/domain-wide) endpoints
|
||||
// which may be useful either for this actor or someone referencing this
|
||||
// actor. This mapping may be nested inside the actor document as the value or
|
||||
// may be a link to a JSON-LD document with these properties.
|
||||
type ActivityStreamsEndpoints struct {
|
||||
JSONLDId vocab.JSONLDIdProperty
|
||||
ActivityStreamsSharedInbox vocab.ActivityStreamsSharedInboxProperty
|
||||
alias string
|
||||
unknown map[string]interface{}
|
||||
}
|
||||
|
||||
// ActivityStreamsEndpointsExtends returns true if the Endpoints type extends from
|
||||
// the other type.
|
||||
func ActivityStreamsEndpointsExtends(other vocab.Type) bool {
|
||||
// Shortcut implementation: this does not extend anything.
|
||||
return false
|
||||
}
|
||||
|
||||
// DeserializeEndpoints creates a Endpoints from a map representation that has
|
||||
// been unmarshalled from a text or binary format.
|
||||
func DeserializeEndpoints(m map[string]interface{}, aliasMap map[string]string) (*ActivityStreamsEndpoints, error) {
|
||||
alias := ""
|
||||
if a, ok := aliasMap["https://www.w3.org/ns/activitystreams"]; ok {
|
||||
alias = a
|
||||
}
|
||||
this := &ActivityStreamsEndpoints{
|
||||
alias: alias,
|
||||
unknown: make(map[string]interface{}),
|
||||
}
|
||||
|
||||
// Begin: Known property deserialization
|
||||
if p, err := mgr.DeserializeIdPropertyJSONLD()(m, aliasMap); err != nil {
|
||||
return nil, err
|
||||
} else if p != nil {
|
||||
this.JSONLDId = p
|
||||
}
|
||||
if p, err := mgr.DeserializeSharedInboxPropertyActivityStreams()(m, aliasMap); err != nil {
|
||||
return nil, err
|
||||
} else if p != nil {
|
||||
this.ActivityStreamsSharedInbox = p
|
||||
}
|
||||
// End: Known property deserialization
|
||||
|
||||
// Begin: Unknown deserialization
|
||||
for k, v := range m {
|
||||
// Begin: Code that ensures a property name is unknown
|
||||
if k == "id" {
|
||||
continue
|
||||
} else if k == "sharedInbox" {
|
||||
continue
|
||||
} // End: Code that ensures a property name is unknown
|
||||
|
||||
this.unknown[k] = v
|
||||
}
|
||||
// End: Unknown deserialization
|
||||
|
||||
return this, nil
|
||||
}
|
||||
|
||||
// EndpointsIsDisjointWith returns true if the other provided type is disjoint
|
||||
// with the Endpoints type.
|
||||
func EndpointsIsDisjointWith(other vocab.Type) bool {
|
||||
// Shortcut implementation: is not disjoint with anything.
|
||||
return false
|
||||
}
|
||||
|
||||
// EndpointsIsExtendedBy returns true if the other provided type extends from the
|
||||
// Endpoints type. Note that it returns false if the types are the same; see
|
||||
// the "IsOrExtendsEndpoints" variant instead.
|
||||
func EndpointsIsExtendedBy(other vocab.Type) bool {
|
||||
// Shortcut implementation: is not extended by anything.
|
||||
return false
|
||||
}
|
||||
|
||||
// IsOrExtendsEndpoints returns true if the other provided type is the Endpoints
|
||||
// type or extends from the Endpoints type.
|
||||
func IsOrExtendsEndpoints(other vocab.Type) bool {
|
||||
if other.GetTypeName() == "Endpoints" {
|
||||
return true
|
||||
}
|
||||
return EndpointsIsExtendedBy(other)
|
||||
}
|
||||
|
||||
// NewActivityStreamsEndpoints creates a new Endpoints type
|
||||
func NewActivityStreamsEndpoints() *ActivityStreamsEndpoints {
|
||||
return &ActivityStreamsEndpoints{
|
||||
alias: "",
|
||||
unknown: make(map[string]interface{}),
|
||||
}
|
||||
}
|
||||
|
||||
// GetActivityStreamsSharedInbox returns the "sharedInbox" property if it exists,
|
||||
// and nil otherwise.
|
||||
func (this ActivityStreamsEndpoints) GetActivityStreamsSharedInbox() vocab.ActivityStreamsSharedInboxProperty {
|
||||
return this.ActivityStreamsSharedInbox
|
||||
}
|
||||
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
func (this ActivityStreamsEndpoints) GetJSONLDId() vocab.JSONLDIdProperty {
|
||||
return this.JSONLDId
|
||||
}
|
||||
|
||||
// GetTypeName returns the name of this type.
|
||||
func (this ActivityStreamsEndpoints) GetTypeName() string {
|
||||
return "Endpoints"
|
||||
}
|
||||
|
||||
// GetUnknownProperties returns the unknown properties for the Endpoints type.
|
||||
// Note that this should not be used by app developers. It is only used to
|
||||
// help determine which implementation is LessThan the other. Developers who
|
||||
// are creating a different implementation of this type's interface can use
|
||||
// this method in their LessThan implementation, but routine ActivityPub
|
||||
// applications should not use this to bypass the code generation tool.
|
||||
func (this ActivityStreamsEndpoints) GetUnknownProperties() map[string]interface{} {
|
||||
return this.unknown
|
||||
}
|
||||
|
||||
// IsExtending returns true if the Endpoints type extends from the other type.
|
||||
func (this ActivityStreamsEndpoints) IsExtending(other vocab.Type) bool {
|
||||
return ActivityStreamsEndpointsExtends(other)
|
||||
}
|
||||
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string for this
|
||||
// type and the specific properties that are set. The value in the map is the
|
||||
// alias used to import the type and its properties.
|
||||
func (this ActivityStreamsEndpoints) JSONLDContext() map[string]string {
|
||||
m := map[string]string{"https://www.w3.org/ns/activitystreams": this.alias}
|
||||
m = this.helperJSONLDContext(this.JSONLDId, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsSharedInbox, m)
|
||||
|
||||
return m
|
||||
}
|
||||
|
||||
// LessThan computes if this Endpoints is lesser, with an arbitrary but stable
|
||||
// determination.
|
||||
func (this ActivityStreamsEndpoints) LessThan(o vocab.ActivityStreamsEndpoints) bool {
|
||||
// Begin: Compare known properties
|
||||
// Compare property "id"
|
||||
if lhs, rhs := this.JSONLDId, o.GetJSONLDId(); lhs != nil && rhs != nil {
|
||||
if lhs.LessThan(rhs) {
|
||||
return true
|
||||
} else if rhs.LessThan(lhs) {
|
||||
return false
|
||||
}
|
||||
} else if lhs == nil && rhs != nil {
|
||||
// Nil is less than anything else
|
||||
return true
|
||||
} else if rhs != nil && rhs == nil {
|
||||
// Anything else is greater than nil
|
||||
return false
|
||||
} // Else: Both are nil
|
||||
// Compare property "sharedInbox"
|
||||
if lhs, rhs := this.ActivityStreamsSharedInbox, o.GetActivityStreamsSharedInbox(); lhs != nil && rhs != nil {
|
||||
if lhs.LessThan(rhs) {
|
||||
return true
|
||||
} else if rhs.LessThan(lhs) {
|
||||
return false
|
||||
}
|
||||
} else if lhs == nil && rhs != nil {
|
||||
// Nil is less than anything else
|
||||
return true
|
||||
} else if rhs != nil && rhs == nil {
|
||||
// Anything else is greater than nil
|
||||
return false
|
||||
} // Else: Both are nil
|
||||
// End: Compare known properties
|
||||
|
||||
// Begin: Compare unknown properties (only by number of them)
|
||||
if len(this.unknown) < len(o.GetUnknownProperties()) {
|
||||
return true
|
||||
} else if len(o.GetUnknownProperties()) < len(this.unknown) {
|
||||
return false
|
||||
} // End: Compare unknown properties (only by number of them)
|
||||
|
||||
// All properties are the same.
|
||||
return false
|
||||
}
|
||||
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format.
|
||||
func (this ActivityStreamsEndpoints) Serialize() (map[string]interface{}, error) {
|
||||
m := make(map[string]interface{})
|
||||
// Begin: Serialize known properties
|
||||
// Maybe serialize property "id"
|
||||
if this.JSONLDId != nil {
|
||||
if i, err := this.JSONLDId.Serialize(); err != nil {
|
||||
return nil, err
|
||||
} else if i != nil {
|
||||
m[this.JSONLDId.Name()] = i
|
||||
}
|
||||
}
|
||||
// Maybe serialize property "sharedInbox"
|
||||
if this.ActivityStreamsSharedInbox != nil {
|
||||
if i, err := this.ActivityStreamsSharedInbox.Serialize(); err != nil {
|
||||
return nil, err
|
||||
} else if i != nil {
|
||||
m[this.ActivityStreamsSharedInbox.Name()] = i
|
||||
}
|
||||
}
|
||||
// End: Serialize known properties
|
||||
|
||||
// Begin: Serialize unknown properties
|
||||
for k, v := range this.unknown {
|
||||
// To be safe, ensure we aren't overwriting a known property
|
||||
if _, has := m[k]; !has {
|
||||
m[k] = v
|
||||
}
|
||||
}
|
||||
// End: Serialize unknown properties
|
||||
|
||||
return m, nil
|
||||
}
|
||||
|
||||
// SetActivityStreamsSharedInbox sets the "sharedInbox" property.
|
||||
func (this *ActivityStreamsEndpoints) SetActivityStreamsSharedInbox(i vocab.ActivityStreamsSharedInboxProperty) {
|
||||
this.ActivityStreamsSharedInbox = i
|
||||
}
|
||||
|
||||
// SetJSONLDId sets the "id" property.
|
||||
func (this *ActivityStreamsEndpoints) SetJSONLDId(i vocab.JSONLDIdProperty) {
|
||||
this.JSONLDId = i
|
||||
}
|
||||
|
||||
// VocabularyURI returns the vocabulary's URI as a string.
|
||||
func (this ActivityStreamsEndpoints) VocabularyURI() string {
|
||||
return "https://www.w3.org/ns/activitystreams"
|
||||
}
|
||||
|
||||
// helperJSONLDContext obtains the context uris and their aliases from a property,
|
||||
// if it is not nil.
|
||||
func (this ActivityStreamsEndpoints) helperJSONLDContext(i jsonldContexter, toMerge map[string]string) map[string]string {
|
||||
if i == nil {
|
||||
return toMerge
|
||||
}
|
||||
for k, v := range i.JSONLDContext() {
|
||||
/*
|
||||
Since the literal maps in this function are determined at
|
||||
code-generation time, this loop should not overwrite an existing key with a
|
||||
new value.
|
||||
*/
|
||||
toMerge[k] = v
|
||||
}
|
||||
return toMerge
|
||||
}
|
||||
|
|
@ -60,6 +60,10 @@ type privateManager interface {
|
|||
// method for the "ActivityStreamsEndTimeProperty" non-functional
|
||||
// property in the vocabulary "ActivityStreams"
|
||||
DeserializeEndTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndTimeProperty, error)
|
||||
// DeserializeEndpointsPropertyActivityStreams returns the deserialization
|
||||
// method for the "ActivityStreamsEndpointsProperty" non-functional
|
||||
// property in the vocabulary "ActivityStreams"
|
||||
DeserializeEndpointsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndpointsProperty, error)
|
||||
// DeserializeFeaturedPropertyToot returns the deserialization method for
|
||||
// the "TootFeaturedProperty" non-functional property in the
|
||||
// vocabulary "Toot"
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ type ActivityStreamsGroup struct {
|
|||
TootDiscoverable vocab.TootDiscoverableProperty
|
||||
ActivityStreamsDuration vocab.ActivityStreamsDurationProperty
|
||||
ActivityStreamsEndTime vocab.ActivityStreamsEndTimeProperty
|
||||
ActivityStreamsEndpoints vocab.ActivityStreamsEndpointsProperty
|
||||
TootFeatured vocab.TootFeaturedProperty
|
||||
ActivityStreamsFollowers vocab.ActivityStreamsFollowersProperty
|
||||
ActivityStreamsFollowing vocab.ActivityStreamsFollowingProperty
|
||||
|
|
@ -177,6 +178,11 @@ func DeserializeGroup(m map[string]interface{}, aliasMap map[string]string) (*Ac
|
|||
} else if p != nil {
|
||||
this.ActivityStreamsEndTime = p
|
||||
}
|
||||
if p, err := mgr.DeserializeEndpointsPropertyActivityStreams()(m, aliasMap); err != nil {
|
||||
return nil, err
|
||||
} else if p != nil {
|
||||
this.ActivityStreamsEndpoints = p
|
||||
}
|
||||
if p, err := mgr.DeserializeFeaturedPropertyToot()(m, aliasMap); err != nil {
|
||||
return nil, err
|
||||
} else if p != nil {
|
||||
|
|
@ -388,6 +394,8 @@ func DeserializeGroup(m map[string]interface{}, aliasMap map[string]string) (*Ac
|
|||
continue
|
||||
} else if k == "endTime" {
|
||||
continue
|
||||
} else if k == "endpoints" {
|
||||
continue
|
||||
} else if k == "featured" {
|
||||
continue
|
||||
} else if k == "followers" {
|
||||
|
|
@ -580,6 +588,12 @@ func (this ActivityStreamsGroup) GetActivityStreamsEndTime() vocab.ActivityStrea
|
|||
return this.ActivityStreamsEndTime
|
||||
}
|
||||
|
||||
// GetActivityStreamsEndpoints returns the "endpoints" property if it exists, and
|
||||
// nil otherwise.
|
||||
func (this ActivityStreamsGroup) GetActivityStreamsEndpoints() vocab.ActivityStreamsEndpointsProperty {
|
||||
return this.ActivityStreamsEndpoints
|
||||
}
|
||||
|
||||
// GetActivityStreamsFollowers returns the "followers" property if it exists, and
|
||||
// nil otherwise.
|
||||
func (this ActivityStreamsGroup) GetActivityStreamsFollowers() vocab.ActivityStreamsFollowersProperty {
|
||||
|
|
@ -834,6 +848,7 @@ func (this ActivityStreamsGroup) JSONLDContext() map[string]string {
|
|||
m = this.helperJSONLDContext(this.TootDiscoverable, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsDuration, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsEndTime, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsEndpoints, m)
|
||||
m = this.helperJSONLDContext(this.TootFeatured, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsFollowers, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsFollowing, m)
|
||||
|
|
@ -1046,6 +1061,20 @@ func (this ActivityStreamsGroup) LessThan(o vocab.ActivityStreamsGroup) bool {
|
|||
// Anything else is greater than nil
|
||||
return false
|
||||
} // Else: Both are nil
|
||||
// Compare property "endpoints"
|
||||
if lhs, rhs := this.ActivityStreamsEndpoints, o.GetActivityStreamsEndpoints(); lhs != nil && rhs != nil {
|
||||
if lhs.LessThan(rhs) {
|
||||
return true
|
||||
} else if rhs.LessThan(lhs) {
|
||||
return false
|
||||
}
|
||||
} else if lhs == nil && rhs != nil {
|
||||
// Nil is less than anything else
|
||||
return true
|
||||
} else if rhs != nil && rhs == nil {
|
||||
// Anything else is greater than nil
|
||||
return false
|
||||
} // Else: Both are nil
|
||||
// Compare property "featured"
|
||||
if lhs, rhs := this.TootFeatured, o.GetTootFeatured(); lhs != nil && rhs != nil {
|
||||
if lhs.LessThan(rhs) {
|
||||
|
|
@ -1669,6 +1698,14 @@ func (this ActivityStreamsGroup) Serialize() (map[string]interface{}, error) {
|
|||
m[this.ActivityStreamsEndTime.Name()] = i
|
||||
}
|
||||
}
|
||||
// Maybe serialize property "endpoints"
|
||||
if this.ActivityStreamsEndpoints != nil {
|
||||
if i, err := this.ActivityStreamsEndpoints.Serialize(); err != nil {
|
||||
return nil, err
|
||||
} else if i != nil {
|
||||
m[this.ActivityStreamsEndpoints.Name()] = i
|
||||
}
|
||||
}
|
||||
// Maybe serialize property "featured"
|
||||
if this.TootFeatured != nil {
|
||||
if i, err := this.TootFeatured.Serialize(); err != nil {
|
||||
|
|
@ -2026,6 +2063,11 @@ func (this *ActivityStreamsGroup) SetActivityStreamsEndTime(i vocab.ActivityStre
|
|||
this.ActivityStreamsEndTime = i
|
||||
}
|
||||
|
||||
// SetActivityStreamsEndpoints sets the "endpoints" property.
|
||||
func (this *ActivityStreamsGroup) SetActivityStreamsEndpoints(i vocab.ActivityStreamsEndpointsProperty) {
|
||||
this.ActivityStreamsEndpoints = i
|
||||
}
|
||||
|
||||
// SetActivityStreamsFollowers sets the "followers" property.
|
||||
func (this *ActivityStreamsGroup) SetActivityStreamsFollowers(i vocab.ActivityStreamsFollowersProperty) {
|
||||
this.ActivityStreamsFollowers = i
|
||||
|
|
|
|||
|
|
@ -60,6 +60,10 @@ type privateManager interface {
|
|||
// method for the "ActivityStreamsEndTimeProperty" non-functional
|
||||
// property in the vocabulary "ActivityStreams"
|
||||
DeserializeEndTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndTimeProperty, error)
|
||||
// DeserializeEndpointsPropertyActivityStreams returns the deserialization
|
||||
// method for the "ActivityStreamsEndpointsProperty" non-functional
|
||||
// property in the vocabulary "ActivityStreams"
|
||||
DeserializeEndpointsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndpointsProperty, error)
|
||||
// DeserializeFeaturedPropertyToot returns the deserialization method for
|
||||
// the "TootFeaturedProperty" non-functional property in the
|
||||
// vocabulary "Toot"
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ type ActivityStreamsOrganization struct {
|
|||
TootDiscoverable vocab.TootDiscoverableProperty
|
||||
ActivityStreamsDuration vocab.ActivityStreamsDurationProperty
|
||||
ActivityStreamsEndTime vocab.ActivityStreamsEndTimeProperty
|
||||
ActivityStreamsEndpoints vocab.ActivityStreamsEndpointsProperty
|
||||
TootFeatured vocab.TootFeaturedProperty
|
||||
ActivityStreamsFollowers vocab.ActivityStreamsFollowersProperty
|
||||
ActivityStreamsFollowing vocab.ActivityStreamsFollowingProperty
|
||||
|
|
@ -177,6 +178,11 @@ func DeserializeOrganization(m map[string]interface{}, aliasMap map[string]strin
|
|||
} else if p != nil {
|
||||
this.ActivityStreamsEndTime = p
|
||||
}
|
||||
if p, err := mgr.DeserializeEndpointsPropertyActivityStreams()(m, aliasMap); err != nil {
|
||||
return nil, err
|
||||
} else if p != nil {
|
||||
this.ActivityStreamsEndpoints = p
|
||||
}
|
||||
if p, err := mgr.DeserializeFeaturedPropertyToot()(m, aliasMap); err != nil {
|
||||
return nil, err
|
||||
} else if p != nil {
|
||||
|
|
@ -388,6 +394,8 @@ func DeserializeOrganization(m map[string]interface{}, aliasMap map[string]strin
|
|||
continue
|
||||
} else if k == "endTime" {
|
||||
continue
|
||||
} else if k == "endpoints" {
|
||||
continue
|
||||
} else if k == "featured" {
|
||||
continue
|
||||
} else if k == "followers" {
|
||||
|
|
@ -580,6 +588,12 @@ func (this ActivityStreamsOrganization) GetActivityStreamsEndTime() vocab.Activi
|
|||
return this.ActivityStreamsEndTime
|
||||
}
|
||||
|
||||
// GetActivityStreamsEndpoints returns the "endpoints" property if it exists, and
|
||||
// nil otherwise.
|
||||
func (this ActivityStreamsOrganization) GetActivityStreamsEndpoints() vocab.ActivityStreamsEndpointsProperty {
|
||||
return this.ActivityStreamsEndpoints
|
||||
}
|
||||
|
||||
// GetActivityStreamsFollowers returns the "followers" property if it exists, and
|
||||
// nil otherwise.
|
||||
func (this ActivityStreamsOrganization) GetActivityStreamsFollowers() vocab.ActivityStreamsFollowersProperty {
|
||||
|
|
@ -834,6 +848,7 @@ func (this ActivityStreamsOrganization) JSONLDContext() map[string]string {
|
|||
m = this.helperJSONLDContext(this.TootDiscoverable, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsDuration, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsEndTime, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsEndpoints, m)
|
||||
m = this.helperJSONLDContext(this.TootFeatured, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsFollowers, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsFollowing, m)
|
||||
|
|
@ -1046,6 +1061,20 @@ func (this ActivityStreamsOrganization) LessThan(o vocab.ActivityStreamsOrganiza
|
|||
// Anything else is greater than nil
|
||||
return false
|
||||
} // Else: Both are nil
|
||||
// Compare property "endpoints"
|
||||
if lhs, rhs := this.ActivityStreamsEndpoints, o.GetActivityStreamsEndpoints(); lhs != nil && rhs != nil {
|
||||
if lhs.LessThan(rhs) {
|
||||
return true
|
||||
} else if rhs.LessThan(lhs) {
|
||||
return false
|
||||
}
|
||||
} else if lhs == nil && rhs != nil {
|
||||
// Nil is less than anything else
|
||||
return true
|
||||
} else if rhs != nil && rhs == nil {
|
||||
// Anything else is greater than nil
|
||||
return false
|
||||
} // Else: Both are nil
|
||||
// Compare property "featured"
|
||||
if lhs, rhs := this.TootFeatured, o.GetTootFeatured(); lhs != nil && rhs != nil {
|
||||
if lhs.LessThan(rhs) {
|
||||
|
|
@ -1669,6 +1698,14 @@ func (this ActivityStreamsOrganization) Serialize() (map[string]interface{}, err
|
|||
m[this.ActivityStreamsEndTime.Name()] = i
|
||||
}
|
||||
}
|
||||
// Maybe serialize property "endpoints"
|
||||
if this.ActivityStreamsEndpoints != nil {
|
||||
if i, err := this.ActivityStreamsEndpoints.Serialize(); err != nil {
|
||||
return nil, err
|
||||
} else if i != nil {
|
||||
m[this.ActivityStreamsEndpoints.Name()] = i
|
||||
}
|
||||
}
|
||||
// Maybe serialize property "featured"
|
||||
if this.TootFeatured != nil {
|
||||
if i, err := this.TootFeatured.Serialize(); err != nil {
|
||||
|
|
@ -2026,6 +2063,11 @@ func (this *ActivityStreamsOrganization) SetActivityStreamsEndTime(i vocab.Activ
|
|||
this.ActivityStreamsEndTime = i
|
||||
}
|
||||
|
||||
// SetActivityStreamsEndpoints sets the "endpoints" property.
|
||||
func (this *ActivityStreamsOrganization) SetActivityStreamsEndpoints(i vocab.ActivityStreamsEndpointsProperty) {
|
||||
this.ActivityStreamsEndpoints = i
|
||||
}
|
||||
|
||||
// SetActivityStreamsFollowers sets the "followers" property.
|
||||
func (this *ActivityStreamsOrganization) SetActivityStreamsFollowers(i vocab.ActivityStreamsFollowersProperty) {
|
||||
this.ActivityStreamsFollowers = i
|
||||
|
|
|
|||
|
|
@ -60,6 +60,10 @@ type privateManager interface {
|
|||
// method for the "ActivityStreamsEndTimeProperty" non-functional
|
||||
// property in the vocabulary "ActivityStreams"
|
||||
DeserializeEndTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndTimeProperty, error)
|
||||
// DeserializeEndpointsPropertyActivityStreams returns the deserialization
|
||||
// method for the "ActivityStreamsEndpointsProperty" non-functional
|
||||
// property in the vocabulary "ActivityStreams"
|
||||
DeserializeEndpointsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndpointsProperty, error)
|
||||
// DeserializeFeaturedPropertyToot returns the deserialization method for
|
||||
// the "TootFeaturedProperty" non-functional property in the
|
||||
// vocabulary "Toot"
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ type ActivityStreamsPerson struct {
|
|||
TootDiscoverable vocab.TootDiscoverableProperty
|
||||
ActivityStreamsDuration vocab.ActivityStreamsDurationProperty
|
||||
ActivityStreamsEndTime vocab.ActivityStreamsEndTimeProperty
|
||||
ActivityStreamsEndpoints vocab.ActivityStreamsEndpointsProperty
|
||||
TootFeatured vocab.TootFeaturedProperty
|
||||
ActivityStreamsFollowers vocab.ActivityStreamsFollowersProperty
|
||||
ActivityStreamsFollowing vocab.ActivityStreamsFollowingProperty
|
||||
|
|
@ -177,6 +178,11 @@ func DeserializePerson(m map[string]interface{}, aliasMap map[string]string) (*A
|
|||
} else if p != nil {
|
||||
this.ActivityStreamsEndTime = p
|
||||
}
|
||||
if p, err := mgr.DeserializeEndpointsPropertyActivityStreams()(m, aliasMap); err != nil {
|
||||
return nil, err
|
||||
} else if p != nil {
|
||||
this.ActivityStreamsEndpoints = p
|
||||
}
|
||||
if p, err := mgr.DeserializeFeaturedPropertyToot()(m, aliasMap); err != nil {
|
||||
return nil, err
|
||||
} else if p != nil {
|
||||
|
|
@ -388,6 +394,8 @@ func DeserializePerson(m map[string]interface{}, aliasMap map[string]string) (*A
|
|||
continue
|
||||
} else if k == "endTime" {
|
||||
continue
|
||||
} else if k == "endpoints" {
|
||||
continue
|
||||
} else if k == "featured" {
|
||||
continue
|
||||
} else if k == "followers" {
|
||||
|
|
@ -580,6 +588,12 @@ func (this ActivityStreamsPerson) GetActivityStreamsEndTime() vocab.ActivityStre
|
|||
return this.ActivityStreamsEndTime
|
||||
}
|
||||
|
||||
// GetActivityStreamsEndpoints returns the "endpoints" property if it exists, and
|
||||
// nil otherwise.
|
||||
func (this ActivityStreamsPerson) GetActivityStreamsEndpoints() vocab.ActivityStreamsEndpointsProperty {
|
||||
return this.ActivityStreamsEndpoints
|
||||
}
|
||||
|
||||
// GetActivityStreamsFollowers returns the "followers" property if it exists, and
|
||||
// nil otherwise.
|
||||
func (this ActivityStreamsPerson) GetActivityStreamsFollowers() vocab.ActivityStreamsFollowersProperty {
|
||||
|
|
@ -834,6 +848,7 @@ func (this ActivityStreamsPerson) JSONLDContext() map[string]string {
|
|||
m = this.helperJSONLDContext(this.TootDiscoverable, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsDuration, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsEndTime, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsEndpoints, m)
|
||||
m = this.helperJSONLDContext(this.TootFeatured, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsFollowers, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsFollowing, m)
|
||||
|
|
@ -1046,6 +1061,20 @@ func (this ActivityStreamsPerson) LessThan(o vocab.ActivityStreamsPerson) bool {
|
|||
// Anything else is greater than nil
|
||||
return false
|
||||
} // Else: Both are nil
|
||||
// Compare property "endpoints"
|
||||
if lhs, rhs := this.ActivityStreamsEndpoints, o.GetActivityStreamsEndpoints(); lhs != nil && rhs != nil {
|
||||
if lhs.LessThan(rhs) {
|
||||
return true
|
||||
} else if rhs.LessThan(lhs) {
|
||||
return false
|
||||
}
|
||||
} else if lhs == nil && rhs != nil {
|
||||
// Nil is less than anything else
|
||||
return true
|
||||
} else if rhs != nil && rhs == nil {
|
||||
// Anything else is greater than nil
|
||||
return false
|
||||
} // Else: Both are nil
|
||||
// Compare property "featured"
|
||||
if lhs, rhs := this.TootFeatured, o.GetTootFeatured(); lhs != nil && rhs != nil {
|
||||
if lhs.LessThan(rhs) {
|
||||
|
|
@ -1669,6 +1698,14 @@ func (this ActivityStreamsPerson) Serialize() (map[string]interface{}, error) {
|
|||
m[this.ActivityStreamsEndTime.Name()] = i
|
||||
}
|
||||
}
|
||||
// Maybe serialize property "endpoints"
|
||||
if this.ActivityStreamsEndpoints != nil {
|
||||
if i, err := this.ActivityStreamsEndpoints.Serialize(); err != nil {
|
||||
return nil, err
|
||||
} else if i != nil {
|
||||
m[this.ActivityStreamsEndpoints.Name()] = i
|
||||
}
|
||||
}
|
||||
// Maybe serialize property "featured"
|
||||
if this.TootFeatured != nil {
|
||||
if i, err := this.TootFeatured.Serialize(); err != nil {
|
||||
|
|
@ -2026,6 +2063,11 @@ func (this *ActivityStreamsPerson) SetActivityStreamsEndTime(i vocab.ActivityStr
|
|||
this.ActivityStreamsEndTime = i
|
||||
}
|
||||
|
||||
// SetActivityStreamsEndpoints sets the "endpoints" property.
|
||||
func (this *ActivityStreamsPerson) SetActivityStreamsEndpoints(i vocab.ActivityStreamsEndpointsProperty) {
|
||||
this.ActivityStreamsEndpoints = i
|
||||
}
|
||||
|
||||
// SetActivityStreamsFollowers sets the "followers" property.
|
||||
func (this *ActivityStreamsPerson) SetActivityStreamsFollowers(i vocab.ActivityStreamsFollowersProperty) {
|
||||
this.ActivityStreamsFollowers = i
|
||||
|
|
|
|||
|
|
@ -60,6 +60,10 @@ type privateManager interface {
|
|||
// method for the "ActivityStreamsEndTimeProperty" non-functional
|
||||
// property in the vocabulary "ActivityStreams"
|
||||
DeserializeEndTimePropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndTimeProperty, error)
|
||||
// DeserializeEndpointsPropertyActivityStreams returns the deserialization
|
||||
// method for the "ActivityStreamsEndpointsProperty" non-functional
|
||||
// property in the vocabulary "ActivityStreams"
|
||||
DeserializeEndpointsPropertyActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsEndpointsProperty, error)
|
||||
// DeserializeFeaturedPropertyToot returns the deserialization method for
|
||||
// the "TootFeaturedProperty" non-functional property in the
|
||||
// vocabulary "Toot"
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ type ActivityStreamsService struct {
|
|||
TootDiscoverable vocab.TootDiscoverableProperty
|
||||
ActivityStreamsDuration vocab.ActivityStreamsDurationProperty
|
||||
ActivityStreamsEndTime vocab.ActivityStreamsEndTimeProperty
|
||||
ActivityStreamsEndpoints vocab.ActivityStreamsEndpointsProperty
|
||||
TootFeatured vocab.TootFeaturedProperty
|
||||
ActivityStreamsFollowers vocab.ActivityStreamsFollowersProperty
|
||||
ActivityStreamsFollowing vocab.ActivityStreamsFollowingProperty
|
||||
|
|
@ -177,6 +178,11 @@ func DeserializeService(m map[string]interface{}, aliasMap map[string]string) (*
|
|||
} else if p != nil {
|
||||
this.ActivityStreamsEndTime = p
|
||||
}
|
||||
if p, err := mgr.DeserializeEndpointsPropertyActivityStreams()(m, aliasMap); err != nil {
|
||||
return nil, err
|
||||
} else if p != nil {
|
||||
this.ActivityStreamsEndpoints = p
|
||||
}
|
||||
if p, err := mgr.DeserializeFeaturedPropertyToot()(m, aliasMap); err != nil {
|
||||
return nil, err
|
||||
} else if p != nil {
|
||||
|
|
@ -388,6 +394,8 @@ func DeserializeService(m map[string]interface{}, aliasMap map[string]string) (*
|
|||
continue
|
||||
} else if k == "endTime" {
|
||||
continue
|
||||
} else if k == "endpoints" {
|
||||
continue
|
||||
} else if k == "featured" {
|
||||
continue
|
||||
} else if k == "followers" {
|
||||
|
|
@ -580,6 +588,12 @@ func (this ActivityStreamsService) GetActivityStreamsEndTime() vocab.ActivityStr
|
|||
return this.ActivityStreamsEndTime
|
||||
}
|
||||
|
||||
// GetActivityStreamsEndpoints returns the "endpoints" property if it exists, and
|
||||
// nil otherwise.
|
||||
func (this ActivityStreamsService) GetActivityStreamsEndpoints() vocab.ActivityStreamsEndpointsProperty {
|
||||
return this.ActivityStreamsEndpoints
|
||||
}
|
||||
|
||||
// GetActivityStreamsFollowers returns the "followers" property if it exists, and
|
||||
// nil otherwise.
|
||||
func (this ActivityStreamsService) GetActivityStreamsFollowers() vocab.ActivityStreamsFollowersProperty {
|
||||
|
|
@ -834,6 +848,7 @@ func (this ActivityStreamsService) JSONLDContext() map[string]string {
|
|||
m = this.helperJSONLDContext(this.TootDiscoverable, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsDuration, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsEndTime, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsEndpoints, m)
|
||||
m = this.helperJSONLDContext(this.TootFeatured, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsFollowers, m)
|
||||
m = this.helperJSONLDContext(this.ActivityStreamsFollowing, m)
|
||||
|
|
@ -1046,6 +1061,20 @@ func (this ActivityStreamsService) LessThan(o vocab.ActivityStreamsService) bool
|
|||
// Anything else is greater than nil
|
||||
return false
|
||||
} // Else: Both are nil
|
||||
// Compare property "endpoints"
|
||||
if lhs, rhs := this.ActivityStreamsEndpoints, o.GetActivityStreamsEndpoints(); lhs != nil && rhs != nil {
|
||||
if lhs.LessThan(rhs) {
|
||||
return true
|
||||
} else if rhs.LessThan(lhs) {
|
||||
return false
|
||||
}
|
||||
} else if lhs == nil && rhs != nil {
|
||||
// Nil is less than anything else
|
||||
return true
|
||||
} else if rhs != nil && rhs == nil {
|
||||
// Anything else is greater than nil
|
||||
return false
|
||||
} // Else: Both are nil
|
||||
// Compare property "featured"
|
||||
if lhs, rhs := this.TootFeatured, o.GetTootFeatured(); lhs != nil && rhs != nil {
|
||||
if lhs.LessThan(rhs) {
|
||||
|
|
@ -1669,6 +1698,14 @@ func (this ActivityStreamsService) Serialize() (map[string]interface{}, error) {
|
|||
m[this.ActivityStreamsEndTime.Name()] = i
|
||||
}
|
||||
}
|
||||
// Maybe serialize property "endpoints"
|
||||
if this.ActivityStreamsEndpoints != nil {
|
||||
if i, err := this.ActivityStreamsEndpoints.Serialize(); err != nil {
|
||||
return nil, err
|
||||
} else if i != nil {
|
||||
m[this.ActivityStreamsEndpoints.Name()] = i
|
||||
}
|
||||
}
|
||||
// Maybe serialize property "featured"
|
||||
if this.TootFeatured != nil {
|
||||
if i, err := this.TootFeatured.Serialize(); err != nil {
|
||||
|
|
@ -2026,6 +2063,11 @@ func (this *ActivityStreamsService) SetActivityStreamsEndTime(i vocab.ActivitySt
|
|||
this.ActivityStreamsEndTime = i
|
||||
}
|
||||
|
||||
// SetActivityStreamsEndpoints sets the "endpoints" property.
|
||||
func (this *ActivityStreamsService) SetActivityStreamsEndpoints(i vocab.ActivityStreamsEndpointsProperty) {
|
||||
this.ActivityStreamsEndpoints = i
|
||||
}
|
||||
|
||||
// SetActivityStreamsFollowers sets the "followers" property.
|
||||
func (this *ActivityStreamsService) SetActivityStreamsFollowers(i vocab.ActivityStreamsFollowersProperty) {
|
||||
this.ActivityStreamsFollowers = i
|
||||
|
|
|
|||
159
vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_endpoints_interface.go
generated
vendored
Normal file
159
vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_endpoints_interface.go
generated
vendored
Normal file
|
|
@ -0,0 +1,159 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// ActivityStreamsEndpointsPropertyIterator represents a single value for the
|
||||
// "endpoints" property.
|
||||
type ActivityStreamsEndpointsPropertyIterator interface {
|
||||
// Get returns the value of this property. When IsActivityStreamsEndpoints
|
||||
// returns false, Get will return any arbitrary value.
|
||||
Get() ActivityStreamsEndpoints
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return any arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// GetType returns the value in this property as a Type. Returns nil if
|
||||
// the value is not an ActivityStreams type, such as an IRI or another
|
||||
// value.
|
||||
GetType() Type
|
||||
// HasAny returns true if the value or IRI is set.
|
||||
HasAny() bool
|
||||
// IsActivityStreamsEndpoints returns true if this property is set and not
|
||||
// an IRI.
|
||||
IsActivityStreamsEndpoints() bool
|
||||
// IsIRI returns true if this property is an IRI.
|
||||
IsIRI() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ActivityStreamsEndpointsPropertyIterator) bool
|
||||
// Name returns the name of this property: "ActivityStreamsEndpoints".
|
||||
Name() string
|
||||
// Next returns the next iterator, or nil if there is no next iterator.
|
||||
Next() ActivityStreamsEndpointsPropertyIterator
|
||||
// Prev returns the previous iterator, or nil if there is no previous
|
||||
// iterator.
|
||||
Prev() ActivityStreamsEndpointsPropertyIterator
|
||||
// Set sets the value of this property. Calling IsActivityStreamsEndpoints
|
||||
// afterwards will return true.
|
||||
Set(v ActivityStreamsEndpoints)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards will
|
||||
// return true.
|
||||
SetIRI(v *url.URL)
|
||||
// SetType attempts to set the property for the arbitrary type. Returns an
|
||||
// error if it is not a valid type to set on this property.
|
||||
SetType(t Type) error
|
||||
}
|
||||
|
||||
// Endpoints for an ActivityStreams actor.
|
||||
//
|
||||
// null
|
||||
type ActivityStreamsEndpointsProperty interface {
|
||||
// AppendActivityStreamsEndpoints appends a Endpoints value to the back of
|
||||
// a list of the property "endpoints". Invalidates iterators that are
|
||||
// traversing using Prev.
|
||||
AppendActivityStreamsEndpoints(v ActivityStreamsEndpoints)
|
||||
// AppendIRI appends an IRI value to the back of a list of the property
|
||||
// "endpoints"
|
||||
AppendIRI(v *url.URL)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "endpoints". Invalidates iterators that are traversing
|
||||
// using Prev. Returns an error if the type is not a valid one to set
|
||||
// for this property.
|
||||
AppendType(t Type) error
|
||||
// At returns the property value for the specified index. Panics if the
|
||||
// index is out of bounds.
|
||||
At(index int) ActivityStreamsEndpointsPropertyIterator
|
||||
// Begin returns the first iterator, or nil if empty. Can be used with the
|
||||
// iterator's Next method and this property's End method to iterate
|
||||
// from front to back through all values.
|
||||
Begin() ActivityStreamsEndpointsPropertyIterator
|
||||
// Empty returns returns true if there are no elements.
|
||||
Empty() bool
|
||||
// End returns beyond-the-last iterator, which is nil. Can be used with
|
||||
// the iterator's Next method and this property's Begin method to
|
||||
// iterate from front to back through all values.
|
||||
End() ActivityStreamsEndpointsPropertyIterator
|
||||
// InsertActivityStreamsEndpoints inserts a Endpoints value at the
|
||||
// specified index for a property "endpoints". Existing elements at
|
||||
// that index and higher are shifted back once. Invalidates all
|
||||
// iterators.
|
||||
InsertActivityStreamsEndpoints(idx int, v ActivityStreamsEndpoints)
|
||||
// Insert inserts an IRI value at the specified index for a property
|
||||
// "endpoints". Existing elements at that index and higher are shifted
|
||||
// back once. Invalidates all iterators.
|
||||
InsertIRI(idx int, v *url.URL)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "endpoints". Invalidates all iterators. Returns an
|
||||
// error if the type is not a valid one to set for this property.
|
||||
InsertType(idx int, t Type) error
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API method specifically needed only for alternate
|
||||
// implementations for go-fed. Applications should not use this
|
||||
// method. Panics if the index is out of bounds.
|
||||
KindIndex(idx int) int
|
||||
// Len returns the number of values that exist for the "endpoints"
|
||||
// property.
|
||||
Len() (length int)
|
||||
// Less computes whether another property is less than this one. Mixing
|
||||
// types results in a consistent but arbitrary ordering
|
||||
Less(i, j int) bool
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ActivityStreamsEndpointsProperty) bool
|
||||
// Name returns the name of this property ("endpoints") with any alias.
|
||||
Name() string
|
||||
// PrependActivityStreamsEndpoints prepends a Endpoints value to the front
|
||||
// of a list of the property "endpoints". Invalidates all iterators.
|
||||
PrependActivityStreamsEndpoints(v ActivityStreamsEndpoints)
|
||||
// PrependIRI prepends an IRI value to the front of a list of the property
|
||||
// "endpoints".
|
||||
PrependIRI(v *url.URL)
|
||||
// PrependType prepends an arbitrary type value to the front of a list of
|
||||
// the property "endpoints". Invalidates all iterators. Returns an
|
||||
// error if the type is not a valid one to set for this property.
|
||||
PrependType(t Type) error
|
||||
// Remove deletes an element at the specified index from a list of the
|
||||
// property "endpoints", regardless of its type. Panics if the index
|
||||
// is out of bounds. Invalidates all iterators.
|
||||
Remove(idx int)
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// Set sets a Endpoints value to be at the specified index for the
|
||||
// property "endpoints". Panics if the index is out of bounds.
|
||||
// Invalidates all iterators.
|
||||
Set(idx int, v ActivityStreamsEndpoints)
|
||||
// SetIRI sets an IRI value to be at the specified index for the property
|
||||
// "endpoints". Panics if the index is out of bounds.
|
||||
SetIRI(idx int, v *url.URL)
|
||||
// SetType sets an arbitrary type value to the specified index of the
|
||||
// property "endpoints". Invalidates all iterators. Returns an error
|
||||
// if the type is not a valid one to set for this property. Panics if
|
||||
// the index is out of bounds.
|
||||
SetType(idx int, t Type) error
|
||||
// Swap swaps the location of values at two indices for the "endpoints"
|
||||
// property.
|
||||
Swap(i, j int)
|
||||
}
|
||||
56
vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_sharedInbox_interface.go
generated
vendored
Normal file
56
vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_property_activitystreams_sharedInbox_interface.go
generated
vendored
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
import "net/url"
|
||||
|
||||
// An optional endpoint used for wide delivery of publicly addressed activities
|
||||
// and activities sent to followers. sharedInbox endpoints SHOULD also be
|
||||
// publicly readable OrderedCollection objects containing objects addressed to
|
||||
// the Public special collection. Reading from the sharedInbox endpoint MUST
|
||||
// NOT present objects which are not addressed to the Public endpoint.
|
||||
type ActivityStreamsSharedInboxProperty interface {
|
||||
// Clear ensures no value of this property is set. Calling
|
||||
// IsXMLSchemaAnyURI afterwards will return false.
|
||||
Clear()
|
||||
// Get returns the value of this property. When IsXMLSchemaAnyURI returns
|
||||
// false, Get will return any arbitrary value.
|
||||
Get() *url.URL
|
||||
// GetIRI returns the IRI of this property. When IsIRI returns false,
|
||||
// GetIRI will return any arbitrary value.
|
||||
GetIRI() *url.URL
|
||||
// HasAny returns true if the value or IRI is set.
|
||||
HasAny() bool
|
||||
// IsIRI returns true if this property is an IRI.
|
||||
IsIRI() bool
|
||||
// IsXMLSchemaAnyURI returns true if this property is set and not an IRI.
|
||||
IsXMLSchemaAnyURI() bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this property and the specific values that are set. The value
|
||||
// in the map is the alias used to import the property's value or
|
||||
// values.
|
||||
JSONLDContext() map[string]string
|
||||
// KindIndex computes an arbitrary value for indexing this kind of value.
|
||||
// This is a leaky API detail only for folks looking to replace the
|
||||
// go-fed implementation. Applications should not use this method.
|
||||
KindIndex() int
|
||||
// LessThan compares two instances of this property with an arbitrary but
|
||||
// stable comparison. Applications should not use this because it is
|
||||
// only meant to help alternative implementations to go-fed to be able
|
||||
// to normalize nonfunctional properties.
|
||||
LessThan(o ActivityStreamsSharedInboxProperty) bool
|
||||
// Name returns the name of this property: "sharedInbox".
|
||||
Name() string
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format. Applications should not
|
||||
// need this function as most typical use cases serialize types
|
||||
// instead of individual properties. It is exposed for alternatives to
|
||||
// go-fed implementations to use.
|
||||
Serialize() (interface{}, error)
|
||||
// Set sets the value of this property. Calling IsXMLSchemaAnyURI
|
||||
// afterwards will return true.
|
||||
Set(v *url.URL)
|
||||
// SetIRI sets the value of this property. Calling IsIRI afterwards will
|
||||
// return true.
|
||||
SetIRI(v *url.URL)
|
||||
}
|
||||
|
|
@ -43,6 +43,9 @@ type ActivityStreamsApplication interface {
|
|||
// GetActivityStreamsEndTime returns the "endTime" property if it exists,
|
||||
// and nil otherwise.
|
||||
GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
|
||||
// GetActivityStreamsEndpoints returns the "endpoints" property if it
|
||||
// exists, and nil otherwise.
|
||||
GetActivityStreamsEndpoints() ActivityStreamsEndpointsProperty
|
||||
// GetActivityStreamsFollowers returns the "followers" property if it
|
||||
// exists, and nil otherwise.
|
||||
GetActivityStreamsFollowers() ActivityStreamsFollowersProperty
|
||||
|
|
@ -199,6 +202,8 @@ type ActivityStreamsApplication interface {
|
|||
SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
|
||||
// SetActivityStreamsEndTime sets the "endTime" property.
|
||||
SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
|
||||
// SetActivityStreamsEndpoints sets the "endpoints" property.
|
||||
SetActivityStreamsEndpoints(i ActivityStreamsEndpointsProperty)
|
||||
// SetActivityStreamsFollowers sets the "followers" property.
|
||||
SetActivityStreamsFollowers(i ActivityStreamsFollowersProperty)
|
||||
// SetActivityStreamsFollowing sets the "following" property.
|
||||
|
|
|
|||
44
vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_endpoints_interface.go
generated
vendored
Normal file
44
vendor/github.com/superseriousbusiness/activity/streams/vocab/gen_type_activitystreams_endpoints_interface.go
generated
vendored
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
// Code generated by astool. DO NOT EDIT.
|
||||
|
||||
package vocab
|
||||
|
||||
// A json object which maps additional (typically server/domain-wide) endpoints
|
||||
// which may be useful either for this actor or someone referencing this
|
||||
// actor. This mapping may be nested inside the actor document as the value or
|
||||
// may be a link to a JSON-LD document with these properties.
|
||||
type ActivityStreamsEndpoints interface {
|
||||
// GetActivityStreamsSharedInbox returns the "sharedInbox" property if it
|
||||
// exists, and nil otherwise.
|
||||
GetActivityStreamsSharedInbox() ActivityStreamsSharedInboxProperty
|
||||
// GetJSONLDId returns the "id" property if it exists, and nil otherwise.
|
||||
GetJSONLDId() JSONLDIdProperty
|
||||
// GetTypeName returns the name of this type.
|
||||
GetTypeName() string
|
||||
// GetUnknownProperties returns the unknown properties for the Endpoints
|
||||
// type. Note that this should not be used by app developers. It is
|
||||
// only used to help determine which implementation is LessThan the
|
||||
// other. Developers who are creating a different implementation of
|
||||
// this type's interface can use this method in their LessThan
|
||||
// implementation, but routine ActivityPub applications should not use
|
||||
// this to bypass the code generation tool.
|
||||
GetUnknownProperties() map[string]interface{}
|
||||
// IsExtending returns true if the Endpoints type extends from the other
|
||||
// type.
|
||||
IsExtending(other Type) bool
|
||||
// JSONLDContext returns the JSONLD URIs required in the context string
|
||||
// for this type and the specific properties that are set. The value
|
||||
// in the map is the alias used to import the type and its properties.
|
||||
JSONLDContext() map[string]string
|
||||
// LessThan computes if this Endpoints is lesser, with an arbitrary but
|
||||
// stable determination.
|
||||
LessThan(o ActivityStreamsEndpoints) bool
|
||||
// Serialize converts this into an interface representation suitable for
|
||||
// marshalling into a text or binary format.
|
||||
Serialize() (map[string]interface{}, error)
|
||||
// SetActivityStreamsSharedInbox sets the "sharedInbox" property.
|
||||
SetActivityStreamsSharedInbox(i ActivityStreamsSharedInboxProperty)
|
||||
// SetJSONLDId sets the "id" property.
|
||||
SetJSONLDId(i JSONLDIdProperty)
|
||||
// VocabularyURI returns the vocabulary's URI as a string.
|
||||
VocabularyURI() string
|
||||
}
|
||||
|
|
@ -43,6 +43,9 @@ type ActivityStreamsGroup interface {
|
|||
// GetActivityStreamsEndTime returns the "endTime" property if it exists,
|
||||
// and nil otherwise.
|
||||
GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
|
||||
// GetActivityStreamsEndpoints returns the "endpoints" property if it
|
||||
// exists, and nil otherwise.
|
||||
GetActivityStreamsEndpoints() ActivityStreamsEndpointsProperty
|
||||
// GetActivityStreamsFollowers returns the "followers" property if it
|
||||
// exists, and nil otherwise.
|
||||
GetActivityStreamsFollowers() ActivityStreamsFollowersProperty
|
||||
|
|
@ -198,6 +201,8 @@ type ActivityStreamsGroup interface {
|
|||
SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
|
||||
// SetActivityStreamsEndTime sets the "endTime" property.
|
||||
SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
|
||||
// SetActivityStreamsEndpoints sets the "endpoints" property.
|
||||
SetActivityStreamsEndpoints(i ActivityStreamsEndpointsProperty)
|
||||
// SetActivityStreamsFollowers sets the "followers" property.
|
||||
SetActivityStreamsFollowers(i ActivityStreamsFollowersProperty)
|
||||
// SetActivityStreamsFollowing sets the "following" property.
|
||||
|
|
|
|||
|
|
@ -43,6 +43,9 @@ type ActivityStreamsOrganization interface {
|
|||
// GetActivityStreamsEndTime returns the "endTime" property if it exists,
|
||||
// and nil otherwise.
|
||||
GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
|
||||
// GetActivityStreamsEndpoints returns the "endpoints" property if it
|
||||
// exists, and nil otherwise.
|
||||
GetActivityStreamsEndpoints() ActivityStreamsEndpointsProperty
|
||||
// GetActivityStreamsFollowers returns the "followers" property if it
|
||||
// exists, and nil otherwise.
|
||||
GetActivityStreamsFollowers() ActivityStreamsFollowersProperty
|
||||
|
|
@ -199,6 +202,8 @@ type ActivityStreamsOrganization interface {
|
|||
SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
|
||||
// SetActivityStreamsEndTime sets the "endTime" property.
|
||||
SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
|
||||
// SetActivityStreamsEndpoints sets the "endpoints" property.
|
||||
SetActivityStreamsEndpoints(i ActivityStreamsEndpointsProperty)
|
||||
// SetActivityStreamsFollowers sets the "followers" property.
|
||||
SetActivityStreamsFollowers(i ActivityStreamsFollowersProperty)
|
||||
// SetActivityStreamsFollowing sets the "following" property.
|
||||
|
|
|
|||
|
|
@ -43,6 +43,9 @@ type ActivityStreamsPerson interface {
|
|||
// GetActivityStreamsEndTime returns the "endTime" property if it exists,
|
||||
// and nil otherwise.
|
||||
GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
|
||||
// GetActivityStreamsEndpoints returns the "endpoints" property if it
|
||||
// exists, and nil otherwise.
|
||||
GetActivityStreamsEndpoints() ActivityStreamsEndpointsProperty
|
||||
// GetActivityStreamsFollowers returns the "followers" property if it
|
||||
// exists, and nil otherwise.
|
||||
GetActivityStreamsFollowers() ActivityStreamsFollowersProperty
|
||||
|
|
@ -198,6 +201,8 @@ type ActivityStreamsPerson interface {
|
|||
SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
|
||||
// SetActivityStreamsEndTime sets the "endTime" property.
|
||||
SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
|
||||
// SetActivityStreamsEndpoints sets the "endpoints" property.
|
||||
SetActivityStreamsEndpoints(i ActivityStreamsEndpointsProperty)
|
||||
// SetActivityStreamsFollowers sets the "followers" property.
|
||||
SetActivityStreamsFollowers(i ActivityStreamsFollowersProperty)
|
||||
// SetActivityStreamsFollowing sets the "following" property.
|
||||
|
|
|
|||
|
|
@ -43,6 +43,9 @@ type ActivityStreamsService interface {
|
|||
// GetActivityStreamsEndTime returns the "endTime" property if it exists,
|
||||
// and nil otherwise.
|
||||
GetActivityStreamsEndTime() ActivityStreamsEndTimeProperty
|
||||
// GetActivityStreamsEndpoints returns the "endpoints" property if it
|
||||
// exists, and nil otherwise.
|
||||
GetActivityStreamsEndpoints() ActivityStreamsEndpointsProperty
|
||||
// GetActivityStreamsFollowers returns the "followers" property if it
|
||||
// exists, and nil otherwise.
|
||||
GetActivityStreamsFollowers() ActivityStreamsFollowersProperty
|
||||
|
|
@ -199,6 +202,8 @@ type ActivityStreamsService interface {
|
|||
SetActivityStreamsDuration(i ActivityStreamsDurationProperty)
|
||||
// SetActivityStreamsEndTime sets the "endTime" property.
|
||||
SetActivityStreamsEndTime(i ActivityStreamsEndTimeProperty)
|
||||
// SetActivityStreamsEndpoints sets the "endpoints" property.
|
||||
SetActivityStreamsEndpoints(i ActivityStreamsEndpointsProperty)
|
||||
// SetActivityStreamsFollowers sets the "followers" property.
|
||||
SetActivityStreamsFollowers(i ActivityStreamsFollowersProperty)
|
||||
// SetActivityStreamsFollowing sets the "following" property.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue