JustinAJ
10 years ago
4 changed files with 854 additions and 0 deletions
@ -0,0 +1,85 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|||
<ItemGroup Label="ProjectConfigurations"> |
|||
<ProjectConfiguration Include="Debug|Win32"> |
|||
<Configuration>Debug</Configuration> |
|||
<Platform>Win32</Platform> |
|||
</ProjectConfiguration> |
|||
<ProjectConfiguration Include="Release|Win32"> |
|||
<Configuration>Release</Configuration> |
|||
<Platform>Win32</Platform> |
|||
</ProjectConfiguration> |
|||
</ItemGroup> |
|||
<PropertyGroup Label="Globals"> |
|||
<ProjectGuid>{160CD71B-1E13-4816-9977-8BBD73871F31}</ProjectGuid> |
|||
<RootNamespace>PluginExample</RootNamespace> |
|||
</PropertyGroup> |
|||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
|||
<ConfigurationType>Application</ConfigurationType> |
|||
<UseDebugLibraries>true</UseDebugLibraries> |
|||
<PlatformToolset>v120</PlatformToolset> |
|||
<CharacterSet>MultiByte</CharacterSet> |
|||
</PropertyGroup> |
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
|||
<ConfigurationType>DynamicLibrary</ConfigurationType> |
|||
<UseDebugLibraries>false</UseDebugLibraries> |
|||
<PlatformToolset>v120</PlatformToolset> |
|||
<WholeProgramOptimization>true</WholeProgramOptimization> |
|||
<CharacterSet>Unicode</CharacterSet> |
|||
</PropertyGroup> |
|||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
|||
<ImportGroup Label="ExtensionSettings"> |
|||
</ImportGroup> |
|||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
|||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
|||
</ImportGroup> |
|||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
|||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
|||
</ImportGroup> |
|||
<PropertyGroup Label="UserMacros" /> |
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
|||
<OutDir>$(SolutionDir)$(Configuration)\Plugins\</OutDir> |
|||
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet> |
|||
</PropertyGroup> |
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
|||
<ClCompile> |
|||
<WarningLevel>Level3</WarningLevel> |
|||
<Optimization>Disabled</Optimization> |
|||
<SDLCheck>true</SDLCheck> |
|||
</ClCompile> |
|||
<Link> |
|||
<GenerateDebugInformation>true</GenerateDebugInformation> |
|||
</Link> |
|||
</ItemDefinitionGroup> |
|||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
|||
<ClCompile> |
|||
<WarningLevel>Level3</WarningLevel> |
|||
<Optimization>MaxSpeed</Optimization> |
|||
<FunctionLevelLinking>true</FunctionLevelLinking> |
|||
<IntrinsicFunctions>true</IntrinsicFunctions> |
|||
<SDLCheck>true</SDLCheck> |
|||
<AdditionalIncludeDirectories>../Bot;../Jupiter;../RenX.Core</AdditionalIncludeDirectories> |
|||
<PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|||
</ClCompile> |
|||
<Link> |
|||
<GenerateDebugInformation>true</GenerateDebugInformation> |
|||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
|||
<OptimizeReferences>true</OptimizeReferences> |
|||
</Link> |
|||
</ItemDefinitionGroup> |
|||
<ItemGroup> |
|||
<ClInclude Include="RenX_ModSystem.h" /> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<ClCompile Include="RenX_ModSystem.cpp" /> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<Library Include="..\Jupiter\Release\Jupiter.lib" /> |
|||
<Library Include="..\Release\Bot.lib" /> |
|||
<Library Include="..\Release\Plugins\RenX.Core.lib" /> |
|||
</ItemGroup> |
|||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
|||
<ImportGroup Label="ExtensionTargets"> |
|||
</ImportGroup> |
|||
</Project> |
@ -0,0 +1,38 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|||
<ItemGroup> |
|||
<Filter Include="Source Files"> |
|||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier> |
|||
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions> |
|||
</Filter> |
|||
<Filter Include="Header Files"> |
|||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier> |
|||
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions> |
|||
</Filter> |
|||
<Filter Include="Resource Files"> |
|||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier> |
|||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions> |
|||
</Filter> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<Library Include="..\Release\Plugins\RenX.Core.lib"> |
|||
<Filter>Resource Files</Filter> |
|||
</Library> |
|||
<Library Include="..\Release\Bot.lib"> |
|||
<Filter>Resource Files</Filter> |
|||
</Library> |
|||
<Library Include="..\Jupiter\Release\Jupiter.lib"> |
|||
<Filter>Resource Files</Filter> |
|||
</Library> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<ClInclude Include="RenX_ModSystem.h"> |
|||
<Filter>Header Files</Filter> |
|||
</ClInclude> |
|||
</ItemGroup> |
|||
<ItemGroup> |
|||
<ClCompile Include="RenX_ModSystem.cpp"> |
|||
<Filter>Source Files</Filter> |
|||
</ClCompile> |
|||
</ItemGroup> |
|||
</Project> |
@ -0,0 +1,612 @@ |
|||
/**
|
|||
* Copyright (C) 2014 Justin James. |
|||
* |
|||
* This license must be preserved. |
|||
* Any applications, libraries, or code which make any use of any |
|||
* component of this program must not be commercial, unless explicit |
|||
* permission is granted from the original author. The use of this |
|||
* program for non-profit purposes is permitted. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|||
* |
|||
* In the event that this license restricts you from making desired use of this program, contact the original author. |
|||
* Written by Justin James <justin.aj@hotmail.com> |
|||
*/ |
|||
|
|||
#include "Jupiter/IRC_Client.h" |
|||
#include "IRC_Bot.h" |
|||
#include "RenX_ModSystem.h" |
|||
#include "RenX_PlayerInfo.h" |
|||
#include "RenX_Server.h" |
|||
#include "RenX_Core.h" |
|||
#include "RenX_Functions.h" |
|||
|
|||
void RenX_ModSystemPlugin::init() |
|||
{ |
|||
RenX_ModSystemPlugin::modsFile.readFile(Jupiter::IRC::Client::Config->get(RenX_ModSystemPlugin::getName(), STRING_LITERAL_AS_REFERENCE("ModsFile"), STRING_LITERAL_AS_REFERENCE("Mods.ini"))); |
|||
|
|||
RenX_ModSystemPlugin::lockSteam = RenX_ModSystemPlugin::modsFile.getBool(Jupiter::ReferenceString::empty, STRING_LITERAL_AS_REFERENCE("LockSteam"), false); |
|||
RenX_ModSystemPlugin::lockIP = RenX_ModSystemPlugin::modsFile.getBool(Jupiter::ReferenceString::empty, STRING_LITERAL_AS_REFERENCE("LockIP"), false); |
|||
RenX_ModSystemPlugin::kickLockMismatch = RenX_ModSystemPlugin::modsFile.getBool(Jupiter::ReferenceString::empty, STRING_LITERAL_AS_REFERENCE("KickLockMismatch"), true); |
|||
RenX_ModSystemPlugin::autoAuthSteam = RenX_ModSystemPlugin::modsFile.getBool(Jupiter::ReferenceString::empty, STRING_LITERAL_AS_REFERENCE("AutoAuthSteam"), false); |
|||
RenX_ModSystemPlugin::autoAuthIP = RenX_ModSystemPlugin::modsFile.getBool(Jupiter::ReferenceString::empty, STRING_LITERAL_AS_REFERENCE("AutoAuthIP"), false); |
|||
RenX_ModSystemPlugin::atmDefault = RenX_ModSystemPlugin::modsFile.get(Jupiter::ReferenceString::empty, STRING_LITERAL_AS_REFERENCE("ATMDefault")); |
|||
RenX_ModSystemPlugin::moderatorGroup = RenX_ModSystemPlugin::modsFile.get(Jupiter::ReferenceString::empty, STRING_LITERAL_AS_REFERENCE("Moderator"), STRING_LITERAL_AS_REFERENCE("Moderator")); |
|||
RenX_ModSystemPlugin::administratorGroup = RenX_ModSystemPlugin::modsFile.get(Jupiter::ReferenceString::empty, STRING_LITERAL_AS_REFERENCE("Administrator"), STRING_LITERAL_AS_REFERENCE("Administrator")); |
|||
|
|||
ModGroup *group; |
|||
Jupiter::ReferenceString dotLockSteam = ".LockSteam"; |
|||
Jupiter::ReferenceString dotLockIP = ".LockIP"; |
|||
Jupiter::ReferenceString dotKickLockMismatch = ".KickLockMismatch"; |
|||
Jupiter::ReferenceString dotAutoAuthSteam = ".AutoAuthSteam"; |
|||
Jupiter::ReferenceString dotAutoAuthIP = ".AutoAuthIP"; |
|||
Jupiter::ReferenceString dotNext = ".Next"; |
|||
Jupiter::ReferenceString dotAccess = ".Access"; |
|||
Jupiter::ReferenceString dotPrefix = ".Prefix"; |
|||
Jupiter::ReferenceString dotGamePrefix = ".GamePrefix"; |
|||
|
|||
Jupiter::String groupName = RenX_ModSystemPlugin::modsFile.get(Jupiter::ReferenceString::empty, STRING_LITERAL_AS_REFERENCE("Default")); |
|||
while (groupName.isEmpty() == false) |
|||
{ |
|||
group = new ModGroup(); |
|||
group->name = groupName; |
|||
|
|||
groupName += dotLockSteam; |
|||
group->lockSteam = RenX_ModSystemPlugin::modsFile.getBool(Jupiter::ReferenceString::empty, groupName, RenX_ModSystemPlugin::lockSteam); |
|||
groupName.truncate(dotLockSteam.size()); |
|||
|
|||
groupName += dotLockIP; |
|||
group->lockIP = RenX_ModSystemPlugin::modsFile.getBool(Jupiter::ReferenceString::empty, groupName, RenX_ModSystemPlugin::lockIP); |
|||
groupName.truncate(dotLockIP.size()); |
|||
|
|||
groupName += dotKickLockMismatch; |
|||
group->kickLockMismatch = RenX_ModSystemPlugin::modsFile.getBool(Jupiter::ReferenceString::empty, groupName, RenX_ModSystemPlugin::kickLockMismatch); |
|||
groupName.truncate(dotKickLockMismatch.size()); |
|||
|
|||
groupName += dotAutoAuthSteam; |
|||
group->autoAuthSteam = RenX_ModSystemPlugin::modsFile.getBool(Jupiter::ReferenceString::empty, groupName, RenX_ModSystemPlugin::autoAuthSteam); |
|||
groupName.truncate(dotAutoAuthSteam.size()); |
|||
|
|||
groupName += dotAutoAuthIP; |
|||
group->autoAuthIP = RenX_ModSystemPlugin::modsFile.getBool(Jupiter::ReferenceString::empty, groupName, RenX_ModSystemPlugin::autoAuthIP); |
|||
groupName.truncate(dotAutoAuthIP.size()); |
|||
|
|||
groupName += dotAccess; |
|||
group->access = RenX_ModSystemPlugin::modsFile.getInt(Jupiter::ReferenceString::empty, groupName); |
|||
groupName.truncate(dotAccess.size()); |
|||
|
|||
groupName += dotPrefix; |
|||
group->prefix = RenX_ModSystemPlugin::modsFile.get(Jupiter::ReferenceString::empty, groupName); |
|||
groupName.truncate(dotPrefix.size()); |
|||
|
|||
groupName += dotGamePrefix; |
|||
group->gamePrefix = RenX_ModSystemPlugin::modsFile.get(Jupiter::ReferenceString::empty, groupName); |
|||
groupName.truncate(dotGamePrefix.size()); |
|||
|
|||
RenX_ModSystemPlugin::groups.add(group); |
|||
|
|||
groupName += dotNext; |
|||
groupName = RenX_ModSystemPlugin::modsFile.get(Jupiter::ReferenceString::empty, groupName); |
|||
} |
|||
|
|||
RenX::Core *core = RenX::getCore(); |
|||
unsigned int total = core->getServerCount(); |
|||
RenX::Server *server; |
|||
while (total != 0) |
|||
{ |
|||
server = core->getServer(--total); |
|||
if (server->players.size() != 0) |
|||
for (Jupiter::DLList<RenX::PlayerInfo>::Node *n = server->players.getNode(0); n != nullptr; n = n->next) |
|||
RenX_ModSystemPlugin::auth(server, n->data, true); |
|||
} |
|||
} |
|||
|
|||
unsigned int RenX_ModSystemPlugin::logoutAllMods(const RenX::Server *server) |
|||
{ |
|||
if (server->players.size() == 0) |
|||
return 0; |
|||
|
|||
unsigned int total = 0; |
|||
for (Jupiter::DLList<RenX::PlayerInfo>::Node *n = server->players.getNode(0); n != nullptr; n = n->next) |
|||
if (RenX_ModSystemPlugin::resetAccess(n->data)) |
|||
total++; |
|||
return total; |
|||
} |
|||
|
|||
bool RenX_ModSystemPlugin::resetAccess(RenX::PlayerInfo *player) |
|||
{ |
|||
int oAccess = player->access; |
|||
if (player->adminType.equals("administrator")) |
|||
{ |
|||
ModGroup *group = RenX_ModSystemPlugin::getGroupByName(RenX_ModSystemPlugin::administratorGroup); |
|||
if (group == nullptr) |
|||
player->access = 2; |
|||
else |
|||
player->access = group->access; |
|||
} |
|||
else if (player->adminType.equals("moderator")) |
|||
{ |
|||
ModGroup *group = RenX_ModSystemPlugin::getGroupByName(RenX_ModSystemPlugin::moderatorGroup); |
|||
if (group == nullptr) |
|||
player->access = 1; |
|||
else |
|||
player->access = group->access; |
|||
} |
|||
else if (groups.size() != 0) |
|||
player->access = groups.get(0)->access; |
|||
else |
|||
player->access = 0; |
|||
return player->access == oAccess; |
|||
} |
|||
|
|||
int RenX_ModSystemPlugin::auth(RenX::Server *server, const RenX::PlayerInfo *player, bool checkAuto, bool forceAuth) |
|||
{ |
|||
if (player->isBot) |
|||
return 0; |
|||
|
|||
ModGroup *group; |
|||
Jupiter::INIFile::Section *section = RenX_ModSystemPlugin::modsFile.getSection(player->uuid); |
|||
if (section != nullptr) |
|||
{ |
|||
const Jupiter::ReadableString &groupName = section->get(STRING_LITERAL_AS_REFERENCE("Group")); |
|||
if (groupName.isEmpty()) |
|||
group = RenX_ModSystemPlugin::groups.get(0); |
|||
else if ((group = RenX_ModSystemPlugin::getGroupByName(groupName)) == nullptr) |
|||
group = RenX_ModSystemPlugin::groups.get(0); |
|||
|
|||
auto sectionAuth = [&] |
|||
{ |
|||
player->varData.set(RenX_ModSystemPlugin::getName(), STRING_LITERAL_AS_REFERENCE("Group"), group->name); |
|||
player->formatNamePrefix = section->get(STRING_LITERAL_AS_REFERENCE("Prefix"), group->prefix); |
|||
player->gamePrefix = section->get(STRING_LITERAL_AS_REFERENCE("GamePrefix"), group->gamePrefix); |
|||
player->access = section->getInt(STRING_LITERAL_AS_REFERENCE("Access"), group->access); |
|||
server->sendMessage(player, Jupiter::StringS::Format("You are now authenticated with access level %d; group: %.*s.", player->access, group->name.size(), group->name.ptr())); |
|||
Jupiter::String playerName = RenX::getFormattedPlayerName(player); |
|||
server->sendLogChan(IRCCOLOR "03[Authentication] " IRCBOLD "%.*s" IRCBOLD IRCCOLOR " is now authenticated with access level %d; group: %.*s.", playerName.size(), playerName.ptr(), player->access, group->name.size(), group->name.ptr()); |
|||
return player->access; |
|||
}; |
|||
|
|||
if (forceAuth) |
|||
return sectionAuth(); |
|||
|
|||
bool lockSteam_l = section->getBool(STRING_LITERAL_AS_REFERENCE("LockSteam"), group->lockSteam); |
|||
bool lockIP_l = section->getBool(STRING_LITERAL_AS_REFERENCE("LockIP"), group->lockIP); |
|||
bool kickLockMismatch_l = section->getBool(STRING_LITERAL_AS_REFERENCE("KickLockMismatch"), group->kickLockMismatch); |
|||
bool autoAuthSteam_l = section->getBool(STRING_LITERAL_AS_REFERENCE("AutoAuthSteam"), group->autoAuthSteam); |
|||
bool autoAuthIP_l = section->getBool(STRING_LITERAL_AS_REFERENCE("AutoAuthIP"), group->autoAuthIP); |
|||
|
|||
uint64_t steamid = section->get(STRING_LITERAL_AS_REFERENCE("SteamID")).asUnsignedLongLong(); |
|||
const Jupiter::ReadableString &ip = section->get(STRING_LITERAL_AS_REFERENCE("LastIP")); |
|||
|
|||
if ((lockSteam_l == false || player->steamid == steamid) && (lockIP_l == false || player->ip.equalsi(ip))) |
|||
{ |
|||
if (checkAuto == false || (autoAuthSteam_l && player->steamid == steamid) || (autoAuthIP_l && player->ip.equalsi(ip))) |
|||
return sectionAuth(); |
|||
} |
|||
else if (kickLockMismatch_l) |
|||
{ |
|||
server->kickPlayer(player); |
|||
return -1; |
|||
} |
|||
} |
|||
group = RenX_ModSystemPlugin::groups.get(0); |
|||
|
|||
player->varData.set(RenX_ModSystemPlugin::getName(), STRING_LITERAL_AS_REFERENCE("Group"), group->name); |
|||
player->formatNamePrefix = group->prefix; |
|||
player->gamePrefix = group->gamePrefix; |
|||
return player->access = group->access; |
|||
} |
|||
|
|||
RenX_ModSystemPlugin::ModGroup *RenX_ModSystemPlugin::getGroupByName(const Jupiter::ReadableString &name, ModGroup *defaultGroup) const |
|||
{ |
|||
if (RenX_ModSystemPlugin::groups.size() != 0) |
|||
for (Jupiter::DLList<ModGroup>::Node *n = groups.getNode(0); n != nullptr; n = n->next) |
|||
if (n->data->name.equalsi(name)) |
|||
return n->data; |
|||
return defaultGroup; |
|||
} |
|||
|
|||
RenX_ModSystemPlugin::ModGroup *RenX_ModSystemPlugin::getGroupByAccess(int access, ModGroup *defaultGroup) const |
|||
{ |
|||
if (RenX_ModSystemPlugin::groups.size() != 0) |
|||
for (Jupiter::DLList<ModGroup>::Node *n = groups.getNode(0); n != nullptr; n = n->next) |
|||
if (n->data->access == access) |
|||
return n->data; |
|||
return defaultGroup; |
|||
} |
|||
|
|||
RenX_ModSystemPlugin::ModGroup *RenX_ModSystemPlugin::getGroupByIndex(size_t index) const |
|||
{ |
|||
if (RenX_ModSystemPlugin::groups.size() != 0) |
|||
for (Jupiter::DLList<ModGroup>::Node *n = groups.getNode(0); n != nullptr; n = n->next) |
|||
if (index-- == 0) |
|||
return n->data; |
|||
return nullptr; |
|||
} |
|||
|
|||
int RenX_ModSystemPlugin::getConfigAccess(const Jupiter::ReadableString &uuid) const |
|||
{ |
|||
Jupiter::INIFile::Section *section = RenX_ModSystemPlugin::modsFile.getSection(uuid); |
|||
if (section == nullptr) |
|||
return RenX_ModSystemPlugin::groups.get(0)->access; |
|||
const Jupiter::ReadableString &group = section->get(STRING_LITERAL_AS_REFERENCE("Group")); |
|||
if (group.isEmpty()) |
|||
return section->getInt(STRING_LITERAL_AS_REFERENCE("Access"), RenX_ModSystemPlugin::groups.get(0)->access); |
|||
else |
|||
return section->getInt(STRING_LITERAL_AS_REFERENCE("Access"), RenX_ModSystemPlugin::modsFile.getInt(group, STRING_LITERAL_AS_REFERENCE("Access"), RenX_ModSystemPlugin::groups.get(0)->access)); |
|||
} |
|||
|
|||
size_t RenX_ModSystemPlugin::getGroupCount() const |
|||
{ |
|||
return RenX_ModSystemPlugin::groups.size(); |
|||
} |
|||
|
|||
RenX_ModSystemPlugin::ModGroup *RenX_ModSystemPlugin::getDefaultGroup() const |
|||
{ |
|||
return RenX_ModSystemPlugin::groups.get(0); |
|||
} |
|||
|
|||
RenX_ModSystemPlugin::ModGroup *RenX_ModSystemPlugin::getModeratorGroup() const |
|||
{ |
|||
return RenX_ModSystemPlugin::getGroupByName(RenX_ModSystemPlugin::moderatorGroup); |
|||
} |
|||
|
|||
RenX_ModSystemPlugin::ModGroup *RenX_ModSystemPlugin::getAdministratorGroup() const |
|||
{ |
|||
return RenX_ModSystemPlugin::getGroupByName(RenX_ModSystemPlugin::administratorGroup); |
|||
} |
|||
|
|||
RenX_ModSystemPlugin::RenX_ModSystemPlugin() |
|||
{ |
|||
RenX_ModSystemPlugin::init(); |
|||
} |
|||
|
|||
RenX_ModSystemPlugin::~RenX_ModSystemPlugin() |
|||
{ |
|||
RenX::Core *core = RenX::getCore(); |
|||
unsigned int total = core->getServerCount(); |
|||
RenX::Server *server; |
|||
RenX::PlayerInfo *player; |
|||
while (total != 0) |
|||
{ |
|||
server = core->getServer(--total); |
|||
if (server->players.size() != 0) |
|||
for (Jupiter::DLList<RenX::PlayerInfo>::Node *n = server->players.getNode(0); n != nullptr; n = n->next) |
|||
{ |
|||
player = n->data; |
|||
if (player->isBot == false) |
|||
{ |
|||
player->varData.remove(RenX_ModSystemPlugin::name, STRING_LITERAL_AS_REFERENCE("Group")); |
|||
player->gamePrefix.truncate(player->gamePrefix.size()); |
|||
player->formatNamePrefix.truncate(player->formatNamePrefix.size()); |
|||
if (player->adminType.equals("administrator")) |
|||
player->access = 2; |
|||
else if (player->adminType.equals("moderator")) |
|||
player->access = 1; |
|||
else |
|||
player->access = 0; |
|||
} |
|||
} |
|||
} |
|||
while (RenX_ModSystemPlugin::groups.size() != 0) |
|||
delete RenX_ModSystemPlugin::groups.remove(0U); |
|||
} |
|||
|
|||
void RenX_ModSystemPlugin::RenX_OnPlayerCreate(RenX::Server *server, const RenX::PlayerInfo *player) |
|||
{ |
|||
if (player->isBot == false) |
|||
RenX_ModSystemPlugin::auth(server, player, true); |
|||
} |
|||
|
|||
void RenX_ModSystemPlugin::RenX_OnPlayerDelete(RenX::Server *server, const RenX::PlayerInfo *player) |
|||
{ |
|||
if (RenX_ModSystemPlugin::groups.size() != 0 && player->isBot == false) |
|||
{ |
|||
Jupiter::INIFile::Section *section = RenX_ModSystemPlugin::modsFile.getSection(player->uuid); |
|||
if (section != nullptr) |
|||
{ |
|||
section->set(STRING_LITERAL_AS_REFERENCE("SteamID"), Jupiter::StringS::Format("%llu", player->steamid)); |
|||
section->set(STRING_LITERAL_AS_REFERENCE("LastIP"), player->ip); |
|||
} |
|||
} |
|||
} |
|||
|
|||
void RenX_ModSystemPlugin::RenX_OnAdminLogin(RenX::Server *server, const RenX::PlayerInfo *player) |
|||
{ |
|||
ModGroup *group = nullptr; |
|||
if (player->adminType.equals("administrator")) |
|||
group = RenX_ModSystemPlugin::getGroupByName(RenX_ModSystemPlugin::administratorGroup); |
|||
else if (player->adminType.equals("moderator")) |
|||
group = RenX_ModSystemPlugin::getGroupByName(RenX_ModSystemPlugin::moderatorGroup); |
|||
|
|||
if (group != nullptr && player->access < group->access) |
|||
player->access = group->access; |
|||
} |
|||
|
|||
void RenX_ModSystemPlugin::RenX_OnAdminGrant(RenX::Server *server, const RenX::PlayerInfo *player) |
|||
{ |
|||
RenX_ModSystemPlugin::RenX_OnAdminLogin(server, player); |
|||
} |
|||
|
|||
void RenX_ModSystemPlugin::RenX_OnAdminLogout(RenX::Server *server, const RenX::PlayerInfo *player) |
|||
{ |
|||
ModGroup *group = nullptr; |
|||
int access; |
|||
if (player->adminType.equals("administrator")) |
|||
{ |
|||
access = 2; |
|||
group = RenX_ModSystemPlugin::getGroupByName(RenX_ModSystemPlugin::administratorGroup); |
|||
} |
|||
else if (player->adminType.equals("moderator")) |
|||
{ |
|||
access = 1; |
|||
group = RenX_ModSystemPlugin::getGroupByName(RenX_ModSystemPlugin::moderatorGroup); |
|||
} |
|||
if (group != nullptr) |
|||
access = group->access; |
|||
|
|||
if (player->access <= access) |
|||
{ |
|||
if (RenX_ModSystemPlugin::groups.size() == 0) |
|||
player->access = 0; |
|||
else |
|||
player->access = RenX_ModSystemPlugin::groups.get(0)->access; |
|||
} |
|||
} |
|||
|
|||
int RenX_ModSystemPlugin::OnRehash() |
|||
{ |
|||
RenX_ModSystemPlugin::modsFile.flushData(); |
|||
while (RenX_ModSystemPlugin::groups.size() != 0) |
|||
delete RenX_ModSystemPlugin::groups.remove(0U); |
|||
RenX_ModSystemPlugin::init(); |
|||
return 0; |
|||
} |
|||
|
|||
// Plugin instantiation and entry point.
|
|||
RenX_ModSystemPlugin pluginInstance; |
|||
|
|||
/** IRC Commands */ |
|||
|
|||
// Auth IRC Command
|
|||
|
|||
void AuthIRCCommand::create() |
|||
{ |
|||
this->addTrigger(STRING_LITERAL_AS_REFERENCE("auth")); |
|||
this->setAccessLevel(3); |
|||
} |
|||
|
|||
void AuthIRCCommand::trigger(IRC_Bot *source, const Jupiter::ReadableString &channel, const Jupiter::ReadableString &nick, const Jupiter::ReadableString ¶meters) |
|||
{ |
|||
if (parameters.isEmpty() == false) |
|||
{ |
|||
Jupiter::IRC::Client::Channel *chan = source->getChannel(channel); |
|||
if (chan != nullptr) |
|||
{ |
|||
RenX::Server *server; |
|||
RenX::PlayerInfo *player; |
|||
int type = chan->getType(); |
|||
bool serverMatch = false; |
|||
for (unsigned int i = 0; i != RenX::getCore()->getServerCount(); i++) |
|||
{ |
|||
server = RenX::getCore()->getServer(i); |
|||
if (server->isLogChanType(type)) |
|||
{ |
|||
serverMatch = true; |
|||
player = server->getPlayerByPartName(parameters); |
|||
if (player == nullptr) |
|||
source->sendNotice(nick, STRING_LITERAL_AS_REFERENCE("Error: Player not found.")); |
|||
else |
|||
{ |
|||
int uAccess = source->getAccessLevel(channel, nick); |
|||
int cAccess = pluginInstance.getConfigAccess(player->uuid); |
|||
if (cAccess > uAccess && uAccess < static_cast<int>(source->getPrefixes().size())) |
|||
source->sendNotice(nick, STRING_LITERAL_AS_REFERENCE("Error: Can't authenticate higher level moderators.")); |
|||
else if (player->access == cAccess) |
|||
source->sendNotice(nick, STRING_LITERAL_AS_REFERENCE("Error: Player is already authenticated")); |
|||
else if (player->access > cAccess) |
|||
source->sendNotice(nick, STRING_LITERAL_AS_REFERENCE("Error: Player is already temporarily authenticated.")); |
|||
else |
|||
{ |
|||
RenX_ModSystemPlugin::ModGroup *defaultGroup = pluginInstance.getDefaultGroup(); |
|||
if (pluginInstance.auth(server, player) == -1) |
|||
source->sendNotice(nick, STRING_LITERAL_AS_REFERENCE("Error: Player failed to pass strict lock checks. Player kicked.")); |
|||
else if (defaultGroup->name.equals(player->varData.get(pluginInstance.getName(), STRING_LITERAL_AS_REFERENCE("Group")))) |
|||
source->sendNotice(nick, STRING_LITERAL_AS_REFERENCE("Error: Failed to authenticate player.")); |
|||
else |
|||
source->sendNotice(nick, STRING_LITERAL_AS_REFERENCE("Player authenticated successfully.")); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
if (serverMatch == false) |
|||
source->sendMessage(channel, STRING_LITERAL_AS_REFERENCE("Error: Channel not attached to any connected Renegade X servers.")); |
|||
} |
|||
} |
|||
else |
|||
this->trigger(source, channel, nick, nick); |
|||
} |
|||
|
|||
const Jupiter::ReadableString &AuthIRCCommand::getHelp(const Jupiter::ReadableString &) |
|||
{ |
|||
static STRING_LITERAL_AS_NAMED_REFERENCE(defaultHelp, "Authenticates a player in-game. Syntax: auth [player=you]"); |
|||
return defaultHelp; |
|||
} |
|||
|
|||
IRC_COMMAND_INIT(AuthIRCCommand) |
|||
|
|||
// ForceAuth IRC Command
|
|||
|
|||
void ForceAuthIRCCommand::create() |
|||
{ |
|||
this->addTrigger(STRING_LITERAL_AS_REFERENCE("fauth")); |
|||
this->addTrigger(STRING_LITERAL_AS_REFERENCE("forceauth")); |
|||
this->setAccessLevel(4); |
|||
} |
|||
|
|||
void ForceAuthIRCCommand::trigger(IRC_Bot *source, const Jupiter::ReadableString &channel, const Jupiter::ReadableString &nick, const Jupiter::ReadableString ¶meters) |
|||
{ |
|||
if (parameters.isEmpty() == false) |
|||
{ |
|||
Jupiter::IRC::Client::Channel *chan = source->getChannel(channel); |
|||
if (chan != nullptr) |
|||
{ |
|||
RenX::Server *server; |
|||
RenX::PlayerInfo *player; |
|||
int type = chan->getType(); |
|||
bool serverMatch = false; |
|||
for (unsigned int i = 0; i != RenX::getCore()->getServerCount(); i++) |
|||
{ |
|||
server = RenX::getCore()->getServer(i); |
|||
if (server->isLogChanType(type)) |
|||
{ |
|||
serverMatch = true; |
|||
player = server->getPlayerByPartName(parameters); |
|||
if (player == nullptr) |
|||
source->sendNotice(nick, STRING_LITERAL_AS_REFERENCE("Error: Player not found.")); |
|||
else |
|||
{ |
|||
int uAccess = source->getAccessLevel(channel, nick); |
|||
int cAccess = pluginInstance.getConfigAccess(player->uuid); |
|||
if (cAccess > uAccess && uAccess < static_cast<int>(source->getPrefixes().size())) |
|||
source->sendNotice(nick, STRING_LITERAL_AS_REFERENCE("Error: Can't authenticate higher level moderators.")); |
|||
else if (player->access == cAccess) |
|||
source->sendNotice(nick, STRING_LITERAL_AS_REFERENCE("Error: Player is already authenticated")); |
|||
else if (player->access > cAccess) |
|||
source->sendNotice(nick, STRING_LITERAL_AS_REFERENCE("Error: Player is already temporarily authenticated.")); |
|||
else |
|||
{ |
|||
RenX_ModSystemPlugin::ModGroup *defaultGroup = pluginInstance.getDefaultGroup(); |
|||
pluginInstance.auth(server, player, false, true); |
|||
if (defaultGroup->name.equals(player->varData.get(pluginInstance.getName(), STRING_LITERAL_AS_REFERENCE("Group")))) |
|||
source->sendNotice(nick, STRING_LITERAL_AS_REFERENCE("Error: Failed to authenticate player.")); |
|||
else |
|||
source->sendNotice(nick, STRING_LITERAL_AS_REFERENCE("Player authenticated successfully.")); |
|||
} |
|||
} |
|||
} |
|||
} |
|||
if (serverMatch == false) |
|||
source->sendMessage(channel, STRING_LITERAL_AS_REFERENCE("Error: Channel not attached to any connected Renegade X servers.")); |
|||
} |
|||
} |
|||
else |
|||
this->trigger(source, channel, nick, nick); |
|||
} |
|||
|
|||
const Jupiter::ReadableString &ForceAuthIRCCommand::getHelp(const Jupiter::ReadableString &) |
|||
{ |
|||
static STRING_LITERAL_AS_NAMED_REFERENCE(defaultHelp, "Forcefully authenticates a player in-game. Syntax: auth [player=you]"); |
|||
return defaultHelp; |
|||
} |
|||
|
|||
IRC_COMMAND_INIT(ForceAuthIRCCommand) |
|||
|
|||
/** Game Commands */ |
|||
|
|||
// Auth Game Command
|
|||
|
|||
void AuthGameCommand::create() |
|||
{ |
|||
this->addTrigger(STRING_LITERAL_AS_REFERENCE("auth")); |
|||
this->setAccessLevel(3); |
|||
} |
|||
|
|||
void AuthGameCommand::trigger(RenX::Server *source, RenX::PlayerInfo *player, const Jupiter::ReadableString ¶meters) |
|||
{ |
|||
if (parameters.isEmpty() == false) |
|||
{ |
|||
RenX::PlayerInfo *target = source->getPlayerByPartName(parameters); |
|||
if (target == nullptr) |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Error: Player not found.")); |
|||
else if (target == player) |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Error: You can not authenticate yourself.")); |
|||
else |
|||
{ |
|||
int cAccess = pluginInstance.getConfigAccess(target->uuid); |
|||
if (cAccess > player->access) |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Error: Can't authenticate higher level moderators.")); |
|||
else if (target->access == cAccess) |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Error: Player is already authenticated")); |
|||
else if (target->access > cAccess) |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Error: Player is already temporarily authenticated.")); |
|||
else |
|||
{ |
|||
RenX_ModSystemPlugin::ModGroup *defaultGroup = pluginInstance.getDefaultGroup(); |
|||
if (pluginInstance.auth(source, player) == -1) |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Error: Player failed to pass strict lock checks. Player kicked.")); |
|||
else if (defaultGroup->name.equals(player->varData.get(pluginInstance.getName(), STRING_LITERAL_AS_REFERENCE("Group")))) |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Error: Failed to authenticate player.")); |
|||
else |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Player authenticated successfully.")); |
|||
} |
|||
} |
|||
} |
|||
else |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Error: Too few parameters. Syntax: auth <player>")); |
|||
} |
|||
|
|||
const Jupiter::ReadableString &AuthGameCommand::getHelp(const Jupiter::ReadableString &) |
|||
{ |
|||
static STRING_LITERAL_AS_NAMED_REFERENCE(defaultHelp, "Authenticates a player. Syntax: auth <player>"); |
|||
return defaultHelp; |
|||
} |
|||
|
|||
GAME_COMMAND_INIT(AuthGameCommand) |
|||
|
|||
// ForceAuth Game Command
|
|||
|
|||
void ForceAuthGameCommand::create() |
|||
{ |
|||
this->addTrigger(STRING_LITERAL_AS_REFERENCE("fauth")); |
|||
this->addTrigger(STRING_LITERAL_AS_REFERENCE("forceauth")); |
|||
this->setAccessLevel(4); |
|||
} |
|||
|
|||
void ForceAuthGameCommand::trigger(RenX::Server *source, RenX::PlayerInfo *player, const Jupiter::ReadableString ¶meters) |
|||
{ |
|||
if (parameters.isEmpty() == false) |
|||
{ |
|||
RenX::PlayerInfo *target = source->getPlayerByPartName(parameters); |
|||
if (target == nullptr) |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Error: Player not found.")); |
|||
else if (target == player) |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Error: You can not force-authenticate yourself.")); |
|||
else |
|||
{ |
|||
int cAccess = pluginInstance.getConfigAccess(target->uuid); |
|||
if (cAccess > player->access) |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Error: Can't authenticate higher level moderators.")); |
|||
else if (target->access == cAccess) |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Error: Player is already authenticated")); |
|||
else if (target->access > cAccess) |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Error: Player is already temporarily authenticated.")); |
|||
else |
|||
{ |
|||
RenX_ModSystemPlugin::ModGroup *defaultGroup = pluginInstance.getDefaultGroup(); |
|||
pluginInstance.auth(source, player, false, true); |
|||
if (defaultGroup->name.equals(player->varData.get(pluginInstance.getName(), STRING_LITERAL_AS_REFERENCE("Group")))) |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Error: Failed to authenticate player.")); |
|||
else |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Player authenticated successfully.")); |
|||
} |
|||
} |
|||
} |
|||
else |
|||
source->sendMessage(player, STRING_LITERAL_AS_REFERENCE("Error: Too few parameters. Syntax: fauth <player>")); |
|||
} |
|||
|
|||
const Jupiter::ReadableString &ForceAuthGameCommand::getHelp(const Jupiter::ReadableString &) |
|||
{ |
|||
static STRING_LITERAL_AS_NAMED_REFERENCE(defaultHelp, "Forcefully authenticates a player. Syntax: fauth <player>"); |
|||
return defaultHelp; |
|||
} |
|||
|
|||
GAME_COMMAND_INIT(ForceAuthGameCommand) |
|||
|
|||
extern "C" __declspec(dllexport) Jupiter::Plugin *getPlugin() |
|||
{ |
|||
return &pluginInstance; |
|||
} |
@ -0,0 +1,119 @@ |
|||
/**
|
|||
* Copyright (C) 2014 Justin James. |
|||
* |
|||
* This license must be preserved. |
|||
* Any applications, libraries, or code which make any use of any |
|||
* component of this program must not be commercial, unless explicit |
|||
* permission is granted from the original author. The use of this |
|||
* program for non-profit purposes is permitted. |
|||
* |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|||
* |
|||
* In the event that this license restricts you from making desired use of this program, contact the original author. |
|||
* Written by Justin James <justin.aj@hotmail.com> |
|||
*/ |
|||
|
|||
#if !defined _RENX_MODSYSTEM_H_HEADER |
|||
#define _RENX_MODSYSTEM_H_HEADER |
|||
|
|||
#include "Jupiter/Plugin.h" |
|||
#include "Jupiter/Reference_String.h" |
|||
#include "Jupiter/String.h" |
|||
#include "Jupiter/INIFile.h" |
|||
#include "Jupiter/DLList.h" |
|||
#include "IRC_Command.h" |
|||
#include "RenX_Plugin.h" |
|||
#include "RenX_GameCommand.h" |
|||
|
|||
class RenX_ModSystemPlugin : public RenX::Plugin |
|||
{ |
|||
public: |
|||
struct ModGroup |
|||
{ |
|||
bool lockSteam; |
|||
bool lockIP; |
|||
bool kickLockMismatch; |
|||
bool autoAuthSteam; |
|||
bool autoAuthIP; |
|||
int access; |
|||
Jupiter::StringS prefix; |
|||
Jupiter::StringS gamePrefix; |
|||
Jupiter::StringS name; |
|||
}; |
|||
Jupiter::DLList<ModGroup> groups; |
|||
|
|||
/**
|
|||
* @brief Calls resetAccess() on all players in a server. |
|||
* |
|||
* @param server Server with players to logout |
|||
* @return Number of players effected. |
|||
*/ |
|||
unsigned int logoutAllMods(const RenX::Server *server); |
|||
|
|||
/**
|
|||
* @brief Resets a player's access level to their administrative tag's assosciated access. |
|||
* This means that a player not logged in as an in-game administrator/moderator will lose all access. |
|||
* |
|||
* @param player Player to reset access |
|||
* @return True if the player's access level was modified, false otherwise. |
|||
*/ |
|||
bool resetAccess(RenX::PlayerInfo *player); |
|||
|
|||
/**
|
|||
* @brief Authenticates a player with their configured administrative group. |
|||
* |
|||
* @param server Server the player is in |
|||
* @param player Player to authenticate |
|||
* @param checkAuto (optional) True to require that the user meet auto-authentication requirements, false otherwise |
|||
* @param forceauth (optional) True to bypass locks and authenticate the user based on UUID. |
|||
* @return New access of the user, -1 if the user is kicked. |
|||
*/ |
|||
int auth(RenX::Server *server, const RenX::PlayerInfo *player, bool checkAuto = false, bool forceAuth = false); |
|||
|
|||
int getConfigAccess(const Jupiter::ReadableString &uuid) const; |
|||
size_t getGroupCount() const; |
|||
ModGroup *getGroupByName(const Jupiter::ReadableString &name, ModGroup *defaultGroup = nullptr) const; |
|||
ModGroup *getGroupByAccess(int access, ModGroup *defaultGroup = nullptr) const; |
|||
ModGroup *getGroupByIndex(size_t index) const; |
|||
ModGroup *getDefaultGroup() const; |
|||
ModGroup *getModeratorGroup() const; |
|||
ModGroup *getAdministratorGroup() const; |
|||
|
|||
RenX_ModSystemPlugin(); |
|||
~RenX_ModSystemPlugin(); |
|||
|
|||
public: // RenX::Plugin
|
|||
void RenX_OnPlayerCreate(RenX::Server *server, const RenX::PlayerInfo *player) override; |
|||
void RenX_OnPlayerDelete(RenX::Server *server, const RenX::PlayerInfo *player) override; |
|||
|
|||
void RenX_OnAdminLogin(RenX::Server *server, const RenX::PlayerInfo *player) override; |
|||
void RenX_OnAdminGrant(RenX::Server *server, const RenX::PlayerInfo *player) override; |
|||
void RenX_OnAdminLogout(RenX::Server *server, const RenX::PlayerInfo *player) override; |
|||
|
|||
public: // Jupiter::Plugin
|
|||
int OnRehash(); |
|||
const Jupiter::ReadableString &getName() override { return name; } |
|||
|
|||
private: |
|||
void init(); |
|||
STRING_LITERAL_AS_NAMED_REFERENCE(name, "RenX.ModSystem"); |
|||
|
|||
bool lockSteam; |
|||
bool lockIP; |
|||
bool kickLockMismatch; |
|||
bool autoAuthSteam; |
|||
bool autoAuthIP; |
|||
Jupiter::StringS atmDefault; |
|||
Jupiter::StringS moderatorGroup; |
|||
Jupiter::StringS administratorGroup; |
|||
Jupiter::INIFile modsFile; |
|||
}; |
|||
|
|||
GENERIC_IRC_COMMAND(AuthIRCCommand); |
|||
GENERIC_IRC_COMMAND(ForceAuthIRCCommand); |
|||
GENERIC_GAME_COMMAND(AuthGameCommand) |
|||
GENERIC_GAME_COMMAND(ForceAuthGameCommand) |
|||
|
|||
#endif // _RENX_MODSYSTEM_H_HEADER
|
Loading…
Reference in new issue