Unused endpoints

main
Bob Mottram 2021-07-31 21:33:28 +01:00
parent e719fb1a16
commit faa747fc30
1 changed files with 5 additions and 3 deletions

View File

@ -1049,9 +1049,11 @@ class PubServer(BaseHTTPRequestHandler):
return True
self._404()
return True
if self.path.startswith('/poco'):
# NOTE: I have no idea what this endpoint is for, but
# other systems try to access it
if self.path.startswith('/api/statusnet') or \
self.path.startswith('/api/gnusocial') or \
self.path.startswith('/siteinfo') or \
self.path.startswith('/poco') or \
self.path.startswith('/friendi'):
self._404()
return True
if self.path.startswith('/.well-known/nodeinfo') or \