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.change_password import ReporterChangePasswordService from piracyshield_component.exception import ApplicationException class ChangePasswordReporterAccountHandler(ProtectedHandler): """ Handles account password change. """ required_fields = [ 'current_password', 'new_password', 'confirm_password' ] async def post(self): if self.initialize_account() == False: return if self.handle_post(self.required_fields) == False: return try: reporter_account_change_password_service = ReporterChangePasswordService() response = await tornado.ioloop.IOLoop.current().run_in_executor( None, reporter_account_change_password_service.execute, self.account_data.get('account_id'), self.request_data.get('current_password'), self.request_data.get('new_password'), self.request_data.get('confirm_password') ) self.success(data = response) except ApplicationException as e: self.error(status_code = 400, error_code = e.code, message = e.message)