mirror of https://gitlab.com/bashrc2/epicyon
Expected fields
parent
99634b39dc
commit
c2e300da8d
55
posts.py
55
posts.py
|
@ -4999,8 +4999,59 @@ def _novel_fields_for_person(nickname: str, domain: str,
|
||||||
|
|
||||||
posts_ctr = 0
|
posts_ctr = 0
|
||||||
fields = []
|
fields = []
|
||||||
# TODO
|
expected_fields = (
|
||||||
expected_fields = []
|
'alsoKnownAs',
|
||||||
|
'attachment',
|
||||||
|
'capabilities',
|
||||||
|
'discoverable',
|
||||||
|
'endpoints',
|
||||||
|
'featured',
|
||||||
|
'followers',
|
||||||
|
'following',
|
||||||
|
'icon',
|
||||||
|
'id',
|
||||||
|
'image',
|
||||||
|
'inbox',
|
||||||
|
'manuallyApprovesFollowers',
|
||||||
|
'name',
|
||||||
|
'outbox',
|
||||||
|
'preferredUsername',
|
||||||
|
'publicKey',
|
||||||
|
'summary',
|
||||||
|
'tag',
|
||||||
|
'type',
|
||||||
|
'url',
|
||||||
|
'inReplyTo',
|
||||||
|
'published',
|
||||||
|
'attributedTo',
|
||||||
|
'to', 'cc',
|
||||||
|
'sensitive',
|
||||||
|
'atomUri',
|
||||||
|
'inReplyToAtomUri',
|
||||||
|
'conversation',
|
||||||
|
'content',
|
||||||
|
'contentMap',
|
||||||
|
'replies',
|
||||||
|
'localOnly',
|
||||||
|
'shares',
|
||||||
|
'actor',
|
||||||
|
'bcc',
|
||||||
|
'bto',
|
||||||
|
'context',
|
||||||
|
'object',
|
||||||
|
'source',
|
||||||
|
'directMessage',
|
||||||
|
'updated',
|
||||||
|
'likes',
|
||||||
|
'ignores',
|
||||||
|
'muted',
|
||||||
|
'endTime',
|
||||||
|
'votersCount',
|
||||||
|
'oneOf',
|
||||||
|
'bookmarks',
|
||||||
|
'formerRepresentations',
|
||||||
|
'anyOf'
|
||||||
|
)
|
||||||
for post_filename in posts_in_box:
|
for post_filename in posts_in_box:
|
||||||
post_filename = post_filename.name
|
post_filename = post_filename.name
|
||||||
if not post_filename.endswith('.json'):
|
if not post_filename.endswith('.json'):
|
||||||
|
|
Loading…
Reference in New Issue