instagram_task.hpp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. #ifndef __INSTAGRAM_TASK_HPP__
  2. #define __INSTAGRAM_TASK_HPP__
  3. #include <include/task/task.hpp>
  4. #include <type_traits>
  5. namespace Scheduler {
  6. namespace Args {
  7. const QString HEADER_TYPE = "header";
  8. const QString FILE_TYPE = "files";
  9. const QString DESCRIPTION_TYPE = "description";
  10. const QString HASHTAG_TYPE = "hashtags";
  11. const QString PROMOTE_TYPE = "promote_share";
  12. const QString LINK_BIO_TYPE = "link_in_bio";
  13. const QString REQUESTED_BY_TYPE = "requested_by";
  14. const QString REQUESTED_BY_PHRASE = "requested_by_phrase";
  15. } // namespace Args
  16. namespace TaskCode {
  17. static constexpr int IGTASKBYTE = 0xFF;
  18. }
  19. } // namespace Scheduler
  20. /**
  21. * @brief The InstagramTask class
  22. *
  23. * Class to organize and transport data necessary to perform an Instagram Task.
  24. */
  25. class InstagramTask : public Scheduler::Task {
  26. public:
  27. /**
  28. * @constructor
  29. */
  30. InstagramTask();
  31. /**
  32. * Overrides @abstract Task::defineTaskArguments
  33. *
  34. * Useful for avoiding repetitive input of data.
  35. */
  36. virtual void defineTaskArguments() override;
  37. /**
  38. * Overrides @abstract Task::getTaskArguments
  39. *
  40. * Use this method to take over ownership of the task's arguments.
  41. */
  42. virtual const Scheduler::TaskArguments&& getTaskArguments() override;
  43. /**
  44. * Overrides @abstract Task::getTaskArgument
  45. *
  46. * Easy access to an argument.
  47. */
  48. virtual Scheduler::TaskArgument&& getTaskArgument(QString name) override;
  49. /**
  50. * Overrides @abstract Task::getTaskArgumentValue
  51. *
  52. * Easy access to an argument's value.
  53. */
  54. virtual const Scheduler::TypeVariant getTaskArgumentValue(QString name) override;
  55. /**
  56. * Overrides @abstract Task::getArgumentValues
  57. *
  58. * Easy access to all of the arguments that can be represented as a string.
  59. */
  60. virtual Scheduler::ArgumentValues getArgumentValues() override;
  61. /**
  62. * Overrides @abstract Task::getArgumentNames
  63. *
  64. * Provides the names of the arguments.
  65. */
  66. virtual QVector<QString> getArgumentNames() override;
  67. /**
  68. * Overrides @abstract Task::getFiles
  69. *
  70. * Easy access to the task's files.
  71. */
  72. virtual const QVector<Scheduler::KFileData> getFiles() override;
  73. /**
  74. * Overrides @abstract Task::getType
  75. *
  76. * Informs the caller of the task's type.
  77. */
  78. virtual Scheduler::TaskType getType() override;
  79. /**
  80. * Overrides @abstract Task::getTaskCode
  81. *
  82. * Returns the task's byte code.
  83. */
  84. virtual int getTaskCode() override;
  85. /**
  86. * Overrides @abstract Task::setArgument
  87. *
  88. * Set the value of an existing argument.
  89. */
  90. virtual void setArgument(QString name, Scheduler::TypeVariant arg) override;
  91. /**
  92. * Overrides @abstract Task::addArgument
  93. *
  94. * Add an additional value to a file container argument.
  95. */
  96. virtual void addArgument(QString name, Scheduler::KFileData file) override;
  97. /**
  98. * Overrides @abstract Task::addArgument
  99. *
  100. * Add an additional value to a string container argument.
  101. */
  102. virtual void addArgument(QString name, QString string) override;
  103. /**
  104. * Overrides @abstract Task::removeArgument
  105. *
  106. * Remove a value from a container argument.
  107. */
  108. virtual void removeArgument(QString name, Scheduler::TypeVariant arg) override;
  109. /**
  110. * Overrides @abstract Task::hasFiles
  111. *
  112. * Tells the caller if the task has files.
  113. */
  114. virtual bool hasFiles() override;
  115. /**
  116. * Overrides @abstract Task::isReady
  117. *
  118. * Informs the caller if the prerequisite arguments have values.
  119. */
  120. virtual bool isReady() override;
  121. /**
  122. * Overrides @abstract Task::clear
  123. *
  124. * Clears the values of all arguments, without removing the arguments.
  125. */
  126. virtual void clear() override;
  127. /**
  128. * Overrides @abstract Task::setDefaultValues
  129. *
  130. * Set default values for the arguments.
  131. */
  132. virtual void setDefaultValues() override;
  133. /**
  134. * Overrides @abstract Task::~Task
  135. * @destructor
  136. */
  137. virtual ~InstagramTask() override;
  138. private:
  139. /**
  140. * @brief m_arguments
  141. *
  142. * A container storing the task's arguments
  143. */
  144. Scheduler::TaskArguments m_arguments;
  145. };
  146. #endif // __INSTAGRAM_TASK_HPP