source: scripts/usr/local/lib/7dtd/playerlog.sh@ 400

Last change on this file since 400 was 294, checked in by alloc, 8 years ago

Scripts 103

File size: 3.7 KB
RevLine 
[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]18PLAYERSXML=$(getInstancePath $1)/players.xml
19PLAYERSLOG=$(getInstancePath $1)/logs/$(date '+%Y-%m-%d_%H-%M-%S')_players.log
20
[17]21timestamp() {
22 date '+%Y.%m.%d %H:%M:%S'
23}
24
25# Create empty player list if not existing
26createPlayerList() {
[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)
36setAllPlayersOffline() {
[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
[294]51# 5: IP
52# 6: Steam Owner ID
[17]53logPlayerConnect() {
[87]54 local ENTITYID="$2"
55 local NICKNAME="$3"
56 local STEAMID="$4"
57 local IP="$5"
[294]58 local OWNERID="$6"
[17]59
[294]60 echo "$(timestamp) +++ $ENTITYID $NICKNAME $STEAMID $IP $OWNERID" >> "$PLAYERSLOG"
[17]61
[67]62 createPlayerList
[17]63
64 XPATHBASE="/Players/Player[@steamid='$STEAMID']"
65
[71]66 if [ -z $($XMLSTARLET sel -t -v "$XPATHBASE/@steamid" "$PLAYERSXML") ]; then
[17]67 $XMLSTARLET ed -L \
68 -s "/Players" -t elem -n "Player" -v "" \
69 -i "/Players/Player[not(@steamid)]" -t attr -n "steamid" -v "$STEAMID" \
70 -i "$XPATHBASE" -t attr -n "nick" -v "$NICKNAME" \
71 -i "$XPATHBASE" -t attr -n "playtime" -v "0" \
72 -i "$XPATHBASE" -t attr -n "logins" -v "1" \
73 -i "$XPATHBASE" -t attr -n "lastlogin" -v "$(date '+%s')" \
74 -i "$XPATHBASE" -t attr -n "online" -v "true" \
75 -i "$XPATHBASE" -t attr -n "entityid" -v "$ENTITYID" \
[87]76 -i "$XPATHBASE" -t attr -n "lastIp" -v "$IP" \
[294]77 -i "$XPATHBASE" -t attr -n "steamOwner" -v "$OWNERID" \
[71]78 "$PLAYERSXML"
[17]79 else
[71]80 LOGINS=$($XMLSTARLET sel -t -v "$XPATHBASE/@logins" "$PLAYERSXML")
[17]81 (( LOGINS++ ))
82 $XMLSTARLET ed -L \
83 -u "$XPATHBASE/@lastlogin" -v "$(date '+%s')" \
84 -u "$XPATHBASE/@online" -v "true" \
[217]85 -u "$XPATHBASE/@nick" -v "$NICKNAME" \
[17]86 -u "$XPATHBASE/@entityid" -v "$ENTITYID" \
87 -u "$XPATHBASE/@logins" -v "$LOGINS" \
[87]88 -u "$XPATHBASE/@lastIp" -v "$IP" \
[294]89 -u "$XPATHBASE/@steamOwner" -v "$OWNERID" \
[71]90 "$PLAYERSXML"
[17]91 fi
92}
93
94# Handle a player disconnect for logging/tracking
95# Params:
96# 1: Instance name
97# 2: Entity ID
98logPlayerDisconnect() {
[63]99 ENTITYID="$2"
[17]100
[67]101 createPlayerList
[17]102
103 XPATHBASE="/Players/Player[@entityid='$ENTITYID'][@online='true']"
104
[67]105 if [ -f $PLAYERSXML ]; then
[71]106 if [ ! -z $($XMLSTARLET sel -t -v "$XPATHBASE/@steamid" "$PLAYERSXML") ]; then
107 NICKNAME=$($XMLSTARLET sel -t -v "$XPATHBASE/@nick" "$PLAYERSXML")
108 STEAMID=$($XMLSTARLET sel -t -v "$XPATHBASE/@steamid" "$PLAYERSXML")
109 LOGINTIME=$($XMLSTARLET sel -t -v "$XPATHBASE/@lastlogin" "$PLAYERSXML")
110 PLAYTIME=$($XMLSTARLET sel -t -v "$XPATHBASE/@playtime" "$PLAYERSXML")
[17]111 NOW=$(date '+%s')
112 PLAYTIME=$(( PLAYTIME + NOW - LOGINTIME ))
113 $XMLSTARLET ed -L \
114 -u "$XPATHBASE/@playtime" -v "$PLAYTIME" \
115 -u "$XPATHBASE/@online" -v "false" \
[71]116 "$PLAYERSXML"
[17]117 fi
118 fi
119
[71]120 echo "$(timestamp) --- $ENTITYID $NICKNAME $STEAMID" >> "$PLAYERSLOG"
[17]121}
122
Note: See TracBrowser for help on using the repository browser.