mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-15 12:48:20 +00:00
58 lines
2.5 KiB
C++
58 lines
2.5 KiB
C++
|
#include "MySQLDatabase.h"
|
||
|
|
||
|
std::optional<IProperty::Info> MySQLDatabase::GetPropertyInfo(const LWOMAPID mapId, const LWOCLONEID cloneId) {
|
||
|
auto propertyEntry = ExecuteSelect(
|
||
|
"SELECT id, owner_id, clone_id, name, description, privacy_option, rejection_reason, last_updated, time_claimed, reputation, mod_approved "
|
||
|
"FROM properties WHERE zone_id = ? AND clone_id = ?;", mapId, cloneId);
|
||
|
|
||
|
if (!propertyEntry->next()) {
|
||
|
return std::nullopt;
|
||
|
}
|
||
|
|
||
|
IProperty::Info toReturn;
|
||
|
toReturn.id = propertyEntry->getUInt64("id");
|
||
|
toReturn.ownerId = propertyEntry->getUInt64("owner_id");
|
||
|
toReturn.cloneId = propertyEntry->getUInt64("clone_id");
|
||
|
toReturn.name = propertyEntry->getString("name").c_str();
|
||
|
toReturn.description = propertyEntry->getString("description").c_str();
|
||
|
toReturn.privacyOption = propertyEntry->getInt("privacy_option");
|
||
|
toReturn.rejectionReason = propertyEntry->getString("rejection_reason").c_str();
|
||
|
toReturn.lastUpdatedTime = propertyEntry->getUInt("last_updated");
|
||
|
toReturn.claimedTime = propertyEntry->getUInt("time_claimed");
|
||
|
toReturn.reputation = propertyEntry->getUInt("reputation");
|
||
|
toReturn.modApproved = propertyEntry->getUInt("mod_approved");
|
||
|
|
||
|
return toReturn;
|
||
|
}
|
||
|
|
||
|
void MySQLDatabase::UpdatePropertyModerationInfo(const IProperty::Info& info) {
|
||
|
ExecuteUpdate("UPDATE properties SET privacy_option = ?, rejection_reason = ?, mod_approved = ? WHERE id = ? LIMIT 1;",
|
||
|
info.privacyOption,
|
||
|
info.rejectionReason,
|
||
|
info.modApproved,
|
||
|
info.id);
|
||
|
}
|
||
|
|
||
|
void MySQLDatabase::UpdatePropertyDetails(const IProperty::Info& info) {
|
||
|
ExecuteUpdate("UPDATE properties SET name = ?, description = ? WHERE id = ? LIMIT 1;", info.name, info.description, info.id);
|
||
|
}
|
||
|
|
||
|
void MySQLDatabase::UpdatePerformanceCost(const LWOZONEID& zoneId, const float performanceCost) {
|
||
|
ExecuteUpdate("UPDATE properties SET performance_cost = ? WHERE zone_id = ? AND clone_id = ? LIMIT 1;", performanceCost, zoneId.GetMapID(), zoneId.GetCloneID());
|
||
|
}
|
||
|
|
||
|
void MySQLDatabase::InsertNewProperty(const IProperty::Info& info, const uint32_t templateId, const LWOZONEID& zoneId) {
|
||
|
auto insertion = ExecuteInsert(
|
||
|
"INSERT INTO properties"
|
||
|
"(id, owner_id, template_id, clone_id, name, description, zone_id, rent_amount, rent_due, privacy_option, last_updated, time_claimed, rejection_reason, reputation, performance_cost)"
|
||
|
"VALUES (?, ?, ?, ?, ?, ?, ?, 0, 0, 0, UNIX_TIMESTAMP(), UNIX_TIMESTAMP(), '', 0, 0.0)",
|
||
|
info.id,
|
||
|
info.ownerId,
|
||
|
templateId,
|
||
|
zoneId.GetCloneID(),
|
||
|
info.name,
|
||
|
info.description,
|
||
|
zoneId.GetMapID()
|
||
|
);
|
||
|
}
|