argdialog.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. #include <include/argdialog.h>
  2. #include <ui_argdialog.h>
  3. #include <QCalendarWidget>
  4. #include <QDateTime>
  5. #include <QDebug>
  6. #include <QIODevice>
  7. #include <QMimeDatabase>
  8. #include <QStringList>
  9. #include <QTableWidgetItem>
  10. #include <algorithm>
  11. #include <vector>
  12. ArgDialog::ArgDialog(QWidget *parent)
  13. : QDialog(parent),
  14. ui(new Ui::ArgDialog),
  15. m_task(Task{}),
  16. m_ig_post(IGPost{}) {
  17. ui->setupUi(this);
  18. ui->argCommandButtons->button(QDialogButtonBox::Close)
  19. ->setStyleSheet(QString("background:%1").arg("#2f535f"));
  20. QObject::connect(ui->addFile, &QPushButton::clicked, this, [this]() {
  21. KFileDialog file_dialog{};
  22. auto file_path = file_dialog.openFileDialog(m_file_path);
  23. qDebug() << "Selected file:" << file_path;
  24. if (file_path.size() > 0) {
  25. auto slash_index = file_path.lastIndexOf("/") + 1;
  26. QString file_name = file_path.right(file_path.size() - slash_index);
  27. QString dir = file_path.left(slash_index);
  28. qDebug() << "Dir is " << dir;
  29. QMimeDatabase db;
  30. auto is_video = db.mimeTypeForFile(file_path).name().contains("video");
  31. addItem(file_name, "file");
  32. m_ig_post.files.push_back(KFile{.name = file_name,
  33. .path = file_path,
  34. .type = is_video ? FileType::VIDEO : FileType::IMAGE});
  35. if (is_video) {
  36. qDebug() << "File discovered to be video";
  37. m_ig_post.is_video = true; // rename to "sending_video"
  38. QString preview_filename = FileUtils::generatePreview(file_path, file_name);
  39. // TODO: create some way of verifying preview generation was successful
  40. addFile("assets/previews/" + preview_filename);
  41. addItem(preview_filename, "file");
  42. addFile("assets/previews/" + preview_filename);
  43. m_ig_post.files.push_back(KFile{.name = preview_filename,
  44. .path = QCoreApplication::applicationDirPath()
  45. + "/assets/previews/" + preview_filename,
  46. .type = is_video ? FileType::VIDEO : FileType::IMAGE});
  47. } else {
  48. addFile(file_path);
  49. }
  50. }
  51. });
  52. ui->argList->setHorizontalHeaderLabels(
  53. QStringList{"Type", "Value", "Preview", "Delete"});
  54. ui->argList->setColumnWidth(0, 40);
  55. ui->argList->setColumnWidth(1, 520);
  56. ui->argList->setColumnWidth(2, 220);
  57. ui->argList->setColumnWidth(3, 30);
  58. ui->argList->verticalHeader()->setDefaultSectionSize(100);
  59. QObject::connect(ui->addArgument, &QPushButton::clicked, this, [this]() {
  60. QString text = ui->argInput->toPlainText();
  61. auto type = ui->argType->currentText();
  62. if (text.size() > 0) {
  63. if (type == Args::HASHTAG_TYPE) {
  64. addHashtag(text);
  65. } else if (type == Args::DESCRIPTION_TYPE) {
  66. addItem(text, type);
  67. m_ig_post.description = escapeText(text).toUtf8().constData();
  68. } else if (type == Args::PROMOTE_TYPE) {
  69. addOrReplaceInArgList(text, "promote/share");
  70. m_ig_post.promote_share = text.toUtf8().constData();
  71. } else if (type == Args::LINK_BIO_TYPE) {
  72. addOrReplaceInArgList(text, "link/bio");
  73. m_ig_post.link_in_bio = text.toUtf8().constData();
  74. } else if (type == Args::REQUESTED_BY_TYPE) {
  75. addRequestedBy(text);
  76. }
  77. ui->argInput->clear();
  78. }
  79. });
  80. ui->dateTime->setDateTime(QDateTime::currentDateTime());
  81. QObject::connect(ui->dateTime, &QDateTimeEdit::dateTimeChanged, this, [this]() {
  82. auto date_time = ui->dateTime->dateTime();
  83. m_ig_post.datetime = std::string{std::to_string(date_time.toTime_t())};
  84. qDebug() << "Time changed to" << date_time;
  85. });
  86. QObject::connect(ui->argCommandButtons,
  87. static_cast<void (QDialogButtonBox::*)(QAbstractButton *)>(
  88. &QDialogButtonBox::clicked),
  89. this,
  90. [this](QAbstractButton *button) {
  91. if (button->text() == "Save") {
  92. if (m_ig_post.isReady()) {
  93. setTaskArguments();
  94. QVector<KFileData> k_file_v{};
  95. k_file_v.reserve(m_ig_post.files.size());
  96. for (const auto &kfile : m_ig_post.files) {
  97. QFile file(kfile.path);
  98. if (file.open(QIODevice::ReadOnly)) {
  99. k_file_v.push_back(KFileData{.type = kfile.type,
  100. .name = kfile.name,
  101. .bytes = file.readAll()});
  102. } else {
  103. QMessageBox::warning(this, tr("File Error"), tr("Unable to read file"));
  104. }
  105. }
  106. if (!k_file_v.empty()) {
  107. emit ArgDialog::uploadFiles(k_file_v);
  108. }
  109. emit ArgDialog::taskRequestReady(m_task, true);
  110. }
  111. clearPost(); // reset m_ig_post to default values
  112. }
  113. });
  114. QObject::connect(ui->clear, &QPushButton::clicked, this, [this]() {
  115. clearPost();
  116. ui->argList->setRowCount(0);
  117. qDebug() << "Task cleared and restored to default values";
  118. });
  119. }
  120. void ArgDialog::setTaskArguments() {
  121. m_task.args.clear();
  122. std::string hashtags{};
  123. for (const auto & tag : m_ig_post.hashtags) {
  124. hashtags += "#" + tag + " ";
  125. }
  126. hashtags.pop_back();
  127. std::string requested_by{};
  128. for (const auto & name : m_ig_post.requested_by) {
  129. requested_by += "@" + name + "";
  130. }
  131. if (m_ig_post.requested_by.size() > 1) {
  132. requested_by.pop_back();
  133. }
  134. // m_task.args.push_back(m_ig_post.file.name.toUtf8().constData());
  135. m_task.args.push_back(m_ig_post.datetime);
  136. m_task.args.push_back(m_ig_post.description);
  137. m_task.args.push_back(hashtags);
  138. m_task.args.push_back(requested_by);
  139. m_task.args.push_back(m_ig_post.requested_by_phrase);
  140. m_task.args.push_back(m_ig_post.promote_share);
  141. m_task.args.push_back(m_ig_post.link_in_bio);
  142. m_task.args.push_back(std::to_string(m_ig_post.is_video));
  143. m_task.args.push_back(m_ig_post.header);
  144. }
  145. void ArgDialog::addItem(QString value, QString type) {
  146. QTableWidgetItem *item = new QTableWidgetItem(type);
  147. QTableWidgetItem *item2 = new QTableWidgetItem(value);
  148. auto row = ui->argList->rowCount();
  149. ui->argList->insertRow(row);
  150. QPushButton *q_pb = new QPushButton();
  151. q_pb->setText("Delete");
  152. q_pb->setIcon(std::move(QIcon(":/icons/icons/quit.png")));
  153. QObject::connect(q_pb, &QPushButton::clicked, this, [this, row]() {
  154. ui->argList->removeRow(ui->argList->currentRow());
  155. });
  156. ui->argList->setItem(row, 0, item);
  157. ui->argList->setItem(row, 1, item2);
  158. ui->argList->setCellWidget(row, 3, q_pb);
  159. }
  160. void ArgDialog::addFile(QString path) {
  161. auto row_count = ui->argList->rowCount();
  162. QTableWidgetItem *file_item = new QTableWidgetItem();
  163. QPixmap pm{path};
  164. file_item->setData(
  165. Qt::DecorationRole,
  166. pm.scaledToHeight(ui->argList->rowHeight(0),
  167. Qt::TransformationMode::SmoothTransformation));
  168. ui->argList->setItem(row_count - 1, 2, file_item);
  169. }
  170. void ArgDialog::clearPost() {
  171. m_ig_post.files.clear();
  172. m_ig_post.header = "Learn to speak like native Korean speakers 🙆‍♀️🇰🇷";
  173. QDateTime date_time = QDateTime::currentDateTime();
  174. ui->dateTime->setDateTime(date_time);
  175. m_ig_post.datetime = date_time.toTime_t();
  176. m_ig_post.hashtags.clear();
  177. m_ig_post.description = "";
  178. m_ig_post.link_in_bio = "Subscribe to my YouTube channel (link 🔗in bio) to learn more about "
  179. "Korean language and culture ❤";
  180. m_ig_post.requested_by.clear();
  181. m_ig_post.promote_share = "Share the post through IG story if you enjoy the phrase 🙋‍♀️";
  182. m_ig_post.requested_by_phrase = "The phrase was requested by ";
  183. ui->argType->setCurrentIndex(0);
  184. ui->argList->setRowCount(0);
  185. }
  186. void ArgDialog::clearTask() {
  187. m_task.args = {};
  188. m_task.mask = -1;
  189. }
  190. void ArgDialog::addRequestedBy(QString value) {
  191. QStringList names = value.split(" ");
  192. for (const auto &name : names) {
  193. if (std::find(m_ig_post.requested_by.begin(), m_ig_post.requested_by.end(), value.toUtf8().constData()) == m_ig_post.requested_by.end()) {
  194. m_ig_post.requested_by.push_back(name.toUtf8().constData());
  195. addToArgList(name, "requested_by");
  196. } else {
  197. const char* message = "You have already inputed this name under \"requested_by\"";
  198. qDebug() << message;
  199. QMessageBox::warning(
  200. this,
  201. tr("Requested By"),
  202. tr(message)
  203. );
  204. }
  205. }
  206. }
  207. void ArgDialog::addToArgList(QString value, QString type) {
  208. for (int i = 0; i < ui->argList->rowCount(); i++) {
  209. auto item = ui->argList->item(i, 0);
  210. if (item) {
  211. if (QString::compare(item->text(), type) == 0) {
  212. auto text = ui->argList->item(i, 1)->text();
  213. text.append("\n");
  214. text += value;
  215. ui->argList->item(i, 1)->setText(text);
  216. return;
  217. }
  218. }
  219. }
  220. addItem(value, type);
  221. }
  222. void ArgDialog::addOrReplaceInArgList(QString value, QString type) {
  223. for (int i = 0; i < ui->argList->rowCount(); i++) {
  224. auto item = ui->argList->item(i, 1);
  225. if (item) {
  226. if (QString::compare(item->text(), type) == 0) {
  227. ui->argList->item(i, 1)->setText(value);
  228. return;
  229. }
  230. }
  231. }
  232. addItem(value, type);
  233. }
  234. void ArgDialog::addHashtag(QString tag) {
  235. QStringList tags = tag.split(" ");
  236. for (const auto& tag : tags) {
  237. if (std::find(m_ig_post.hashtags.begin(), m_ig_post.hashtags.end(), tag.toUtf8().constData()) == m_ig_post.hashtags.end()) {
  238. m_ig_post.hashtags.push_back(tag.toUtf8().constData());
  239. addToArgList(tag, "hashtag");
  240. } else {
  241. const char* message = "Can't add the same hashtag twice";
  242. qDebug() << message;
  243. QMessageBox::warning(
  244. this,
  245. tr("Hashtags"),
  246. tr(message)
  247. );
  248. }
  249. }
  250. }
  251. void ArgDialog::keyPressEvent(QKeyEvent *e) {
  252. if (Qt::ControlModifier) {
  253. if(e->key()==Qt::Key_Return || e->key()==Qt::Key_Enter) {
  254. ui->addArgument->clicked();
  255. auto idx = ui->argType->currentIndex();
  256. if (idx != (ui->argType->count() - 1)) {
  257. ui->argType->setCurrentIndex(idx + 1);
  258. }
  259. }
  260. }
  261. }
  262. void ArgDialog::setFilePath(QString path) { m_file_path = path; }
  263. ArgDialog::~ArgDialog()
  264. {
  265. delete ui;
  266. }
  267. void ArgDialog::accept() { qDebug() << "Sending request to schedule a task.."; }