This repository was archived by the owner on Nov 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 203
Decode feature flags for protonvpn s
#368
Open
marcel-engelke
wants to merge
5
commits into
Rafficer:master
Choose a base branch
from
marcel-engelke:367-protonvpn-s
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
5cfabb6
fix(#367): decode server feature bit flags
marcel-engelke 92353fc
refactor(#367): use new fn with dialog
marcel-engelke d5b8465
refactor(#367): use new fn with 2nd dialog
marcel-engelke ca6261b
Add IPv6 to server features
zPhoeniqz e749309
Merge pull request #2 from zPhoeniqz/367-protonvpn-s
marcel-engelke File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -115,11 +115,13 @@ def get_servers(): | |
| # Sort server IDs by Tier | ||
| return [server for server in servers if server["Tier"] <= user_tier and server["Status"] == 1] # noqa | ||
|
|
||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @marcel-engelke Are these extra linefeeds necessary? |
||
| def get_server_value(servername, key, servers): | ||
| """Return the value of a key for a given server.""" | ||
| value = [server[key] for server in servers if server['Name'] == servername] | ||
| return value[0] | ||
|
|
||
|
|
||
| def get_server_features(servername, servers): | ||
| """Decode server feature bit flags and return feature strings in list""" | ||
| feat = int(get_server_value(servername, "Features", servers)) | ||
|
|
@@ -129,6 +131,7 @@ def get_server_features(servername, servers): | |
| server_features.append(SERVER_FEATURES[bit_flag]) | ||
| return server_features | ||
|
|
||
|
|
||
| def get_config_value(group, key): | ||
| """Return specific value from CONFIG_FILE as string""" | ||
| config = configparser.ConfigParser() | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
@marcel-engelke Is this variable rename necessary? It forces 3 other changes that are not code fixes per se. (maybe these little 'extras' are blocking a good review and merge?)