summaryrefslogtreecommitdiff
path: root/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2022-09-23 21:27:35 +0200
committerLibravatar GitHub <noreply@github.com>2022-09-23 20:27:35 +0100
commit69a193dae543641a2db6823fa6493c02f56fafbd (patch)
treec1a0c71d64642db12a17c6770642c3e0af859960 /vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints
parent[docs] NLnet follow up questions (#846) (diff)
downloadgotosocial-69a193dae543641a2db6823fa6493c02f56fafbd.tar.xz
[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
Diffstat (limited to 'vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints')
-rw-r--r--vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_doc.go17
-rw-r--r--vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_pkg.go22
-rw-r--r--vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_property_activitystreams_endpoints.go621
3 files changed, 660 insertions, 0 deletions
diff --git a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_doc.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_doc.go
new file mode 100644
index 000000000..36d3706c8
--- /dev/null
+++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_doc.go
@@ -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
diff --git a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_pkg.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_pkg.go
new file mode 100644
index 000000000..7259b19d7
--- /dev/null
+++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_pkg.go
@@ -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
+}
diff --git a/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_property_activitystreams_endpoints.go b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_property_activitystreams_endpoints.go
new file mode 100644
index 000000000..bc35c05d9
--- /dev/null
+++ b/vendor/github.com/superseriousbusiness/activity/streams/impl/activitystreams/property_endpoints/gen_property_activitystreams_endpoints.go
@@ -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]
+}