api/v1/handlers/account/reporter/remove.py

50 lines
1.2 KiB
Python
Raw Normal View History

2024-01-15 13:32:24 +01:00
import sys
import os
# I hate python imports
current = os.path.dirname(os.path.realpath(__file__))
parent = os.path.dirname(current)
sys.path.append(parent)
import tornado
from ioutils.protected import ProtectedHandler
from piracyshield_service.reporter.remove import ReporterRemoveService
from piracyshield_component.exception import ApplicationException
class RemoveReporterAccountHandler(ProtectedHandler):
"""
Handles the account removal.
"""
required_fields = [
'account_id'
]
async def post(self):
if self.initialize_account() == False:
return
if self.handle_post(self.required_fields) == False:
return
try:
# ensure that we have the proper permissions for this operation
self.permission_service.can_delete_account()
reporter_account_remove_service = ReporterRemoveService()
await tornado.ioloop.IOLoop.current().run_in_executor(
None,
reporter_account_remove_service.execute,
self.request_data.get('account_id')
)
self.success()
except ApplicationException as e:
self.error(status_code = 400, error_code = e.code, message = e.message)