2019-05-29 17:55:35 -04:00
|
|
|
|
using SharedLibraryCore.Localization;
|
2018-11-05 22:01:29 -05:00
|
|
|
|
using System;
|
2017-11-25 20:29:58 -05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using System.Linq;
|
2019-03-24 22:34:20 -04:00
|
|
|
|
using System.Text.RegularExpressions;
|
2017-11-25 20:29:58 -05:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2018-11-05 22:01:29 -05:00
|
|
|
|
namespace SharedLibraryCore.Database.Models
|
2017-11-29 19:35:50 -05:00
|
|
|
|
{
|
2018-11-05 22:01:29 -05:00
|
|
|
|
public partial class EFClient
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
2018-06-30 21:55:16 -04:00
|
|
|
|
public enum ClientState
|
|
|
|
|
{
|
2018-08-27 18:07:54 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// represents when the client has been detected as joining
|
|
|
|
|
/// by the log file, but has not be authenticated by RCon
|
|
|
|
|
/// </summary>
|
2018-06-30 21:55:16 -04:00
|
|
|
|
Connecting,
|
2018-08-27 18:07:54 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// represents when the client has been authenticated by RCon
|
|
|
|
|
/// and validated by the database
|
|
|
|
|
/// </summary>
|
2018-06-30 21:55:16 -04:00
|
|
|
|
Connected,
|
2018-08-27 18:07:54 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// represents when the client is leaving (either through RCon or log file)
|
|
|
|
|
/// </summary>
|
2018-06-30 21:55:16 -04:00
|
|
|
|
Disconnecting,
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-25 20:29:58 -05:00
|
|
|
|
public enum Permission
|
|
|
|
|
{
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// client has been banned
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
Banned = -1,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// default client state upon first connect
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
User = 0,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// client has been flagged
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
Flagged = 1,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// client is trusted
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
Trusted = 2,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// client is a moderator
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
Moderator = 3,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// client is an administrator
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
Administrator = 4,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// client is a senior administrator
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
SeniorAdmin = 5,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// client is a owner
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
Owner = 6,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// not used
|
|
|
|
|
/// </summary>
|
2017-11-25 20:29:58 -05:00
|
|
|
|
Creator = 7,
|
2018-09-02 17:59:27 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// reserved for default account
|
|
|
|
|
/// </summary>
|
2018-08-03 22:11:58 -04:00
|
|
|
|
Console = 8
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-05 22:01:29 -05:00
|
|
|
|
public EFClient()
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
|
|
|
|
ConnectionTime = DateTime.UtcNow;
|
2017-11-29 19:35:50 -05:00
|
|
|
|
ClientNumber = -1;
|
2018-10-03 22:20:49 -04:00
|
|
|
|
_additionalProperties = new Dictionary<string, object>
|
|
|
|
|
{
|
|
|
|
|
{ "_reportCount", 0 }
|
|
|
|
|
};
|
2019-04-02 21:20:37 -04:00
|
|
|
|
ReceivedPenalties = new List<EFPenalty>();
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
2017-11-29 19:35:50 -05:00
|
|
|
|
|
2018-11-05 22:01:29 -05:00
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
2019-04-06 22:48:49 -04:00
|
|
|
|
return $"{CurrentAlias?.Name ?? "--"}::{NetworkId}";
|
2018-11-05 22:01:29 -05:00
|
|
|
|
}
|
2017-11-25 20:29:58 -05:00
|
|
|
|
|
2019-05-29 17:55:35 -04:00
|
|
|
|
[NotMapped]
|
|
|
|
|
public virtual string Name
|
|
|
|
|
{
|
|
|
|
|
get { return CurrentAlias?.Name ?? "--"; }
|
|
|
|
|
set { if (CurrentAlias != null) CurrentAlias.Name = value; }
|
|
|
|
|
}
|
|
|
|
|
[NotMapped]
|
|
|
|
|
public virtual int? IPAddress
|
|
|
|
|
{
|
|
|
|
|
get { return CurrentAlias.IPAddress; }
|
|
|
|
|
set { CurrentAlias.IPAddress = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[NotMapped]
|
|
|
|
|
public string IPAddressString => IPAddress.ConvertIPtoString();
|
|
|
|
|
[NotMapped]
|
|
|
|
|
public virtual IDictionary<int, long> LinkedAccounts { get; set; }
|
|
|
|
|
|
2018-09-29 15:52:22 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// send a message directly to the connected client
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="message">message content to send to client</param>
|
|
|
|
|
public GameEvent Tell(String message)
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
2018-09-29 15:52:22 -04:00
|
|
|
|
var e = new GameEvent()
|
|
|
|
|
{
|
|
|
|
|
Message = message,
|
|
|
|
|
Target = this,
|
|
|
|
|
Owner = CurrentServer,
|
|
|
|
|
Type = GameEvent.EventType.Tell,
|
|
|
|
|
Data = message
|
|
|
|
|
};
|
|
|
|
|
|
2019-05-02 23:33:38 -04:00
|
|
|
|
CurrentServer?.Manager.GetEventHandler().AddEvent(e);
|
2018-09-29 15:52:22 -04:00
|
|
|
|
return e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// warn a client with given reason
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="warnReason">reason for warn</param>
|
|
|
|
|
/// <param name="sender">client performing the warn</param>
|
2018-11-05 22:01:29 -05:00
|
|
|
|
public GameEvent Warn(String warnReason, EFClient sender)
|
2018-09-29 15:52:22 -04:00
|
|
|
|
{
|
|
|
|
|
var e = new GameEvent()
|
|
|
|
|
{
|
|
|
|
|
Type = GameEvent.EventType.Warn,
|
|
|
|
|
Message = warnReason,
|
2018-10-03 22:20:49 -04:00
|
|
|
|
Data = warnReason,
|
2018-09-29 15:52:22 -04:00
|
|
|
|
Origin = sender,
|
|
|
|
|
Target = this,
|
2018-10-02 13:39:08 -04:00
|
|
|
|
Owner = sender.CurrentServer
|
2018-09-29 15:52:22 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// enforce level restrictions
|
2019-05-02 23:33:38 -04:00
|
|
|
|
if (Level > sender.Level)
|
2018-09-29 15:52:22 -04:00
|
|
|
|
{
|
|
|
|
|
e.FailReason = GameEvent.EventFailReason.Permission;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-03 22:20:49 -04:00
|
|
|
|
else
|
|
|
|
|
{
|
2019-05-02 23:33:38 -04:00
|
|
|
|
Warnings++;
|
2018-10-03 22:20:49 -04:00
|
|
|
|
}
|
2018-09-29 22:49:12 -04:00
|
|
|
|
|
2018-10-02 13:39:08 -04:00
|
|
|
|
sender.CurrentServer.Manager.GetEventHandler().AddEvent(e);
|
2018-09-29 15:52:22 -04:00
|
|
|
|
return e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2018-10-02 13:39:08 -04:00
|
|
|
|
/// clear all warnings for a client
|
2018-09-29 15:52:22 -04:00
|
|
|
|
/// </summary>
|
2018-10-02 13:39:08 -04:00
|
|
|
|
/// <param name="sender">client performing the warn clear</param>
|
2018-09-29 15:52:22 -04:00
|
|
|
|
/// <returns></returns>
|
2018-11-05 22:01:29 -05:00
|
|
|
|
public GameEvent WarnClear(EFClient sender)
|
2018-09-29 15:52:22 -04:00
|
|
|
|
{
|
|
|
|
|
var e = new GameEvent()
|
|
|
|
|
{
|
2018-10-02 13:39:08 -04:00
|
|
|
|
Type = GameEvent.EventType.WarnClear,
|
2018-09-29 15:52:22 -04:00
|
|
|
|
Origin = sender,
|
|
|
|
|
Target = this,
|
2018-10-02 13:39:08 -04:00
|
|
|
|
Owner = sender.CurrentServer
|
2018-09-29 15:52:22 -04:00
|
|
|
|
};
|
|
|
|
|
|
2018-10-02 13:39:08 -04:00
|
|
|
|
// enforce level restrictions
|
2019-05-02 23:33:38 -04:00
|
|
|
|
if (sender.Level <= Level)
|
2018-09-29 15:52:22 -04:00
|
|
|
|
{
|
|
|
|
|
e.FailReason = GameEvent.EventFailReason.Permission;
|
|
|
|
|
return e;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-02 23:33:38 -04:00
|
|
|
|
Warnings = 0;
|
2018-09-29 15:52:22 -04:00
|
|
|
|
|
2018-10-02 13:39:08 -04:00
|
|
|
|
sender.CurrentServer.Manager.GetEventHandler().AddEvent(e);
|
2018-09-29 15:52:22 -04:00
|
|
|
|
return e;
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-29 15:52:22 -04:00
|
|
|
|
/// <summary>
|
2018-10-02 13:39:08 -04:00
|
|
|
|
/// report a client for a given reason
|
2018-09-29 15:52:22 -04:00
|
|
|
|
/// </summary>
|
2018-10-02 13:39:08 -04:00
|
|
|
|
/// <param name="reportReason">reason for the report</param>
|
|
|
|
|
/// <param name="sender">client performing the report</param>
|
2018-09-29 15:52:22 -04:00
|
|
|
|
/// <returns></returns>
|
2018-11-05 22:01:29 -05:00
|
|
|
|
public GameEvent Report(string reportReason, EFClient sender)
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
2018-09-29 15:52:22 -04:00
|
|
|
|
var e = new GameEvent()
|
|
|
|
|
{
|
2018-10-02 13:39:08 -04:00
|
|
|
|
Type = GameEvent.EventType.Report,
|
|
|
|
|
Message = reportReason,
|
|
|
|
|
Data = reportReason,
|
2018-09-29 15:52:22 -04:00
|
|
|
|
Origin = sender,
|
|
|
|
|
Target = this,
|
2018-10-02 13:39:08 -04:00
|
|
|
|
Owner = sender.CurrentServer
|
2018-09-29 15:52:22 -04:00
|
|
|
|
};
|
|
|
|
|
|
2018-10-03 22:20:49 -04:00
|
|
|
|
int reportCount = sender.GetAdditionalProperty<int>("_reportCount");
|
|
|
|
|
|
2019-06-24 12:01:34 -04:00
|
|
|
|
if (Equals(sender))
|
2018-10-02 13:39:08 -04:00
|
|
|
|
{
|
|
|
|
|
e.FailReason = GameEvent.EventFailReason.Invalid;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-03 22:20:49 -04:00
|
|
|
|
else if (reportCount > 2)
|
|
|
|
|
{
|
|
|
|
|
e.FailReason = GameEvent.EventFailReason.Throttle;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 13:39:08 -04:00
|
|
|
|
else if (CurrentServer.Reports.Count(report => (report.Origin.NetworkId == sender.NetworkId &&
|
2019-05-02 23:33:38 -04:00
|
|
|
|
report.Target.NetworkId == NetworkId)) > 0)
|
2018-10-02 13:39:08 -04:00
|
|
|
|
{
|
|
|
|
|
e.FailReason = GameEvent.EventFailReason.Exception;
|
|
|
|
|
}
|
2018-09-29 15:52:22 -04:00
|
|
|
|
|
2018-10-03 22:20:49 -04:00
|
|
|
|
sender.SetAdditionalProperty("_reportCount", reportCount + 1);
|
2018-10-02 13:39:08 -04:00
|
|
|
|
sender.CurrentServer.Manager.GetEventHandler().AddEvent(e);
|
2018-09-29 15:52:22 -04:00
|
|
|
|
return e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// flag a client for a given reason
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="flagReason">reason for flagging</param>
|
|
|
|
|
/// <param name="sender">client performing the flag</param>
|
|
|
|
|
/// <returns>game event for the flag</returns>
|
2019-06-25 19:01:47 -04:00
|
|
|
|
public GameEvent Flag(string flagReason, EFClient sender, TimeSpan? flagLength = null)
|
2018-09-29 15:52:22 -04:00
|
|
|
|
{
|
|
|
|
|
var e = new GameEvent()
|
|
|
|
|
{
|
|
|
|
|
Type = GameEvent.EventType.Flag,
|
|
|
|
|
Origin = sender,
|
|
|
|
|
Data = flagReason,
|
|
|
|
|
Message = flagReason,
|
2019-06-25 19:01:47 -04:00
|
|
|
|
Extra = flagLength,
|
2018-10-02 13:39:08 -04:00
|
|
|
|
Target = this,
|
|
|
|
|
Owner = sender.CurrentServer
|
2018-09-29 15:52:22 -04:00
|
|
|
|
};
|
|
|
|
|
|
2019-05-02 23:33:38 -04:00
|
|
|
|
if (Level >= sender.Level)
|
2018-05-10 01:34:29 -04:00
|
|
|
|
{
|
2018-09-29 15:52:22 -04:00
|
|
|
|
e.FailReason = GameEvent.EventFailReason.Permission;
|
2018-05-10 01:34:29 -04:00
|
|
|
|
}
|
2018-05-08 00:58:46 -04:00
|
|
|
|
|
2019-05-02 23:33:38 -04:00
|
|
|
|
else if (Level == Permission.Flagged)
|
2018-05-04 00:22:10 -04:00
|
|
|
|
{
|
2018-09-29 15:52:22 -04:00
|
|
|
|
e.FailReason = GameEvent.EventFailReason.Invalid;
|
|
|
|
|
}
|
2018-05-04 00:22:10 -04:00
|
|
|
|
|
2018-10-02 13:39:08 -04:00
|
|
|
|
sender.CurrentServer.Manager.GetEventHandler().AddEvent(e);
|
2018-09-29 15:52:22 -04:00
|
|
|
|
return e;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// unflag a client for a given reason
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="unflagReason">reason to unflag a player for</param>
|
|
|
|
|
/// <param name="sender">client performing the unflag</param>
|
|
|
|
|
/// <returns>game event for the un flug</returns>
|
2018-11-05 22:01:29 -05:00
|
|
|
|
public GameEvent Unflag(string unflagReason, EFClient sender)
|
2018-09-29 15:52:22 -04:00
|
|
|
|
{
|
|
|
|
|
var e = new GameEvent()
|
|
|
|
|
{
|
|
|
|
|
Type = GameEvent.EventType.Unflag,
|
|
|
|
|
Origin = sender,
|
2018-10-02 13:39:08 -04:00
|
|
|
|
Target = this,
|
2018-09-29 15:52:22 -04:00
|
|
|
|
Data = unflagReason,
|
|
|
|
|
Message = unflagReason,
|
2018-10-02 13:39:08 -04:00
|
|
|
|
Owner = sender.CurrentServer
|
2018-09-29 15:52:22 -04:00
|
|
|
|
};
|
|
|
|
|
|
2019-05-02 23:33:38 -04:00
|
|
|
|
if (sender.Level <= Level)
|
2018-09-29 15:52:22 -04:00
|
|
|
|
{
|
|
|
|
|
e.FailReason = GameEvent.EventFailReason.Permission;
|
2018-05-10 01:34:29 -04:00
|
|
|
|
}
|
2018-09-29 15:52:22 -04:00
|
|
|
|
|
2019-05-02 23:33:38 -04:00
|
|
|
|
else if (Level != Permission.Flagged)
|
2018-09-29 15:52:22 -04:00
|
|
|
|
{
|
|
|
|
|
e.FailReason = GameEvent.EventFailReason.Invalid;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 13:39:08 -04:00
|
|
|
|
sender.CurrentServer.Manager.GetEventHandler().AddEvent(e);
|
2018-09-29 15:52:22 -04:00
|
|
|
|
return e;
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-29 15:52:22 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// kick a client for the given reason
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="kickReason">reason to kick for</param>
|
|
|
|
|
/// <param name="sender">client performing the kick</param>
|
2018-11-05 22:01:29 -05:00
|
|
|
|
public GameEvent Kick(String kickReason, EFClient sender)
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
2018-09-29 15:52:22 -04:00
|
|
|
|
var e = new GameEvent()
|
|
|
|
|
{
|
|
|
|
|
Type = GameEvent.EventType.Kick,
|
|
|
|
|
Message = kickReason,
|
|
|
|
|
Target = this,
|
|
|
|
|
Origin = sender,
|
|
|
|
|
Data = kickReason,
|
2018-10-02 13:39:08 -04:00
|
|
|
|
Owner = sender.CurrentServer
|
2018-09-29 15:52:22 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// enforce level restrictions
|
2019-05-02 23:33:38 -04:00
|
|
|
|
if (Level > sender.Level)
|
2018-09-29 15:52:22 -04:00
|
|
|
|
{
|
|
|
|
|
e.FailReason = GameEvent.EventFailReason.Permission;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 13:39:08 -04:00
|
|
|
|
sender.CurrentServer.Manager.GetEventHandler().AddEvent(e);
|
2018-09-29 15:52:22 -04:00
|
|
|
|
return e;
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-29 15:52:22 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// temporarily ban a client for the given time span
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="tempbanReason">reason for the temp ban</param>
|
|
|
|
|
/// <param name="banLength">how long the temp ban lasts</param>
|
|
|
|
|
/// <param name="sender">client performing the tempban</param>
|
2018-11-05 22:01:29 -05:00
|
|
|
|
public GameEvent TempBan(String tempbanReason, TimeSpan banLength, EFClient sender)
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
2018-09-29 15:52:22 -04:00
|
|
|
|
var e = new GameEvent()
|
|
|
|
|
{
|
|
|
|
|
Type = GameEvent.EventType.TempBan,
|
|
|
|
|
Message = tempbanReason,
|
2018-10-02 13:39:08 -04:00
|
|
|
|
Data = tempbanReason,
|
2018-09-29 15:52:22 -04:00
|
|
|
|
Origin = sender,
|
|
|
|
|
Target = this,
|
|
|
|
|
Extra = banLength,
|
2018-10-02 13:39:08 -04:00
|
|
|
|
Owner = sender.CurrentServer
|
2018-09-29 15:52:22 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// enforce level restrictions
|
2019-05-02 23:33:38 -04:00
|
|
|
|
if (sender.Level <= Level)
|
2018-09-29 15:52:22 -04:00
|
|
|
|
{
|
|
|
|
|
e.FailReason = GameEvent.EventFailReason.Permission;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 13:39:08 -04:00
|
|
|
|
sender.CurrentServer.Manager.GetEventHandler().AddEvent(e);
|
2018-09-29 15:52:22 -04:00
|
|
|
|
return e;
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-29 15:52:22 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// permanently ban a client
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="banReason">reason for the ban</param>
|
|
|
|
|
/// <param name="sender">client performing the ban</param>
|
2018-12-17 14:45:16 -05:00
|
|
|
|
public GameEvent Ban(String banReason, EFClient sender, bool isEvade)
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
2018-09-29 15:52:22 -04:00
|
|
|
|
var e = new GameEvent()
|
|
|
|
|
{
|
|
|
|
|
Type = GameEvent.EventType.Ban,
|
|
|
|
|
Message = banReason,
|
2018-10-02 13:39:08 -04:00
|
|
|
|
Data = banReason,
|
2018-09-29 15:52:22 -04:00
|
|
|
|
Origin = sender,
|
|
|
|
|
Target = this,
|
2018-12-16 22:16:56 -05:00
|
|
|
|
Owner = sender.CurrentServer,
|
|
|
|
|
Extra = isEvade
|
2018-09-29 15:52:22 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// enforce level restrictions
|
2019-05-02 23:33:38 -04:00
|
|
|
|
if (sender.Level <= Level)
|
2018-09-29 15:52:22 -04:00
|
|
|
|
{
|
|
|
|
|
e.FailReason = GameEvent.EventFailReason.Permission;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 13:39:08 -04:00
|
|
|
|
sender.CurrentServer.Manager.GetEventHandler().AddEvent(e);
|
2018-09-29 15:52:22 -04:00
|
|
|
|
return e;
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-29 15:52:22 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// unban a client
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="unbanReason">reason for the unban</param>
|
|
|
|
|
/// <param name="sender">client performing the unban</param>
|
|
|
|
|
/// <returns></returns>
|
2019-03-24 22:34:20 -04:00
|
|
|
|
public GameEvent Unban(string unbanReason, EFClient sender)
|
2017-11-25 20:29:58 -05:00
|
|
|
|
{
|
2018-09-29 15:52:22 -04:00
|
|
|
|
var e = new GameEvent()
|
|
|
|
|
{
|
|
|
|
|
Type = GameEvent.EventType.Unban,
|
|
|
|
|
Message = unbanReason,
|
|
|
|
|
Data = unbanReason,
|
|
|
|
|
Origin = sender,
|
|
|
|
|
Target = this,
|
2018-10-02 13:39:08 -04:00
|
|
|
|
Owner = sender.CurrentServer
|
2018-09-29 15:52:22 -04:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// enforce level restrictions
|
2019-05-02 23:33:38 -04:00
|
|
|
|
if (Level > sender.Level)
|
2018-09-29 15:52:22 -04:00
|
|
|
|
{
|
|
|
|
|
e.FailReason = GameEvent.EventFailReason.Permission;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 13:39:08 -04:00
|
|
|
|
sender.CurrentServer.Manager.GetEventHandler().AddEvent(e);
|
2018-09-29 15:52:22 -04:00
|
|
|
|
return e;
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
2018-09-29 15:52:22 -04:00
|
|
|
|
|
2019-03-24 22:34:20 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// sets the level of the client
|
|
|
|
|
/// </summary>
|
2019-04-02 21:20:37 -04:00
|
|
|
|
/// <param name="newPermission">new permission to set client to</param>
|
2019-03-24 22:34:20 -04:00
|
|
|
|
/// <param name="sender">user performing the set level</param>
|
|
|
|
|
/// <returns></returns>
|
2019-04-02 21:20:37 -04:00
|
|
|
|
public GameEvent SetLevel(Permission newPermission, EFClient sender)
|
2019-03-24 22:34:20 -04:00
|
|
|
|
{
|
|
|
|
|
var e = new GameEvent()
|
|
|
|
|
{
|
|
|
|
|
Type = GameEvent.EventType.ChangePermission,
|
2019-04-02 21:20:37 -04:00
|
|
|
|
Extra = newPermission,
|
2019-03-24 22:34:20 -04:00
|
|
|
|
Origin = sender,
|
|
|
|
|
Target = this,
|
|
|
|
|
Owner = sender.CurrentServer
|
|
|
|
|
};
|
|
|
|
|
|
2019-05-02 23:33:38 -04:00
|
|
|
|
if (Level > sender.Level)
|
2019-03-24 22:34:20 -04:00
|
|
|
|
{
|
|
|
|
|
e.FailReason = GameEvent.EventFailReason.Permission;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-16 12:32:42 -04:00
|
|
|
|
else if (Level == newPermission)
|
|
|
|
|
{
|
|
|
|
|
e.FailReason = GameEvent.EventFailReason.Invalid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Level = newPermission;
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-24 22:34:20 -04:00
|
|
|
|
sender.CurrentServer.Manager.GetEventHandler().AddEvent(e);
|
|
|
|
|
return e;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-05 22:01:29 -05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Handles any client related logic on connection
|
|
|
|
|
/// </summary>
|
2019-05-29 17:55:35 -04:00
|
|
|
|
public bool OnConnect()
|
2018-11-05 22:01:29 -05:00
|
|
|
|
{
|
|
|
|
|
var loc = Utilities.CurrentLocalization.LocalizationIndex;
|
2018-11-25 21:00:36 -05:00
|
|
|
|
|
2018-12-29 13:43:40 -05:00
|
|
|
|
LastConnection = DateTime.UtcNow;
|
|
|
|
|
Connections += 1;
|
|
|
|
|
|
2018-11-05 22:01:29 -05:00
|
|
|
|
if (Name.Length < 3)
|
|
|
|
|
{
|
|
|
|
|
CurrentServer.Logger.WriteDebug($"Kicking {this} because their name is too short");
|
|
|
|
|
Kick(loc["SERVER_KICK_MINNAME"], Utilities.IW4MAdminClient(CurrentServer));
|
2019-05-29 17:55:35 -04:00
|
|
|
|
return false;
|
2018-11-05 22:01:29 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-24 22:34:20 -04:00
|
|
|
|
if (CurrentServer.Manager.GetApplicationSettings().Configuration()
|
|
|
|
|
.DisallowedClientNames
|
|
|
|
|
?.Any(_name => Regex.IsMatch(Name, _name)) ?? false)
|
2018-11-05 22:01:29 -05:00
|
|
|
|
{
|
|
|
|
|
CurrentServer.Logger.WriteDebug($"Kicking {this} because their name is generic");
|
|
|
|
|
Kick(loc["SERVER_KICK_GENERICNAME"], Utilities.IW4MAdminClient(CurrentServer));
|
2019-05-29 17:55:35 -04:00
|
|
|
|
return false;
|
2018-11-05 22:01:29 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Name.Where(c => char.IsControl(c)).Count() > 0)
|
|
|
|
|
{
|
|
|
|
|
CurrentServer.Logger.WriteDebug($"Kicking {this} because their name contains control characters");
|
|
|
|
|
Kick(loc["SERVER_KICK_CONTROLCHARS"], Utilities.IW4MAdminClient(CurrentServer));
|
2019-05-29 17:55:35 -04:00
|
|
|
|
return false;
|
2018-11-05 22:01:29 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// reserved slots stuff
|
2019-02-01 20:49:25 -05:00
|
|
|
|
// todo: bots don't seem to honor party_maxplayers/sv_maxclients
|
2019-02-03 21:47:05 -05:00
|
|
|
|
if (CurrentServer.MaxClients - (CurrentServer.GetClientsAsList().Count(_client => !_client.IsPrivileged() && !_client.IsBot)) < CurrentServer.ServerConfig.ReservedSlotNumber &&
|
2019-02-02 19:54:30 -05:00
|
|
|
|
!this.IsPrivileged() &&
|
|
|
|
|
CurrentServer.GetClientsAsList().Count <= CurrentServer.MaxClients &&
|
|
|
|
|
CurrentServer.MaxClients != 0)
|
2018-11-05 22:01:29 -05:00
|
|
|
|
{
|
|
|
|
|
CurrentServer.Logger.WriteDebug($"Kicking {this} their spot is reserved");
|
|
|
|
|
Kick(loc["SERVER_KICK_SLOT_IS_RESERVED"], Utilities.IW4MAdminClient(CurrentServer));
|
2019-05-29 17:55:35 -04:00
|
|
|
|
return false;
|
2018-11-05 22:01:29 -05:00
|
|
|
|
}
|
2019-05-29 17:55:35 -04:00
|
|
|
|
|
|
|
|
|
return true;
|
2018-11-07 21:30:11 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task OnDisconnect()
|
|
|
|
|
{
|
|
|
|
|
State = ClientState.Disconnecting;
|
|
|
|
|
TotalConnectionTime += ConnectionLength;
|
|
|
|
|
LastConnection = DateTime.UtcNow;
|
2019-04-08 13:29:48 -04:00
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
await CurrentServer.Manager.GetClientService().Update(this);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
CurrentServer.Logger.WriteWarning($"Could not update disconnected player {this}");
|
|
|
|
|
CurrentServer.Logger.WriteDebug(e.GetExceptionInfo());
|
|
|
|
|
}
|
2018-11-05 22:01:29 -05:00
|
|
|
|
}
|
|
|
|
|
|
2019-03-24 22:34:20 -04:00
|
|
|
|
public async Task OnJoin(int? ipAddress)
|
2018-11-05 22:01:29 -05:00
|
|
|
|
{
|
2018-12-29 13:43:40 -05:00
|
|
|
|
CurrentServer.Logger.WriteDebug($"Start join for {this}::{ipAddress}::{Level.ToString()}");
|
2018-11-07 21:30:11 -05:00
|
|
|
|
|
2018-12-31 21:52:19 -05:00
|
|
|
|
if (ipAddress != null)
|
|
|
|
|
{
|
2019-03-24 22:34:20 -04:00
|
|
|
|
IPAddress = ipAddress;
|
2018-12-31 21:52:19 -05:00
|
|
|
|
await CurrentServer.Manager.GetClientService().UpdateAlias(this);
|
2019-05-29 17:55:35 -04:00
|
|
|
|
await CurrentServer.Manager.GetClientService().Update(this);
|
2018-11-05 22:01:29 -05:00
|
|
|
|
|
2019-05-29 17:55:35 -04:00
|
|
|
|
bool canConnect = await CanConnect(ipAddress);
|
2018-12-29 13:43:40 -05:00
|
|
|
|
|
2019-05-29 17:55:35 -04:00
|
|
|
|
if (canConnect)
|
2019-03-24 22:34:20 -04:00
|
|
|
|
{
|
2019-04-02 21:20:37 -04:00
|
|
|
|
var e = new GameEvent()
|
|
|
|
|
{
|
|
|
|
|
Type = GameEvent.EventType.Join,
|
|
|
|
|
Origin = this,
|
|
|
|
|
Target = this,
|
|
|
|
|
Owner = CurrentServer
|
|
|
|
|
};
|
2019-03-24 22:34:20 -04:00
|
|
|
|
|
2019-04-02 21:20:37 -04:00
|
|
|
|
CurrentServer.Manager.GetEventHandler().AddEvent(e);
|
|
|
|
|
}
|
2019-05-29 17:55:35 -04:00
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
CurrentServer.Logger.WriteDebug($"Client {this} is not allowed to join the server");
|
|
|
|
|
}
|
2019-03-24 22:34:20 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-05-29 17:55:35 -04:00
|
|
|
|
CurrentServer.Logger.WriteDebug($"Client {this} does not have an IP yet");
|
2019-03-24 22:34:20 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CurrentServer.Logger.WriteDebug($"OnJoin finished for {this}");
|
|
|
|
|
}
|
2018-12-29 13:43:40 -05:00
|
|
|
|
|
2019-03-24 22:34:20 -04:00
|
|
|
|
private async Task<bool> CanConnect(int? ipAddress)
|
|
|
|
|
{
|
|
|
|
|
var loc = Utilities.CurrentLocalization.LocalizationIndex;
|
|
|
|
|
var autoKickClient = Utilities.IW4MAdminClient(CurrentServer);
|
|
|
|
|
|
2018-12-29 13:43:40 -05:00
|
|
|
|
// we want to get any penalties that are tied to their IP or AliasLink (but not necessarily their GUID)
|
2018-11-05 22:01:29 -05:00
|
|
|
|
var activePenalties = await CurrentServer.Manager.GetPenaltyService().GetActivePenaltiesAsync(AliasLinkId, ipAddress);
|
2019-04-05 14:34:03 -04:00
|
|
|
|
|
2019-06-28 17:57:01 -04:00
|
|
|
|
var banPenalty = activePenalties.FirstOrDefault(_penalty => _penalty.Type == EFPenalty.PenaltyType.Ban);
|
2019-06-27 21:06:30 -04:00
|
|
|
|
var tempbanPenalty = activePenalties.FirstOrDefault(_penalty => _penalty.Type == EFPenalty.PenaltyType.TempBan);
|
|
|
|
|
var flagPenalty = activePenalties.FirstOrDefault(_penalty => _penalty.Type == EFPenalty.PenaltyType.Flag);
|
2019-03-24 22:34:20 -04:00
|
|
|
|
|
2019-06-27 21:06:30 -04:00
|
|
|
|
// we want to kick them if any account is banned
|
|
|
|
|
if (banPenalty != null)
|
2018-11-05 22:01:29 -05:00
|
|
|
|
{
|
2019-06-27 21:06:30 -04:00
|
|
|
|
if (Level == Permission.Banned)
|
2018-11-05 22:01:29 -05:00
|
|
|
|
{
|
2019-06-27 21:06:30 -04:00
|
|
|
|
CurrentServer.Logger.WriteDebug($"Kicking {this} because they are banned");
|
|
|
|
|
Kick(loc["SERVER_BAN_PREV"].FormatExt(banPenalty?.Offense), autoKickClient);
|
|
|
|
|
return false;
|
2018-11-05 22:01:29 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
{
|
2019-06-28 17:57:01 -04:00
|
|
|
|
CurrentServer.Logger.WriteDebug($"Client {this} is banned, but using a new GUID, we we're updating their level and kicking them");
|
|
|
|
|
await SetLevel(Permission.Banned, autoKickClient).WaitAsync(Utilities.DefaultCommandTimeout, CurrentServer.Manager.CancellationToken);
|
|
|
|
|
Kick(loc["SERVER_BAN_PREV"].FormatExt(banPenalty?.Offense), autoKickClient);
|
2019-06-27 21:06:30 -04:00
|
|
|
|
return false;
|
2018-11-05 22:01:29 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-11-25 21:00:36 -05:00
|
|
|
|
|
2019-06-27 21:06:30 -04:00
|
|
|
|
// we want to kick them if any account is tempbanned
|
|
|
|
|
if (tempbanPenalty != null)
|
2019-05-08 21:34:17 -04:00
|
|
|
|
{
|
2019-06-27 21:06:30 -04:00
|
|
|
|
CurrentServer.Logger.WriteDebug($"Kicking {this} because their GUID is temporarily banned");
|
|
|
|
|
Kick($"{loc["SERVER_TB_REMAIN"]} ({(tempbanPenalty.Expires.Value - DateTime.UtcNow).TimeSpanText()} {loc["WEBFRONT_PENALTY_TEMPLATE_REMAINING"]})", autoKickClient);
|
2019-05-08 21:34:17 -04:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2019-06-27 21:06:30 -04:00
|
|
|
|
// if we found a flag, we need to make sure all the accounts are flagged
|
|
|
|
|
if (flagPenalty != null && Level != Permission.Flagged)
|
2019-04-05 14:34:03 -04:00
|
|
|
|
{
|
2019-06-28 17:57:01 -04:00
|
|
|
|
CurrentServer.Logger.WriteDebug($"Flagged client {this} joining with new GUID, so we are changing their level to flagged");
|
|
|
|
|
await SetLevel(Permission.Flagged, autoKickClient).WaitAsync(Utilities.DefaultCommandTimeout, CurrentServer.Manager.CancellationToken);
|
2019-04-05 14:34:03 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-06-27 21:06:30 -04:00
|
|
|
|
// remove their auto flag
|
|
|
|
|
if (Level == Permission.Flagged && !activePenalties.Any(_penalty => _penalty.Type == EFPenalty.PenaltyType.Flag))
|
2018-11-25 21:00:36 -05:00
|
|
|
|
{
|
2019-03-24 22:34:20 -04:00
|
|
|
|
// remove their auto flag status after a week
|
2019-06-27 21:06:30 -04:00
|
|
|
|
CurrentServer.Logger.WriteInfo($"Unflagging {this} because the auto flag time has expired");
|
|
|
|
|
Unflag(Utilities.CurrentLocalization.LocalizationIndex["SERVER_AUTOFLAG_UNFLAG"], autoKickClient);
|
2018-11-25 21:00:36 -05:00
|
|
|
|
}
|
2019-04-05 14:34:03 -04:00
|
|
|
|
|
2019-06-27 21:06:30 -04:00
|
|
|
|
return OnConnect();
|
2018-11-05 22:01:29 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-02 17:59:27 -04:00
|
|
|
|
[NotMapped]
|
2019-05-02 23:33:38 -04:00
|
|
|
|
readonly Dictionary<string, object> _additionalProperties;
|
2018-10-13 19:49:08 -04:00
|
|
|
|
|
2018-11-05 22:01:29 -05:00
|
|
|
|
public T GetAdditionalProperty<T>(string name)
|
|
|
|
|
{
|
|
|
|
|
return _additionalProperties.ContainsKey(name) ? (T)_additionalProperties[name] : default(T);
|
|
|
|
|
}
|
2018-10-13 19:49:08 -04:00
|
|
|
|
|
2018-10-03 22:20:49 -04:00
|
|
|
|
public void SetAdditionalProperty(string name, object value)
|
|
|
|
|
{
|
|
|
|
|
if (_additionalProperties.ContainsKey(name))
|
|
|
|
|
{
|
|
|
|
|
_additionalProperties[name] = value;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_additionalProperties.Add(name, value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-25 20:29:58 -05:00
|
|
|
|
[NotMapped]
|
2017-11-29 19:35:50 -05:00
|
|
|
|
public int ClientNumber { get; set; }
|
2017-11-25 20:29:58 -05:00
|
|
|
|
[NotMapped]
|
|
|
|
|
public int Ping { get; set; }
|
|
|
|
|
[NotMapped]
|
|
|
|
|
public int Warnings { get; set; }
|
|
|
|
|
[NotMapped]
|
|
|
|
|
public DateTime ConnectionTime { get; set; }
|
|
|
|
|
[NotMapped]
|
2018-09-07 23:29:42 -04:00
|
|
|
|
public int ConnectionLength => (int)(DateTime.UtcNow - ConnectionTime).TotalSeconds;
|
|
|
|
|
[NotMapped]
|
2017-11-25 20:29:58 -05:00
|
|
|
|
public Server CurrentServer { get; set; }
|
2018-02-09 02:21:25 -05:00
|
|
|
|
[NotMapped]
|
|
|
|
|
public int Score { get; set; }
|
2018-02-14 14:01:26 -05:00
|
|
|
|
[NotMapped]
|
2019-05-17 10:02:09 -04:00
|
|
|
|
public bool IsBot => NetworkId == -1;
|
2018-11-27 19:31:48 -05:00
|
|
|
|
|
2018-06-30 21:55:16 -04:00
|
|
|
|
[NotMapped]
|
|
|
|
|
public ClientState State { get; set; }
|
2018-12-01 13:17:53 -05:00
|
|
|
|
|
2018-08-03 22:11:58 -04:00
|
|
|
|
[NotMapped]
|
|
|
|
|
// this is kinda dirty, but I need localizable level names
|
|
|
|
|
public ClientPermission ClientPermission => new ClientPermission()
|
|
|
|
|
{
|
|
|
|
|
Level = Level,
|
|
|
|
|
Name = Utilities.CurrentLocalization
|
|
|
|
|
.LocalizationIndex[$"GLOBAL_PERMISSION_{Level.ToString().ToUpper()}"]
|
|
|
|
|
};
|
2018-02-10 23:33:42 -05:00
|
|
|
|
|
|
|
|
|
public override bool Equals(object obj)
|
|
|
|
|
{
|
2018-11-05 22:01:29 -05:00
|
|
|
|
return ((EFClient)obj).NetworkId == this.NetworkId;
|
2018-02-10 23:33:42 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-05 22:01:29 -05:00
|
|
|
|
public override int GetHashCode()
|
|
|
|
|
{
|
2019-05-04 10:17:18 -04:00
|
|
|
|
return IsBot ? ClientNumber : (int)NetworkId;
|
2018-11-05 22:01:29 -05:00
|
|
|
|
}
|
2017-11-25 20:29:58 -05:00
|
|
|
|
}
|
|
|
|
|
}
|