1
0
Fork 0

Adds actions for all verbs

This commit is contained in:
Mouse Reeve 2021-02-15 20:49:23 -08:00
parent 12a3aa9667
commit a16b81a6eb
7 changed files with 507 additions and 506 deletions

View file

@ -50,6 +50,7 @@ def naive_parse(activity_objects, activity_json):
return serializer(activity_objects=activity_objects, **activity_json)
@dataclass(init=False)
class ActivityObject:
''' actor activitypub json '''
@ -79,7 +80,7 @@ class ActivityObject:
setattr(self, field.name, value)
def to_model(self, instance=None, save=True):
def to_model(self, instance=None, allow_create=True, save=True):
''' convert from an activity to a model instance '''
# figure out the right model -- wish I had a better way for this
models = apps.get_models()
@ -95,7 +96,10 @@ class ActivityObject:
return instance
# check for an existing instance, if we're not updating a known obj
instance = instance or model.find_existing(self.serialize()) or model()
instance = instance or model.find_existing(self.serialize())
if not instance and not allow_create:
return None
instance = instance or model()
for field in instance.simple_fields:
field.set_field_from_activity(instance, self)