-
Notifications
You must be signed in to change notification settings - Fork 151
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an option to stop backups from running on metered networks #547
Conversation
df733a5
to
57e9615
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because you are not using the tristate properties of QCheckbox, I think you can use the inherited properties of QAbstractButton instead for simplicity.
self.dontRunOnMeteredNetworksCheckBox.setCheckState(QtCore.Qt.CheckState.Checked if profile.dont_run_on_metered_networks else QtCore.Qt.CheckState.Unchecked)
can become
self.dontRunOnMeteredNetworksCheckBox.setChecked(profile.dont_run_on_metered_networks)
Similarly,
profile.dont_run_on_metered_networks = state == QtCore.Qt.Checked
can become
profile.dont_run_on_metered_networks = state
as QtCore.Qt.PartiallyChecked
and QtCore.Qt.Checked
are True, and QtCore.Qt.Unchecked
is False
Additionally, flatpak seems to block system dbus access. You need to add "--system-talk-name=org.freedesktop.NetworkManager",
to flatpak/com.borgbase.Vorta.json
Overall it seems to work, the only change needed is the last one.
I'll add the flatpak flag as soon as this PR is merged |
Mainly note to self: It would make sense to put macOS/Linux-specific network utility functions as separate modules. Like For macOS we could fake it by looking for "AndroidAP" in the network name. Anyone know the default iOS SSID? Or how Linux detects it? |
On Linux with NetworkManager users can explicitly mark network as metered, but most of the time NM just guesses. And that guessing involves a few heuristics:
Links to NM code:
|
I've fixed |
|
I currently have the exact same problem for a different project... |
I've merged master in to trigger the CI, as it was stuck for a week. It's all green now. |
Can we make the feature more OS-agnostic and make the public functions in That way the feature doesn't need to be hidden and is always available, but just implemented differently. Until someone looks at the details, it could just look for |
An indirection layer like in the I'm not sure if we want to invent new concepts on OSes that don't have a "metered network" concept - it sounds confusing. I've just checked 3 different Android devices, and none of them uses |
Thanks. Did you see any other pattern in your Android hotspot names? Else macOS can just always return a hardcoded value until we figure something out or they implement it. I'm afraid for now we only have the SSID as data point. |
From what I've seen the default SSID is a name of the device, series, or manufacturer (like "OnePlus", "Redmi", or "ALCATEL ONE TOUCH POP7"). So that's not very helpful :-C |
I was able to get the Normal router:
My phone (note the last line)
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Wrap as OS-independent class/interface (similar to Keyring)
- Add macOS detection for
ANDROID_METERED
I've moved getting network status into a separate classes: one for OSX, one for NetworkManager, and one dummy class when none of those is available. I've also moved listing WiFi networks into those classes, I hope to implement listing networks for NM shortly. |
baa6f32
to
215a483
Compare
I'm not sure what the test failure is really about, I've seen it happen on ubuntu instead of macos for me: https://github.com/ktosiek/vorta/actions/runs/207355280. After last changes both Darwin and NetworkManager implementations support guessing if network is metered and listing WiFi networks. |
Works as expected on macOS. Just fixed some issues with string type. Sometimes tests fail due to some DB race conditions that aren't fully fixed yet. This time they time out, which is new. Will have a closer look. |
Excluded macOS/Darwin tests to not run on Linux. Is that OK? 😜 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice to have network functionality abstracted, even though it adds a fair bit of code.
The tests in Similarly with the NM tests - they should work as long as QtDBus is available, but shouldn't need access to NetworkManager, or even a working bus. |
OK. Unskipping. |
First part of #539 - a backup won't start on a metered connection, but won't stop if the connection status changes later.