Last active
October 31, 2024 13:20
-
-
Save ryardley/64816f5097003a35f9726aab676920d0 to your computer and use it in GitHub Desktop.
PlantUML url encryption decoder
This file contains 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
# Forked from https://gist.github.com/dyno/94ef6bb9644a88d6981d6a1a9eb70802 | |
# https://plantuml.com/text-encoding | |
# https://github.com/dougn/python-plantuml/blob/master/plantuml.py#L64 | |
import zlib | |
import base64 | |
import string | |
plantuml_alphabet = string.digits + \ | |
string.ascii_uppercase + string.ascii_lowercase + '-_' | |
base64_alphabet = string.ascii_uppercase + \ | |
string.ascii_lowercase + string.digits + '+/' | |
b64_to_plantuml = bytes.maketrans(base64_alphabet.encode( | |
'utf-8'), plantuml_alphabet.encode('utf-8')) | |
plantuml_to_b64 = bytes.maketrans(plantuml_alphabet.encode( | |
'utf-8'), base64_alphabet.encode('utf-8')) | |
def plantuml_encode(plantuml_text): | |
"""zlib compress the plantuml text and encode it for the plantuml server""" | |
zlibbed_str = zlib.compress(plantuml_text.encode('utf-8')) | |
compressed_string = zlibbed_str[2:-4] | |
return base64.b64encode(compressed_string).translate(b64_to_plantuml).decode('utf-8') | |
def plantuml_decode(plantuml_url): | |
"""decode plantuml encoded url back to plantuml text""" | |
data = base64.b64decode(plantuml_url.translate( | |
plantuml_to_b64).encode("utf-8")) | |
dec = zlib.decompressobj() # without check the crc. | |
header = b'x\x9c' | |
return dec.decompress(header + data).decode("utf-8") | |
url = "SyfFKj2rKt3CoKnELR1Io4ZDoSa700==" | |
print(plantuml_decode(url)) | |
print(plantuml_encode(plantuml_decode(url))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment