1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
|
"""
Copyright (c) 2023 Proton AG
This file is part of Proton.
Proton is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Proton is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with ProtonVPN. If not, see <https://www.gnu.org/licenses/>.
"""
from __future__ import annotations
from typing import Optional
class ProtonError(Exception):
"""Base class for Proton API specific exceptions"""
def __init__(self, message, additional_context=None):
self.message = message
self.additional_context = additional_context
super().__init__(self.message)
class ProtonCryptoError(ProtonError):
"""Exception thrown when something is wrong on the crypto side.
In general this has to be handled as being fatal, as something is super-wrong."""
class ProtonUnsupportedAuthVersionError(ProtonCryptoError):
"""When the auth_version returned by the API is lower then what is currently supported.
This is usually fixed with a login via the webclient."""
class ProtonAPIError(ProtonError):
"""Exception that is raised whenever the API call didn't return a 1000/1001 code.
Logic for handling these depend on the call (see API doc)
"""
def __init__(self, http_code, http_headers, json_data):
self._http_code = http_code
self._http_headers = http_headers
self._json_data = json_data
super().__init__(f'[HTTP/{self.http_code}, {self.body_code}] {self.error}')
@property
def http_code(self) -> int:
""":return: HTTP error code (401, 403, 422...)
:rtype: int
"""
return self._http_code
@property
def http_headers(self) -> dict:
""":return: Dictionary of HTTP headers of the error reply
:rtype: dict
"""
return self._http_headers
@property
def json_data(self) -> dict:
""":return: JSON data of the error reply
:rtype: dict
"""
return self._json_data
@property
def body_code(self) -> int:
""":return: Body error code ("Code" in JSON)
:rtype: int
"""
return self._json_data['Code']
@property
def error(self) -> str:
""":return: Body error message ("Error" in JSON)
:rtype: str
"""
return self._json_data['Error']
@classmethod
def from_proton_api_error(cls, e : "ProtonAPIError"):
"""Construct an instance of this class, based on a ProtonAPIError (this allows to downcast to a more specific exception)
:param e: Initial API exception
:type e: ProtonAPIError
:return: An instance of the current class
:rtype: Any
"""
return cls(e._http_code, e._http_headers, e._json_data)
class ProtonAPINotReachable(ProtonError):
"""Exception thrown when the transport couldn't reach the API.
One may try using a different transport, or later if the error is transient."""
class ProtonAPINotAvailable(ProtonError):
"""Exception thrown when the API is reachable (i.e. at the TLS level), but doesn't work.
This is definitive for that transport, it will not work by retrying in the same conditions."""
class ProtonAPIUnexpectedError(ProtonError):
"""Something went wrong, but we don't know how to handle it. Good luck :-)"""
class ProtonAPIAuthenticationNeeded(ProtonAPIError):
"""We tried to call a route that requires authentication, but we don't have it.
This should be solved by calling session.authenticate() with valid credentials"""
class ProtonAPI2FANeeded(ProtonAPIError):
"""We need 2FA authentication, but it's not done yet.
This should be solved by calling session.provide_2fa() with valid 2FA"""
class ProtonAPIMissingScopeError(ProtonAPIError):
"""We don't have a required scope.
This might be because of user rights, but also might require a call to unlock."""
class ProtonAPIHumanVerificationNeeded(ProtonAPIError):
"""Human verification is needed for this API call to succeed."""
@property
def HumanVerificationToken(self) -> Optional[str]:
"""Get the Token for human verification"""
return self.json_data.get('Details', {}).get('HumanVerificationToken', None)
@property
def HumanVerificationMethods(self) -> list[str]:
"""Return a list of allowed human verification methods.
:return: human verification methods
:rtype: list[str]
"""
return self.json_data.get('Details', {}).get('Methods', [])
|