[17] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
[258] | 3 | # Copyright 2016 Christian 'Alloc' Illy
|
---|
| 4 | #
|
---|
| 5 | # Licensed under the Apache License, Version 2.0 (the "License");
|
---|
| 6 | # you may not use this file except in compliance with the License.
|
---|
| 7 | # You may obtain a copy of the License at
|
---|
| 8 | #
|
---|
| 9 | # http://www.apache.org/licenses/LICENSE-2.0
|
---|
| 10 | #
|
---|
| 11 | # Unless required by applicable law or agreed to in writing, software
|
---|
| 12 | # distributed under the License is distributed on an "AS IS" BASIS,
|
---|
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
---|
| 14 | # See the License for the specific language governing permissions and
|
---|
| 15 | # limitations under the License.
|
---|
| 16 |
|
---|
| 17 |
|
---|
[67] | 18 | PLAYERSXML=$(getInstancePath $1)/players.xml
|
---|
| 19 | PLAYERSLOG=$(getInstancePath $1)/logs/$(date '+%Y-%m-%d_%H-%M-%S')_players.log
|
---|
| 20 |
|
---|
[17] | 21 | timestamp() {
|
---|
| 22 | date '+%Y.%m.%d %H:%M:%S'
|
---|
| 23 | }
|
---|
| 24 |
|
---|
| 25 | # Create empty player list if not existing
|
---|
| 26 | createPlayerList() {
|
---|
[71] | 27 | if [ ! -f "$PLAYERSXML" ]; then
|
---|
[67] | 28 | echo "<Players/>" > $PLAYERSXML
|
---|
[17] | 29 | fi
|
---|
[71] | 30 | if [ -z "$(cat $PLAYERSXML)" ]; then
|
---|
| 31 | echo "<Players/>" > $PLAYERSXML
|
---|
| 32 | fi
|
---|
[17] | 33 | }
|
---|
| 34 |
|
---|
| 35 | # Set all players for an instance to offline (on startup/shutdown)
|
---|
| 36 | setAllPlayersOffline() {
|
---|
[67] | 37 | createPlayerList
|
---|
[17] | 38 | $XMLSTARLET ed -L \
|
---|
| 39 | -u "/Players/Player/@online" -v "false" \
|
---|
[71] | 40 | "$PLAYERSXML"
|
---|
[87] | 41 | rm $(getInstancePath $INSTANCE)/logs/current_players.log
|
---|
| 42 | ln -s $PLAYERSLOG $(getInstancePath $INSTANCE)/logs/current_players.log
|
---|
[17] | 43 | }
|
---|
| 44 |
|
---|
| 45 | # Handle a player connect for logging/tracking
|
---|
| 46 | # Params:
|
---|
| 47 | # 1: Instance name
|
---|
| 48 | # 2: Entity ID
|
---|
| 49 | # 3: Steam ID
|
---|
| 50 | # 4: Nick name
|
---|
| 51 | logPlayerConnect() {
|
---|
[87] | 52 | local ENTITYID="$2"
|
---|
| 53 | local NICKNAME="$3"
|
---|
| 54 | local STEAMID="$4"
|
---|
| 55 | local IP="$5"
|
---|
[17] | 56 |
|
---|
[87] | 57 | echo "$(timestamp) +++ $ENTITYID $NICKNAME $STEAMID $IP" >> "$PLAYERSLOG"
|
---|
[17] | 58 |
|
---|
[67] | 59 | createPlayerList
|
---|
[17] | 60 |
|
---|
| 61 | XPATHBASE="/Players/Player[@steamid='$STEAMID']"
|
---|
| 62 |
|
---|
[71] | 63 | if [ -z $($XMLSTARLET sel -t -v "$XPATHBASE/@steamid" "$PLAYERSXML") ]; then
|
---|
[17] | 64 | $XMLSTARLET ed -L \
|
---|
| 65 | -s "/Players" -t elem -n "Player" -v "" \
|
---|
| 66 | -i "/Players/Player[not(@steamid)]" -t attr -n "steamid" -v "$STEAMID" \
|
---|
| 67 | -i "$XPATHBASE" -t attr -n "nick" -v "$NICKNAME" \
|
---|
| 68 | -i "$XPATHBASE" -t attr -n "playtime" -v "0" \
|
---|
| 69 | -i "$XPATHBASE" -t attr -n "logins" -v "1" \
|
---|
| 70 | -i "$XPATHBASE" -t attr -n "lastlogin" -v "$(date '+%s')" \
|
---|
| 71 | -i "$XPATHBASE" -t attr -n "online" -v "true" \
|
---|
| 72 | -i "$XPATHBASE" -t attr -n "entityid" -v "$ENTITYID" \
|
---|
[87] | 73 | -i "$XPATHBASE" -t attr -n "lastIp" -v "$IP" \
|
---|
[71] | 74 | "$PLAYERSXML"
|
---|
[17] | 75 | else
|
---|
[71] | 76 | LOGINS=$($XMLSTARLET sel -t -v "$XPATHBASE/@logins" "$PLAYERSXML")
|
---|
[17] | 77 | (( LOGINS++ ))
|
---|
| 78 | $XMLSTARLET ed -L \
|
---|
| 79 | -u "$XPATHBASE/@lastlogin" -v "$(date '+%s')" \
|
---|
| 80 | -u "$XPATHBASE/@online" -v "true" \
|
---|
[217] | 81 | -u "$XPATHBASE/@nick" -v "$NICKNAME" \
|
---|
[17] | 82 | -u "$XPATHBASE/@entityid" -v "$ENTITYID" \
|
---|
| 83 | -u "$XPATHBASE/@logins" -v "$LOGINS" \
|
---|
[87] | 84 | -u "$XPATHBASE/@lastIp" -v "$IP" \
|
---|
[71] | 85 | "$PLAYERSXML"
|
---|
[17] | 86 | fi
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | # Handle a player disconnect for logging/tracking
|
---|
| 90 | # Params:
|
---|
| 91 | # 1: Instance name
|
---|
| 92 | # 2: Entity ID
|
---|
| 93 | logPlayerDisconnect() {
|
---|
[63] | 94 | ENTITYID="$2"
|
---|
[17] | 95 |
|
---|
[67] | 96 | createPlayerList
|
---|
[17] | 97 |
|
---|
| 98 | XPATHBASE="/Players/Player[@entityid='$ENTITYID'][@online='true']"
|
---|
| 99 |
|
---|
[67] | 100 | if [ -f $PLAYERSXML ]; then
|
---|
[71] | 101 | if [ ! -z $($XMLSTARLET sel -t -v "$XPATHBASE/@steamid" "$PLAYERSXML") ]; then
|
---|
| 102 | NICKNAME=$($XMLSTARLET sel -t -v "$XPATHBASE/@nick" "$PLAYERSXML")
|
---|
| 103 | STEAMID=$($XMLSTARLET sel -t -v "$XPATHBASE/@steamid" "$PLAYERSXML")
|
---|
| 104 | LOGINTIME=$($XMLSTARLET sel -t -v "$XPATHBASE/@lastlogin" "$PLAYERSXML")
|
---|
| 105 | PLAYTIME=$($XMLSTARLET sel -t -v "$XPATHBASE/@playtime" "$PLAYERSXML")
|
---|
[17] | 106 | NOW=$(date '+%s')
|
---|
| 107 | PLAYTIME=$(( PLAYTIME + NOW - LOGINTIME ))
|
---|
| 108 | $XMLSTARLET ed -L \
|
---|
| 109 | -u "$XPATHBASE/@playtime" -v "$PLAYTIME" \
|
---|
| 110 | -u "$XPATHBASE/@online" -v "false" \
|
---|
[71] | 111 | "$PLAYERSXML"
|
---|
[17] | 112 | fi
|
---|
| 113 | fi
|
---|
| 114 |
|
---|
[71] | 115 | echo "$(timestamp) --- $ENTITYID $NICKNAME $STEAMID" >> "$PLAYERSLOG"
|
---|
[17] | 116 | }
|
---|
| 117 |
|
---|