|
@@ -2,10 +2,10 @@ import json
|
|
|
import logging
|
|
|
import uuid
|
|
|
|
|
|
-from activipy import vocab
|
|
|
+from abc import ABCMeta, abstractmethod
|
|
|
|
|
|
|
|
|
-class ActivityStreamsFormatter:
|
|
|
+class BaseASFormatter(metaclass=ABCMeta):
|
|
|
'''
|
|
|
Format message as ActivityStreams.
|
|
|
|
|
@@ -37,7 +37,7 @@ class ActivityStreamsFormatter:
|
|
|
added.
|
|
|
- `metadata`: provenance metadata as a rdflib.Graph object. This
|
|
|
contains properties such as actor(s), action (add/remove), etc. This is
|
|
|
- only present with messaging level set to `provenance`.
|
|
|
+ only meaningful for `ASDeltaFormatter`.
|
|
|
'''
|
|
|
self.uri = uri
|
|
|
self.ev_type = ev_type
|
|
@@ -48,6 +48,45 @@ class ActivityStreamsFormatter:
|
|
|
self.metadata = metadata
|
|
|
|
|
|
|
|
|
+ @abstractmethod
|
|
|
+ def __str__(self):
|
|
|
+ pass
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+class ASResourceFormatter(BaseASFormatter):
|
|
|
+ '''
|
|
|
+ Sends information about a resource being created, updated or deleted, by
|
|
|
+ who and when, with no further information about what changed.
|
|
|
+ '''
|
|
|
+
|
|
|
+ def __str__(self):
|
|
|
+ '''
|
|
|
+ Output structured data as string.
|
|
|
+ '''
|
|
|
+ ret = {
|
|
|
+ '@context': 'https://www.w3.org/ns/activitystreams',
|
|
|
+ 'id' : 'urn:uuid:{}'.format(uuid.uuid4()),
|
|
|
+ 'type' : self.ev_type,
|
|
|
+ 'name' : self.ev_names[self.ev_type],
|
|
|
+ 'object' : {
|
|
|
+ 'id' : self.uri,
|
|
|
+ 'updated' : self.time,
|
|
|
+ 'type' : self.type,
|
|
|
+ },
|
|
|
+ 'actor' : self.metadata.setdefault('actor', None),
|
|
|
+ }
|
|
|
+
|
|
|
+ return json.dumps(ret)
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+class ASDeltaFormatter(BaseASFormatter):
|
|
|
+ '''
|
|
|
+ Sends the same information as `ASResourceFormatter` with the addition of
|
|
|
+ the triples that were added and the ones that were removed in the request.
|
|
|
+ This may be used to send rich provenance data to a preservation system.
|
|
|
+ '''
|
|
|
def __str__(self):
|
|
|
'''
|
|
|
Output structured data as string.
|
|
@@ -63,7 +102,7 @@ class ActivityStreamsFormatter:
|
|
|
'type' : self.type,
|
|
|
},
|
|
|
'actor' : self.metadata.setdefault('actor', None),
|
|
|
- 'data' : self.data or '',
|
|
|
+ 'data' : self.data,
|
|
|
}
|
|
|
|
|
|
return json.dumps(ret)
|