eqemu-server/common/repositories/base/base_gm_ips_repository.h

405 lines
7.6 KiB
C++

/**
* DO NOT MODIFY THIS FILE
*
* This repository was automatically generated and is NOT to be modified directly.
* Any repository modifications are meant to be made to the repository extending the base.
* Any modifications to base repositories are to be made by the generator only
*
* @generator ./utils/scripts/generators/repository-generator.pl
* @docs https://docs.eqemu.io/developer/repositories
*/
#ifndef EQEMU_BASE_GM_IPS_REPOSITORY_H
#define EQEMU_BASE_GM_IPS_REPOSITORY_H
#include "../../database.h"
#include "../../strings.h"
#include <ctime>
class BaseGmIpsRepository {
public:
struct GmIps {
std::string name;
int32_t account_id;
std::string ip_address;
};
static std::string PrimaryKey()
{
return std::string("account_id");
}
static std::vector<std::string> Columns()
{
return {
"name",
"account_id",
"ip_address",
};
}
static std::vector<std::string> SelectColumns()
{
return {
"name",
"account_id",
"ip_address",
};
}
static std::string ColumnsRaw()
{
return std::string(Strings::Implode(", ", Columns()));
}
static std::string SelectColumnsRaw()
{
return std::string(Strings::Implode(", ", SelectColumns()));
}
static std::string TableName()
{
return std::string("gm_ips");
}
static std::string BaseSelect()
{
return fmt::format(
"SELECT {} FROM {}",
SelectColumnsRaw(),
TableName()
);
}
static std::string BaseInsert()
{
return fmt::format(
"INSERT INTO {} ({}) ",
TableName(),
ColumnsRaw()
);
}
static GmIps NewEntity()
{
GmIps e{};
e.name = "";
e.account_id = 0;
e.ip_address = "";
return e;
}
static GmIps GetGmIps(
const std::vector<GmIps> &gm_ipss,
int gm_ips_id
)
{
for (auto &gm_ips : gm_ipss) {
if (gm_ips.account_id == gm_ips_id) {
return gm_ips;
}
}
return NewEntity();
}
static GmIps FindOne(
Database& db,
int gm_ips_id
)
{
auto results = db.QueryDatabase(
fmt::format(
"{} WHERE {} = {} LIMIT 1",
BaseSelect(),
PrimaryKey(),
gm_ips_id
)
);
auto row = results.begin();
if (results.RowCount() == 1) {
GmIps e{};
e.name = row[0] ? row[0] : "";
e.account_id = static_cast<int32_t>(atoi(row[1]));
e.ip_address = row[2] ? row[2] : "";
return e;
}
return NewEntity();
}
static int DeleteOne(
Database& db,
int gm_ips_id
)
{
auto results = db.QueryDatabase(
fmt::format(
"DELETE FROM {} WHERE {} = {}",
TableName(),
PrimaryKey(),
gm_ips_id
)
);
return (results.Success() ? results.RowsAffected() : 0);
}
static int UpdateOne(
Database& db,
const GmIps &e
)
{
std::vector<std::string> v;
auto columns = Columns();
v.push_back(columns[0] + " = '" + Strings::Escape(e.name) + "'");
v.push_back(columns[1] + " = " + std::to_string(e.account_id));
v.push_back(columns[2] + " = '" + Strings::Escape(e.ip_address) + "'");
auto results = db.QueryDatabase(
fmt::format(
"UPDATE {} SET {} WHERE {} = {}",
TableName(),
Strings::Implode(", ", v),
PrimaryKey(),
e.account_id
)
);
return (results.Success() ? results.RowsAffected() : 0);
}
static GmIps InsertOne(
Database& db,
GmIps e
)
{
std::vector<std::string> v;
v.push_back("'" + Strings::Escape(e.name) + "'");
v.push_back(std::to_string(e.account_id));
v.push_back("'" + Strings::Escape(e.ip_address) + "'");
auto results = db.QueryDatabase(
fmt::format(
"{} VALUES ({})",
BaseInsert(),
Strings::Implode(",", v)
)
);
if (results.Success()) {
e.account_id = results.LastInsertedID();
return e;
}
e = NewEntity();
return e;
}
static int InsertMany(
Database& db,
const std::vector<GmIps> &entries
)
{
std::vector<std::string> insert_chunks;
for (auto &e: entries) {
std::vector<std::string> v;
v.push_back("'" + Strings::Escape(e.name) + "'");
v.push_back(std::to_string(e.account_id));
v.push_back("'" + Strings::Escape(e.ip_address) + "'");
insert_chunks.push_back("(" + Strings::Implode(",", v) + ")");
}
std::vector<std::string> v;
auto results = db.QueryDatabase(
fmt::format(
"{} VALUES {}",
BaseInsert(),
Strings::Implode(",", insert_chunks)
)
);
return (results.Success() ? results.RowsAffected() : 0);
}
static std::vector<GmIps> All(Database& db)
{
std::vector<GmIps> all_entries;
auto results = db.QueryDatabase(
fmt::format(
"{}",
BaseSelect()
)
);
all_entries.reserve(results.RowCount());
for (auto row = results.begin(); row != results.end(); ++row) {
GmIps e{};
e.name = row[0] ? row[0] : "";
e.account_id = static_cast<int32_t>(atoi(row[1]));
e.ip_address = row[2] ? row[2] : "";
all_entries.push_back(e);
}
return all_entries;
}
static std::vector<GmIps> GetWhere(Database& db, const std::string &where_filter)
{
std::vector<GmIps> all_entries;
auto results = db.QueryDatabase(
fmt::format(
"{} WHERE {}",
BaseSelect(),
where_filter
)
);
all_entries.reserve(results.RowCount());
for (auto row = results.begin(); row != results.end(); ++row) {
GmIps e{};
e.name = row[0] ? row[0] : "";
e.account_id = static_cast<int32_t>(atoi(row[1]));
e.ip_address = row[2] ? row[2] : "";
all_entries.push_back(e);
}
return all_entries;
}
static int DeleteWhere(Database& db, const std::string &where_filter)
{
auto results = db.QueryDatabase(
fmt::format(
"DELETE FROM {} WHERE {}",
TableName(),
where_filter
)
);
return (results.Success() ? results.RowsAffected() : 0);
}
static int Truncate(Database& db)
{
auto results = db.QueryDatabase(
fmt::format(
"TRUNCATE TABLE {}",
TableName()
)
);
return (results.Success() ? results.RowsAffected() : 0);
}
static int64 GetMaxId(Database& db)
{
auto results = db.QueryDatabase(
fmt::format(
"SELECT COALESCE(MAX({}), 0) FROM {}",
PrimaryKey(),
TableName()
)
);
return (results.Success() && results.begin()[0] ? strtoll(results.begin()[0], nullptr, 10) : 0);
}
static int64 Count(Database& db, const std::string &where_filter = "")
{
auto results = db.QueryDatabase(
fmt::format(
"SELECT COUNT(*) FROM {} {}",
TableName(),
(where_filter.empty() ? "" : "WHERE " + where_filter)
)
);
return (results.Success() && results.begin()[0] ? strtoll(results.begin()[0], nullptr, 10) : 0);
}
static std::string BaseReplace()
{
return fmt::format(
"REPLACE INTO {} ({}) ",
TableName(),
ColumnsRaw()
);
}
static int ReplaceOne(
Database& db,
const GmIps &e
)
{
std::vector<std::string> v;
v.push_back("'" + Strings::Escape(e.name) + "'");
v.push_back(std::to_string(e.account_id));
v.push_back("'" + Strings::Escape(e.ip_address) + "'");
auto results = db.QueryDatabase(
fmt::format(
"{} VALUES ({})",
BaseReplace(),
Strings::Implode(",", v)
)
);
return (results.Success() ? results.RowsAffected() : 0);
}
static int ReplaceMany(
Database& db,
const std::vector<GmIps> &entries
)
{
std::vector<std::string> insert_chunks;
for (auto &e: entries) {
std::vector<std::string> v;
v.push_back("'" + Strings::Escape(e.name) + "'");
v.push_back(std::to_string(e.account_id));
v.push_back("'" + Strings::Escape(e.ip_address) + "'");
insert_chunks.push_back("(" + Strings::Implode(",", v) + ")");
}
std::vector<std::string> v;
auto results = db.QueryDatabase(
fmt::format(
"{} VALUES {}",
BaseReplace(),
Strings::Implode(",", insert_chunks)
)
);
return (results.Success() ? results.RowsAffected() : 0);
}
};
#endif //EQEMU_BASE_GM_IPS_REPOSITORY_H