argdialog.cpp 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. #include "argdialog.h"
  2. #include "ui_argdialog.h"
  3. #include <algorithm>
  4. #include <QDebug>
  5. #include <QStringList>
  6. #include <QIODevice>
  7. #include <vector>
  8. #include <QTableWidgetItem>
  9. #include <QDateTime>
  10. #include <QCalendarWidget>
  11. static QString escapeText(QString s) {
  12. if (s.contains("'")) {
  13. s.replace("'", "'\"'\"'");
  14. }
  15. return s;
  16. }
  17. ArgDialog::ArgDialog(QWidget *parent) :
  18. QDialog(parent),
  19. ui(new Ui::ArgDialog),
  20. m_task(Task{}),
  21. m_ig_post(IGPost{})
  22. {
  23. ui->setupUi(this);
  24. QObject::connect(ui->addFile, &QPushButton::clicked, this, [this]() {
  25. auto file_path = QFileDialog::getOpenFileName(this,
  26. tr("Open File"), "~", tr("All Files (*.*)"));
  27. qDebug() << "Selected file:" << file_path;
  28. if (file_path.size() > 0) {
  29. auto slash_index = file_path.lastIndexOf("/") + 1;
  30. QString file_name = file_path.right(file_path.size() - slash_index);
  31. addItem(file_name, "file");
  32. m_ig_post.video.name = file_name;
  33. m_ig_post.video.path = file_path;
  34. }
  35. });
  36. ui->argList->setHorizontalHeaderLabels(QStringList{"Value", "Type"});
  37. ui->argList->setColumnWidth(0, 400);
  38. ui->argList->setColumnWidth(1, 40);
  39. ui->argList->verticalHeader()->setDefaultSectionSize(100);
  40. QObject::connect(ui->addArgument, &QPushButton::clicked, this, [this]() {
  41. QString text = ui->argInput->toPlainText();
  42. auto type = ui->argType->currentText();
  43. if (text.size() > 0) {
  44. if (type == Args::HASHTAG_TYPE) {
  45. addHashtag(text);
  46. } else if (type == Args::DESCRIPTION_TYPE) {
  47. addItem(text, type);
  48. m_ig_post.description = escapeText(text).toUtf8().constData();
  49. } else if (type == Args::PROMOTE_TYPE) {
  50. addOrReplaceInArgList(text, "promote/share");
  51. m_ig_post.promote_share = text.toUtf8().constData();
  52. } else if (type == Args::LINK_BIO_TYPE) {
  53. addOrReplaceInArgList(text, "link/bio");
  54. m_ig_post.link_in_bio = text.toUtf8().constData();
  55. } else if (type == Args::REQUESTED_BY_TYPE) {
  56. addRequestedBy(text);
  57. }
  58. ui->argInput->clear();
  59. }
  60. });
  61. QDateTime date_time = QDateTime::currentDateTime();
  62. // date_time.
  63. ui->dateTime->setDateTime(QDateTime::currentDateTime());
  64. QObject::connect(ui->dateTime, &QDateTimeEdit::dateTimeChanged, this, [this]() {
  65. auto date_time = ui->dateTime->dateTime();
  66. m_ig_post.datetime = std::string{std::to_string(date_time.toTime_t())};
  67. qDebug() << "Time changed to" << date_time;
  68. });
  69. QObject::connect(ui->argCommandButtons, static_cast<void (QDialogButtonBox::*)(QAbstractButton*)>(&QDialogButtonBox::clicked), this, [this](QAbstractButton* button) {
  70. if (button->text() == "Save") {
  71. if (m_ig_post.isReady()) {
  72. setTaskArguments();
  73. QFile file(m_ig_post.video.path);
  74. std::vector<char> byte_array{};
  75. if (file.open(QIODevice::ReadOnly)) {
  76. QByteArray bytes = file.readAll();
  77. emit ArgDialog::uploadFile(bytes);
  78. qDebug() << "Would be sending file..";
  79. } else {
  80. QMessageBox::warning(
  81. this,
  82. tr("File Error"),
  83. tr("Unable to read file")
  84. );
  85. }
  86. emit ArgDialog::taskRequestReady(m_task, true);
  87. }
  88. }
  89. });
  90. QObject::connect(ui->devTestButton, &QPushButton::clicked, this, [this]() {
  91. clearPost();
  92. KFile file = KFile{.name="videofile", .path="videopath"};
  93. m_ig_post = IGPost{
  94. .description = "asdasdas",
  95. .datetime = "sdasadasd",
  96. .promote_share = "dfgdfg",
  97. .link_in_bio = "asdasd",
  98. .hashtags = {"tag1", "tag2"},
  99. .requested_by = {"person"},
  100. .video = file
  101. };
  102. });
  103. }
  104. void ArgDialog::setTaskArguments() {
  105. m_task.args.clear();
  106. std::string hashtags{};
  107. for (const auto & tag : m_ig_post.hashtags) {
  108. hashtags += "#" + tag + " ";
  109. }
  110. hashtags.pop_back();
  111. std::string requested_by{};
  112. for (const auto & name : m_ig_post.requested_by) {
  113. requested_by += "@" + name + "";
  114. }
  115. if (m_ig_post.requested_by.size() > 1) {
  116. requested_by.pop_back();
  117. }
  118. m_task.args.push_back(m_ig_post.video.name.toUtf8().constData());
  119. m_task.args.push_back(m_ig_post.datetime);
  120. m_task.args.push_back(m_ig_post.description);
  121. m_task.args.push_back(hashtags);
  122. m_task.args.push_back(requested_by);
  123. m_task.args.push_back(m_ig_post.requested_by_phrase);
  124. m_task.args.push_back(m_ig_post.promote_share);
  125. m_task.args.push_back(m_ig_post.link_in_bio);
  126. }
  127. void ArgDialog::addItem(QString value, QString type) {
  128. QTableWidgetItem* item = new QTableWidgetItem(value);
  129. QTableWidgetItem* item2 = new QTableWidgetItem(type);
  130. auto row = ui->argList->rowCount();
  131. ui->argList->insertRow(row);
  132. ui->argList->setItem(row, 0, item);
  133. ui->argList->setItem(row, 1, item2);
  134. }
  135. void ArgDialog::clearPost() {
  136. m_ig_post.video = KFile{};
  137. m_ig_post.datetime = "";
  138. m_ig_post.hashtags = {};
  139. m_ig_post.description = "";
  140. m_ig_post.link_in_bio = "";
  141. m_ig_post.requested_by = {};
  142. m_ig_post.promote_share = "";
  143. m_ig_post.requested_by_phrase = "";
  144. }
  145. void ArgDialog::clearTask() {
  146. m_task.args = {};
  147. m_task.mask = -1;
  148. }
  149. void ArgDialog::addRequestedBy(QString value) {
  150. if (std::find(m_ig_post.requested_by.begin(), m_ig_post.requested_by.end(), value.toUtf8().constData()) == m_ig_post.requested_by.end()) {
  151. m_ig_post.requested_by.push_back(value.toUtf8().constData());
  152. addToArgList(value, "requested_by");
  153. } else {
  154. const char* message = "You have already inputed this name under \"requested_by\"";
  155. qDebug() << message;
  156. QMessageBox::warning(
  157. this,
  158. tr("Requested By"),
  159. tr(message)
  160. );
  161. }
  162. }
  163. void ArgDialog::addToArgList(QString value, QString type) {
  164. for (int i = 0; i < ui->argList->rowCount(); i++) {
  165. auto item = ui->argList->item(i, 1);
  166. if (item) {
  167. if (QString::compare(item->text(), type) == 0) {
  168. auto text = ui->argList->item(i, 0)->text();
  169. text.append("\n");
  170. text += value;
  171. ui->argList->item(i, 0)->setText(text);
  172. return;
  173. }
  174. }
  175. }
  176. addItem(value, type);
  177. }
  178. void ArgDialog::addOrReplaceInArgList(QString value, QString type) {
  179. for (int i = 0; i < ui->argList->rowCount(); i++) {
  180. auto item = ui->argList->item(i, 1);
  181. if (item) {
  182. if (QString::compare(item->text(), type) == 0) {
  183. ui->argList->item(i, 0)->setText(value);
  184. return;
  185. }
  186. }
  187. }
  188. addItem(value, type);
  189. }
  190. void ArgDialog::addHashtag(QString tag) {
  191. QStringList tags = tag.split(" ");
  192. for (const auto& tag : tags) {
  193. if (std::find(m_ig_post.hashtags.begin(), m_ig_post.hashtags.end(), tag.toUtf8().constData()) == m_ig_post.hashtags.end()) {
  194. m_ig_post.hashtags.push_back(tag.toUtf8().constData());
  195. addToArgList(tag, "hashtag");
  196. } else {
  197. const char* message = "Can't add the same hashtag twice";
  198. qDebug() << message;
  199. QMessageBox::warning(
  200. this,
  201. tr("Hashtags"),
  202. tr(message)
  203. );
  204. }
  205. }
  206. }
  207. ArgDialog::~ArgDialog()
  208. {
  209. delete ui;
  210. }