summaryrefslogtreecommitdiff
path: root/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2025-03-02 12:48:00 +0100
committerLibravatar GitHub <noreply@github.com>2025-03-02 12:48:00 +0100
commite2e185d10bdaaba85996069e9621963ad4d6f565 (patch)
treebb537b524a2126e0fe16b34ebdbf097420c26a0d /vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first
parent[chore] little frontend tweaks (#3852) (diff)
downloadgotosocial-e2e185d10bdaaba85996069e9621963ad4d6f565.tar.xz
[chore] github.com/superseriousbusiness/activity -> codeberg.org/superseriousbusiness/activity (#3853)
Diffstat (limited to 'vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first')
-rw-r--r--vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_doc.go17
-rw-r--r--vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_pkg.go38
-rw-r--r--vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_property_activitystreams_first.go404
3 files changed, 0 insertions, 459 deletions
diff --git a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_doc.go
deleted file mode 100644
index cde426655..000000000
--- a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_doc.go
+++ /dev/null
@@ -1,17 +0,0 @@
-// Code generated by astool. DO NOT EDIT.
-
-// Package propertyfirst contains the implementation for the first 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 propertyfirst
diff --git a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_pkg.go
deleted file mode 100644
index f0177bc66..000000000
--- a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_pkg.go
+++ /dev/null
@@ -1,38 +0,0 @@
-// Code generated by astool. DO NOT EDIT.
-
-package propertyfirst
-
-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 {
- // DeserializeCollectionPageActivityStreams returns the deserialization
- // method for the "ActivityStreamsCollectionPage" non-functional
- // property in the vocabulary "ActivityStreams"
- DeserializeCollectionPageActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsCollectionPage, error)
- // DeserializeHashtagToot returns the deserialization method for the
- // "TootHashtag" non-functional property in the vocabulary "Toot"
- DeserializeHashtagToot() func(map[string]interface{}, map[string]string) (vocab.TootHashtag, error)
- // DeserializeLinkActivityStreams returns the deserialization method for
- // the "ActivityStreamsLink" non-functional property in the vocabulary
- // "ActivityStreams"
- DeserializeLinkActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsLink, error)
- // DeserializeMentionActivityStreams returns the deserialization method
- // for the "ActivityStreamsMention" non-functional property in the
- // vocabulary "ActivityStreams"
- DeserializeMentionActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsMention, error)
- // DeserializeOrderedCollectionPageActivityStreams returns the
- // deserialization method for the
- // "ActivityStreamsOrderedCollectionPage" non-functional property in
- // the vocabulary "ActivityStreams"
- DeserializeOrderedCollectionPageActivityStreams() func(map[string]interface{}, map[string]string) (vocab.ActivityStreamsOrderedCollectionPage, 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
-}
diff --git a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_property_activitystreams_first.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_property_activitystreams_first.go
deleted file mode 100644
index 7ec5616a1..000000000
--- a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_first/gen_property_activitystreams_first.go
+++ /dev/null
@@ -1,404 +0,0 @@
-// Code generated by astool. DO NOT EDIT.
-
-package propertyfirst
-
-import (
- "fmt"
- vocab "github.com/superseriousbusiness/activity/streams/vocab"
- "net/url"
-)
-
-// ActivityStreamsFirstProperty is the functional property "first". It is
-// permitted to be one of multiple value types. At most, one type of value can
-// be present, or none at all. Setting a value will clear the other types of
-// values so that only one of the 'Is' methods will return true. It is
-// possible to clear all values, so that this property is empty.
-type ActivityStreamsFirstProperty struct {
- activitystreamsCollectionPageMember vocab.ActivityStreamsCollectionPage
- activitystreamsLinkMember vocab.ActivityStreamsLink
- tootHashtagMember vocab.TootHashtag
- activitystreamsMentionMember vocab.ActivityStreamsMention
- activitystreamsOrderedCollectionPageMember vocab.ActivityStreamsOrderedCollectionPage
- unknown interface{}
- iri *url.URL
- alias string
-}
-
-// DeserializeFirstProperty creates a "first" property from an interface
-// representation that has been unmarshalled from a text or binary format.
-func DeserializeFirstProperty(m map[string]interface{}, aliasMap map[string]string) (*ActivityStreamsFirstProperty, error) {
- alias := ""
- if a, ok := aliasMap["https://www.w3.org/ns/activitystreams"]; ok {
- alias = a
- }
- propName := "first"
- if len(alias) > 0 {
- // Use alias both to find the property, and set within the property.
- propName = fmt.Sprintf("%s:%s", alias, "first")
- }
- i, ok := m[propName]
-
- if ok {
- 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 := &ActivityStreamsFirstProperty{
- alias: alias,
- iri: u,
- }
- return this, nil
- }
- }
- if m, ok := i.(map[string]interface{}); ok {
- if v, err := mgr.DeserializeCollectionPageActivityStreams()(m, aliasMap); err == nil {
- this := &ActivityStreamsFirstProperty{
- activitystreamsCollectionPageMember: v,
- alias: alias,
- }
- return this, nil
- } else if v, err := mgr.DeserializeLinkActivityStreams()(m, aliasMap); err == nil {
- this := &ActivityStreamsFirstProperty{
- activitystreamsLinkMember: v,
- alias: alias,
- }
- return this, nil
- } else if v, err := mgr.DeserializeHashtagToot()(m, aliasMap); err == nil {
- this := &ActivityStreamsFirstProperty{
- alias: alias,
- tootHashtagMember: v,
- }
- return this, nil
- } else if v, err := mgr.DeserializeMentionActivityStreams()(m, aliasMap); err == nil {
- this := &ActivityStreamsFirstProperty{
- activitystreamsMentionMember: v,
- alias: alias,
- }
- return this, nil
- } else if v, err := mgr.DeserializeOrderedCollectionPageActivityStreams()(m, aliasMap); err == nil {
- this := &ActivityStreamsFirstProperty{
- activitystreamsOrderedCollectionPageMember: v,
- alias: alias,
- }
- return this, nil
- }
- }
- this := &ActivityStreamsFirstProperty{
- alias: alias,
- unknown: i,
- }
- return this, nil
- }
- return nil, nil
-}
-
-// NewActivityStreamsFirstProperty creates a new first property.
-func NewActivityStreamsFirstProperty() *ActivityStreamsFirstProperty {
- return &ActivityStreamsFirstProperty{alias: ""}
-}
-
-// Clear ensures no value of this property is set. Calling HasAny or any of the
-// 'Is' methods afterwards will return false.
-func (this *ActivityStreamsFirstProperty) Clear() {
- this.activitystreamsCollectionPageMember = nil
- this.activitystreamsLinkMember = nil
- this.tootHashtagMember = nil
- this.activitystreamsMentionMember = nil
- this.activitystreamsOrderedCollectionPageMember = nil
- this.unknown = nil
- this.iri = nil
-}
-
-// GetActivityStreamsCollectionPage returns the value of this property. When
-// IsActivityStreamsCollectionPage returns false,
-// GetActivityStreamsCollectionPage will return an arbitrary value.
-func (this ActivityStreamsFirstProperty) GetActivityStreamsCollectionPage() vocab.ActivityStreamsCollectionPage {
- return this.activitystreamsCollectionPageMember
-}
-
-// GetActivityStreamsLink returns the value of this property. When
-// IsActivityStreamsLink returns false, GetActivityStreamsLink will return an
-// arbitrary value.
-func (this ActivityStreamsFirstProperty) GetActivityStreamsLink() vocab.ActivityStreamsLink {
- return this.activitystreamsLinkMember
-}
-
-// GetActivityStreamsMention returns the value of this property. When
-// IsActivityStreamsMention returns false, GetActivityStreamsMention will
-// return an arbitrary value.
-func (this ActivityStreamsFirstProperty) GetActivityStreamsMention() vocab.ActivityStreamsMention {
- return this.activitystreamsMentionMember
-}
-
-// GetActivityStreamsOrderedCollectionPage returns the value of this property.
-// When IsActivityStreamsOrderedCollectionPage returns false,
-// GetActivityStreamsOrderedCollectionPage will return an arbitrary value.
-func (this ActivityStreamsFirstProperty) GetActivityStreamsOrderedCollectionPage() vocab.ActivityStreamsOrderedCollectionPage {
- return this.activitystreamsOrderedCollectionPageMember
-}
-
-// GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will
-// return an arbitrary value.
-func (this ActivityStreamsFirstProperty) GetIRI() *url.URL {
- return this.iri
-}
-
-// GetTootHashtag returns the value of this property. When IsTootHashtag returns
-// false, GetTootHashtag will return an arbitrary value.
-func (this ActivityStreamsFirstProperty) GetTootHashtag() vocab.TootHashtag {
- return this.tootHashtagMember
-}
-
-// 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 ActivityStreamsFirstProperty) GetType() vocab.Type {
- if this.IsActivityStreamsCollectionPage() {
- return this.GetActivityStreamsCollectionPage()
- }
- if this.IsActivityStreamsLink() {
- return this.GetActivityStreamsLink()
- }
- if this.IsTootHashtag() {
- return this.GetTootHashtag()
- }
- if this.IsActivityStreamsMention() {
- return this.GetActivityStreamsMention()
- }
- if this.IsActivityStreamsOrderedCollectionPage() {
- return this.GetActivityStreamsOrderedCollectionPage()
- }
-
- return nil
-}
-
-// HasAny returns true if any of the different values is set.
-func (this ActivityStreamsFirstProperty) HasAny() bool {
- return this.IsActivityStreamsCollectionPage() ||
- this.IsActivityStreamsLink() ||
- this.IsTootHashtag() ||
- this.IsActivityStreamsMention() ||
- this.IsActivityStreamsOrderedCollectionPage() ||
- this.iri != nil
-}
-
-// IsActivityStreamsCollectionPage returns true if this property has a type of
-// "CollectionPage". When true, use the GetActivityStreamsCollectionPage and
-// SetActivityStreamsCollectionPage methods to access and set this property.
-func (this ActivityStreamsFirstProperty) IsActivityStreamsCollectionPage() bool {
- return this.activitystreamsCollectionPageMember != nil
-}
-
-// IsActivityStreamsLink returns true if this property has a type of "Link". When
-// true, use the GetActivityStreamsLink and SetActivityStreamsLink methods to
-// access and set this property.
-func (this ActivityStreamsFirstProperty) IsActivityStreamsLink() bool {
- return this.activitystreamsLinkMember != nil
-}
-
-// IsActivityStreamsMention returns true if this property has a type of "Mention".
-// When true, use the GetActivityStreamsMention and SetActivityStreamsMention
-// methods to access and set this property.
-func (this ActivityStreamsFirstProperty) IsActivityStreamsMention() bool {
- return this.activitystreamsMentionMember != nil
-}
-
-// IsActivityStreamsOrderedCollectionPage returns true if this property has a type
-// of "OrderedCollectionPage". When true, use the
-// GetActivityStreamsOrderedCollectionPage and
-// SetActivityStreamsOrderedCollectionPage methods to access and set this
-// property.
-func (this ActivityStreamsFirstProperty) IsActivityStreamsOrderedCollectionPage() bool {
- return this.activitystreamsOrderedCollectionPageMember != nil
-}
-
-// IsIRI returns true if this property is an IRI. When true, use GetIRI and SetIRI
-// to access and set this property
-func (this ActivityStreamsFirstProperty) IsIRI() bool {
- return this.iri != nil
-}
-
-// IsTootHashtag returns true if this property has a type of "Hashtag". When true,
-// use the GetTootHashtag and SetTootHashtag methods to access and set this
-// property.
-func (this ActivityStreamsFirstProperty) IsTootHashtag() bool {
- return this.tootHashtagMember != 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 ActivityStreamsFirstProperty) JSONLDContext() map[string]string {
- m := map[string]string{"https://www.w3.org/ns/activitystreams": this.alias}
- var child map[string]string
- if this.IsActivityStreamsCollectionPage() {
- child = this.GetActivityStreamsCollectionPage().JSONLDContext()
- } else if this.IsActivityStreamsLink() {
- child = this.GetActivityStreamsLink().JSONLDContext()
- } else if this.IsTootHashtag() {
- child = this.GetTootHashtag().JSONLDContext()
- } else if this.IsActivityStreamsMention() {
- child = this.GetActivityStreamsMention().JSONLDContext()
- } else if this.IsActivityStreamsOrderedCollectionPage() {
- child = this.GetActivityStreamsOrderedCollectionPage().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 ActivityStreamsFirstProperty) KindIndex() int {
- if this.IsActivityStreamsCollectionPage() {
- return 0
- }
- if this.IsActivityStreamsLink() {
- return 1
- }
- if this.IsTootHashtag() {
- return 2
- }
- if this.IsActivityStreamsMention() {
- return 3
- }
- if this.IsActivityStreamsOrderedCollectionPage() {
- return 4
- }
- 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 ActivityStreamsFirstProperty) LessThan(o vocab.ActivityStreamsFirstProperty) bool {
- idx1 := this.KindIndex()
- idx2 := o.KindIndex()
- if idx1 < idx2 {
- return true
- } else if idx1 > idx2 {
- return false
- } else if this.IsActivityStreamsCollectionPage() {
- return this.GetActivityStreamsCollectionPage().LessThan(o.GetActivityStreamsCollectionPage())
- } else if this.IsActivityStreamsLink() {
- return this.GetActivityStreamsLink().LessThan(o.GetActivityStreamsLink())
- } else if this.IsTootHashtag() {
- return this.GetTootHashtag().LessThan(o.GetTootHashtag())
- } else if this.IsActivityStreamsMention() {
- return this.GetActivityStreamsMention().LessThan(o.GetActivityStreamsMention())
- } else if this.IsActivityStreamsOrderedCollectionPage() {
- return this.GetActivityStreamsOrderedCollectionPage().LessThan(o.GetActivityStreamsOrderedCollectionPage())
- } else if this.IsIRI() {
- return this.iri.String() < o.GetIRI().String()
- }
- return false
-}
-
-// Name returns the name of this property: "first".
-func (this ActivityStreamsFirstProperty) Name() string {
- if len(this.alias) > 0 {
- return this.alias + ":" + "first"
- } else {
- return "first"
- }
-}
-
-// 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 ActivityStreamsFirstProperty) Serialize() (interface{}, error) {
- if this.IsActivityStreamsCollectionPage() {
- return this.GetActivityStreamsCollectionPage().Serialize()
- } else if this.IsActivityStreamsLink() {
- return this.GetActivityStreamsLink().Serialize()
- } else if this.IsTootHashtag() {
- return this.GetTootHashtag().Serialize()
- } else if this.IsActivityStreamsMention() {
- return this.GetActivityStreamsMention().Serialize()
- } else if this.IsActivityStreamsOrderedCollectionPage() {
- return this.GetActivityStreamsOrderedCollectionPage().Serialize()
- } else if this.IsIRI() {
- return this.iri.String(), nil
- }
- return this.unknown, nil
-}
-
-// SetActivityStreamsCollectionPage sets the value of this property. Calling
-// IsActivityStreamsCollectionPage afterwards returns true.
-func (this *ActivityStreamsFirstProperty) SetActivityStreamsCollectionPage(v vocab.ActivityStreamsCollectionPage) {
- this.Clear()
- this.activitystreamsCollectionPageMember = v
-}
-
-// SetActivityStreamsLink sets the value of this property. Calling
-// IsActivityStreamsLink afterwards returns true.
-func (this *ActivityStreamsFirstProperty) SetActivityStreamsLink(v vocab.ActivityStreamsLink) {
- this.Clear()
- this.activitystreamsLinkMember = v
-}
-
-// SetActivityStreamsMention sets the value of this property. Calling
-// IsActivityStreamsMention afterwards returns true.
-func (this *ActivityStreamsFirstProperty) SetActivityStreamsMention(v vocab.ActivityStreamsMention) {
- this.Clear()
- this.activitystreamsMentionMember = v
-}
-
-// SetActivityStreamsOrderedCollectionPage sets the value of this property.
-// Calling IsActivityStreamsOrderedCollectionPage afterwards returns true.
-func (this *ActivityStreamsFirstProperty) SetActivityStreamsOrderedCollectionPage(v vocab.ActivityStreamsOrderedCollectionPage) {
- this.Clear()
- this.activitystreamsOrderedCollectionPageMember = v
-}
-
-// SetIRI sets the value of this property. Calling IsIRI afterwards returns true.
-func (this *ActivityStreamsFirstProperty) SetIRI(v *url.URL) {
- this.Clear()
- this.iri = v
-}
-
-// SetTootHashtag sets the value of this property. Calling IsTootHashtag
-// afterwards returns true.
-func (this *ActivityStreamsFirstProperty) SetTootHashtag(v vocab.TootHashtag) {
- this.Clear()
- this.tootHashtagMember = 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 *ActivityStreamsFirstProperty) SetType(t vocab.Type) error {
- if v, ok := t.(vocab.ActivityStreamsCollectionPage); ok {
- this.SetActivityStreamsCollectionPage(v)
- return nil
- }
- if v, ok := t.(vocab.ActivityStreamsLink); ok {
- this.SetActivityStreamsLink(v)
- return nil
- }
- if v, ok := t.(vocab.TootHashtag); ok {
- this.SetTootHashtag(v)
- return nil
- }
- if v, ok := t.(vocab.ActivityStreamsMention); ok {
- this.SetActivityStreamsMention(v)
- return nil
- }
- if v, ok := t.(vocab.ActivityStreamsOrderedCollectionPage); ok {
- this.SetActivityStreamsOrderedCollectionPage(v)
- return nil
- }
-
- return fmt.Errorf("illegal type to set on first property: %T", t)
-}