fediseer/overseer/apis/models/v1.py

23 lines
1.5 KiB
Python
Raw Normal View History

2023-06-20 17:47:56 +00:00
from flask_restx import fields
class Models:
def __init__(self,api):
2023-06-20 22:14:53 +00:00
self.response_model_error = api.model('RequestError', {
'message': fields.String(description="The error message for this status code."),
})
2023-06-20 17:47:56 +00:00
self.response_model_suspicious_instances = api.model('SuspiciousInstances', {
'domain': fields.String(description="The instance domain"),
'uptime_alltime': fields.Float(description="The instance uptime pct. 100% and thousand of users is unlikely"),
'local_posts': fields.Integer(description="The amount of local posts in that instance"),
2023-06-20 23:57:30 +00:00
'comment_counts': fields.Integer(description="The amount of comments in that instance"),
2023-06-20 17:47:56 +00:00
'total_users': fields.Integer(description="The total amount of users registered in that instance"),
'active_users_monthly': fields.Integer(description="The amount of active users monthly."),
'signup': fields.Boolean(default=False,description="True when subscriptions are open, else False"),
2023-06-20 23:57:30 +00:00
'activity_suspicion': fields.Float(description="Local Comments+Posts per User. Higher is worse"),
2023-06-20 17:47:56 +00:00
})
2023-06-20 22:33:37 +00:00
self.response_model_model_SusInstances_get = api.model('SuspiciousInstancesDomainList', {
'instances': fields.List(fields.Nested(self.response_model_suspicious_instances)),
'domains': fields.List(fields.String(description="The suspicious domains as a list.")),
'csv': fields.String(description="The suspicious domains as a csv."),
2023-06-20 22:14:53 +00:00
})