StatusHeartPost.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <?php
  2. /**
  3. * Created by IntelliJ IDEA.
  4. * User: logicp
  5. * Date: 6/21/17
  6. * Time: 7:41 PM
  7. */
  8. namespace Drupal\statusmessage;
  9. use Drupal\Component\Utility\UrlHelper;
  10. use Drupal\node\Entity\Node;
  11. use Drupal\taxonomy\Entity\Term;
  12. use Drupal\heartbeat\Entity\Heartbeat;
  13. /**
  14. * @property \Drupal\statusmessage\MarkupGenerator generator
  15. * @property message
  16. */
  17. class StatusHeartPost implements SharedContentInterface {
  18. protected $url;
  19. protected $message;
  20. protected $generator;
  21. protected $tags;
  22. /**
  23. * StatusHeartPost constructor.
  24. * @param $url
  25. */
  26. public function __construct($url, $message = NULL) {
  27. $this->url = $url;
  28. $this->message = $message;
  29. $this->generator = new MarkupGenerator();
  30. }
  31. public function sendRequest() {
  32. if ($this->generateRequest()) {
  33. $node = $this->setNodeData();
  34. $tags = $this->processTerms();
  35. if ($fids = $this->getMedia()) {
  36. $node->set('field_image', $fids);
  37. }
  38. if (!empty($this->tags)) {
  39. $node->set('field_tags', $this->tags);
  40. }
  41. if ($node->save()) {
  42. return $node->id();
  43. }
  44. }
  45. }
  46. private function generateRequest() {
  47. return $this->generator->parseMarkup($this->url);
  48. }
  49. private function processTerms() {
  50. foreach ($this->generator->getTags() as $tag) {
  51. $newTag = $tag;
  52. }
  53. if ($this->message) {
  54. $this->tags = self::parseHashtags($this->message);
  55. }
  56. return $this->generator->getTags();
  57. }
  58. private function setNodeData() {
  59. $append = FALSE;
  60. $title = $this->generator->getTitle();
  61. $node = Node::create([
  62. 'type' => 'heartpost',
  63. 'title' => strlen($title) < 50 ? $title : substr($title, 0, 47) . '...',
  64. 'status' => 1,
  65. ]);
  66. $description = strlen($this->generator->getDescription()) <= 207 ? $this->generator->getDescription() : substr($this->generator->getDescription(), 0, 206);
  67. if (strlen($this->generator->getDescription()) > 207) {
  68. $append = TRUE;
  69. }
  70. $node->set('field_description', [
  71. 'value' => '<div class="status-heartpost-description"> ' . $description . '</div>',
  72. 'format' => 'full_html'
  73. ]);
  74. if ($this->message) {
  75. $this->message = $append ? $this->message . ' ' . PHP_EOL . $this->generator->getDescription() : $this->message;
  76. $node->set('body', [
  77. 'value' => '<div class="status-heartpost"> ' . $this->message . ' </div>',
  78. 'format' => 'full_html'
  79. ]);
  80. }
  81. return $node;
  82. }
  83. private function getMedia() {
  84. $fids = array();
  85. if ($images = $this->generator->getImages()) {
  86. $num = count($images) > 10 ? 10 : count($images);
  87. for ($i = 0; $i < $num; $i++) {
  88. if ( // Try to skip iterating over duplicate images
  89. $i > 0 &&
  90. $images[$i]['width'] === $images[$i - 1]['width'] &&
  91. $images[$i]['height'] === $images[$i - 1]['height'] &&
  92. $images[$i]['size'] === $images[$i - 1]['size']
  93. ) {
  94. continue;
  95. }
  96. if (count($fids) < 6 && $images[$i]['width'] > 400) {
  97. $ext = strtolower(pathinfo($images[$i]['url'], PATHINFO_EXTENSION));
  98. if (!$this->verifyExtension($ext)) {
  99. $ext = explode($ext, $images[$i]['url']);
  100. $ext = count($ext) > 1 ? $ext[1] : $ext[0];
  101. }
  102. $ext = strpos($ext, '?') ? substr($ext, 0, strpos($ext, '?')) : $ext;
  103. $fileName = strlen($ext) > 0 ? substr($images[$i]['url'], 0, strpos($images[$i]['url'], $ext)) . $ext : $images[$i]['url'];
  104. if (UrlHelper::isValid($images[$i]['url'])) {
  105. $data = file_get_contents($images[$i]['url']);
  106. $file = file_save_data($data, 'public://' . substr($fileName, strrpos($fileName, '/') + 1), FILE_EXISTS_REPLACE);
  107. $fids[] = $file->id();
  108. }
  109. }
  110. }
  111. } else {
  112. if ($this->generator->getImage()) {
  113. $ext = strtolower(pathinfo($this->generator->getImage(), PATHINFO_EXTENSION));
  114. $ext = strpos($ext, '?') ? substr($ext, 0, strpos($ext, '?')) : $ext;
  115. $fileUrl = strlen($ext) > 0 ? substr($this->generator->getImage(), 0, strpos($this->generator->getImage(), $ext)) . $ext : $this->generator->getImage();
  116. $mainImage = file_get_contents($fileUrl);
  117. $file = file_save_data($mainImage, 'public://' . substr($fileUrl, strrpos($this->generator->getImage(), '/') + 1), FILE_EXISTS_REPLACE);
  118. $fids[] = $file->id();
  119. }
  120. }
  121. return $fids;
  122. }
  123. public static function parseHashtags($message) {
  124. $tids = array();
  125. $i = 0;
  126. $tagsArray = explode('#', $message);
  127. unset($tagsArray[0]);
  128. $num = count($tagsArray);
  129. foreach ($tagsArray as $hashtag) {
  130. if ($i === $num - 1) {
  131. $lastTagArray = explode(' ', $hashtag);
  132. if (strlen($lastTagArray[1]) > 1) {
  133. $hashtag = trim($lastTagArray[0]);
  134. }
  135. }
  136. $tid = \Drupal::entityQuery("taxonomy_term")
  137. ->condition("name", trim($hashtag))
  138. ->condition('vid', [
  139. 'twitter',
  140. 'tags',
  141. ], 'IN')
  142. ->execute();
  143. if (count($tid) > 0) {
  144. if (\Drupal::moduleHandler()->moduleExists('heartbeat')) {
  145. \Drupal\heartbeat\Entity\Heartbeat::updateTermUsage(array_values($tid)[0], 'tags');
  146. }
  147. $tids[] = array_values($tid)[0];
  148. } else {
  149. $term = Term::create([
  150. 'name' => trim($hashtag),
  151. 'vid' => 'tags',
  152. 'field_count' => 1
  153. ]);
  154. if ($term->save()) {
  155. $tids[] = $term->id();
  156. if (\Drupal::moduleHandler()->moduleExists('heartbeat')) {
  157. \Drupal\heartbeat\Entity\Heartbeat::newTermUsage($term->id());
  158. }
  159. }
  160. }
  161. $i++;
  162. }
  163. return $tids;
  164. }
  165. public function verifyExtension($string) {
  166. return $this->strposMultiple($string, ['jpg', 'jpeg', 'png', 'gif', 'bmp', ]);
  167. }
  168. public function strposMultiple($string, $patterns) {
  169. $patterns = is_array($patterns) ? $patterns : is_object($patterns) ? (array) $patterns : array($patterns);
  170. foreach($patterns as $pattern) {
  171. if (stripos($string, $pattern) > -1) {
  172. return true;
  173. }
  174. }
  175. }
  176. }