/* 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 . */ #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 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 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 GetItemsForBazaarSearch( Database& db, const std::vector &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 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(atoi(row[0])) : 0; br.name = row[1] ? row[1] : ""; br.stackable = atoi(row[2]) ? true : false; br.icon = row[3] ? static_cast(atoi(row[3])) : 0; br.stats = row[4] ? static_cast(atoi(row[4])) : 0; item_list.emplace(br.item_id, br); } return item_list; } };