Merge pull request #83 from Salanto/Testimony-Loading/Saving

Testimony loading/saving
This commit is contained in:
Marisa P 2021-04-18 15:35:13 -05:00 committed by GitHub
commit a8d3dfa27a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 163 additions and 0 deletions

View File

@ -0,0 +1,4 @@
1#-#Hobo_Phoenix#hobo-normal#~~\n-- Sample Recording --#wit#1#0#22#1#0#0#0#0#3##-1#0#0#0<and>0#0#0#0#0#0#-^(b)hobo-normal^(a)hobo-normal^#-^(b)hobo-normal^(a)hobo-normal^#-^(b)hobo-normal^(a)hobo-normal^#0#||
1#-#Hobo_Phoenix#hobo-normal#This is a sample recording to test the loading and saving of testimonies.#wit#1#0#22#1#0#0#0#0#1##-1#0#0#0<and>0#0#0#0#0#0#-^(b)hobo-normal^(a)hobo-normal^#-^(b)hobo-normal^(a)hobo-normal^#-^(b)hobo-normal^(a)hobo-normal^#0#||
1#-#Hobo_Phoenix#hobo-bigeyed#If you are reading this your server supports testimony loading correctly.#wit#1#0#22#1#0#0#0#0#1##-1#0#0#0<and>0#0#0#0#0#0#-^(b)hobo-bigeyed^(a)hobo-bigeyed^#-^(b)hobo-bigeyed^(a)hobo-bigeyed^#-^(b)hobo-bigeyed^(a)hobo-bigeyed^#0#||
1#-#Hobo_Phoenix#hobo-bigeyed#There is nothing else to be read here.#wit#1#0#22#1#0#0#0#0#1##-1#0#0#0<and>0#0#0#0#0#0#-^(b)hobo-bigeyed^(a)hobo-bigeyed^#-^(b)hobo-bigeyed^(a)hobo-bigeyed^#-^(b)hobo-bigeyed^(a)hobo-bigeyed^#0#||

View File

