argdialog.cpp 7.4 KB

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