Last active
November 17, 2024 21:46
-
-
Save cdown/1163649 to your computer and use it in GitHub Desktop.
Bash urlencode and urldecode
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
urlencode() { | |
# urlencode <string> | |
old_lc_collate=$LC_COLLATE | |
LC_COLLATE=C | |
local length="${#1}" | |
for (( i = 0; i < length; i++ )); do | |
local c="${1:$i:1}" | |
case $c in | |
[a-zA-Z0-9.~_-]) printf '%s' "$c" ;; | |
*) printf '%%%02X' "'$c" ;; | |
esac | |
done | |
LC_COLLATE=$old_lc_collate | |
} | |
urldecode() { | |
# urldecode <string> | |
local url_encoded="${1//+/ }" | |
printf '%b' "${url_encoded//%/\\x}" | |
} |
@ThePredators works like a charm 👍
Hi,
Characters used in France are not taken into account: (é è à ù ê â û ...) if you work in fr_FR locale.
You need to convert your data source from Windows-1252 to UTF-8 before entering in the function ::
data_utf8=$(echo "$data_ISO" | iconv -f iso8859-1 -t utf-8)
#!/bin/bash
## Written by Adam Danischewski 08/04/2024
declare CURR_ORD
str="${1:-😄.mp4}"
function ord() {
printf -v CURR_ORD "%d" "\"$1"
}
function has_unicode() {
local input="$1"
local -i charcnt=$(wc -m <<<"$input")
local -i bytecnt=$(wc -c <<<"$input")
((charcnt!=bytecnt))
return $?
}
function urlencode() {
sed "s/\x25/%25/g;s/\x20/%20/g;s/\x21/%21/g;s/\x22/%22/g;s/\x23/%23/g;s/\x5c\x24/%24/g;\
s/\x26/%26/g;s/\x27/%27/g;s/\x28/%28/g;s/\x29/%29/g;s/\x2A/%2A/g;s/\x2B/%2B/g;\
s/\x2C/%2C/g;s/\x2D/%2D/g;s/\x3A/%3A/g;s/\x3F/%3F/g;s/\x7C/%7C/g;s/\x5c\x5B/%5B/g"
}
function encode_unicode() {
for ((i=0;i<${#str};i++)); do
char=${str:i:1}
ord "$char"
if ((${#CURR_ORD}>3)); then
od -t x1 <<< "$char" | awk '{$1="";gsub("^[[:space:]]*","");for(i=1;i<NF;i++) printf "%%" toupper($i);}'
else
printf "%s" "$char"
fi
done
}
## Tokenize percents before encoding unicode
function tokenize_orig_pcts() {
sed 's/%/\x01/g'
}
## Tokenize percents after encoding unicode, since this is urlencoded..
function tokenize_pcts() {
sed 's/%/\x02/g'
}
function detokenize_orig_pcts() {
sed 's/\x01/%/g'
}
function detokenize_pcts() {
sed 's/\x02/%/g'
}
function urlencode() {
sed "s/\x25/%25/g;s/\x20/%20/g;s/\x21/%21/g;s/\x22/%22/g;s/\x23/%23/g;s/\x5c\x24/%24/g;\
s/\x26/%26/g;s/\x27/%27/g;s/\x28/%28/g;s/\x29/%29/g;s/\x2A/%2A/g;s/\x2B/%2B/g;\
s/\x2C/%2C/g;s/\x3A/%3A/g;s/\x3F/%3F/g;s/\x7C/%7C/g;s/\x5c\x5B/%5B/g"
}
function main() {
if has_unicode "$str"; then
str=$(tokenize_orig_pcts <<< "$str")
str=$(encode_unicode)
str=$(tokenize_pcts <<< "$str")
str=$(detokenize_orig_pcts <<< "$str")
str=$(urlencode <<< "$str")
detokenize_pcts <<< "$str"
else
urlencode <<< "$str"
fi
}
main
This matches (according to my tests) the output from: jq -jRr '@uri'
Great functions 👍
Unfortunately none of the decode options work with German Umlauts:
Example:
Encode: Günther -> G%FCnther
Decode: G%FCnther -> G�nther
It seems to be something with the encoding. I tried to add "| iconv -f iso8859-1 -t utf-8" as @Twibow says to the decode function from start post but it changes nothing.
Any help appreciated 😄
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@ThePredators this breaks on unicode
see my updated answer