mirror of https://github.com/procxx/kepka.git
Show messages count in an exported chat.
This commit is contained in:
parent
40c0286942
commit
fcda883878
|
@ -676,7 +676,7 @@ Result TextWriter::writeDialogEnd() {
|
||||||
}
|
}
|
||||||
|
|
||||||
Result TextWriter::writeDialogsEnd() {
|
Result TextWriter::writeDialogsEnd() {
|
||||||
return Result::Success();
|
return writeChatsEnd();
|
||||||
}
|
}
|
||||||
|
|
||||||
Result TextWriter::writeLeftChannelsStart(const Data::DialogsInfo &data) {
|
Result TextWriter::writeLeftChannelsStart(const Data::DialogsInfo &data) {
|
||||||
|
@ -704,14 +704,61 @@ Result TextWriter::writeChatsStart(
|
||||||
const QByteArray &listName,
|
const QByteArray &listName,
|
||||||
const QString &fileName) {
|
const QString &fileName) {
|
||||||
Expects(_summary != nullptr);
|
Expects(_summary != nullptr);
|
||||||
|
Expects(_chats == nullptr);
|
||||||
|
|
||||||
if (data.list.empty()) {
|
if (data.list.empty()) {
|
||||||
return Result::Success();
|
return Result::Success();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_chats = fileWithRelativePath(fileName);
|
||||||
_dialogIndex = 0;
|
_dialogIndex = 0;
|
||||||
_dialogsCount = data.list.size();
|
_dialogsCount = data.list.size();
|
||||||
|
|
||||||
|
const auto header = listName + " "
|
||||||
|
"(" + Data::NumberToString(data.list.size()) + ") - "
|
||||||
|
+ fileName.toUtf8()
|
||||||
|
+ kLineBreak
|
||||||
|
+ kLineBreak;
|
||||||
|
return _summary->writeBlock(header);
|
||||||
|
}
|
||||||
|
|
||||||
|
Result TextWriter::writeChatStart(const Data::DialogInfo &data) {
|
||||||
|
Expects(_chat == nullptr);
|
||||||
|
Expects(_dialogIndex < _dialogsCount);
|
||||||
|
|
||||||
|
const auto digits = Data::NumberToString(_dialogsCount - 1).size();
|
||||||
|
const auto number = Data::NumberToString(++_dialogIndex, digits, '0');
|
||||||
|
_chat = fileWithRelativePath(data.relativePath + "messages.txt");
|
||||||
|
_messagesCount = 0;
|
||||||
|
_dialog = data;
|
||||||
|
return Result::Success();
|
||||||
|
}
|
||||||
|
|
||||||
|
Result TextWriter::writeChatSlice(const Data::MessagesSlice &data) {
|
||||||
|
Expects(_chat != nullptr);
|
||||||
|
Expects(!data.list.empty());
|
||||||
|
|
||||||
|
_messagesCount += data.list.size();
|
||||||
|
auto list = std::vector<QByteArray>();
|
||||||
|
list.reserve(data.list.size());
|
||||||
|
for (const auto &message : data.list) {
|
||||||
|
list.push_back(SerializeMessage(
|
||||||
|
message,
|
||||||
|
data.peers,
|
||||||
|
_settings.internalLinksDomain));
|
||||||
|
}
|
||||||
|
const auto full = _chat->empty()
|
||||||
|
? JoinList(kLineBreak, list)
|
||||||
|
: kLineBreak + JoinList(kLineBreak, list);
|
||||||
|
return _chat->writeBlock(full);
|
||||||
|
}
|
||||||
|
|
||||||
|
Result TextWriter::writeChatEnd() {
|
||||||
|
Expects(_chats != nullptr);
|
||||||
|
Expects(_chat != nullptr);
|
||||||
|
|
||||||
|
_chat = nullptr;
|
||||||
|
|
||||||
using Type = Data::DialogInfo::Type;
|
using Type = Data::DialogInfo::Type;
|
||||||
const auto TypeString = [](Type type) {
|
const auto TypeString = [](Type type) {
|
||||||
switch (type) {
|
switch (type) {
|
||||||
|
@ -742,75 +789,23 @@ Result TextWriter::writeChatsStart(
|
||||||
}
|
}
|
||||||
Unexpected("Dialog type in TypeString.");
|
Unexpected("Dialog type in TypeString.");
|
||||||
};
|
};
|
||||||
const auto file = fileWithRelativePath(fileName);
|
return _chats->writeBlock(SerializeKeyValue({
|
||||||
auto list = std::vector<QByteArray>();
|
{ "Name", NameString(_dialog.name, _dialog.type) },
|
||||||
list.reserve(data.list.size());
|
{ "Type", TypeString(_dialog.type) },
|
||||||
auto index = 0;
|
{ "Messages count", Data::NumberToString(_messagesCount) },
|
||||||
for (const auto &dialog : data.list) {
|
{
|
||||||
const auto path = dialog.relativePath + "messages.txt";
|
"Content",
|
||||||
list.push_back(SerializeKeyValue({
|
(_messagesCount > 0
|
||||||
{ "Name", NameString(dialog.name, dialog.type) },
|
? (_dialog.relativePath + "messages.txt").toUtf8()
|
||||||
{ "Type", TypeString(dialog.type) },
|
: QByteArray())
|
||||||
{ "Content", path.toUtf8() }
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
const auto full = JoinList(kLineBreak, list);
|
|
||||||
if (const auto result = file->writeBlock(full); !result) {
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
const auto header = listName + " "
|
|
||||||
"(" + Data::NumberToString(data.list.size()) + ") - "
|
|
||||||
+ fileName.toUtf8()
|
|
||||||
+ kLineBreak
|
|
||||||
+ kLineBreak;
|
|
||||||
return _summary->writeBlock(header);
|
|
||||||
}
|
|
||||||
|
|
||||||
Result TextWriter::writeChatStart(const Data::DialogInfo &data) {
|
|
||||||
Expects(_chat == nullptr);
|
|
||||||
Expects(_dialogIndex < _dialogsCount);
|
|
||||||
|
|
||||||
const auto digits = Data::NumberToString(_dialogsCount - 1).size();
|
|
||||||
const auto number = Data::NumberToString(++_dialogIndex, digits, '0');
|
|
||||||
_chat = fileWithRelativePath(data.relativePath + "messages.txt");
|
|
||||||
_dialogEmpty = true;
|
|
||||||
_dialogOnlyMy = data.onlyMyMessages;
|
|
||||||
return Result::Success();
|
|
||||||
}
|
|
||||||
|
|
||||||
Result TextWriter::writeChatSlice(const Data::MessagesSlice &data) {
|
|
||||||
Expects(_chat != nullptr);
|
|
||||||
Expects(!data.list.empty());
|
|
||||||
|
|
||||||
_dialogEmpty = false;
|
|
||||||
auto list = std::vector<QByteArray>();
|
|
||||||
list.reserve(data.list.size());
|
|
||||||
auto index = 0;
|
|
||||||
for (const auto &message : data.list) {
|
|
||||||
list.push_back(SerializeMessage(
|
|
||||||
message,
|
|
||||||
data.peers,
|
|
||||||
_settings.internalLinksDomain));
|
|
||||||
}
|
|
||||||
const auto full = _chat->empty()
|
|
||||||
? JoinList(kLineBreak, list)
|
|
||||||
: kLineBreak + JoinList(kLineBreak, list);
|
|
||||||
return _chat->writeBlock(full);
|
|
||||||
}
|
|
||||||
|
|
||||||
Result TextWriter::writeChatEnd() {
|
|
||||||
Expects(_chat != nullptr);
|
|
||||||
|
|
||||||
if (_dialogEmpty) {
|
|
||||||
const auto result = _chat->writeBlock(_dialogOnlyMy
|
|
||||||
? "No outgoing messages in this chat."
|
|
||||||
: "No messages in this chat.");
|
|
||||||
if (!result) {
|
|
||||||
return result;
|
|
||||||
}
|
}
|
||||||
}
|
}) + kLineBreak);
|
||||||
_chat = nullptr;
|
}
|
||||||
|
|
||||||
|
Result TextWriter::writeChatsEnd() {
|
||||||
|
Expects(_chats != nullptr);
|
||||||
|
|
||||||
|
_chats = nullptr;
|
||||||
return Result::Success();
|
return Result::Success();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "export/output/export_output_abstract.h"
|
#include "export/output/export_output_abstract.h"
|
||||||
#include "export/output/export_output_file.h"
|
#include "export/output/export_output_file.h"
|
||||||
#include "export/export_settings.h"
|
#include "export/export_settings.h"
|
||||||
|
#include "export/data/export_data_types.h"
|
||||||
|
|
||||||
namespace Export {
|
namespace Export {
|
||||||
namespace Output {
|
namespace Output {
|
||||||
|
@ -59,6 +60,7 @@ private:
|
||||||
Result writeChatStart(const Data::DialogInfo &data);
|
Result writeChatStart(const Data::DialogInfo &data);
|
||||||
Result writeChatSlice(const Data::MessagesSlice &data);
|
Result writeChatSlice(const Data::MessagesSlice &data);
|
||||||
Result writeChatEnd();
|
Result writeChatEnd();
|
||||||
|
Result writeChatsEnd();
|
||||||
|
|
||||||
Settings _settings;
|
Settings _settings;
|
||||||
Stats *_stats = nullptr;
|
Stats *_stats = nullptr;
|
||||||
|
@ -70,9 +72,10 @@ private:
|
||||||
|
|
||||||
int _dialogsCount = 0;
|
int _dialogsCount = 0;
|
||||||
int _dialogIndex = 0;
|
int _dialogIndex = 0;
|
||||||
bool _dialogOnlyMy = false;
|
Data::DialogInfo _dialog;
|
||||||
bool _dialogEmpty = true;
|
|
||||||
|
|
||||||
|
int _messagesCount = 0;
|
||||||
|
std::unique_ptr<File> _chats;
|
||||||
std::unique_ptr<File> _chat;
|
std::unique_ptr<File> _chat;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue