This repository has been archived on 2022-11-27. You can view files and clone it, but cannot push or open issues or pull requests.
activitypub/link.go

168 lines
4.9 KiB
Go
Raw Permalink Normal View History

package activitypub
import (
"bytes"
"encoding/gob"
"fmt"
"io"
2021-08-15 11:41:01 +00:00
"github.com/valyala/fastjson"
)
2021-11-12 19:05:08 +00:00
// LinkTypes represent the valid values for a Link object
2020-06-30 11:35:04 +00:00
var LinkTypes = ActivityVocabularyTypes{
LinkType,
MentionType,
}
2021-11-09 16:25:47 +00:00
type Links interface {
Link | IRI
}
2018-07-18 15:39:27 +00:00
// A Link is an indirect, qualified reference to a resource identified by a URL.
// The fundamental model for links is established by [ RFC5988].
2018-07-18 15:39:27 +00:00
// Many of the properties defined by the Activity Vocabulary allow values that are either instances of APObject or Link.
// When a Link is used, it establishes a qualified relation connecting the subject
// (the containing object) to the resource identified by the href.
2018-07-18 15:39:27 +00:00
// Properties of the Link are properties of the reference as opposed to properties of the resource.
type Link struct {
2018-07-18 15:39:27 +00:00
// Provides the globally unique identifier for an APObject or Link.
2019-12-05 18:02:15 +00:00
ID ID `jsonld:"id,omitempty"`
// Identifies the APObject or Link type. Multiple values may be specified.
Type ActivityVocabularyType `jsonld:"type,omitempty"`
// A simple, human-readable, plain-text name for the object.
// HTML markup MUST NOT be included. The name MAY be expressed using multiple language-tagged values.
Name NaturalLanguageValues `jsonld:"name,omitempty,collapsible"`
2018-07-18 15:39:27 +00:00
// A link relation associated with a Link. The value must conform to both the [HTML5] and
// [RFC5988](https://tools.ietf.org/html/rfc5988) "link relation" definitions.
// In the [HTML5], any string not containing the "space" U+0020, "tab" (U+0009), "LF" (U+000A),
// "FF" (U+000C), "CR" (U+000D) or "," (U+002C) characters can be used as a valid link relation.
Rel IRI `jsonld:"rel,omitempty"`
2018-07-18 14:19:50 +00:00
// When used on a Link, identifies the MIME media type of the referenced resource.
MediaType MimeType `jsonld:"mediaType,omitempty"`
2018-07-18 15:39:27 +00:00
// On a Link, specifies a hint as to the rendering height in device-independent pixels of the linked resource.
Height uint `jsonld:"height,omitempty"`
2018-07-18 15:39:27 +00:00
// On a Link, specifies a hint as to the rendering width in device-independent pixels of the linked resource.
Width uint `jsonld:"width,omitempty"`
// Identifies an entity that provides a preview of this object.
Preview Item `jsonld:"preview,omitempty"`
2018-07-18 15:39:27 +00:00
// The target resource pointed to by a Link.
2018-10-11 18:13:34 +00:00
Href IRI `jsonld:"href,omitempty"`
// Hints as to the language used by the target resource.
// Value must be a [BCP47](https://tools.ietf.org/html/bcp47) Language-Tag.
HrefLang LangRef `jsonld:"hrefLang,omitempty"`
}
2018-07-18 15:39:27 +00:00
// Mention is a specialized Link that represents an @mention.
type Mention = Link
2018-07-18 15:39:27 +00:00
// LinkNew initializes a new Link
2019-12-05 18:02:15 +00:00
func LinkNew(id ID, typ ActivityVocabularyType) *Link {
2020-06-30 11:35:04 +00:00
if !LinkTypes.Contains(typ) {
typ = LinkType
}
return &Link{ID: id, Type: typ}
}
2018-03-25 18:54:51 +00:00
// MentionNew initializes a new Mention
2019-12-05 18:02:15 +00:00
func MentionNew(id ID) *Mention {
return &Mention{ID: id, Type: MentionType}
}
2018-07-18 15:39:27 +00:00
// IsLink validates if current Link is a Link
func (l Link) IsLink() bool {
2020-06-30 11:35:04 +00:00
return l.Type == LinkType || LinkTypes.Contains(l.Type)
}
2018-07-18 15:39:27 +00:00
// IsObject validates if current Link is an GetID
func (l Link) IsObject() bool {
2019-05-16 09:08:27 +00:00
return l.Type == ObjectType || ObjectTypes.Contains(l.Type)
}
// IsCollection returns false for Link objects
func (l Link) IsCollection() bool {
return false
}
2019-12-05 18:02:15 +00:00
// GetID returns the ID corresponding to the Link object
func (l Link) GetID() ID {
return l.ID
}
// GetLink returns the IRI corresponding to the current Link
func (l Link) GetLink() IRI {
return IRI(l.ID)
}
2018-07-18 15:39:27 +00:00
// GetType returns the Type corresponding to the Mention object
func (l Link) GetType() ActivityVocabularyType {
return l.Type
}
2021-11-12 18:10:31 +00:00
// MarshalJSON encodes the receiver object to a JSON document.
func (l Link) MarshalJSON() ([]byte, error) {
b := make([]byte, 0)
JSONWrite(&b, '{')
if JSONWriteLinkJSONValue(&b, l) {
JSONWrite(&b, '}')
return b, nil
}
return nil, nil
}
2021-11-12 18:10:31 +00:00
// UnmarshalJSON decodes an incoming JSON document into the receiver object.
func (l *Link) UnmarshalJSON(data []byte) error {
2021-08-15 11:41:01 +00:00
p := fastjson.Parser{}
val, err := p.ParseBytes(data)
if err != nil {
return err
}
2022-08-20 15:19:34 +00:00
return JSONLoadLink(val, l)
}
// UnmarshalBinary implements the encoding.BinaryUnmarshaler interface.
func (l *Link) UnmarshalBinary(data []byte) error {
return l.GobDecode(data)
}
// MarshalBinary implements the encoding.BinaryMarshaler interface.
func (l Link) MarshalBinary() ([]byte, error) {
return l.GobEncode()
}
func (l Link) GobEncode() ([]byte, error) {
mm := make(map[string][]byte)
hasData, err := mapLinkProperties(mm, l)
if err != nil {
return nil, err
}
if !hasData {
return []byte{}, nil
}
bb := bytes.Buffer{}
g := gob.NewEncoder(&bb)
if err := g.Encode(mm); err != nil {
return nil, err
}
return bb.Bytes(), nil
}
func (l *Link) GobDecode(data []byte) error {
if len(data) == 0 {
return nil
}
2022-01-12 17:19:06 +00:00
mm, err := gobDecodeObjectAsMap(data)
if err != nil {
return err
}
2022-01-12 17:19:06 +00:00
return unmapLinkProperties(mm, l)
}
func (l Link) Format(s fmt.State, verb rune) {
switch verb {
case 's', 'v':
io.WriteString(s, fmt.Sprintf("%T[%s] { }", l, l.Type))
}
}