Remove old JSON-LD system; move OBJECT to new one

Our old JSON-LD encoder/decoder was bad, and not
CLOS. This removes it from activity-streams.lisp,
and replaces its definition of the ActivityStreams
Object type to our new system.
This commit is contained in:
Jaidyn Ann 2024-08-21 18:00:08 -05:00
parent bae4fbbd13
commit 4df575610e

View File

@ -3,315 +3,129 @@
;; Copyright © 2024 Jaidyn Ann <jadedctrl@posteo.at> ;; Copyright © 2024 Jaidyn Ann <jadedctrl@posteo.at>
;; ;;
;; This program is free software: you can redistribute it and/or ;; This program is free software: you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as ;; modify it under the terms of the GNU Affero General Public License
;; published by the Free Software Foundation, either version 3 of ;; as published by the Free Software Foundation, either version 3 of
;; the License, or (at your option) any later version. ;; the License, or (at your option) any later version.
;; ;;
;; This program is distributed in the hope that it will be useful, ;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details. ;; GNU Affero General Public License for more details.
;; ;;
;; You should have received a copy of the GNU General Public License ;; You should have received a copy of the GNU Affero General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>. ;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(defpackage #:activity-servist/activity-streams (defpackage #:activity-servist/activity-streams
(:use #:cl) (:use #:cl)
(:nicknames "AS/AS" "ACTIVITY-STREAMS") (:nicknames "AS/AS" "ACTIVITY-STREAMS")
(:export (:export
;; Functions
:parse :encode
:define-class-encoders
;; Globals
:*ap-packages* :*default-class*
;; Classes ;; Classes
:object :object
;; Accessors ;; Accessors
:object-@context :object-unsupported #'object-actor #'object-attachment #'object-attributed-to #'object-audience
#'object-content #'object-context #'object-name #'object-end-time
#'object-generator #'object-icon #'object-image #'object-in-reply-to
#'object-location #'object-preview #'object-published #'object-replies
#'object-start-time #'object-summary #'object-tag #'object-updated
#'object-url #'object-to #'object-bto #'object-cc #'object-bcc
#'object-media-type #'object-duration
;; Slots ;; Slots
:@context :@type :type :@id :id :unsupported)) :attachment :attributed-to :audience :content :context :name :end-time
:generator :icon :image :in-reply-to :location :preview :published :replies
:start-time :summary :tag :updated :url :to :bto :cc :bcc :media-type :duration))
(in-package #:activity-servist/activity-streams) (in-package #:activity-servist/activity-streams)
;;; Globals
;;; ————————————————————————————————————————
(defparameter *ap-packages* (list :activity-servist/activity-vocabulary *package*)
"A list of packages in which we should search for AP classes and slot-symbols
during JSON parsing. The class-name searched for is simply the value of the JSON
objects type key. The package first in the list to export such a symbol
is the winner.")
(defparameter *default-class* 'activity-servist/activity-streams:object
"The class used for ActivityStreams objects found during parsing that dont
have a corresponding class defined. Notably, all keys and values without
corresponding slots are placed in the UNSUPPORTED slot.
The class you choose should inherit ACTIVITY-SERVIST/ACTIVITY-STREAMS:OBJECT.")
;; Private, internal variable.
(defparameter *@context* nil
"Used in YASON:ENCODE to ensure that a single top-level @context can be
created where AP objects contain other AP objects in their slots.
This variable is overridden locally during encoding (LET), and should never be
modified globally (as we expect it to be nil in top-level objects.")
;;; Macros
;;; ————————————————————————————————————————
;; This macro and the following function are related to JSON serialization; see
;; the below “JSON serialization” section for other related functions.
(defmacro define-yason-encode-slots (class)
"Define a YASON:ENCODE-SLOTS method for a CLASS, which simply encodes all of
CLASSes slots with JSON keys based on the camel-cased slot name."
(append
`(defmethod yason:encode-slots progn ((obj ,class)))
(mapcar (yason-encode-slot-function)
(class-slots-activity-alist class))))
(defun yason-encode-slot-function ()
"Helper-function for the DEFINE-YASON-ENCODE-SLOTS macro.
This returns a function to create a quoted function that should be called for each slot,
again and again, by YASON:ENCODE-SLOTS."
(lambda (slot-key-pair)
`(let ((key ',(car slot-key-pair))
(value (ignore-errors (slot-value obj ',(car slot-key-pair)))))
(cond ((eq key '@context) ; Actually in YASON:ENCODE-OBJECT using *@context*
(setq *@context* (merge-@contexts *@context* (object-@context obj))))
((eq key 'unsupported)
;; Keys/values without a slot are stored in this UNSUPPORTED alist.
(mapcar (lambda (cell)
(yason:encode-object-element
(camel-case (symbol-name (car cell)))
(cdr cell)))
value))
((eq key 'type) ; Encode type based on class-name or TYPE slot
(yason:encode-object-element
"type" (or value
(class-pretty-name (class-of obj)))))
(value
(yason:encode-object-element ,(cdr slot-key-pair) value))))))
;;; Core class ;;; Core class
;;; ———————————————————————————————————————— ;;; ————————————————————————————————————————
(defclass object () (json-ld::define-json-type (object "Object") () "https://www.w3.org/ns/activitystreams"
((@context :initform nil) ((actor
(as/as:@type :initform nil) "actor"
(as/as:type :initform nil) :documentation "Describes one or more entities that either performed or are expected to perform the activity. Any single activity can have multiple actors. The actor MAY be specified using an indirect Link.")
(as/as:@id :initform nil) (attachment
(as/as:id :initform nil) "attachment"
(as/as:unsupported :initform nil :accessor object-unsupported))) :documentation "Identifies a resource attached or related to an object that potentially requires special handling. The intent is to provide a model that is at least semantically similar to attachments in email.")
(attributed-to
"attributedTo"
:documentation "Identifies one or more entities to which this object is attributed. The attributed entities might not be Actors. For instance, an object might be attributed to the completion of another activity.")
;;; Accessors (audience
;;; ———————————————————————————————————————— "audience"
(defgeneric object-@context (obj) :documentation "Identifies one or more entities that represent the total population of entities for which the object can considered to be relevant.")
(:documentation "Accessor for an objects associated JSON-LD @context. (content
As @context can sometimes vary on an objects contents, on-the-fly, this "content"
method is invoked during JSON encoding of an object. The @CONTEXT :documentation "The content or textual representation of the Object encoded as a JSON string. By default, the value of content is HTML. The media-type property can be used in the object to indicate a different content type.
slot-value should be prioritized over the @CONTEXT value is calculated The content MAY be expressed using multiple language-tagged values. ")
by this method.")) (context
"context"
(defmethod object-@context ((obj object)) :documentation "Identifies the context within which the object exists or an activity was performed.
(or (slot-value obj '@context) The notion of context used is intentionally vague. The intended function is to serve as a means of grouping objects and activities that share a common originating context or purpose. An example could be all activities relating to a common project or event.")
"https://www.w3.org/ns/activitystreams")) (name
"name"
(defmethod (setf object-@context) (context (obj object)) :documentation "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.")
(setf (slot-value obj '@context) context)) (end-time
"endTime"
:documentation "The date and time describing the actual or expected ending time of the object. When used with an Activity object, for instance, the end-time property specifies the moment the activity concluded or is expected to conclude.")
(generator
;;; JSON parsing "generator"
;;; ———————————————————————————————————————— :documentation "Identifies the entity (e.g. an application) that generated the object.")
(defun parse (string) (icon
"Parse a string containing JSON into an ActivityPub object." "icon"
(parse-table (yason:parse string))) :documentation "Indicates an entity that describes an icon for this object. The image should have an aspect ratio of one (horizontal) to one (vertical) and should be suitable for presentation at a small size.")
(image
(defun parse-table (table) "image"
"Parse a hash-table corresponding to YASON-parsed JSON into an ActivityPub object." :documentation "Indicates an entity that describes an image for this object. Unlike the icon property, there are no aspect ratio or display size limitations assumed.")
(let* ((found-class (car (find-registered-classes (param-case (gethash "type" table))))) (in-reply-to
(class (or found-class (find-class *default-class*))) "inReplyTo"
(obj (make-instance class))) :documentation "Indicates one or more entities for which this object is considered a response.")
(loop for key being each hash-key of table (location
for val being each hash-value of table "location"
do (let* ((slot-name (string-upcase (param-case key))) :documentation "Indicates one or more physical or logical locations associated with the object.")
(slot-sym (car (find-registered-symbols slot-name))) (preview
(val (parse-value val))) "preview"
(handler-case :documentation "Identifies an entity that provides a preview of this object.")
(setf (slot-value obj slot-sym) val) (published
(error nil "published"
(setf (slot-value obj 'unsupported) :documentation "The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the start-time property specifies the moment the activity began or is scheduled to begin.")
(append (ignore-errors (slot-value obj 'unsupported)) (replies
(list (cons (intern slot-name) val)))))))) "replies"
obj)) :documentation "Identifies a Collection containing objects considered to be responses to this object.")
(start-time
(defun parse-value (val) "startTime"
"Parse the value of a key found in YASON-parsed JSON. :documentation "The date and time describing the actual or expected starting time of the object. When used with an Activity object, for instance, the start-time property specifies the moment the activity began or is scheduled to begin.")
All ActivityPub objects (hash-tables containing type) will be parsed into (summary
ActivityPub objects; all others will parsed into associative lists." "summary"
(typecase val :documentation "A natural language summarization of the object encoded as HTML. Multiple language tagged summaries MAY be provided.")
(hash-table (maybe-parse-table val)) (tag
(list (mapcar (lambda (a) "tag"
(if (hash-table-p a) :documentation "One or more “tags” that have been associated with an objects. A tag can be any kind of Object. The key difference between attachment and tag is that the former implies association by inclusion, while the latter implies associated by reference.")
(maybe-parse-table a) (updated
a)) "updated"
val)) :documentation "The date and time at which the object was updated.")
(t val))) (url
"url"
(defun maybe-parse-table (table) :documentation "Identifies one or more links to representations of the object.")
"If a hash-table seems to be a valid ActivityPub object, attempt parsing it (to
into one. Otherwise, parse it into an associative list." "to"
(if (gethash "type" table) :documentation "Identifies an entity considered to be part of the public primary audience of an Object.")
(parse-table table) (bto
(alexandria:hash-table-alist table))) "bto"
:documentation "Identifies an Object that is part of the private primary audience of this Object.")
(cc
"cc"
;;; JSON serialization :documentation "Identifies an Object that is part of the public secondary audience of this Object.")
;;; ———————————————————————————————————————— (bcc
(defun define-class-encoders (classes) "bcc"
"For each class in CLASSES, define an YASON:ENCODE-SLOTS method for that class, :documentation "Identifies one or more Objects that are part of the private secondary audience of this Object.")
which only encodes slots unique to that class (as ENCODE-SLOTS is called for each (media-type
inherited class). Each slots name is converted to camel-case, as per convention." "mediaType"
(mapcar (lambda (class) :documentation "When used on a Link, identifies the MIME media type of the referenced resource.
(closer-mop:finalize-inheritance class) When used on an Object, identifies the MIME media type of the value of the content property. If not specified, the content property is assumed to contain text/html content.")
(eval `(define-yason-encode-slots ,class))) (duration
classes)) "duration"
:documentation "When the object describes a time-bound resource, such as an audio or video, a meeting, etc, the duration property indicates the object's approximate duration. The value MUST be expressed as an xsd:duration as defined by [ xmlschema11-2], section 3.3.6 (e.g. a period of 5 seconds is represented as “PT5S”)."))
(defun encode (obj &optional (stream *standard-output*)) (:documentation
"Encode OBJ into JSON. A mere wrapper around YASON:ENCODE." "Describes an object of any kind. The Object type serves as the base type for
(yason:encode obj stream)) most of the other kinds of objects defined in the Activity Vocabulary,
including other Core types such as Activity, IntransitiveActivity, Collection
(defmethod yason:encode ((obj object) &optional (stream *standard-output*)) and OrderedCollection."))
(yason:with-output (stream)
(yason:encode-object obj)))
(defmethod yason:encode-object ((obj object))
(typecase *@context*
(null ; If this is the top-level (non-nested) object, establish a @context.
(let ((*@context* 'top-level))
(yason:encode-object obj)))
(symbol ; In the top-level, encode slots and then @context.
(setq *@context* (object-@context obj))
(yason:with-object ()
(yason:encode-slots obj)
(yason:encode-object-element "@context" *@context*)))
(T ; In nested objects, only encode slots — not *@context*.
(yason:with-object ()
(yason:encode-slots obj)))))
(defun class-slots-activity-alist (class)
"Return an associative list containing CLASSes slots symbols consed with
their sanitized string keys appropriate for ActivityVocabular custom.
A class with slots MAP-AWAY and COLLECTION-AGAIN would return
((MAP-AWAY . mapAway)(COLLECTION-AGAIN . collectionAgain))"
(alist-mapcdr #'camel-case
(class-slots-alist class)))
(defun merge-@contexts (a b)
"Given two @context lists, A and B, merge them into one JSON-LD @context list
containing both of their elements."
(cond ((equal a b) a)
((not b) a)
((not a) b)
((and (listp a)
(find b a :test #'equal))
a)
(T
(merge-lists
(if (listp a) a (list a))
(if (listp b) b (list b))))))
;;; Util
;;; ————————————————————————————————————————
(defun camel-case (string)
"Convert a STRING to camel-casing. That is, casingLikeThis.
Wrapper around STR:CAMEL-CASE, working around a bug that a non-alphanumeric
character at the start of the string gets erroneously (or at least undesireably,
to us) removed."
(keep-nonalphanumeric-prefix string
(str:camel-case string)))
(defun param-case (string)
"Convert a STRING to param-casing. That is, casing-like-this.
Wrapper around STR:PARAM-CASE, working around a bug that a non-alphanumeric
character at the start of the string gets erroneously (or at least undesireably,
to us) removed."
(keep-nonalphanumeric-prefix string
(str:param-case string)))
(defun camel-case (str)
"Convert a STRING to camel-casing.
Wrapper around STR:CAMEL-CASE, working around a bug that a non-alphanumeric
character at the start of the string gets erroneously (or at least undesireably,
to us) removed."
(keep-nonalphanumeric-prefix str (str:camel-case str)))
(defun keep-nonalphanumeric-prefix (str child-str)
"This ensures that a CHILD-STR derived from STR has the same nonalphanumeric
prefix as STR, as some functions like to remove such prefixes."
(if (not (alphanumericp (aref str 0)))
(concatenate 'string
(string (aref str 0))
child-str)
child-str))
(defun class-pretty-name (class)
"Return a CLASSes name in a “pretty” (sentence-capitalized) string."
(string-capitalize (symbol-name (class-name class))))
(defun merge-lists (a b)
"Given lists A and B, merge them into one list non-redundantly all unique
items in each will be contained in the resultant list."
(append a (remove-if (lambda (item) (find item a :test #'equal)) b)))
(defun find-registered-symbols (str)
"Find all symbols identified by string STR within packages in the
*ap-packages* list."
(remove-if
#'not
(mapcar (lambda (package)
(multiple-value-bind (sym context)
(find-symbol (string-upcase str) package)
(unless (eq context :inherited)
sym)))
*ap-packages*)))
(defun find-registered-classes (str)
"Find all classes identified by string STR within pacakges in the
*ap-packages* list."
(remove-if
#'not
(mapcar (lambda (sym) (find-class sym))
(find-registered-symbols str))))
(defun alist-mapcdr (function alist)
"Apply a FUNCTION to all values (cdrs) of an ALISTs pairs. Returns a new ALIST
of the same keys, whose values are the results of FUNCTION."
(mapcar
(lambda (cell)
(cons (car cell)
(funcall function (cdr cell))))
alist))
(defun class-slots-alist (class)
"Return an associative list of a CLASSes direct slots (by symbol) matched with
their names as strings. For instance, a class with slots MAP-AWAY and
COLLECTION-AGAIN would return:
((MAP-AWAY . MAP-AWAY)(COLLECTION-AGAIN . COLLECTION-AGAIN)"
(mapcar
(lambda (slot)
(let ((name (closer-mop:slot-definition-name slot)))
(cons name (symbol-name name))))
(closer-mop:class-direct-slots class)))
;;; Defining YASON:ENCODE-SLOTS
;;; ————————————————————————————————————————
(as/as:define-class-encoders (list (find-class 'object)))