diff options
Diffstat (limited to 'mastodon')
-rw-r--r-- | mastodon/Mastodon.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mastodon/Mastodon.py b/mastodon/Mastodon.py index 38c9c75..dbf1ff2 100644 --- a/mastodon/Mastodon.py +++ b/mastodon/Mastodon.py | |||
@@ -132,6 +132,7 @@ class Mastodon: | |||
132 | __DICT_VERSION_ACTIVITY = "2.1.2" | 132 | __DICT_VERSION_ACTIVITY = "2.1.2" |
133 | __DICT_VERSION_REPORT = "1.1.0" | 133 | __DICT_VERSION_REPORT = "1.1.0" |
134 | __DICT_VERSION_PUSH = "2.4.0" | 134 | __DICT_VERSION_PUSH = "2.4.0" |
135 | __DICT_VERSION_PUSH_NOTIF = "2.4.0" | ||
135 | 136 | ||
136 | ### | 137 | ### |
137 | # Registering apps | 138 | # Registering apps |
@@ -1609,13 +1610,14 @@ class Mastodon: | |||
1609 | 1610 | ||
1610 | return priv_dict, pub_dict | 1611 | return priv_dict, pub_dict |
1611 | 1612 | ||
1613 | @api_version("2.4.0", "2.4.0", __DICT_VERSION_PUSH_NOTIF) | ||
1612 | def push_subscription_decrypt_push(self, data, decrypt_params, encryption_header, crypto_key_header): | 1614 | def push_subscription_decrypt_push(self, data, decrypt_params, encryption_header, crypto_key_header): |
1613 | """ | 1615 | """ |
1614 | Decrypts `data` received in a webpush request. Requires the private key dict | 1616 | Decrypts `data` received in a webpush request. Requires the private key dict |
1615 | from `push_subscription_generate_keys()`_ (`decrypt_params`) as well as the | 1617 | from `push_subscription_generate_keys()`_ (`decrypt_params`) as well as the |
1616 | Encryption and server Crypto-Key headers from the received webpush | 1618 | Encryption and server Crypto-Key headers from the received webpush |
1617 | 1619 | ||
1618 | Returns the decoded webpush. | 1620 | Returns the decoded webpush as a `push notification dict`_. |
1619 | """ | 1621 | """ |
1620 | salt = self.__decode_webpush_b64(encryption_header.split("salt=")[1].strip()) | 1622 | salt = self.__decode_webpush_b64(encryption_header.split("salt=")[1].strip()) |
1621 | dhparams = self.__decode_webpush_b64(crypto_key_header.split("dh=")[1].split(";")[0].strip()) | 1623 | dhparams = self.__decode_webpush_b64(crypto_key_header.split("dh=")[1].split(";")[0].strip()) |