fix: Renames
parent
4ec26ae898
commit
1b8cfe08b1
|
@ -7,8 +7,8 @@ from fediseer.apis.v1 import api as v1
|
||||||
blueprint = Blueprint('apiv1', __name__, url_prefix='/api')
|
blueprint = Blueprint('apiv1', __name__, url_prefix='/api')
|
||||||
api = Api(blueprint,
|
api = Api(blueprint,
|
||||||
version='1.0',
|
version='1.0',
|
||||||
title=f'Lemmy Overseer',
|
title=f'Fediseer',
|
||||||
description=f'The API documentation for the Lemmy Overseer',
|
description=f'The API documentation for the Fediseer',
|
||||||
contact_email="mail@dbzer0.com",
|
contact_email="mail@dbzer0.com",
|
||||||
default="v1",
|
default="v1",
|
||||||
default_label="Latest Version",
|
default_label="Latest Version",
|
||||||
|
|
|
@ -67,7 +67,7 @@ class WhitelistDomain(Resource):
|
||||||
if self.args.guarantor:
|
if self.args.guarantor:
|
||||||
guarantor_instance = database.find_instance_by_domain(self.args.guarantor)
|
guarantor_instance = database.find_instance_by_domain(self.args.guarantor)
|
||||||
if not guarantor_instance:
|
if not guarantor_instance:
|
||||||
raise e.BadRequest(f"Requested guarantor domain {self.args.guarantor} is not registered with the Overseer yet!")
|
raise e.BadRequest(f"Requested guarantor domain {self.args.guarantor} is not registered with the Fediseer yet!")
|
||||||
if self.args.admin not in admin_usernames:
|
if self.args.admin not in admin_usernames:
|
||||||
raise e.Forbidden(f"Only admins of that {instance.software} are allowed to claim it.")
|
raise e.Forbidden(f"Only admins of that {instance.software} are allowed to claim it.")
|
||||||
existing_claim = database.find_claim(f"@{self.args.admin}@{domain}")
|
existing_claim = database.find_claim(f"@{self.args.admin}@{domain}")
|
||||||
|
@ -91,7 +91,7 @@ class WhitelistDomain(Resource):
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
if guarantor_instance:
|
if guarantor_instance:
|
||||||
activitypub_pm.pm_admins(
|
activitypub_pm.pm_admins(
|
||||||
message=f"New instance {domain} was just registered with the Overseer and have asked you to guarantee for them!",
|
message=f"New instance {domain} was just registered with the Fediseer and have asked you to guarantee for them!",
|
||||||
domain=guarantor_instance.domain,
|
domain=guarantor_instance.domain,
|
||||||
software=guarantor_instance.software,
|
software=guarantor_instance.software,
|
||||||
instance=guarantor_instance,
|
instance=guarantor_instance,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import requests
|
import requests
|
||||||
from loguru import logger
|
from loguru import logger
|
||||||
|
from fediseer.consts import FEDISEER_VERSION
|
||||||
|
|
||||||
def retrieve_suspicious_instances(activity_suspicion = 20):
|
def retrieve_suspicious_instances(activity_suspicion = 20):
|
||||||
# GraphQL query
|
# GraphQL query
|
||||||
|
@ -29,7 +29,7 @@ def retrieve_suspicious_instances(activity_suspicion = 20):
|
||||||
|
|
||||||
# Request headers
|
# Request headers
|
||||||
headers = {
|
headers = {
|
||||||
'User-Agent': 'Lemmy Overseer / mail@dbzer0.com',
|
'User-Agent': f'Fediseer/{FEDISEER_VERSION}',
|
||||||
'Accept': '*/*',
|
'Accept': '*/*',
|
||||||
'Accept-Language': 'en-US,en;q=0.5',
|
'Accept-Language': 'en-US,en;q=0.5',
|
||||||
'Accept-Encoding': 'gzip, deflate, br',
|
'Accept-Encoding': 'gzip, deflate, br',
|
||||||
|
|
Loading…
Reference in New Issue