1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
|
/*
* Copyright (C) 2008-2017 TrinityCore <http://www.trinitycore.org/>
*
* 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 2 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/>.
*/
#include "PetitionMgr.h"
#include "DatabaseEnv.h"
#include "Log.h"
#include "ObjectAccessor.h"
#include "ObjectMgr.h"
#include "Player.h"
#include "Timer.h"
#include "WorldSession.h"
#include <unordered_map>
namespace
{
std::unordered_map<ObjectGuid, Petition> _petitionStore;
}
PetitionMgr* PetitionMgr::instance()
{
static PetitionMgr instance;
return &instance;
}
void PetitionMgr::LoadPetitions()
{
uint32 oldMSTime = getMSTime();
_petitionStore.clear();
QueryResult result = CharacterDatabase.Query("SELECT petitionguid, ownerguid, name, type FROM petition");
if (!result)
{
TC_LOG_INFO("server.loading", ">> Loaded 0 petitions.");
return;
}
uint32 count = 0;
do
{
Field* fields = result->Fetch();
AddPetition(ObjectGuid::Create<HighGuid::Item>(fields[0].GetUInt32()), ObjectGuid::Create<HighGuid::Player>(fields[1].GetUInt32()), fields[2].GetString(), static_cast<CharterTypes>(fields[3].GetUInt8()), true);
++count;
} while (result->NextRow());
TC_LOG_INFO("server.loading", ">> Loaded %u petitions in: %u ms.", count, GetMSTimeDiffToNow(oldMSTime));
}
void PetitionMgr::LoadSignatures()
{
uint32 oldMSTime = getMSTime();
QueryResult result = CharacterDatabase.Query("SELECT petitionguid, player_account, playerguid FROM petition_sign");
if (!result)
{
TC_LOG_INFO("server.loading", ">> Loaded 0 Petition signs!");
return;
}
uint32 count = 0;
do
{
Field* fields = result->Fetch();
Petition* petition = GetPetition(ObjectGuid::Create<HighGuid::Item>(fields[0].GetUInt32()));
if (!petition)
continue;
petition->AddSignature(petition->petitionGuid, fields[1].GetUInt32(), ObjectGuid::Create<HighGuid::Player>(fields[2].GetUInt32()), true);
++count;
} while (result->NextRow());
TC_LOG_INFO("server.loading", ">> Loaded %u Petition signs in %u ms.", count, GetMSTimeDiffToNow(oldMSTime));
}
void PetitionMgr::AddPetition(ObjectGuid petitionGuid, ObjectGuid ownerGuid, std::string const& name, CharterTypes type, bool isLoading)
{
Petition& p = _petitionStore[petitionGuid];
p.petitionGuid = petitionGuid;
p.ownerGuid = ownerGuid;
p.petitionName = name;
p.petitionType = type;
p.signatures.clear();
if (isLoading)
return;
PreparedStatement* stmt = CharacterDatabase.GetPreparedStatement(CHAR_INS_PETITION);
stmt->setUInt32(0, ownerGuid.GetCounter());
stmt->setUInt32(1, petitionGuid.GetCounter());
stmt->setString(2, name);
stmt->setUInt8(3, uint8(type));
CharacterDatabase.Execute(stmt);
}
void PetitionMgr::RemovePetition(ObjectGuid petitionGuid)
{
_petitionStore.erase(petitionGuid);
// Delete From DB
SQLTransaction trans = CharacterDatabase.BeginTransaction();
PreparedStatement* stmt = CharacterDatabase.GetPreparedStatement(CHAR_DEL_PETITION_BY_GUID);
stmt->setUInt32(0, petitionGuid.GetCounter());
trans->Append(stmt);
stmt = CharacterDatabase.GetPreparedStatement(CHAR_DEL_PETITION_SIGNATURE_BY_GUID);
stmt->setUInt32(0, petitionGuid.GetCounter());
trans->Append(stmt);
CharacterDatabase.CommitTransaction(trans);
}
Petition* PetitionMgr::GetPetition(ObjectGuid petitionGuid)
{
auto itr = _petitionStore.find(petitionGuid);
if (itr != _petitionStore.end())
return &itr->second;
return nullptr;
}
Petition* PetitionMgr::GetPetitionByOwnerWithType(ObjectGuid ownerGuid, CharterTypes type)
{
for (auto& petitionPair : _petitionStore)
if (petitionPair.second.ownerGuid == ownerGuid && petitionPair.second.petitionType == type)
return &petitionPair.second;
return nullptr;
}
void PetitionMgr::RemovePetitionsByOwnerAndType(ObjectGuid ownerGuid, CharterTypes type)
{
for (auto itr = _petitionStore.begin(); itr != _petitionStore.end();)
{
if (itr->second.ownerGuid == ownerGuid)
{
if (type == CHARTER_TYPE_ANY)
itr = _petitionStore.erase(itr);
else if (type == itr->second.petitionType)
{
itr = _petitionStore.erase(itr);
break;
}
else
++itr;
}
else
++itr;
}
PreparedStatement* stmt;
SQLTransaction trans = CharacterDatabase.BeginTransaction();
if (type == CHARTER_TYPE_ANY)
{
stmt = CharacterDatabase.GetPreparedStatement(CHAR_DEL_PETITION_BY_OWNER);
stmt->setUInt32(0, ownerGuid.GetCounter());
trans->Append(stmt);
stmt = CharacterDatabase.GetPreparedStatement(CHAR_DEL_PETITION_SIGNATURE_BY_OWNER);
stmt->setUInt32(0, ownerGuid.GetCounter());
trans->Append(stmt);
}
else
{
stmt = CharacterDatabase.GetPreparedStatement(CHAR_DEL_PETITION_BY_OWNER_AND_TYPE);
stmt->setUInt32(0, ownerGuid.GetCounter());
stmt->setUInt8(1, uint8(type));
trans->Append(stmt);
stmt = CharacterDatabase.GetPreparedStatement(CHAR_DEL_PETITION_SIGNATURE_BY_OWNER_AND_TYPE);
stmt->setUInt32(0, ownerGuid.GetCounter());
stmt->setUInt8(1, uint8(type));
trans->Append(stmt);
}
CharacterDatabase.CommitTransaction(trans);
}
void PetitionMgr::RemoveSignaturesBySignerAndType(ObjectGuid signerGuid, CharterTypes type)
{
for (auto& petitionPair : _petitionStore)
{
if (petitionPair.second.petitionType == CHARTER_TYPE_ANY || petitionPair.second.petitionType == type)
petitionPair.second.RemoveSignatureBySigner(signerGuid);
}
PreparedStatement* stmt;
if (type == CHARTER_TYPE_ANY)
{
stmt = CharacterDatabase.GetPreparedStatement(CHAR_DEL_ALL_PETITION_SIGNATURES);
stmt->setUInt32(0, signerGuid.GetCounter());
}
else
{
stmt = CharacterDatabase.GetPreparedStatement(CHAR_DEL_PETITION_SIGNATURE);
stmt->setUInt32(0, signerGuid.GetCounter());
stmt->setUInt8(1, uint8(type));
}
CharacterDatabase.Execute(stmt);
}
bool Petition::IsPetitionSignedByAccount(uint32 accountId) const
{
for (Signature const& signature : signatures)
if (signature.first == accountId)
return true;
return false;
}
void Petition::AddSignature(ObjectGuid petitionGuid, uint32 accountId, ObjectGuid playerGuid, bool isLoading)
{
signatures.emplace_back(accountId, playerGuid);
if (isLoading)
return;
PreparedStatement* stmt = CharacterDatabase.GetPreparedStatement(CHAR_INS_PETITION_SIGNATURE);
stmt->setUInt32(0, ownerGuid.GetCounter());
stmt->setUInt32(1, petitionGuid.GetCounter());
stmt->setUInt32(2, playerGuid);
stmt->setUInt32(3, accountId);
CharacterDatabase.Execute(stmt);
}
void Petition::UpdateName(std::string const& newName)
{
petitionName = newName;
PreparedStatement* stmt = CharacterDatabase.GetPreparedStatement(CHAR_UPD_PETITION_NAME);
stmt->setString(0, newName);
stmt->setUInt32(1, petitionGuid.GetCounter());
CharacterDatabase.Execute(stmt);
}
void Petition::RemoveSignatureBySigner(ObjectGuid playerGuid)
{
for (auto itr = signatures.begin(); itr != signatures.end(); ++itr)
{
if (itr->second == playerGuid)
{
signatures.erase(itr);
// notify owner
if (Player* owner = ObjectAccessor::FindConnectedPlayer(ownerGuid))
owner->GetSession()->SendPetitionQueryOpcode(petitionGuid);
break;
}
}
}
|