Skip to content
This repository was archived by the owner on Apr 3, 2025. It is now read-only.

Commit 353c009

Browse files
committed
OpenVPN: Remove parser
It was previously needed as we had to replace some stuff in the config IIRC. This is no longer needed, so instead of parsing and then recombining the config, let's pass it around as a string
1 parent e2cc8ba commit 353c009

File tree

5 files changed

+10
-128
lines changed

5 files changed

+10
-128
lines changed

eduvpn/connection.py

+4-7
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
from enum import IntEnum
55
from typing import Any, Dict, List, Optional
66

7-
from eduvpn.ovpn import Ovpn
8-
97

108
class Token:
119
"""The class that represents oauth Tokens
@@ -172,14 +170,13 @@ def connect(self, callback):
172170

173171

174172
class OpenVPNConnection(Connection):
175-
def __init__(self, ovpn: Ovpn):
176-
self.ovpn = ovpn
173+
def __init__(self, config_str):
174+
self.config_str = config_str
177175
super().__init__()
178176

179177
@classmethod
180178
def parse(cls, config_str: str) -> "OpenVPNConnection": # type: ignore
181-
ovpn = Ovpn.parse(config_str)
182-
return cls(ovpn=ovpn)
179+
return cls(config_str=config_str)
183180

184181
def connect(
185182
self,
@@ -191,7 +188,7 @@ def connect(
191188
callback,
192189
):
193190
manager.start_openvpn_connection(
194-
self.ovpn,
191+
self.config_str,
195192
default_gateway,
196193
dns_search_domains,
197194
callback=callback,

eduvpn/nm.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
from eduvpn_common.main import EduVPN, Jar
1616
from gi.repository.Gio import Cancellable, Task # type: ignore
1717

18-
from eduvpn.ovpn import Ovpn
19-
from eduvpn.storage import get_uuid, set_uuid, write_ovpn
18+
from eduvpn.storage import get_uuid, set_uuid
2019
from eduvpn.utils import run_in_background_thread, run_in_glib_thread
2120
from eduvpn.variants import ApplicationVariant
2221

@@ -348,15 +347,15 @@ def ovpn_import(self, target: Path) -> Optional["NM.Connection"]:
348347
conn.normalize()
349348
return conn
350349

351-
def import_ovpn(self, ovpn: Ovpn) -> "NM.SimpleConnection":
350+
def import_ovpn(self, ovpn: str) -> "NM.SimpleConnection":
352351
"""
353352
Import the OVPN string into Network Manager.
354353
"""
355354
target_parent = Path(mkdtemp())
356355
target = target_parent / f"{self.variant.name}.ovpn"
357356
_logger.debug(f"Writing configuration to {target}")
358357
with open(target, mode="w+t") as f:
359-
ovpn.write(f)
358+
f.write(ovpn)
360359
connection = self.ovpn_import(target)
361360
rmtree(target_parent)
362361
return connection
@@ -401,7 +400,7 @@ def set_setting_ensure_permissions(self, con: "NM.SimpleConnection") -> "NM.Simp
401400
con.add_setting(s_con)
402401
return con
403402

404-
def start_openvpn_connection(self, ovpn: Ovpn, default_gateway, dns_search_domains, *, callback=None) -> None:
403+
def start_openvpn_connection(self, ovpn: str, default_gateway, dns_search_domains, *, callback=None) -> None:
405404
_logger.debug("writing ovpn configuration to Network Manager")
406405
new_con = self.import_ovpn(ovpn)
407406
s_ip4 = new_con.get_setting_ip4_config()

eduvpn/ovpn.py

-99
This file was deleted.

eduvpn/storage.py

-12
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
from typing import Optional
66

7-
from eduvpn.ovpn import Ovpn
87
from eduvpn.settings import CONFIG_DIR_MODE, CONFIG_PREFIX
98
from eduvpn.utils import get_logger
109

@@ -45,17 +44,6 @@ def set_setting(variant, what: str, value: str):
4544
f.write(value)
4645

4746

48-
def write_ovpn(ovpn: Ovpn, private_key: str, certificate: str, target: PathLike):
49-
"""
50-
Write the OVPN configuration file to target.
51-
"""
52-
logger.info(f"Writing configuration to {target}")
53-
with open(target, mode="w+t") as f:
54-
ovpn.write(f)
55-
f.writelines(f"\n<key>\n{private_key}\n</key>\n")
56-
f.writelines(f"\n<cert>\n{certificate}\n</cert>\n")
57-
58-
5947
def get_uuid(variant) -> Optional[str]:
6048
"""
6149
Read the UUID of the last generated eduVPN Network Manager connection.

tests/test_nm.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from unittest import TestCase, skipIf
22

33
from eduvpn.nm import NMManager
4-
from eduvpn.ovpn import Ovpn
54
from eduvpn.variants import EDUVPN
65
from tests.mock_config import mock_config
76

@@ -14,13 +13,11 @@ def test_nm_available(self):
1413

1514
def test_import_ovpn(self):
1615
nm_manager = NMManager(EDUVPN, None)
17-
ovpn = Ovpn.parse(mock_config)
18-
nm_manager.import_ovpn(ovpn)
16+
nm_manager.import_ovpn(mock_config)
1917

2018
def test_get_add_connection(self):
2119
nm_manager = NMManager(EDUVPN, None)
22-
ovpn = Ovpn.parse(mock_config)
23-
simple_connection = nm_manager.import_ovpn(ovpn)
20+
simple_connection = nm_manager.import_ovpn(mock_config)
2421
nm_manager.add_connection(simple_connection)
2522

2623
def test_get_uuid(self):

0 commit comments

Comments
 (0)