#include "MySQLDatabase.h" #include "ePropertySortType.h" IProperty::Info ReadPropertyInfo(UniqueResultSet& result) { IProperty::Info info; info.id = result->getUInt64("id"); info.ownerId = result->getInt64("owner_id"); info.cloneId = result->getUInt64("clone_id"); info.name = result->getString("name").c_str(); info.description = result->getString("description").c_str(); info.privacyOption = result->getInt("privacy_option"); info.rejectionReason = result->getString("rejection_reason").c_str(); info.lastUpdatedTime = result->getUInt("last_updated"); info.claimedTime = result->getUInt("time_claimed"); info.reputation = result->getUInt("reputation"); info.modApproved = result->getUInt("mod_approved"); info.performanceCost = result->getFloat("performance_cost"); return info; } std::optional MySQLDatabase::GetProperties(const IProperty::PropertyLookup& params) { std::optional result; std::string query; std::unique_ptr properties; if (params.sortChoice == SORT_TYPE_FEATURED || params.sortChoice == SORT_TYPE_FRIENDS) { query = R"QUERY( FROM properties as p JOIN charinfo as ci ON ci.prop_clone_id = p.clone_id where p.zone_id = ? AND ( p.description LIKE ? OR p.name LIKE ? OR ci.name LIKE ? ) AND p.privacy_option >= ? AND p.owner_id IN ( SELECT fr.requested_player AS player FROM ( SELECT CASE WHEN player_id = ? THEN friend_id WHEN friend_id = ? THEN player_id END AS requested_player FROM friends ) AS fr JOIN charinfo AS ci ON ci.id = fr.requested_player WHERE fr.requested_player IS NOT NULL AND fr.requested_player != ? ) ORDER BY ci.name ASC )QUERY"; const auto completeQuery = "SELECT p.* " + query + " LIMIT ? OFFSET ?;"; properties = ExecuteSelect( completeQuery, params.mapId, "%" + params.searchString + "%", "%" + params.searchString + "%", "%" + params.searchString + "%", params.playerSort, params.playerId, params.playerId, params.playerId, params.numResults, params.startIndex ); const auto countQuery = "SELECT COUNT(*) as count" + query + ";"; auto count = ExecuteSelect( countQuery, params.mapId, "%" + params.searchString + "%", "%" + params.searchString + "%", "%" + params.searchString + "%", params.playerSort, params.playerId, params.playerId, params.playerId ); if (count->next()) { if (!result) result = IProperty::PropertyEntranceResult(); result->totalEntriesMatchingQuery = count->getUInt("count"); } } else { if (params.sortChoice == SORT_TYPE_REPUTATION) { query = R"QUERY( FROM properties as p JOIN charinfo as ci ON ci.prop_clone_id = p.clone_id where p.zone_id = ? AND ( p.description LIKE ? OR p.name LIKE ? OR ci.name LIKE ? ) AND p.privacy_option >= ? ORDER BY p.reputation DESC, p.last_updated DESC )QUERY"; } else { query = R"QUERY( FROM properties as p JOIN charinfo as ci ON ci.prop_clone_id = p.clone_id where p.zone_id = ? AND ( p.description LIKE ? OR p.name LIKE ? OR ci.name LIKE ? ) AND p.privacy_option >= ? ORDER BY p.last_updated DESC )QUERY"; } const auto completeQuery = "SELECT p.* " + query + " LIMIT ? OFFSET ?;"; properties = ExecuteSelect( completeQuery, params.mapId, "%" + params.searchString + "%", "%" + params.searchString + "%", "%" + params.searchString + "%", params.playerSort, params.numResults, params.startIndex ); const auto countQuery = "SELECT COUNT(*) as count" + query + ";"; auto count = ExecuteSelect( countQuery, params.mapId, "%" + params.searchString + "%", "%" + params.searchString + "%", "%" + params.searchString + "%", params.playerSort ); if (count->next()) { if (!result) result = IProperty::PropertyEntranceResult(); result->totalEntriesMatchingQuery = count->getUInt("count"); } } while (properties->next()) { if (!result) result = IProperty::PropertyEntranceResult(); result->entries.push_back(ReadPropertyInfo(properties)); } return result; } std::optional 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, performance_cost " "FROM properties WHERE zone_id = ? AND clone_id = ?;", mapId, cloneId); if (!propertyEntry->next()) { return std::nullopt; } return ReadPropertyInfo(propertyEntry); } 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::UpdateLastSave(const IProperty::Info& info) { ExecuteUpdate("UPDATE properties SET last_updated = ? WHERE id = ?;", info.lastUpdatedTime, 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() ); } std::optional MySQLDatabase::GetPropertyInfo(const LWOOBJID id) { auto propertyEntry = ExecuteSelect( "SELECT id, owner_id, clone_id, name, description, privacy_option, rejection_reason, last_updated, time_claimed, reputation, mod_approved, performance_cost " "FROM properties WHERE id = ?;", id); if (!propertyEntry->next()) { return std::nullopt; } return ReadPropertyInfo(propertyEntry); } #include "json.hpp" std::string MySQLDatabase::GetPropertiesTable(uint32_t start, uint32_t length, const std::string_view search, uint32_t orderColumn, bool orderAsc) { // Build base query std::string baseQuery = "SELECT id, owner_id, name, mod_approved, reputation, zone_id FROM properties"; std::string whereClause; std::string orderClause; // Add search filter if provided if (!search.empty()) { whereClause = " WHERE name LIKE CONCAT('%', ?, '%')"; } // Map column indices to database columns std::string orderColumnName = "id"; switch (orderColumn) { case 0: orderColumnName = "id"; break; case 1: orderColumnName = "name"; break; case 2: orderColumnName = "owner_id"; break; case 3: orderColumnName = "mod_approved"; break; case 4: orderColumnName = "reputation"; break; case 5: orderColumnName = "zone_id"; break; default: orderColumnName = "id"; } orderClause = " ORDER BY " + orderColumnName + (orderAsc ? " ASC" : " DESC"); // Build the main query std::string mainQuery = baseQuery + whereClause + orderClause + " LIMIT ?, ?;"; // Get total count std::string totalCountQuery = "SELECT COUNT(*) as count FROM properties;"; auto totalCountResult = ExecuteSelect(totalCountQuery); uint32_t totalRecords = totalCountResult->next() ? totalCountResult->getUInt("count") : 0; // Get filtered count uint32_t filteredRecords = totalRecords; if (!search.empty()) { std::string filteredCountQuery = "SELECT COUNT(*) as count FROM properties WHERE name LIKE CONCAT('%', ?, '%');"; auto filteredCountResult = ExecuteSelect(filteredCountQuery, search); filteredRecords = filteredCountResult->next() ? filteredCountResult->getUInt("count") : 0; } // Execute main query std::unique_ptr result; if (!search.empty()) { result = ExecuteSelect(mainQuery, search, start, length); } else { result = ExecuteSelect(mainQuery, start, length); } // Build response JSON nlohmann::json propertiesArray = nlohmann::json::array(); while (result->next()) { nlohmann::json property = { {"id", result->getUInt64("id")}, {"owner_id", result->getUInt64("owner_id")}, {"name", result->getString("name")}, {"mod_approved", result->getBoolean("mod_approved")}, {"reputation", result->getUInt64("reputation")}, {"zone_id", result->getUInt("zone_id")} }; propertiesArray.push_back(property); } nlohmann::json response = { {"draw", 0}, {"recordsTotal", totalRecords}, {"recordsFiltered", filteredRecords}, {"data", propertiesArray} }; return response.dump(); }