199 行
5.9 KiB
Go
199 行
5.9 KiB
Go
package propertyupdated
|
|
|
|
import (
|
|
"fmt"
|
|
datetime "github.com/go-fed/activity/streams/values/dateTime"
|
|
vocab "github.com/go-fed/activity/streams/vocab"
|
|
"net/url"
|
|
"time"
|
|
)
|
|
|
|
// UpdatedProperty is the functional property "updated". It is permitted to be a
|
|
// single default-valued value type.
|
|
type UpdatedProperty struct {
|
|
dateTimeMember time.Time
|
|
hasDateTimeMember bool
|
|
unknown []byte
|
|
iri *url.URL
|
|
alias string
|
|
}
|
|
|
|
// DeserializeUpdatedProperty creates a "updated" property from an interface
|
|
// representation that has been unmarshalled from a text or binary format.
|
|
func DeserializeUpdatedProperty(m map[string]interface{}, aliasMap map[string]string) (*UpdatedProperty, error) {
|
|
alias := ""
|
|
if a, ok := aliasMap["https://www.w3.org/TR/activitystreams-vocabulary"]; ok {
|
|
alias = a
|
|
}
|
|
propName := "updated"
|
|
if len(alias) > 0 {
|
|
// Use alias both to find the property, and set within the property.
|
|
propName = fmt.Sprintf("%s:%s", alias, "updated")
|
|
}
|
|
if i, ok := m[propName]; 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
|
|
if err == nil {
|
|
this := &UpdatedProperty{
|
|
alias: alias,
|
|
iri: u,
|
|
}
|
|
return this, nil
|
|
}
|
|
}
|
|
if v, err := datetime.DeserializeDateTime(i); err != nil {
|
|
this := &UpdatedProperty{
|
|
alias: alias,
|
|
dateTimeMember: v,
|
|
hasDateTimeMember: true,
|
|
}
|
|
return this, nil
|
|
} else if v, ok := i.([]byte); ok {
|
|
this := &UpdatedProperty{
|
|
alias: alias,
|
|
unknown: v,
|
|
}
|
|
return this, nil
|
|
} else {
|
|
return nil, fmt.Errorf("could not deserialize %q property", "updated")
|
|
}
|
|
}
|
|
return nil, nil
|
|
}
|
|
|
|
// NewUpdatedProperty creates a new updated property.
|
|
func NewUpdatedProperty() *UpdatedProperty {
|
|
return &UpdatedProperty{alias: ""}
|
|
}
|
|
|
|
// Clear ensures no value of this property is set. Calling IsDateTime afterwards
|
|
// will return false.
|
|
func (this *UpdatedProperty) Clear() {
|
|
this.unknown = nil
|
|
this.iri = nil
|
|
this.hasDateTimeMember = false
|
|
}
|
|
|
|
// Get returns the value of this property. When IsDateTime returns false, Get will
|
|
// return any arbitrary value.
|
|
func (this UpdatedProperty) Get() time.Time {
|
|
return this.dateTimeMember
|
|
}
|
|
|
|
// GetIRI returns the IRI of this property. When IsIRI returns false, GetIRI will
|
|
// return any arbitrary value.
|
|
func (this UpdatedProperty) GetIRI() *url.URL {
|
|
return this.iri
|
|
}
|
|
|
|
// HasAny returns true if the value or IRI is set.
|
|
func (this UpdatedProperty) HasAny() bool {
|
|
return this.IsDateTime() || this.iri != nil
|
|
}
|
|
|
|
// IsDateTime returns true if this property is set and not an IRI.
|
|
func (this UpdatedProperty) IsDateTime() bool {
|
|
return this.hasDateTimeMember
|
|
}
|
|
|
|
// IsIRI returns true if this property is an IRI.
|
|
func (this UpdatedProperty) 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 UpdatedProperty) JSONLDContext() map[string]string {
|
|
m := map[string]string{"https://www.w3.org/TR/activitystreams-vocabulary": 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 UpdatedProperty) KindIndex() int {
|
|
if this.IsDateTime() {
|
|
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 UpdatedProperty) LessThan(o vocab.UpdatedPropertyInterface) 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.IsDateTime() && !o.IsDateTime() {
|
|
// Both are unknowns.
|
|
return false
|
|
} else if this.IsDateTime() && !o.IsDateTime() {
|
|
// Values are always greater than unknown values.
|
|
return false
|
|
} else if !this.IsDateTime() && o.IsDateTime() {
|
|
// Unknowns are always less than known values.
|
|
return true
|
|
} else {
|
|
// Actual comparison.
|
|
return datetime.LessDateTime(this.Get(), o.Get())
|
|
}
|
|
}
|
|
|
|
// Name returns the name of this property: "updated".
|
|
func (this UpdatedProperty) Name() string {
|
|
return "updated"
|
|
}
|
|
|
|
// 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 UpdatedProperty) Serialize() (interface{}, error) {
|
|
if this.IsDateTime() {
|
|
return datetime.SerializeDateTime(this.Get())
|
|
} else if this.IsIRI() {
|
|
return this.iri.String(), nil
|
|
}
|
|
return this.unknown, nil
|
|
}
|
|
|
|
// Set sets the value of this property. Calling IsDateTime afterwards will return
|
|
// true.
|
|
func (this *UpdatedProperty) Set(v time.Time) {
|
|
this.Clear()
|
|
this.dateTimeMember = v
|
|
this.hasDateTimeMember = true
|
|
}
|
|
|
|
// SetIRI sets the value of this property. Calling IsIRI afterwards will return
|
|
// true.
|
|
func (this *UpdatedProperty) SetIRI(v *url.URL) {
|
|
this.Clear()
|
|
this.iri = v
|
|
}
|