2022-11-27 03:16:14 +00:00
|
|
|
import aputils
|
2022-05-06 07:04:51 +00:00
|
|
|
import asyncio
|
|
|
|
import base64
|
|
|
|
import json
|
|
|
|
import logging
|
|
|
|
import socket
|
|
|
|
import traceback
|
2022-11-07 10:30:13 +00:00
|
|
|
import uuid
|
2022-05-06 07:04:51 +00:00
|
|
|
|
2022-11-10 17:40:48 +00:00
|
|
|
from aiohttp.hdrs import METH_ALL as METHODS
|
|
|
|
from aiohttp.web import Response as AiohttpResponse, View as AiohttpView
|
2022-05-06 07:04:51 +00:00
|
|
|
from datetime import datetime
|
|
|
|
from json.decoder import JSONDecodeError
|
|
|
|
from urllib.parse import urlparse
|
|
|
|
from uuid import uuid4
|
|
|
|
|
|
|
|
|
2022-11-07 12:54:32 +00:00
|
|
|
app = None
|
2022-11-07 13:18:25 +00:00
|
|
|
|
2022-11-09 10:58:35 +00:00
|
|
|
MIMETYPES = {
|
|
|
|
'activity': 'application/activity+json',
|
|
|
|
'html': 'text/html',
|
|
|
|
'json': 'application/json',
|
2022-11-10 17:40:48 +00:00
|
|
|
'text': 'text/plain'
|
2022-11-09 10:58:35 +00:00
|
|
|
}
|
|
|
|
|
2022-11-07 13:18:25 +00:00
|
|
|
NODEINFO_NS = {
|
|
|
|
'20': 'http://nodeinfo.diaspora.software/ns/schema/2.0',
|
|
|
|
'21': 'http://nodeinfo.diaspora.software/ns/schema/2.1'
|
|
|
|
}
|
|
|
|
|
2022-05-06 07:04:51 +00:00
|
|
|
|
2022-11-07 12:54:32 +00:00
|
|
|
def set_app(new_app):
|
|
|
|
global app
|
|
|
|
app = new_app
|
|
|
|
|
|
|
|
|
2022-11-20 11:14:37 +00:00
|
|
|
def boolean(value):
|
2022-12-13 13:27:09 +00:00
|
|
|
if isinstance(value, bytes):
|
|
|
|
value = str(value, 'utf-8')
|
|
|
|
|
2022-11-20 11:14:37 +00:00
|
|
|
if isinstance(value, str):
|
|
|
|
if value.lower() in ['on', 'y', 'yes', 'true', 'enable', 'enabled', '1']:
|
|
|
|
return True
|
|
|
|
|
|
|
|
elif value.lower() in ['off', 'n', 'no', 'false', 'disable', 'disable', '0']:
|
|
|
|
return False
|
|
|
|
|
|
|
|
else:
|
|
|
|
raise TypeError(f'Cannot parse string "{value}" as a boolean')
|
|
|
|
|
|
|
|
elif isinstance(value, int):
|
|
|
|
if value == 1:
|
|
|
|
return True
|
|
|
|
|
|
|
|
elif value == 0:
|
|
|
|
return False
|
|
|
|
|
|
|
|
else:
|
|
|
|
raise ValueError('Integer value must be 1 or 0')
|
|
|
|
|
|
|
|
elif value == None:
|
|
|
|
return False
|
|
|
|
|
|
|
|
try:
|
|
|
|
return value.__bool__()
|
|
|
|
|
|
|
|
except AttributeError:
|
2022-12-13 13:27:09 +00:00
|
|
|
raise TypeError(f'Cannot convert object of type "{type(value).__name__}"')
|
2022-11-20 11:14:37 +00:00
|
|
|
|
|
|
|
|
2022-05-06 07:04:51 +00:00
|
|
|
def check_open_port(host, port):
|
|
|
|
if host == '0.0.0.0':
|
|
|
|
host = '127.0.0.1'
|
|
|
|
|
|
|
|
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
|
|
|
|
try:
|
|
|
|
return s.connect_ex((host , port)) != 0
|
|
|
|
|
|
|
|
except socket.error as e:
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2022-12-13 13:27:09 +00:00
|
|
|
class AppBase:
|
|
|
|
@property
|
|
|
|
def app(self):
|
|
|
|
return app
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
def client(self):
|
|
|
|
return app.client
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
def config(self):
|
|
|
|
return app.config
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
def database(self):
|
|
|
|
return app.database
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
def signer(self):
|
|
|
|
return app.signer
|
|
|
|
|
|
|
|
|
2022-11-06 06:11:54 +00:00
|
|
|
class DotDict(dict):
|
2022-11-09 09:35:57 +00:00
|
|
|
def __init__(self, _data, **kwargs):
|
|
|
|
dict.__init__(self)
|
|
|
|
|
|
|
|
self.update(_data, **kwargs)
|
|
|
|
|
|
|
|
|
2022-11-06 06:11:54 +00:00
|
|
|
def __getattr__(self, k):
|
|
|
|
try:
|
|
|
|
return self[k]
|
|
|
|
|
|
|
|
except KeyError:
|
|
|
|
raise AttributeError(f'{self.__class__.__name__} object has no attribute {k}') from None
|
|
|
|
|
|
|
|
|
|
|
|
def __setattr__(self, k, v):
|
|
|
|
if k.startswith('_'):
|
|
|
|
super().__setattr__(k, v)
|
|
|
|
|
|
|
|
else:
|
|
|
|
self[k] = v
|
|
|
|
|
|
|
|
|
|
|
|
def __setitem__(self, k, v):
|
|
|
|
if type(v) == dict:
|
|
|
|
v = DotDict(v)
|
|
|
|
|
|
|
|
super().__setitem__(k, v)
|
|
|
|
|
|
|
|
|
|
|
|
def __delattr__(self, k):
|
|
|
|
try:
|
|
|
|
dict.__delitem__(self, k)
|
|
|
|
|
|
|
|
except KeyError:
|
|
|
|
raise AttributeError(f'{self.__class__.__name__} object has no attribute {k}') from None
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def new_from_json(cls, data):
|
2022-11-07 10:30:13 +00:00
|
|
|
if not data:
|
|
|
|
raise JSONDecodeError('Empty body', data, 1)
|
|
|
|
|
|
|
|
try:
|
|
|
|
return cls(json.loads(data))
|
|
|
|
|
|
|
|
except ValueError:
|
|
|
|
raise JSONDecodeError('Invalid body', data, 1)
|
2022-11-06 06:11:54 +00:00
|
|
|
|
|
|
|
|
2022-11-17 21:30:56 +00:00
|
|
|
@classmethod
|
|
|
|
def new_from_signature(cls, sig):
|
|
|
|
data = cls({})
|
|
|
|
|
|
|
|
for chunk in sig.strip().split(','):
|
|
|
|
key, value = chunk.split('=', 1)
|
|
|
|
value = value.strip('\"')
|
|
|
|
|
|
|
|
if key == 'headers':
|
|
|
|
value = value.split()
|
|
|
|
|
|
|
|
data[key.lower()] = value
|
|
|
|
|
|
|
|
return data
|
|
|
|
|
|
|
|
|
2022-11-06 06:11:54 +00:00
|
|
|
def to_json(self, indent=None):
|
|
|
|
return json.dumps(self, indent=indent)
|
2022-11-07 10:30:13 +00:00
|
|
|
|
|
|
|
|
2022-11-09 09:35:57 +00:00
|
|
|
def update(self, _data, **kwargs):
|
|
|
|
if isinstance(_data, dict):
|
|
|
|
for key, value in _data.items():
|
|
|
|
self[key] = value
|
|
|
|
|
|
|
|
elif isinstance(_data, (list, tuple, set)):
|
|
|
|
for key, value in _data:
|
|
|
|
self[key] = value
|
|
|
|
|
|
|
|
for key, value in kwargs.items():
|
|
|
|
self[key] = value
|
|
|
|
|
|
|
|
|
2022-11-07 10:30:13 +00:00
|
|
|
class Message(DotDict):
|
|
|
|
@classmethod
|
2022-12-13 15:09:12 +00:00
|
|
|
def new_actor(cls, host, pubkey, name=None, description=None, locked=False):
|
2022-11-07 10:30:13 +00:00
|
|
|
return cls({
|
|
|
|
'@context': 'https://www.w3.org/ns/activitystreams',
|
|
|
|
'id': f'https://{host}/actor',
|
|
|
|
'type': 'Application',
|
|
|
|
'preferredUsername': 'relay',
|
2022-12-13 15:09:12 +00:00
|
|
|
'name': name or 'ActivityRelay',
|
2022-11-07 10:30:13 +00:00
|
|
|
'summary': description or 'ActivityRelay bot',
|
2022-12-13 15:09:12 +00:00
|
|
|
'manuallyApprovesFollowers': locked,
|
2022-11-07 10:30:13 +00:00
|
|
|
'followers': f'https://{host}/followers',
|
|
|
|
'following': f'https://{host}/following',
|
|
|
|
'inbox': f'https://{host}/inbox',
|
|
|
|
'url': f'https://{host}/inbox',
|
|
|
|
'endpoints': {
|
|
|
|
'sharedInbox': f'https://{host}/inbox'
|
|
|
|
},
|
|
|
|
'publicKey': {
|
|
|
|
'id': f'https://{host}/actor#main-key',
|
|
|
|
'owner': f'https://{host}/actor',
|
|
|
|
'publicKeyPem': pubkey
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def new_announce(cls, host, object):
|
|
|
|
return cls({
|
|
|
|
'@context': 'https://www.w3.org/ns/activitystreams',
|
|
|
|
'id': f'https://{host}/activities/{uuid.uuid4()}',
|
|
|
|
'type': 'Announce',
|
|
|
|
'to': [f'https://{host}/followers'],
|
|
|
|
'actor': f'https://{host}/actor',
|
|
|
|
'object': object
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def new_follow(cls, host, actor):
|
|
|
|
return cls({
|
|
|
|
'@context': 'https://www.w3.org/ns/activitystreams',
|
|
|
|
'type': 'Follow',
|
|
|
|
'to': [actor],
|
|
|
|
'object': actor,
|
|
|
|
'id': f'https://{host}/activities/{uuid.uuid4()}',
|
|
|
|
'actor': f'https://{host}/actor'
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def new_unfollow(cls, host, actor, follow):
|
|
|
|
return cls({
|
|
|
|
'@context': 'https://www.w3.org/ns/activitystreams',
|
|
|
|
'id': f'https://{host}/activities/{uuid.uuid4()}',
|
|
|
|
'type': 'Undo',
|
|
|
|
'to': [actor],
|
|
|
|
'actor': f'https://{host}/actor',
|
|
|
|
'object': follow
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def new_response(cls, host, actor, followid, accept):
|
|
|
|
return cls({
|
|
|
|
'@context': 'https://www.w3.org/ns/activitystreams',
|
|
|
|
'id': f'https://{host}/activities/{uuid.uuid4()}',
|
|
|
|
'type': 'Accept' if accept else 'Reject',
|
|
|
|
'to': [actor],
|
|
|
|
'actor': f'https://{host}/actor',
|
|
|
|
'object': {
|
|
|
|
'id': followid,
|
|
|
|
'type': 'Follow',
|
|
|
|
'object': f'https://{host}/actor',
|
|
|
|
'actor': actor
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
# misc properties
|
|
|
|
@property
|
|
|
|
def domain(self):
|
|
|
|
return urlparse(self.id).hostname
|
|
|
|
|
|
|
|
|
|
|
|
# actor properties
|
|
|
|
@property
|
|
|
|
def shared_inbox(self):
|
|
|
|
return self.get('endpoints', {}).get('sharedInbox', self.inbox)
|
|
|
|
|
|
|
|
|
|
|
|
# activity properties
|
|
|
|
@property
|
|
|
|
def actorid(self):
|
|
|
|
if isinstance(self.actor, dict):
|
|
|
|
return self.actor.id
|
|
|
|
|
|
|
|
return self.actor
|
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
def objectid(self):
|
|
|
|
if isinstance(self.object, dict):
|
|
|
|
return self.object.id
|
|
|
|
|
|
|
|
return self.object
|
2022-11-07 13:18:25 +00:00
|
|
|
|
|
|
|
|
2022-11-27 03:16:14 +00:00
|
|
|
@property
|
|
|
|
def signer(self):
|
|
|
|
return aputils.Signer.new_from_actor(self)
|
|
|
|
|
|
|
|
|
2022-11-09 10:58:35 +00:00
|
|
|
class Response(AiohttpResponse):
|
|
|
|
@classmethod
|
|
|
|
def new(cls, body='', status=200, headers=None, ctype='text'):
|
|
|
|
kwargs = {
|
|
|
|
'status': status,
|
|
|
|
'headers': headers,
|
|
|
|
'content_type': MIMETYPES[ctype]
|
|
|
|
}
|
|
|
|
|
|
|
|
if isinstance(body, bytes):
|
|
|
|
kwargs['body'] = body
|
|
|
|
|
|
|
|
elif isinstance(body, dict) and ctype in {'json', 'activity'}:
|
|
|
|
kwargs['text'] = json.dumps(body)
|
|
|
|
|
|
|
|
else:
|
|
|
|
kwargs['text'] = body
|
|
|
|
|
|
|
|
return cls(**kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
@classmethod
|
2022-11-10 17:40:48 +00:00
|
|
|
def new_error(cls, status, body, ctype='text'):
|
2022-11-09 10:58:35 +00:00
|
|
|
if ctype == 'json':
|
|
|
|
body = json.dumps({'status': status, 'error': body})
|
|
|
|
|
2022-11-13 06:00:53 +00:00
|
|
|
return cls.new(body=body, status=status, ctype=ctype)
|
2022-11-09 10:58:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
def location(self):
|
|
|
|
return self.headers.get('Location')
|
|
|
|
|
|
|
|
|
|
|
|
@location.setter
|
|
|
|
def location(self, value):
|
|
|
|
self.headers['Location'] = value
|