Explicitly pass database pointers to repository methods

This commit is contained in:
Akkadius
2021-02-05 23:00:27 -06:00
parent 7fe0bbacd4
commit e8ab176d4a
167 changed files with 2738 additions and 1938 deletions
@@ -147,10 +147,11 @@ public:
}
static Fishing FindOne(
Database& db,
int fishing_id
)
{
auto results = content_db.QueryDatabase(
auto results = db.QueryDatabase(
fmt::format(
"{} WHERE id = {} LIMIT 1",
BaseSelect(),
@@ -181,10 +182,11 @@ public:
}
static int DeleteOne(
Database& db,
int fishing_id
)
{
auto results = content_db.QueryDatabase(
auto results = db.QueryDatabase(
fmt::format(
"DELETE FROM {} WHERE {} = {}",
TableName(),
@@ -197,6 +199,7 @@ public:
}
static int UpdateOne(
Database& db,
Fishing fishing_entry
)
{
@@ -215,7 +218,7 @@ public:
update_values.push_back(columns[9] + " = '" + EscapeString(fishing_entry.content_flags) + "'");
update_values.push_back(columns[10] + " = '" + EscapeString(fishing_entry.content_flags_disabled) + "'");
auto results = content_db.QueryDatabase(
auto results = db.QueryDatabase(
fmt::format(
"UPDATE {} SET {} WHERE {} = {}",
TableName(),
@@ -229,6 +232,7 @@ public:
}
static Fishing InsertOne(
Database& db,
Fishing fishing_entry
)
{
@@ -264,6 +268,7 @@ public:
}
static int InsertMany(
Database& db,
std::vector<Fishing> fishing_entries
)
{
@@ -288,7 +293,7 @@ public:
std::vector<std::string> insert_values;
auto results = content_db.QueryDatabase(
auto results = db.QueryDatabase(
fmt::format(
"{} VALUES {}",
BaseInsert(),
@@ -299,11 +304,11 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
static std::vector<Fishing> All()
static std::vector<Fishing> All(Database& db)
{
std::vector<Fishing> all_entries;
auto results = content_db.QueryDatabase(
auto results = db.QueryDatabase(
fmt::format(
"{}",
BaseSelect()
@@ -333,11 +338,11 @@ public:
return all_entries;
}
static std::vector<Fishing> GetWhere(std::string where_filter)
static std::vector<Fishing> GetWhere(Database& db, std::string where_filter)
{
std::vector<Fishing> all_entries;
auto results = content_db.QueryDatabase(
auto results = db.QueryDatabase(
fmt::format(
"{} WHERE {}",
BaseSelect(),
@@ -368,9 +373,9 @@ public:
return all_entries;
}
static int DeleteWhere(std::string where_filter)
static int DeleteWhere(Database& db, std::string where_filter)
{
auto results = content_db.QueryDatabase(
auto results = db.QueryDatabase(
fmt::format(
"DELETE FROM {} WHERE {}",
TableName(),
@@ -381,9 +386,9 @@ public:
return (results.Success() ? results.RowsAffected() : 0);
}
static int Truncate()
static int Truncate(Database& db)
{
auto results = content_db.QueryDatabase(
auto results = db.QueryDatabase(
fmt::format(
"TRUNCATE TABLE {}",
TableName()