Created
November 20, 2024 15:17
-
-
Save 2Grey/773f09f3824b3a40ff6ce816b0be98be to your computer and use it in GitHub Desktop.
Adaptation of wg-json script for AmneziaVPN
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
#!/bin/bash | |
# SPDX-License-Identifier: GPL-2.0 | |
# | |
# Copyright (C) 2015-2020 Jason A. Donenfeld <[email protected]>. All Rights Reserved. | |
exec < <(exec wg show all dump) | |
printf '{' | |
while read -r -d $'\t' device; do | |
if [[ $device != "$last_device" ]]; then | |
[[ -z $last_device ]] && printf '\n' || printf '%s,\n' "$end" | |
last_device="$device" | |
read -r private_key public_key listen_port awg_jc awg_jmin awg_jmax awg_s1 awg_s2 awg_h1 awg_h2 awg_h3 awg_h4 fwmark | |
printf '\t"%s": {' "$device" | |
delim=$'\n' | |
[[ $private_key == "(none)" ]] || { printf '%s\t\t"privateKey": "%s"' "$delim" "$private_key"; delim=$',\n'; } | |
[[ $public_key == "(none)" ]] || { printf '%s\t\t"publicKey": "%s"' "$delim" "$public_key"; delim=$',\n'; } | |
[[ $listen_port == "0" ]] || { printf '%s\t\t"listenPort": %u' "$delim" $(( $listen_port )); delim=$',\n'; } | |
printf '%s\t\t"jc": %u' "$delim" $(( $awg_jc )); delim=$',\n'; | |
printf '%s\t\t"jmin": %u' "$delim" $(( $awg_jmin )); delim=$',\n'; | |
printf '%s\t\t"jmax": %u' "$delim" $(( $awg_jmax )); delim=$',\n'; | |
printf '%s\t\t"s1": %u' "$delim" $(( $awg_s1 )); delim=$',\n'; | |
printf '%s\t\t"s2": %u' "$delim" $(( $awg_s2 )); delim=$',\n'; | |
printf '%s\t\t"h1": %u' "$delim" $(( $awg_h1 )); delim=$',\n'; | |
printf '%s\t\t"h2": %u' "$delim" $(( $awg_h2 )); delim=$',\n'; | |
printf '%s\t\t"h3": %u' "$delim" $(( $awg_h3 )); delim=$',\n'; | |
printf '%s\t\t"h4": %u' "$delim" $(( $awg_h4 )); delim=$',\n'; | |
[[ $fwmark == "off" ]] || { printf '%s\t\t"fwmark": %u' "$delim" $(( $fwmark )); delim=$',\n'; } | |
printf '%s\t\t"peers": {' "$delim"; end=$'\n\t\t}\n\t}' | |
delim=$'\n' | |
else | |
read -r public_key preshared_key endpoint allowed_ips latest_handshake transfer_rx transfer_tx persistent_keepalive | |
printf '%s\t\t\t"%s": {' "$delim" "$public_key" | |
delim=$'\n' | |
[[ $preshared_key == "(none)" ]] || { printf '%s\t\t\t\t"presharedKey": "%s"' "$delim" "$preshared_key"; delim=$',\n'; } | |
[[ $endpoint == "(none)" ]] || { printf '%s\t\t\t\t"endpoint": "%s"' "$delim" "$endpoint"; delim=$',\n'; } | |
[[ $latest_handshake == "0" ]] || { printf '%s\t\t\t\t"latestHandshake": %u' "$delim" $(( $latest_handshake )); delim=$',\n'; } | |
[[ $transfer_rx == "0" ]] || { printf '%s\t\t\t\t"transferRx": %u' "$delim" $(( $transfer_rx )); delim=$',\n'; } | |
[[ $transfer_tx == "0" ]] || { printf '%s\t\t\t\t"transferTx": %u' "$delim" $(( $transfer_tx )); delim=$',\n'; } | |
[[ $persistent_keepalive == "off" ]] || { printf '%s\t\t\t\t"persistentKeepalive": %u' "$delim" $(( $persistent_keepalive )); delim=$',\n'; } | |
printf '%s\t\t\t\t"allowedIps": [' "$delim" | |
delim=$'\n' | |
if [[ $allowed_ips != "(none)" ]]; then | |
old_ifs="$IFS" | |
IFS=, | |
for ip in $allowed_ips; do | |
printf '%s\t\t\t\t\t"%s"' "$delim" "$ip" | |
delim=$',\n' | |
done | |
IFS="$old_ifs" | |
delim=$'\n' | |
fi | |
printf '%s\t\t\t\t]' "$delim" | |
printf '\n\t\t\t}' | |
delim=$',\n' | |
fi | |
done | |
printf '%s\n' "$end" | |
printf '}\n' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment