HeartbeatController.php 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. <?php
  2. namespace Drupal\heartbeat\Controller;
  3. use Drupal\block\BlockViewBuilder;
  4. use Drupal\Component\Utility\Xss;
  5. use Drupal\Core\Ajax\AppendCommand;
  6. use Drupal\Core\Controller\ControllerBase;
  7. use Drupal\Core\DependencyInjection\ContainerInjectionInterface;
  8. use Drupal\Core\Render\Element\Ajax;
  9. use Drupal\Core\Url;
  10. use Drupal\Core\Ajax\AjaxResponse;
  11. use Drupal\heartbeat\Ajax\SubCommentCommand;
  12. use Drupal\heartbeat\Entity\HeartbeatInterface;
  13. /**
  14. * Class HeartbeatController.
  15. *
  16. * Returns responses for Heartbeat routes.
  17. *
  18. * @package Drupal\heartbeat\Controller
  19. */
  20. class HeartbeatController extends ControllerBase implements ContainerInjectionInterface {
  21. /**
  22. * Displays a Heartbeat revision.
  23. *
  24. * @param int $heartbeat_revision
  25. * The Heartbeat revision ID.
  26. *
  27. * @return array
  28. * An array suitable for drupal_render().
  29. */
  30. public function revisionShow($heartbeat_revision) {
  31. $heartbeat = $this->entityManager()->getStorage('heartbeat')->loadRevision($heartbeat_revision);
  32. $view_builder = $this->entityManager()->getViewBuilder('heartbeat');
  33. return $view_builder->view($heartbeat);
  34. }
  35. /**
  36. * Page title callback for a Heartbeat revision.
  37. *
  38. * @param int $heartbeat_revision
  39. * The Heartbeat revision ID.
  40. *
  41. * @return string
  42. * The page title.
  43. */
  44. public function revisionPageTitle($heartbeat_revision) {
  45. $heartbeat = $this->entityManager()->getStorage('heartbeat')->loadRevision($heartbeat_revision);
  46. return $this->t('Revision of %title from %date', array('%title' => $heartbeat->label(), '%date' => format_date($heartbeat->getRevisionCreationTime())));
  47. }
  48. /**
  49. * Generates an overview table of older revisions of a Heartbeat .
  50. *
  51. * @param \Drupal\heartbeat\Entity\HeartbeatInterface $heartbeat
  52. * A Heartbeat object.
  53. *
  54. * @return array
  55. * An array as expected by drupal_render().
  56. */
  57. public function revisionOverview(HeartbeatInterface $heartbeat) {
  58. $account = $this->currentUser();
  59. $langcode = $heartbeat->language()->getId();
  60. $langname = $heartbeat->language()->getName();
  61. $languages = $heartbeat->getTranslationLanguages();
  62. $has_translations = (count($languages) > 1);
  63. $heartbeat_storage = $this->entityManager()->getStorage('heartbeat');
  64. $build['#title'] = $has_translations ? $this->t('@langname revisions for %title', ['@langname' => $langname, '%title' => $heartbeat->label()]) : $this->t('Revisions for %title', ['%title' => $heartbeat->label()]);
  65. $header = array($this->t('Revision'), $this->t('Operations'));
  66. $revert_permission = (($account->hasPermission("revert all heartbeat revisions") || $account->hasPermission('administer heartbeat entities')));
  67. $delete_permission = (($account->hasPermission("delete all heartbeat revisions") || $account->hasPermission('administer heartbeat entities')));
  68. $rows = array();
  69. $vids = $heartbeat_storage->revisionIds($heartbeat);
  70. $latest_revision = TRUE;
  71. foreach (array_reverse($vids) as $vid) {
  72. /** @var \Drupal\heartbeat\HeartbeatInterface $revision */
  73. $revision = $heartbeat_storage->loadRevision($vid);
  74. // Only show revisions that are affected by the language that is being
  75. // displayed.
  76. if ($revision->hasTranslation($langcode) && $revision->getTranslation($langcode)->isRevisionTranslationAffected()) {
  77. $username = [
  78. '#theme' => 'username',
  79. '#account' => $revision->getRevisionUser(),
  80. ];
  81. // Use revision link to link to revisions that are not active.
  82. $date = \Drupal::service('date.formatter')->format($revision->revision_timestamp->value, 'short');
  83. if ($vid != $heartbeat->getRevisionId()) {
  84. $link = $this->l($date, new Url('entity.heartbeat.revision', ['heartbeat' => $heartbeat->id(), 'heartbeat_revision' => $vid]));
  85. }
  86. else {
  87. $link = $heartbeat->link($date);
  88. }
  89. $row = [];
  90. $column = [
  91. 'data' => [
  92. '#type' => 'inline_template',
  93. '#template' => '{% trans %}{{ date }} by {{ username }}{% endtrans %}{% if message %}<p class="revision-log">{{ message }}</p>{% endif %}',
  94. '#context' => [
  95. 'date' => $link,
  96. 'username' => \Drupal::service('renderer')->renderPlain($username),
  97. 'message' => ['#markup' => $revision->revision_log_message->value, '#allowed_tags' => Xss::getHtmlTagList()],
  98. ],
  99. ],
  100. ];
  101. $row[] = $column;
  102. if ($latest_revision) {
  103. $row[] = [
  104. 'data' => [
  105. '#prefix' => '<em>',
  106. '#markup' => $this->t('Current revision'),
  107. '#suffix' => '</em>',
  108. ],
  109. ];
  110. foreach ($row as &$current) {
  111. $current['class'] = ['revision-current'];
  112. }
  113. $latest_revision = FALSE;
  114. }
  115. else {
  116. $links = [];
  117. if ($revert_permission) {
  118. $links['revert'] = [
  119. 'title' => $this->t('Revert'),
  120. 'url' => $has_translations ?
  121. Url::fromRoute('entity.heartbeat.translation_revert', ['heartbeat' => $heartbeat->id(), 'heartbeat_revision' => $vid, 'langcode' => $langcode]) :
  122. Url::fromRoute('entity.heartbeat.revision_revert', ['heartbeat' => $heartbeat->id(), 'heartbeat_revision' => $vid]),
  123. ];
  124. }
  125. if ($delete_permission) {
  126. $links['delete'] = [
  127. 'title' => $this->t('Delete'),
  128. 'url' => Url::fromRoute('entity.heartbeat.revision_delete', ['heartbeat' => $heartbeat->id(), 'heartbeat_revision' => $vid]),
  129. ];
  130. }
  131. $row[] = [
  132. 'data' => [
  133. '#type' => 'operations',
  134. '#links' => $links,
  135. ],
  136. ];
  137. }
  138. $rows[] = $row;
  139. }
  140. }
  141. $build['heartbeat_revisions_table'] = array(
  142. '#theme' => 'table',
  143. '#rows' => $rows,
  144. '#header' => $header,
  145. );
  146. return $build;
  147. }
  148. public function renderFeed($arg) {
  149. $myConfig = \Drupal::service('config.factory')->getEditable('heartbeat_feed.settings');
  150. $myConfig->set('message', $arg)->save();
  151. \Drupal::logger('HeartbeatController')->debug('My argument is %arg', ['%arg' => $arg]);
  152. return BlockViewBuilder::lazyBuilder('heartbeatblock', 'full');
  153. }
  154. public function updateFeed($hid) {
  155. $myConfig = \Drupal::service('config.factory')->getEditable('heartbeat_more.settings');
  156. $myConfig->set('hid', $hid)->save();
  157. return BlockViewBuilder::lazyBuilder('heartbeatmoreblock', 'full');
  158. }
  159. public function filterFeed($tid) {
  160. $myConfig = \Drupal::service('config.factory')->getEditable('heartbeat_hashtag.settings');
  161. $myConfig->set('tid', $tid)->save();
  162. return BlockViewBuilder::lazyBuilder('heartbeathashblock', 'teaser');
  163. }
  164. public function commentConfigUpdate($entity_id) {
  165. $commentConfig = \Drupal::configFactory()->getEditable('heartbeat_comment.settings');
  166. $commentConfig->set('entity_id', $entity_id)->save();
  167. return [
  168. '#type' => 'markup',
  169. '#markup' => 'Success',
  170. ];
  171. }
  172. public function subCommentRequest($cid) {
  173. $subCommentConfig = \Drupal::configFactory()->getEditable('heartbeat_comment.settings');
  174. $subCommentConfig->set('cid', $cid)->save();
  175. $muhComment = \Drupal::entityTypeManager()->getStorage('comment')->load($cid);
  176. $muhForm = \Drupal::formBuilder()->getForm('\Drupal\heartbeat\Form\HeartbeatSubCommentForm', $muhComment);
  177. //heartbeat-comment-' + response.cid
  178. $response = new AjaxResponse();
  179. // $response->addCommand(new SubCommentCommand($cid));
  180. $response->addCommand(new AppendCommand('#heartbeat-comment-' . $cid, BlockViewBuilder::lazyBuilder('heartbeatsubcommentblock', 'teaser')));
  181. return $response;
  182. // return [
  183. // '#type' => 'markup',
  184. // '#markup' => 'Success',
  185. // ];
  186. }
  187. public function subComment() {
  188. return BlockViewBuilder::lazyBuilder('heartbeatsubcommentblock', 'teaser');
  189. }
  190. }