mirror of
https://github.com/fuckpiracyshield/api.git
synced 2024-12-23 11:00:56 +01:00
61 lines
2.1 KiB
Python
61 lines
2.1 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 ioutils.errors import ErrorCode, ErrorMessage
|
||
|
|
||
|
from piracyshield_service.ticket.item.ipv4.get_all import TicketItemIPv4GetAllService
|
||
|
from piracyshield_service.ticket.item.ipv4.get_all_by_provider import TicketItemIPv4GetAllByProviderService
|
||
|
|
||
|
from piracyshield_data_model.account.role.model import AccountRoleModel
|
||
|
|
||
|
from piracyshield_component.exception import ApplicationException
|
||
|
|
||
|
class GetAllIPv4Handler(ProtectedHandler):
|
||
|
|
||
|
"""
|
||
|
Handles getting all IPv4 items.
|
||
|
"""
|
||
|
|
||
|
async def get(self):
|
||
|
if self.initialize_account() == False:
|
||
|
return
|
||
|
|
||
|
try:
|
||
|
self.permission_service.can_view_ticket()
|
||
|
|
||
|
# only internal and provider accounts should get this data
|
||
|
if self.account_data.get('role') == AccountRoleModel.INTERNAL.value:
|
||
|
ticket_item_ipv4_get_all_service = TicketItemIPv4GetAllService()
|
||
|
|
||
|
response = await tornado.ioloop.IOLoop.current().run_in_executor(
|
||
|
None,
|
||
|
ticket_item_ipv4_get_all_service.execute
|
||
|
)
|
||
|
|
||
|
self.success(data = response)
|
||
|
|
||
|
elif self.account_data.get('role') == AccountRoleModel.PROVIDER.value:
|
||
|
ticket_item_ipv4_get_all_by_provider_service = TicketItemIPv4GetAllByProviderService()
|
||
|
|
||
|
response = await tornado.ioloop.IOLoop.current().run_in_executor(
|
||
|
None,
|
||
|
ticket_item_ipv4_get_all_by_provider_service.execute,
|
||
|
self.account_data.get('account_id')
|
||
|
)
|
||
|
|
||
|
self.success(data = response)
|
||
|
|
||
|
else:
|
||
|
self.error(status_code = 403, error_code = ErrorCode.PERMISSION_DENIED, message = ErrorMessage.PERMISSION_DENIED)
|
||
|
|
||
|
except ApplicationException as e:
|
||
|
self.error(status_code = 400, error_code = e.code, message = e.message)
|