mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
92 lines
2.6 KiB
Python
92 lines
2.6 KiB
Python
__author__ = "Alex Laird"
|
|
__copyright__ = "Copyright 2020, Alex Laird"
|
|
__version__ = "4.1.0"
|
|
|
|
|
|
class PyngrokError(Exception):
|
|
"""
|
|
Raised when a general :code:`pyngrok` error has occurred.
|
|
"""
|
|
pass
|
|
|
|
|
|
class PyngrokSecurityError(PyngrokError):
|
|
"""
|
|
Raised when a :code:`pyngrok` security error has occurred.
|
|
"""
|
|
pass
|
|
|
|
|
|
class PyngrokNgrokInstallError(PyngrokError):
|
|
"""
|
|
Raised when an error has occurred while downloading and installing the :code:`ngrok` binary.
|
|
"""
|
|
pass
|
|
|
|
|
|
class PyngrokNgrokError(PyngrokError):
|
|
"""
|
|
Raised when an error occurs interacting directly with the :code:`ngrok` binary.
|
|
|
|
:var error: A description of the error being thrown.
|
|
:vartype error: str
|
|
:var ngrok_logs: The :code:`ngrok` logs, which may be useful for debugging the error.
|
|
:vartype ngrok_logs: list[NgrokLog]
|
|
:var ngrok_error: The error that caused the :code:`ngrok` process to fail.
|
|
:vartype ngrok_error: str
|
|
"""
|
|
|
|
def __init__(self, error, ngrok_logs=None, ngrok_error=None):
|
|
super(PyngrokNgrokError, self).__init__(error)
|
|
|
|
if ngrok_logs is None:
|
|
ngrok_logs = []
|
|
|
|
self.ngrok_logs = ngrok_logs
|
|
self.ngrok_error = ngrok_error
|
|
|
|
|
|
class PyngrokNgrokHTTPError(PyngrokNgrokError):
|
|
"""
|
|
Raised when an error occurs making a request to the :code:`ngrok` web interface. The :code:`body`
|
|
contains the error response received from :code:`ngrok`.
|
|
|
|
:var error: A description of the error being thrown.
|
|
:vartype error: str
|
|
:var url: The request URL that failed.
|
|
:vartype url: str
|
|
:var status_code: The response status code from :code:`ngrok`.
|
|
:vartype status_code: int
|
|
:var message: The response message from :code:`ngrok`.
|
|
:vartype message: str
|
|
:var headers: The request headers sent to :code:`ngrok`.
|
|
:vartype headers: dict[str, str]
|
|
:var body: The response body from :code:`ngrok`.
|
|
:vartype body: str
|
|
"""
|
|
|
|
def __init__(self, error, url, status_code, message, headers, body):
|
|
super(PyngrokNgrokHTTPError, self).__init__(error)
|
|
|
|
self.url = url
|
|
self.status_code = status_code
|
|
self.message = message
|
|
self.headers = headers
|
|
self.body = body
|
|
|
|
|
|
class PyngrokNgrokURLError(PyngrokNgrokError):
|
|
"""
|
|
Raised when an error occurs when trying to initiate an API request.
|
|
|
|
:var error: A description of the error being thrown.
|
|
:vartype error: str
|
|
:var reason: The reason for the URL error.
|
|
:vartype reason: str
|
|
"""
|
|
|
|
def __init__(self, error, reason):
|
|
super(PyngrokNgrokURLError, self).__init__(error)
|
|
|
|
self.reason = reason
|