refactor: replaced steamID3/steamID64 conversation algorithm

This commit is contained in:
GenZmeY 2020-08-17 01:12:51 +03:00
parent 0c13ad296f
commit 6c2a62ebdc
4 changed files with 33 additions and 23 deletions

View File

@ -43,7 +43,7 @@ readonly InstanceConfigTemplate="/etc/kf2-srv/instance.conf.template"
readonly AppServerNum="232130" readonly AppServerNum="232130"
readonly AppClientNum="232090" readonly AppClientNum="232090"
readonly StrangeConstUID="17825793" readonly SteamConstB='17825793'
readonly ServerBotLogin="srvbot" readonly ServerBotLogin="srvbot"
declare -a DiffNames declare -a DiffNames

View File

@ -108,7 +108,7 @@ function ban_ID3 () # $1: ID3
do do
( (
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini" local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini"
local BanStr="(Uid=(A=$ID3,B=$StrangeConstUID))" local BanStr="(Uid=(A=$ID3,B=$SteamConstB))"
local Service=$(service_name "$Instance") local Service=$(service_name "$Instance")
if ! multini -gq "$Config" "Engine.AccessControl" "BannedIDs" "$BanStr"; then if ! multini -gq "$Config" "Engine.AccessControl" "BannedIDs" "$BanStr"; then
echo "Add ban $ID3 to $Instance" echo "Add ban $ID3 to $Instance"
@ -137,7 +137,7 @@ function unban_ID3 () # $1: ID3
do do
( (
local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini" local Config="$InstanceConfigDir/$Instance/LinuxServer-KFGame.ini"
local BanStr="(Uid=(A=$ID3,B=$StrangeConstUID))" local BanStr="(Uid=(A=$ID3,B=$SteamConstB))"
local Service=$(service_name "$Instance") local Service=$(service_name "$Instance")
if systemctl -q is-active $Service ; then if systemctl -q is-active $Service ; then
local PlainID=0 local PlainID=0

View File

@ -19,35 +19,42 @@
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>. # along with this program. If not, see <https://www.gnu.org/licenses/>.
# conversion algorithm taken from here: # WARNING:
# https://github.com/noobient/killinuxfloor/blob/master/share/killinuxfloor # Conversion works correctly for positive A/B for EGS,
# thank bviktor for that :) # but still gives incorrect results if there are negative ones
function steamID3_to_steamID64 () # $1: ID3
function steamID3_to_steamID64 () # $1: ID3 (A), $2: B
{ {
# steamID64 = "7656" + (steamID3 + 1197960265728) local ID3="$1"
ID64=$1 if [[ -z $2 ]]; then
((ID64+=1197960265728)) local B="$SteamConstB"
ID64="7656${ID64}" else
echo "$ID64" local B="$2"
fi
# SteamID64=B*2^32+SteamID3
echo $(($B*(2**32)+$ID3))
} }
function steamID64_to_steamID3 () # $1: ID4 function steamID64_to_steamID3 () # $1: ID64, $2: B
{ {
# steamID3 = substr(steamID64, 4) - 1197960265728 local ID64="$1"
ID3=${1:4} if [[ -z $2 ]]; then
((ID3-=1197960265728)) local B="$SteamConstB"
echo "$ID3" else
local B="$2"
fi
# SteamID3=SteamID64-B*2^32
echo $(($ID64-$B*(2**32)))
} }
function any_to_ID3 () # $1: ID3/ID64/Url function any_to_ID3 () # $1: ID3/ID64/Url
{ {
if echo "$1" | grep -qP '^http.+'; then if echo "$1" | grep -qP '^http.+'; then
local Xml=$(mktemp) local ID64=$(curl -ss "$1/?xml=1" | xmllint --xpath 'string(//steamID64/text())' -)
curl -ss "$1/?xml=1" > "$Xml"
local ID64=$(xmllint --xpath 'string(//steamID64/text())' "$Xml")
local ID3=$(steamID64_to_steamID3 "$ID64") local ID3=$(steamID64_to_steamID3 "$ID64")
rm -f "$Xml" elif [[ $(echo "$1" | wc -m) -eq 18 ]] && echo "$1" | grep -qP '^7656[0-9]+' ; then
elif [[ $(echo "$1" | wc -m) -eq 18 ]] && echo "$1" | grep -qP '^76561[0-9]+' ; then
local ID3=$(steamID64_to_steamID3 "$1") local ID3=$(steamID64_to_steamID3 "$1")
else else
local ID3="$1" local ID3="$1"

View File

@ -1,7 +1,7 @@
%global steamuser steam %global steamuser steam
Name: kf2-srv Name: kf2-srv
Version: 0.15.3 Version: 0.15.4
Release: 1%{dist} Release: 1%{dist}
Summary: Killing Floor 2 server Summary: Killing Floor 2 server
Group: Amusements/Games Group: Amusements/Games
@ -101,6 +101,9 @@ if [[ $1 == 1 ]]; then # Install
fi fi
%changelog %changelog
* Sat Aug 15 2020 GenZmeY <genzmey@gmail.com> - 0.15.4-1
- replaced steamID3/steamID64 conversation algorithm.
* Sat Aug 15 2020 GenZmeY <genzmey@gmail.com> - 0.15.3-1 * Sat Aug 15 2020 GenZmeY <genzmey@gmail.com> - 0.15.3-1
- fix 'find: Failed to restore initial working directory'. - fix 'find: Failed to restore initial working directory'.