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

Last change on this file since 275 was 258, checked in by alloc, 9 years ago

Scripts: License

File size: 3.5 KB
Line 
1#!/bin/bash
2
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
18PLAYERSXML=$(getInstancePath $1)/players.xml
19PLAYERSLOG=$(getInstancePath $1)/logs/$(date '+%Y-%m-%d_%H-%M-%S')_players.log
20
21timestamp() {
22 date '+%Y.%m.%d %H:%M:%S'
23}
24
25# Create empty player list if not existing
26createPlayerList() {
27 if [ ! -f "$PLAYERSXML" ]; then
28 echo "<Players/>" > $PLAYERSXML
29 fi
30 if [ -z "$(cat $PLAYERSXML)" ]; then
31 echo "<Players/>" > $PLAYERSXML
32 fi
33}
34
35# Set all players for an instance to offline (on startup/shutdown)
36setAllPlayersOffline() {
37 createPlayerList
38 $XMLSTARLET ed -L \
39 -u "/Players/Player/@online" -v "false" \
40 "$PLAYERSXML"
41 rm $(getInstancePath $INSTANCE)/logs/current_players.log
42 ln -s $PLAYERSLOG $(getInstancePath $INSTANCE)/logs/current_players.log
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
51logPlayerConnect() {
52 local ENTITYID="$2"
53 local NICKNAME="$3"
54 local STEAMID="$4"
55 local IP="$5"
56
57 echo "$(timestamp) +++ $ENTITYID $NICKNAME $STEAMID $IP" >> "$PLAYERSLOG"
58
59 createPlayerList
60
61 XPATHBASE="/Players/Player[@steamid='$STEAMID']"
62
63 if [ -z $($XMLSTARLET sel -t -v "$XPATHBASE/@steamid" "$PLAYERSXML") ]; then
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" \
73 -i "$XPATHBASE" -t attr -n "lastIp" -v "$IP" \
74 "$PLAYERSXML"
75 else
76 LOGINS=$($XMLSTARLET sel -t -v "$XPATHBASE/@logins" "$PLAYERSXML")
77 (( LOGINS++ ))
78 $XMLSTARLET ed -L \
79 -u "$XPATHBASE/@lastlogin" -v "$(date '+%s')" \
80 -u "$XPATHBASE/@online" -v "true" \
81 -u "$XPATHBASE/@nick" -v "$NICKNAME" \
82 -u "$XPATHBASE/@entityid" -v "$ENTITYID" \
83 -u "$XPATHBASE/@logins" -v "$LOGINS" \
84 -u "$XPATHBASE/@lastIp" -v "$IP" \
85 "$PLAYERSXML"
86 fi
87}
88
89# Handle a player disconnect for logging/tracking
90# Params:
91# 1: Instance name
92# 2: Entity ID
93logPlayerDisconnect() {
94 ENTITYID="$2"
95
96 createPlayerList
97
98 XPATHBASE="/Players/Player[@entityid='$ENTITYID'][@online='true']"
99
100 if [ -f $PLAYERSXML ]; then
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")
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" \
111 "$PLAYERSXML"
112 fi
113 fi
114
115 echo "$(timestamp) --- $ENTITYID $NICKNAME $STEAMID" >> "$PLAYERSLOG"
116}
117
Note: See TracBrowser for help on using the repository browser.