mirror of
https://github.com/fuckpiracyshield/api.git
synced 2024-12-22 18:40:52 +01:00
49 lines
1.3 KiB
Python
49 lines
1.3 KiB
Python
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.provider.get import ProviderGetService
|
|
|
|
from piracyshield_component.exception import ApplicationException
|
|
|
|
class GetProviderAccountHandler(ProtectedHandler):
|
|
|
|
"""
|
|
Handles getting a single account by its ID.
|
|
"""
|
|
|
|
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_view_account()
|
|
|
|
provider_account_get_service = ProviderGetService()
|
|
|
|
response = await tornado.ioloop.IOLoop.current().run_in_executor(
|
|
None,
|
|
provider_account_get_service.execute,
|
|
self.request_data.get('account_id')
|
|
)
|
|
|
|
self.success(data = response)
|
|
|
|
except ApplicationException as e:
|
|
self.error(status_code = 400, error_code = e.code, message = e.message)
|