mirror of
https://github.com/EQEmu/Server.git
synced 2026-04-02 20:42:28 +00:00
- License was intended to be GPLv3 per earlier commit of GPLv3 LICENSE FILE - This is confirmed by the inclusion of libraries that are incompatible with GPLv2 - This is also confirmed by KLS and the agreement of KLS's predecessors - Added GPLv3 license headers to the compilable source files - Removed Folly licensing in strings.h since the string functions do not match the Folly functions and are standard functions - this must have been left over from previous implementations - Removed individual contributor license headers since the project has been under the "developer" mantle for many years - Removed comments on files that were previously automatically generated since they've been manually modified multiple times and there are no automatic scripts referencing them (removed in 2023)
112 lines
3.0 KiB
C++
112 lines
3.0 KiB
C++
/* EQEmu: EQEmulator
|
|
|
|
Copyright (C) 2001-2026 EQEmu Development Team
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
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. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
#pragma once
|
|
|
|
#include "common/repositories/base/base_items_repository.h"
|
|
|
|
#include "common/database.h"
|
|
#include "common/strings.h"
|
|
|
|
class ItemsRepository: public BaseItemsRepository {
|
|
public:
|
|
struct Bazaar_Results {
|
|
uint32 item_id;
|
|
std::string name;
|
|
bool stackable;
|
|
uint32 icon;
|
|
uint32 stats;
|
|
};
|
|
|
|
static std::vector<int32> GetItemIDsBySearchCriteria(
|
|
Database& db,
|
|
std::string search_string,
|
|
int query_limit = 0
|
|
)
|
|
{
|
|
auto query = fmt::format(
|
|
"SELECT `id` FROM {} WHERE LOWER(`name`) LIKE '%%{}%%' ORDER BY id ASC",
|
|
TableName(),
|
|
Strings::Escape(search_string)
|
|
);
|
|
|
|
if (query_limit >= 1) {
|
|
query += fmt::format(" LIMIT {}", query_limit);
|
|
}
|
|
|
|
std::vector<int32> item_id_list;
|
|
|
|
auto results = db.QueryDatabase(query);
|
|
if (!results.Success() || !results.RowCount()) {
|
|
return item_id_list;
|
|
}
|
|
|
|
for (auto row : results) {
|
|
item_id_list.emplace_back(Strings::ToInt(row[0]));
|
|
}
|
|
|
|
return item_id_list;
|
|
}
|
|
|
|
static std::unordered_map<uint32, Bazaar_Results> GetItemsForBazaarSearch(
|
|
Database& db,
|
|
const std::vector<std::string> &search_ids,
|
|
const std::string &name,
|
|
const std::string &field_criteria_items,
|
|
const std::string &where_criteria_items,
|
|
const uint32 query_limit = 0
|
|
)
|
|
{
|
|
auto query = fmt::format(
|
|
"SELECT id, name, stackable, icon, {} "
|
|
"FROM items "
|
|
"WHERE `name` LIKE '%%{}%%' AND {} AND id IN({}) "
|
|
"ORDER BY id ASC",
|
|
field_criteria_items,
|
|
Strings::Escape(name),
|
|
where_criteria_items,
|
|
Strings::Implode(",", search_ids)
|
|
);
|
|
|
|
if (query_limit >= 1) {
|
|
query += fmt::format(" LIMIT {}", query_limit);
|
|
}
|
|
|
|
std::unordered_map<uint32, Bazaar_Results> item_list;
|
|
|
|
auto results = db.QueryDatabase(query);
|
|
if (!results.Success() || !results.RowCount()) {
|
|
return item_list;
|
|
}
|
|
|
|
item_list.reserve(results.RowCount());
|
|
for (auto row : results) {
|
|
Bazaar_Results br{};
|
|
br.item_id = row[0] ? static_cast<int32_t>(atoi(row[0])) : 0;
|
|
br.name = row[1] ? row[1] : "";
|
|
br.stackable = atoi(row[2]) ? true : false;
|
|
br.icon = row[3] ? static_cast<int32_t>(atoi(row[3])) : 0;
|
|
br.stats = row[4] ? static_cast<int32_t>(atoi(row[4])) : 0;
|
|
|
|
item_list.emplace(br.item_id, br);
|
|
}
|
|
|
|
return item_list;
|
|
}
|
|
|
|
};
|