Heartbeat.php 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. <?php
  2. namespace Drupal\heartbeat8\Entity;
  3. use Drupal\Core\Entity\EntityStorageInterface;
  4. use Drupal\Core\Field\BaseFieldDefinition;
  5. use Drupal\Core\Entity\RevisionableContentEntityBase;
  6. use Drupal\Core\Entity\EntityChangedTrait;
  7. use Drupal\Core\Entity\EntityTypeInterface;
  8. use Drupal\user\UserInterface;
  9. /**
  10. * Defines the Heartbeat entity.
  11. *
  12. * @ingroup heartbeat8
  13. *
  14. * @ContentEntityType(
  15. * id = "heartbeat",
  16. * label = @Translation("Heartbeat"),
  17. * bundle_label = @Translation("Heartbeat type"),
  18. * handlers = {
  19. * "storage" = "Drupal\heartbeat8\HeartbeatStorage",
  20. * "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
  21. * "list_builder" = "Drupal\heartbeat8\HeartbeatListBuilder",
  22. * "views_data" = "Drupal\heartbeat8\Entity\HeartbeatViewsData",
  23. * "translation" = "Drupal\heartbeat8\HeartbeatTranslationHandler",
  24. *
  25. * "form" = {
  26. * "default" = "Drupal\heartbeat8\Form\HeartbeatForm",
  27. * "add" = "Drupal\heartbeat8\Form\HeartbeatForm",
  28. * "edit" = "Drupal\heartbeat8\Form\HeartbeatForm",
  29. * "delete" = "Drupal\heartbeat8\Form\HeartbeatDeleteForm",
  30. * },
  31. * "access" = "Drupal\heartbeat8\HeartbeatAccessControlHandler",
  32. * "route_provider" = {
  33. * "html" = "Drupal\heartbeat8\HeartbeatHtmlRouteProvider",
  34. * },
  35. * },
  36. * base_table = "heartbeat",
  37. * data_table = "heartbeat_field_data",
  38. * revision_table = "heartbeat_revision",
  39. * revision_data_table = "heartbeat_field_revision",
  40. * translatable = TRUE,
  41. * admin_permission = "administer heartbeat entities",
  42. * entity_keys = {
  43. * "id" = "id",
  44. * "revision" = "vid",
  45. * "bundle" = "type",
  46. * "label" = "name",
  47. * "uuid" = "uuid",
  48. * "uid" = "user_id",
  49. * "langcode" = "langcode",
  50. * "status" = "status",
  51. * },
  52. * links = {
  53. * "canonical" = "/admin/structure/heartbeat/{heartbeat}",
  54. * "add-page" = "/admin/structure/heartbeat/add",
  55. * "add-form" = "/admin/structure/heartbeat/add/{heartbeat_type}",
  56. * "edit-form" = "/admin/structure/heartbeat/{heartbeat}/edit",
  57. * "delete-form" = "/admin/structure/heartbeat/{heartbeat}/delete",
  58. * "version-history" = "/admin/structure/heartbeat/{heartbeat}/revisions",
  59. * "revision" = "/admin/structure/heartbeat/{heartbeat}/revisions/{heartbeat_revision}/view",
  60. * "revision_revert" = "/admin/structure/heartbeat/{heartbeat}/revisions/{heartbeat_revision}/revert",
  61. * "translation_revert" = "/admin/structure/heartbeat/{heartbeat}/revisions/{heartbeat_revision}/revert/{langcode}",
  62. * "revision_delete" = "/admin/structure/heartbeat/{heartbeat}/revisions/{heartbeat_revision}/delete",
  63. * "collection" = "/admin/structure/heartbeat",
  64. * },
  65. * bundle_entity_type = "heartbeat_type",
  66. * field_ui_base_route = "entity.heartbeat_type.edit_form"
  67. * )
  68. */
  69. class Heartbeat extends RevisionableContentEntityBase implements HeartbeatInterface {
  70. use EntityChangedTrait;
  71. /**
  72. * {@inheritdoc}
  73. */
  74. public static function preCreate(EntityStorageInterface $storage_controller, array &$values) {
  75. parent::preCreate($storage_controller, $values);
  76. $values += array(
  77. 'user_id' => \Drupal::currentUser()->id(),
  78. );
  79. }
  80. /**
  81. * {@inheritdoc}
  82. */
  83. public function preSave(EntityStorageInterface $storage) {
  84. parent::preSave($storage);
  85. foreach (array_keys($this->getTranslationLanguages()) as $langcode) {
  86. $translation = $this->getTranslation($langcode);
  87. // If no owner has been set explicitly, make the anonymous user the owner.
  88. if (!$translation->getOwner()) {
  89. $translation->setOwnerId(0);
  90. }
  91. }
  92. // If no revision author has been set explicitly, make the heartbeat owner the
  93. // revision author.
  94. if (!$this->getRevisionUser()) {
  95. $this->setRevisionUserId($this->getOwnerId());
  96. }
  97. }
  98. /**
  99. * {@inheritdoc}
  100. */
  101. public function getType() {
  102. return $this->bundle();
  103. }
  104. /**
  105. * {@inheritdoc}
  106. */
  107. public function getName() {
  108. return $this->get('name')->value;
  109. }
  110. /**
  111. * {@inheritdoc}
  112. */
  113. public function setName($name) {
  114. $this->set('name', $name);
  115. return $this;
  116. }
  117. /**
  118. * {@inheritdoc}
  119. */
  120. public function getCreatedTime() {
  121. return $this->get('created')->value;
  122. }
  123. /**
  124. * {@inheritdoc}
  125. */
  126. public function setCreatedTime($timestamp) {
  127. $this->set('created', $timestamp);
  128. return $this;
  129. }
  130. /**
  131. * {@inheritdoc}
  132. */
  133. public function getOwner() {
  134. return $this->get('user_id')->entity;
  135. }
  136. /**
  137. * {@inheritdoc}
  138. */
  139. public function getOwnerId() {
  140. return $this->get('user_id')->target_id;
  141. }
  142. /**
  143. * {@inheritdoc}
  144. */
  145. public function setOwnerId($uid) {
  146. $this->set('user_id', $uid);
  147. return $this;
  148. }
  149. /**
  150. * {@inheritdoc}
  151. */
  152. public function setOwner(UserInterface $account) {
  153. $this->set('user_id', $account->id());
  154. return $this;
  155. }
  156. /**
  157. * {@inheritdoc}
  158. */
  159. public function isPublished() {
  160. return (bool) $this->getEntityKey('status');
  161. }
  162. /**
  163. * {@inheritdoc}
  164. */
  165. public function setPublished($published) {
  166. $this->set('status', $published ? TRUE : FALSE);
  167. return $this;
  168. }
  169. /**
  170. * {@inheritdoc}
  171. */
  172. public function getRevisionCreationTime() {
  173. return $this->get('revision_timestamp')->value;
  174. }
  175. /**
  176. * {@inheritdoc}
  177. */
  178. public function setRevisionCreationTime($timestamp) {
  179. $this->set('revision_timestamp', $timestamp);
  180. return $this;
  181. }
  182. /**
  183. * {@inheritdoc}
  184. */
  185. public function getRevisionUser() {
  186. return $this->get('revision_uid')->entity;
  187. }
  188. /**
  189. * {@inheritdoc}
  190. */
  191. public function setRevisionUserId($uid) {
  192. $this->set('revision_uid', $uid);
  193. return $this;
  194. }
  195. /**
  196. * {@inheritdoc}
  197. */
  198. public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
  199. $fields = parent::baseFieldDefinitions($entity_type);
  200. $fields['user_id'] = BaseFieldDefinition::create('entity_reference')
  201. ->setLabel(t('Authored by'))
  202. ->setDescription(t('The user ID of author of the Heartbeat entity.'))
  203. ->setRevisionable(TRUE)
  204. ->setSetting('target_type', 'user')
  205. ->setSetting('handler', 'default')
  206. ->setTranslatable(TRUE)
  207. ->setDisplayOptions('view', array(
  208. 'label' => 'hidden',
  209. 'type' => 'author',
  210. 'weight' => 0,
  211. ))
  212. ->setDisplayOptions('form', array(
  213. 'type' => 'entity_reference_autocomplete',
  214. 'weight' => 5,
  215. 'settings' => array(
  216. 'match_operator' => 'CONTAINS',
  217. 'size' => '60',
  218. 'autocomplete_type' => 'tags',
  219. 'placeholder' => '',
  220. ),
  221. ))
  222. ->setDisplayConfigurable('form', TRUE)
  223. ->setDisplayConfigurable('view', TRUE);
  224. $fields['name'] = BaseFieldDefinition::create('string')
  225. ->setLabel(t('Name'))
  226. ->setDescription(t('The name of the Heartbeat entity.'))
  227. ->setRevisionable(TRUE)
  228. ->setSettings(array(
  229. 'max_length' => 50,
  230. 'text_processing' => 0,
  231. ))
  232. ->setDefaultValue('')
  233. ->setDisplayOptions('view', array(
  234. 'label' => 'above',
  235. 'type' => 'string',
  236. 'weight' => -4,
  237. ))
  238. ->setDisplayOptions('form', array(
  239. 'type' => 'string_textfield',
  240. 'weight' => -4,
  241. ))
  242. ->setDisplayConfigurable('form', TRUE)
  243. ->setDisplayConfigurable('view', TRUE);
  244. $fields['status'] = BaseFieldDefinition::create('boolean')
  245. ->setLabel(t('Publishing status'))
  246. ->setDescription(t('A boolean indicating whether the Heartbeat is published.'))
  247. ->setRevisionable(TRUE)
  248. ->setDefaultValue(TRUE);
  249. $fields['created'] = BaseFieldDefinition::create('created')
  250. ->setLabel(t('Created'))
  251. ->setDescription(t('The time that the entity was created.'));
  252. $fields['changed'] = BaseFieldDefinition::create('changed')
  253. ->setLabel(t('Changed'))
  254. ->setDescription(t('The time that the entity was last edited.'));
  255. $fields['revision_timestamp'] = BaseFieldDefinition::create('created')
  256. ->setLabel(t('Revision timestamp'))
  257. ->setDescription(t('The time that the current revision was created.'))
  258. ->setQueryable(FALSE)
  259. ->setRevisionable(TRUE);
  260. $fields['revision_uid'] = BaseFieldDefinition::create('entity_reference')
  261. ->setLabel(t('Revision user ID'))
  262. ->setDescription(t('The user ID of the author of the current revision.'))
  263. ->setSetting('target_type', 'user')
  264. ->setQueryable(FALSE)
  265. ->setRevisionable(TRUE);
  266. $fields['revision_translation_affected'] = BaseFieldDefinition::create('boolean')
  267. ->setLabel(t('Revision translation affected'))
  268. ->setDescription(t('Indicates if the last edit of a translation belongs to current revision.'))
  269. ->setReadOnly(TRUE)
  270. ->setRevisionable(TRUE)
  271. ->setTranslatable(TRUE);
  272. return $fields;
  273. }
  274. }