@ -220,6 +220,7 @@ class AOClient : public QObject {
{"MODCHAT", 1ULL << 9 }, {"MODCHAT", 1ULL << 9 },
{"MUTE", 1ULL << 10}, {"MUTE", 1ULL << 10},
{"UNCM", 1ULL << 11}, {"UNCM", 1ULL << 11},
{"SAVETEST", 1ULL << 12},
{"SUPER", ~0ULL }, {"SUPER", ~0ULL },
}; };
@ -265,6 +266,10 @@ class AOClient : public QObject {
*/ */
QTimer* afk_timer; QTimer* afk_timer;
/**
* @brief Temporary client permission if client is allowed to save a testimony to server storage.
*/
bool testimony_saving = false;
public slots: public slots:
/** /**
@ -1154,6 +1159,16 @@ class AOClient : public QObject {
*/ */
void cmdAllowIniswap(int argc, QStringList argv); void cmdAllowIniswap(int argc, QStringList argv);
/**
* @brief Grants a client the temporary permission to save a testimony.
*
* @details ClientID as the target of permission
*
* @iscommand
*
*/
void cmdPermitSaving(int argc, QStringList argv);
///@} ///@}
/** /**
@ -1565,6 +1580,34 @@ class AOClient : public QObject {
*/ */
void cmdAddStatement(int argc, QStringList argv); void cmdAddStatement(int argc, QStringList argv);
/**
* @brief Sends a list of the testimony to OOC of the requesting client
*
* @details Retrieves all stored IC-Messages of the area and dumps them into OOC with some formatting.
*
*/
void cmdTestimony(int argc, QStringList argv);
/**
* @brief Saves a testimony recording to the servers storage.
*
* @details Saves a titled text file which contains the edited packets into a text file.
* The filename will always be lowercase.
*
*/
void cmdSaveTestimony(int argc, QStringList argv);
/**
* @brief Loads testimony for the testimony replay. Argument is the testimony name.
*
* @details Loads a titled text file which contains the edited packets to be loaded into the QVector.
* Validates the size of the testimony to ensure the entire testimony can be replayed.
* Testimony name will always be converted to lowercase.
*
*/
void cmdLoadTestimony(int argc, QStringList argv);
///@} ///@}
/** /**
@ -1857,6 +1900,7 @@ class AOClient : public QObject {
{"ungimp", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnGimp}}, {"ungimp", {ACLFlags.value("MUTE"), 1, &AOClient::cmdUnGimp}},
{"baninfo", {ACLFlags.value("BAN"), 1, &AOClient::cmdBanInfo}}, {"baninfo", {ACLFlags.value("BAN"), 1, &AOClient::cmdBanInfo}},
{"testify", {ACLFlags.value("CM"), 0, &AOClient::cmdTestify}}, {"testify", {ACLFlags.value("CM"), 0, &AOClient::cmdTestify}},
{"testimony", {ACLFlags.value("NONE"), 0, &AOClient::cmdTestimony}},
{"examine", {ACLFlags.value("CM"), 0, &AOClient::cmdExamine}}, {"examine", {ACLFlags.value("CM"), 0, &AOClient::cmdExamine}},
{"pause", {ACLFlags.value("CM"), 0, &AOClient::cmdPauseTestimony}}, {"pause", {ACLFlags.value("CM"), 0, &AOClient::cmdPauseTestimony}},
{"delete", {ACLFlags.value("CM"), 0, &AOClient::cmdDeleteStatement}}, {"delete", {ACLFlags.value("CM"), 0, &AOClient::cmdDeleteStatement}},
@ -1872,6 +1916,9 @@ class AOClient : public QObject {
{"allowiniswap", {ACLFlags.value("CM"), 0, &AOClient::cmdAllowIniswap}}, {"allowiniswap", {ACLFlags.value("CM"), 0, &AOClient::cmdAllowIniswap}},
{"allow_iniswap", {ACLFlags.value("CM"), 0, &AOClient::cmdAllowIniswap}}, {"allow_iniswap", {ACLFlags.value("CM"), 0, &AOClient::cmdAllowIniswap}},
{"afk", {ACLFlags.value("NONE"), 0, &AOClient::cmdAfk}}, {"afk", {ACLFlags.value("NONE"), 0, &AOClient::cmdAfk}},
{"savetestimony", {ACLFlags.value("NONE"), 1, &AOClient::cmdSaveTestimony}},
{"loadtestimony", {ACLFlags.value("CM"), 1, &AOClient::cmdLoadTestimony}},
{"permitsaving", {ACLFlags.value("MODCHAT"), 1, &AOClient::cmdPermitSaving}},
{"mutepm", {ACLFlags.value("NONE"), 0, &AOClient::cmdMutePM}}, {"mutepm", {ACLFlags.value("NONE"), 0, &AOClient::cmdMutePM}},
{"toggleadverts", {ACLFlags.value("NONE"), 0, &AOClient::cmdToggleAdverts}}, {"toggleadverts", {ACLFlags.value("NONE"), 0, &AOClient::cmdToggleAdverts}},
{"oocmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocMute}}, {"oocmute", {ACLFlags.value("MUTE"), 1, &AOClient::cmdOocMute}},

View File

@ -130,6 +130,24 @@ void AOClient::cmdExamine(int argc, QStringList argv)
sendServerMessage("Unable to start replay without prior examination."); sendServerMessage("Unable to start replay without prior examination.");
} }
void AOClient::cmdTestimony(int argc, QStringList argv)
{
AreaData* area = server->areas[current_area];
if (area->testimony.size() -1 < 1) {
sendServerMessage("Unable to display empty testimony.");
return;
}
QString ooc_message;
for (int i = 1; i <= area->testimony.size() -1; i++)
{
QStringList packet = area->testimony.at(i);
QString ic_message = packet[4];
ooc_message.append( "[" + QString::number(i) + "]" + ic_message + "\n");
}
sendServerMessage(ooc_message);
}
void AOClient::cmdDeleteStatement(int argc, QStringList argv) void AOClient::cmdDeleteStatement(int argc, QStringList argv)
{ {
AreaData* area = server->areas[current_area]; AreaData* area = server->areas[current_area];
@ -153,6 +171,7 @@ void AOClient::cmdPauseTestimony(int argc, QStringList argv)
{ {
AreaData* area = server->areas[current_area]; AreaData* area = server->areas[current_area];
area->test_rec = AreaData::TestimonyRecording::STOPPED; area->test_rec = AreaData::TestimonyRecording::STOPPED;
server->broadcast(AOPacket("RT",{"testimony1"}), current_area);
sendServerMessage("Testimony has been stopped."); sendServerMessage("Testimony has been stopped.");
} }
@ -165,3 +184,86 @@ void AOClient::cmdAddStatement(int argc, QStringList argv)
else else
sendServerMessage("Unable to add anymore statements. Please remove any unused ones."); sendServerMessage("Unable to add anymore statements. Please remove any unused ones.");
} }
void AOClient::cmdSaveTestimony(int argc, QStringList argv)
{
bool permission_found = false;
if (checkAuth(ACLFlags.value("SAVETEST")))
permission_found = true;
if (testimony_saving == true)
permission_found = true;
if (permission_found) {
AreaData* area = server->areas[current_area];
if (area->testimony.size() -1 <= 0) {
sendServerMessage("Can't save an empty testimony.");
return;
}
QDir dir_testimony("storage/testimony");
if (!dir_testimony.exists()) {
dir_testimony.mkpath(".");
}
QString testimony_name = argv[0].trimmed().toLower().replace("..",""); // :)
QFile file("storage/testimony/" + testimony_name + ".txt");
if (file.exists()) {
sendServerMessage("Unable to save testimony. Testimony name already exists.");
return;
}
QTextStream out(&file);
if(file.open(QIODevice::WriteOnly | QIODevice::Append | QIODevice::Text)) {
for (int i = 0; i <= area->testimony.size() -1; i++)
{
out << area->testimony.at(i).join("#") << "\n";
}
sendServerMessage("Testimony saved. To load it use /loadtestimony " + testimony_name);
testimony_saving = false;
}
}
else {
sendServerMessage("You don't have permission to save a testimony. Please contact a moderator for permission.");
return;
}
}
void AOClient::cmdLoadTestimony(int argc, QStringList argv)
{
AreaData* area = server->areas[current_area];
QDir dir_testimony("storage/testimony");
if (!dir_testimony.exists()) {
sendServerMessage("Unable to load testimonies. Testimony storage not found.");
return;
}
QString testimony_name = argv[0].trimmed().toLower().replace("..",""); // :)
QFile file("storage/testimony/" + testimony_name + ".txt");
if (!file.exists()) {
sendServerMessage("Unable to load testimony. Testimony name not found.");
return;
}
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
sendServerMessage("Unable to load testimony. Permission denied.");
return;
}
clearTestimony();
int testimony_lines = 0;
QTextStream in(&file);
while (!in.atEnd()) {
if (testimony_lines <= server->maximum_statements) {
QString line = in.readLine();
QStringList packet = line.split("#");
area->testimony.append(packet);
testimony_lines = testimony_lines + 1;
}
else {
sendServerMessage("Testimony too large to be loaded.");
clearTestimony();
return;
}
}
sendServerMessage("Testimony loaded successfully. Use /examine to start playback.");
}

View File

@ -402,3 +402,13 @@ void AOClient::cmdAllowIniswap(int argc, QStringList argv)
QString state = area->iniswap_allowed ? "allowed." : "disallowed."; QString state = area->iniswap_allowed ? "allowed." : "disallowed.";
sendServerMessage("Iniswapping in this area is now " + state); sendServerMessage("Iniswapping in this area is now " + state);
} }
void AOClient::cmdPermitSaving(int argc, QStringList argv)
{
AOClient* client = server->getClientByID(argv[0].toInt());
if (client == nullptr) {
sendServerMessage("Invalid ID.");
return;
}
client->testimony_saving = true;
}