mirror of
https://git.pleroma.social/pleroma/relay.git
synced 2024-11-22 06:27:59 +00:00
replace various classes with aputils classes
This commit is contained in:
parent
d172439fac
commit
d5b9053f71
|
@ -1,9 +1,9 @@
|
||||||
import aputils
|
|
||||||
import logging
|
import logging
|
||||||
import traceback
|
import traceback
|
||||||
|
|
||||||
from aiohttp import ClientSession, ClientTimeout, TCPConnector
|
from aiohttp import ClientSession, ClientTimeout, TCPConnector
|
||||||
from aiohttp.client_exceptions import ClientConnectorError, ServerTimeoutError
|
from aiohttp.client_exceptions import ClientConnectorError, ServerTimeoutError
|
||||||
|
from aputils import Nodeinfo, WellKnownNodeinfo
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from cachetools import LRUCache
|
from cachetools import LRUCache
|
||||||
from json.decoder import JSONDecodeError
|
from json.decoder import JSONDecodeError
|
||||||
|
@ -173,7 +173,10 @@ class HttpClient:
|
||||||
## Additional methods ##
|
## Additional methods ##
|
||||||
async def fetch_nodeinfo(self, domain):
|
async def fetch_nodeinfo(self, domain):
|
||||||
nodeinfo_url = None
|
nodeinfo_url = None
|
||||||
wk_nodeinfo = await self.get(f'https://{domain}/.well-known/nodeinfo', loads=WKNodeinfo)
|
wk_nodeinfo = await self.get(
|
||||||
|
f'https://{domain}/.well-known/nodeinfo',
|
||||||
|
loads = WellKnownNodeinfo.new_from_json
|
||||||
|
)
|
||||||
|
|
||||||
for version in ['20', '21']:
|
for version in ['20', '21']:
|
||||||
try:
|
try:
|
||||||
|
@ -186,4 +189,4 @@ class HttpClient:
|
||||||
logging.verbose(f'Failed to fetch nodeinfo url for domain: {domain}')
|
logging.verbose(f'Failed to fetch nodeinfo url for domain: {domain}')
|
||||||
return False
|
return False
|
||||||
|
|
||||||
return await request(nodeinfo_url, loads=Nodeinfo) or False
|
return await request(nodeinfo_url, loads=Nodeinfo.new_from_json) or False
|
||||||
|
|
|
@ -37,10 +37,6 @@ def set_app(new_app):
|
||||||
app = new_app
|
app = new_app
|
||||||
|
|
||||||
|
|
||||||
def build_signing_string(headers, used_headers):
|
|
||||||
return '\n'.join(map(lambda x: ': '.join([x.lower(), headers[x]]), used_headers))
|
|
||||||
|
|
||||||
|
|
||||||
def boolean(value):
|
def boolean(value):
|
||||||
if isinstance(value, str):
|
if isinstance(value, str):
|
||||||
if value.lower() in ['on', 'y', 'yes', 'true', 'enable', 'enabled', '1']:
|
if value.lower() in ['on', 'y', 'yes', 'true', 'enable', 'enabled', '1']:
|
||||||
|
@ -279,12 +275,6 @@ class Message(DotDict):
|
||||||
return aputils.Signer.new_from_actor(self)
|
return aputils.Signer.new_from_actor(self)
|
||||||
|
|
||||||
|
|
||||||
class Nodeinfo(DotDict):
|
|
||||||
@property
|
|
||||||
def swname(self):
|
|
||||||
return self.software.name
|
|
||||||
|
|
||||||
|
|
||||||
class Response(AiohttpResponse):
|
class Response(AiohttpResponse):
|
||||||
@classmethod
|
@classmethod
|
||||||
def new(cls, body='', status=200, headers=None, ctype='text'):
|
def new(cls, body='', status=200, headers=None, ctype='text'):
|
||||||
|
@ -350,22 +340,3 @@ class View(AiohttpView):
|
||||||
@property
|
@property
|
||||||
def database(self):
|
def database(self):
|
||||||
return self.app.database
|
return self.app.database
|
||||||
|
|
||||||
|
|
||||||
class WKNodeinfo(DotDict):
|
|
||||||
@classmethod
|
|
||||||
def new(cls, v20, v21):
|
|
||||||
return cls({
|
|
||||||
'links': [
|
|
||||||
{'rel': NODEINFO_NS['20'], 'href': v20},
|
|
||||||
{'rel': NODEINFO_NS['21'], 'href': v21}
|
|
||||||
]
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
def get_url(self, version='20'):
|
|
||||||
for item in self.links:
|
|
||||||
if item['rel'] == NODEINFO_NS[version]:
|
|
||||||
return item['href']
|
|
||||||
|
|
||||||
raise KeyError(version)
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ from pathlib import Path
|
||||||
|
|
||||||
from . import __version__, misc
|
from . import __version__, misc
|
||||||
from .http_debug import STATS
|
from .http_debug import STATS
|
||||||
from .misc import DotDict, Message, Response, WKNodeinfo
|
from .misc import DotDict, Message, Response
|
||||||
from .processors import run_processor
|
from .processors import run_processor
|
||||||
|
|
||||||
|
|
||||||
|
@ -158,57 +158,37 @@ async def webfinger(request):
|
||||||
if subject != f'acct:relay@{request.config.host}':
|
if subject != f'acct:relay@{request.config.host}':
|
||||||
return Response.new_error(404, 'user not found', 'json')
|
return Response.new_error(404, 'user not found', 'json')
|
||||||
|
|
||||||
data = {
|
data = aputils.Webfinger.new(
|
||||||
'subject': subject,
|
handle = 'relay',
|
||||||
'aliases': [request.config.actor],
|
domain = request.config.host,
|
||||||
'links': [
|
actor = request.config.actor
|
||||||
{'href': request.config.actor, 'rel': 'self', 'type': 'application/activity+json'},
|
)
|
||||||
{'href': request.config.actor, 'rel': 'self', 'type': 'application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"'}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
return Response.new(data, ctype='json')
|
return Response.new(data, ctype='json')
|
||||||
|
|
||||||
|
|
||||||
@register_route('GET', '/nodeinfo/{version:\d.\d\.json}')
|
@register_route('GET', '/nodeinfo/{version:\d.\d\.json}')
|
||||||
async def nodeinfo_2_0(request):
|
async def nodeinfo(request):
|
||||||
niversion = request.match_info['version'][:3]
|
niversion = request.match_info['version'][:3]
|
||||||
data = {
|
|
||||||
'openRegistrations': not request.config.whitelist_enabled,
|
|
||||||
'protocols': ['activitypub'],
|
|
||||||
'services': {
|
|
||||||
'inbound': [],
|
|
||||||
'outbound': []
|
|
||||||
},
|
|
||||||
'software': {
|
|
||||||
'name': 'activityrelay',
|
|
||||||
'version': version
|
|
||||||
},
|
|
||||||
'usage': {
|
|
||||||
'localPosts': 0,
|
|
||||||
'users': {
|
|
||||||
'total': 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
'metadata': {
|
|
||||||
'peers': request.database.hostnames
|
|
||||||
},
|
|
||||||
'version': niversion
|
|
||||||
}
|
|
||||||
|
|
||||||
if version == '2.1':
|
data = dict(
|
||||||
data['software']['repository'] = 'https://git.pleroma.social/pleroma/relay'
|
name = 'activityrelay',
|
||||||
|
version = version,
|
||||||
|
protocols = ['activitypub'],
|
||||||
|
open_regs = not request.config.whitelist_enabled,
|
||||||
|
users = 1,
|
||||||
|
metadata = {'peers': request.database.hostnames}
|
||||||
|
)
|
||||||
|
|
||||||
return Response.new(data, ctype='json')
|
if niversion == '2.1':
|
||||||
|
data['repo'] = 'https://git.pleroma.social/pleroma/relay'
|
||||||
|
|
||||||
|
return Response.new(aputils.Nodeinfo.new(**data), ctype='json')
|
||||||
|
|
||||||
|
|
||||||
@register_route('GET', '/.well-known/nodeinfo')
|
@register_route('GET', '/.well-known/nodeinfo')
|
||||||
async def nodeinfo_wellknown(request):
|
async def nodeinfo_wellknown(request):
|
||||||
data = WKNodeinfo.new(
|
data = aputils.WellKnownNodeinfo.new_template(request.config.host)
|
||||||
v20 = f'https://{request.config.host}/nodeinfo/2.0.json',
|
|
||||||
v21 = f'https://{request.config.host}/nodeinfo/2.1.json'
|
|
||||||
)
|
|
||||||
|
|
||||||
return Response.new(data, ctype='json')
|
return Response.new(data, ctype='json')
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue