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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
|
"""
Proton VPN API.
Copyright (c) 2023 Proton AG
This file is part of Proton VPN.
Proton VPN 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 VPN 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/>.
"""
import asyncio
import copy
from proton.vpn.core.connection import VPNConnector
from proton.vpn.core.refresher.scheduler import Scheduler
from proton.vpn.core.refresher.vpn_data_refresher import VPNDataRefresher
from proton.vpn.core.settings import Settings, SettingsPersistence
from proton.vpn.core.session_holder import SessionHolder, ClientTypeMetadata
from proton.vpn.session.dataclasses import LoginResult, BugReportForm
from proton.vpn.session.account import VPNAccount
from proton.vpn.session import FeatureFlags
from proton.vpn.core.usage import UsageReporting
class ProtonVPNAPI: # pylint: disable=too-many-public-methods
"""Class exposing the Proton VPN facade."""
def __init__(self, client_type_metadata: ClientTypeMetadata):
self._session_holder = SessionHolder(
client_type_metadata=client_type_metadata
)
self._settings_persistence = SettingsPersistence()
self._vpn_connector = None
self._usage_reporting = UsageReporting(
client_type_metadata=client_type_metadata)
self.refresher = VPNDataRefresher(
self._session_holder, Scheduler()
)
async def get_vpn_connector(self) -> VPNConnector:
"""Returns an object that wraps around the raw VPN connection object.
This will provide some additional helper methods
related to VPN connections and VPN servers.
"""
if self._vpn_connector:
return self._vpn_connector
self._vpn_connector = await VPNConnector.get(
session_holder=self._session_holder,
settings_persistence=self._settings_persistence,
usage_reporting=self._usage_reporting,
)
self._vpn_connector.subscribe_to_certificate_updates(self.refresher)
return self._vpn_connector
async def load_settings(self) -> Settings:
"""
Returns a copy of the settings saved to disk, or the defaults if they
are not found. Be sure to call save_settings if you want to apply changes.
"""
# Default to free user settings if the session is not loaded yet.
# pylint: disable=duplicate-code
user_tier = self._session_holder.user_tier or 0
loop = asyncio.get_running_loop()
settings = await loop.run_in_executor(
None, self._settings_persistence.get,
user_tier,
self.feature_flags
)
self._usage_reporting.enabled = settings.anonymous_crash_reports
# We have to return a copy of the settings to force the caller to
# use the `save_settings` method to apply the changes.
return copy.deepcopy(settings)
async def save_settings(self, settings: Settings):
"""
Saves the settings to disk.
Certain actions might be triggered by the VPN connector. For example, the
kill switch might also be enabled/disabled depending on the setting value.
"""
loop = asyncio.get_running_loop()
await loop.run_in_executor(None, self._settings_persistence.save, settings)
await self._vpn_connector.apply_settings(settings)
self._usage_reporting.enabled = settings.anonymous_crash_reports
async def login(self, username: str, password: str) -> LoginResult:
"""
Logs the user in provided the right credentials.
:param username: Proton account username.
:param password: Proton account password.
:return: The login result.
"""
session = self._session_holder.get_session_for(username)
result = await session.login(username, password)
if result.success and not session.loaded:
await session.fetch_session_data()
return result
async def submit_2fa_code(self, code: str) -> LoginResult:
"""
Submits the 2-factor authentication code.
:param code: 2FA code.
:return: The login result.
"""
session = self._session_holder.session
result = await session.provide_2fa(code)
if result.success and not session.loaded:
await session.fetch_session_data()
return result
def is_user_logged_in(self) -> bool:
"""Returns True if a user is logged in and False otherwise."""
return self._session_holder.session.logged_in
@property
def account_name(self) -> str:
"""Returns account name."""
return self._session_holder.session.AccountName
@property
def account_data(self) -> VPNAccount:
"""
Returns account data, which contains information such
as (but not limited to):
- Plan name/title
- Max tier
- Max connections
- VPN Credentials
- Location
"""
return self._session_holder.session.vpn_account
@property
def user_tier(self) -> int:
"""
Returns the Proton VPN tier.
Current possible values are:
* 0: Free
* 2: Plus
* 3: Proton employee
Note: tier 1 is no longer in use.
"""
return self.account_data.max_tier
@property
def vpn_session_loaded(self) -> bool:
"""Returns whether the VPN session data was already loaded or not."""
return self._session_holder.session.loaded
@property
def server_list(self):
"""The last server list fetched from the REST API."""
return self._session_holder.session.server_list
@property
def client_config(self):
"""The last client configuration fetched from the REST API."""
return self._session_holder.session.client_config
@property
def feature_flags(self) -> FeatureFlags:
"""The last feature flags fetched from the REST API."""
return self._session_holder.session.feature_flags
async def submit_bug_report(self, bug_report: BugReportForm):
"""
Submits the specified bug report to customer support.
"""
return await self._session_holder.session.submit_bug_report(bug_report)
async def logout(self):
"""
Logs the current user out.
:raises: VPNConnectionFoundAtLogout if the users is still connected to the VPN.
"""
await self.refresher.disable()
await self._session_holder.session.logout()
loop = asyncio.get_running_loop()
await loop.run_in_executor(executor=None, func=self._settings_persistence.delete)
vpn_connector = await self.get_vpn_connector()
await vpn_connector.disconnect()
@property
def usage_reporting(self) -> UsageReporting:
"""Returns the usage reporting instance to send anonymous crash reports."""
return self._usage_reporting
|