HeartbeatStream.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. <?php
  2. namespace Drupal\heartbeat\Entity;
  3. use Drupal\heartbeat\Entity\HeartbeatType;
  4. use Drupal\Core\Entity\EntityStorageInterface;
  5. use Drupal\Core\Field\BaseFieldDefinition;
  6. use Drupal\Core\Entity\RevisionableContentEntityBase;
  7. use Drupal\Core\Entity\EntityChangedTrait;
  8. use Drupal\Core\Entity\EntityTypeInterface;
  9. use Drupal\user\UserInterface;
  10. /**
  11. * Defines the Heartbeat stream entity.
  12. *
  13. * @ingroup heartbeat
  14. *
  15. * @ContentEntityType(
  16. * id = "heartbeat_stream",
  17. * label = @Translation("Heartbeat stream"),
  18. * handlers = {
  19. * "storage" = "Drupal\heartbeat\HeartbeatStreamStorage",
  20. * "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
  21. * "list_builder" = "Drupal\heartbeat\HeartbeatStreamListBuilder",
  22. * "views_data" = "Drupal\heartbeat\Entity\HeartbeatStreamViewsData",
  23. *
  24. * "form" = {
  25. * "default" = "Drupal\heartbeat\Form\HeartbeatStreamForm",
  26. * "add" = "Drupal\heartbeat\Form\HeartbeatStreamForm",
  27. * "edit" = "Drupal\heartbeat\Form\HeartbeatStreamForm",
  28. * "delete" = "Drupal\heartbeat\Form\HeartbeatStreamDeleteForm",
  29. * },
  30. * "access" = "Drupal\heartbeat\HeartbeatStreamAccessControlHandler",
  31. * "route_provider" = {
  32. * "html" = "Drupal\heartbeat\HeartbeatStreamHtmlRouteProvider",
  33. * },
  34. * },
  35. * base_table = "heartbeat_stream",
  36. * revision_table = "heartbeat_stream_revision",
  37. * revision_data_table = "heartbeat_stream_field_revision",
  38. * admin_permission = "administer heartbeat stream entities",
  39. * entity_keys = {
  40. * "id" = "id",
  41. * "revision" = "vid",
  42. * "label" = "name",
  43. * "uuid" = "uuid",
  44. * "uid" = "user_id",
  45. * "langcode" = "langcode",
  46. * "status" = "status",
  47. * "types" = "types",
  48. * },
  49. * links = {
  50. * "canonical" = "/admin/structure/heartbeatstream/heartbeat_stream/{heartbeat_stream}",
  51. * "add-form" = "/admin/structure/heartbeatstream/heartbeat_stream/add",
  52. * "edit-form" = "/admin/structure/heartbeatstream/heartbeat_stream/{heartbeat_stream}/edit",
  53. * "delete-form" = "/admin/structure/heartbeatstream/heartbeat_stream/{heartbeat_stream}/delete",
  54. * "version-history" = "/admin/structure/heartbeatstream/heartbeat_stream/{heartbeat_stream}/revisions",
  55. * "revision" = "/admin/structure/heartbeatstream/heartbeat_stream/{heartbeat_stream}/revisions/{heartbeat_stream_revision}/view",
  56. * "revision_delete" = "/admin/structure/heartbeatstream/heartbeat_stream/{heartbeat_stream}/revisions/{heartbeat_stream_revision}/delete",
  57. * "collection" = "/admin/structure/heartbeatstream/heartbeat_stream",
  58. * },
  59. * field_ui_base_route = "heartbeat_stream.settings"
  60. * )
  61. */
  62. class HeartbeatStream extends RevisionableContentEntityBase implements HeartbeatStreamInterface {
  63. use EntityChangedTrait;
  64. protected $class;
  65. protected $realClass;
  66. protected $name;
  67. protected $module;
  68. protected $title;
  69. protected $path;
  70. protected $settings;
  71. protected $variables;
  72. protected $types;
  73. protected $weight;
  74. /**
  75. * @return array
  76. */
  77. public function getTypes() {
  78. return $this->get('types');
  79. }
  80. /**
  81. * @param array use Drupal\heartbeat\Entity\HeartbeatType $types
  82. */
  83. public function setTypes($types) {
  84. $this->set('types', $types);
  85. return $this;
  86. }
  87. /**
  88. * @return mixed
  89. */
  90. public function getClass() {
  91. return $this->get('class');
  92. }
  93. /**
  94. * @param mixed $class
  95. */
  96. public function setClass($class) {
  97. $this->set('class', $class);
  98. }
  99. /**
  100. * @return mixed
  101. */
  102. public function getRealClass() {
  103. return $this->get('realClass');
  104. }
  105. /**
  106. * @param mixed $realClass
  107. */
  108. public function setRealClass($realClass) {
  109. $this->set('realClass', $realClass);
  110. }
  111. /**
  112. * @return mixed
  113. */
  114. public function getModule() {
  115. return $this->get('module');
  116. }
  117. /**
  118. * @param mixed $module
  119. */
  120. public function setModule($module) {
  121. $this->set('module', $module);
  122. }
  123. /**
  124. * @return mixed
  125. */
  126. public function getTitle() {
  127. return $this->get('title');
  128. }
  129. /**
  130. * @param mixed $title
  131. */
  132. public function setTitle($title) {
  133. $this->set('title', $title);
  134. }
  135. /**
  136. * @return mixed
  137. */
  138. public function getPath() {
  139. return $this->get('path');
  140. }
  141. /**
  142. * @param mixed $path
  143. */
  144. public function setPath($path) {
  145. $this->set('path', $path);
  146. }
  147. /**
  148. * @return mixed
  149. */
  150. public function getSettings() {
  151. return $this->get('settings');
  152. }
  153. /**
  154. * @param mixed $settings
  155. */
  156. public function setSettings($settings) {
  157. $this->set('settings ', $settings);
  158. }
  159. /**
  160. * @return mixed
  161. */
  162. public function getVariables() {
  163. return $this->get('variables');
  164. }
  165. /**
  166. * @param mixed $variables
  167. */
  168. public function setVariables($variables) {
  169. $this->set('variables', $variables);
  170. }
  171. /**
  172. * {@inheritdoc}
  173. */
  174. public static function preCreate(EntityStorageInterface $storage_controller, array &$values) {
  175. parent::preCreate($storage_controller, $values);
  176. $values += array(
  177. 'user_id' => \Drupal::currentUser()->id(),
  178. );
  179. }
  180. /**
  181. * {@inheritdoc}
  182. */
  183. public function preSave(EntityStorageInterface $storage) {
  184. parent::preSave($storage);
  185. foreach (array_keys($this->getTranslationLanguages()) as $langcode) {
  186. $translation = $this->getTranslation($langcode);
  187. // If no owner has been set explicitly, make the anonymous user the owner.
  188. if (!$translation->getOwner()) {
  189. $translation->setOwnerId(0);
  190. }
  191. }
  192. // If no revision author has been set explicitly, make the heartbeat_stream owner the
  193. // revision author.
  194. if (!$this->getRevisionUser()) {
  195. $this->setRevisionUserId($this->getOwnerId());
  196. }
  197. }
  198. /**
  199. * {@inheritdoc}
  200. */
  201. public function getName() {
  202. return $this->get('name')->value;
  203. }
  204. /**
  205. * {@inheritdoc}
  206. */
  207. public function setName($name) {
  208. $this->set('name', $name);
  209. return $this;
  210. }
  211. /**
  212. * {@inheritdoc}
  213. */
  214. public function getCreatedTime() {
  215. return $this->get('created')->value;
  216. }
  217. /**
  218. * {@inheritdoc}
  219. */
  220. public function setCreatedTime($timestamp) {
  221. $this->set('created', $timestamp);
  222. return $this;
  223. }
  224. /**
  225. * {@inheritdoc}
  226. */
  227. public function getOwner() {
  228. return $this->get('user_id')->entity;
  229. }
  230. /**
  231. * {@inheritdoc}
  232. */
  233. public function getOwnerId() {
  234. return $this->get('user_id')->target_id;
  235. }
  236. /**
  237. * {@inheritdoc}
  238. */
  239. public function setOwnerId($uid) {
  240. $this->set('user_id', $uid);
  241. return $this;
  242. }
  243. /**
  244. * {@inheritdoc}
  245. */
  246. public function setOwner(UserInterface $account) {
  247. $this->set('user_id', $account->id());
  248. return $this;
  249. }
  250. /**
  251. * {@inheritdoc}
  252. */
  253. public function isPublished() {
  254. return (bool) $this->getEntityKey('status');
  255. }
  256. /**
  257. * {@inheritdoc}
  258. */
  259. public function setPublished($published) {
  260. $this->set('status', $published ? TRUE : FALSE);
  261. return $this;
  262. }
  263. /**
  264. * {@inheritdoc}
  265. */
  266. public function getRevisionCreationTime() {
  267. return $this->get('revision_timestamp')->value;
  268. }
  269. /**
  270. * {@inheritdoc}
  271. */
  272. public function setRevisionCreationTime($timestamp) {
  273. $this->set('revision_timestamp', $timestamp);
  274. return $this;
  275. }
  276. /**
  277. * {@inheritdoc}
  278. */
  279. public function getRevisionUser() {
  280. return $this->get('revision_uid')->entity;
  281. }
  282. /**
  283. * {@inheritdoc}
  284. */
  285. public function setRevisionUserId($uid) {
  286. $this->set('revision_uid', $uid);
  287. return $this;
  288. }
  289. /**
  290. * {@inheritdoc}
  291. */
  292. public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
  293. $fields = parent::baseFieldDefinitions($entity_type);
  294. $fields['user_id'] = BaseFieldDefinition::create('entity_reference')
  295. ->setLabel(t('Authored by'))
  296. ->setDescription(t('The user ID of author of the Heartbeat stream entity.'))
  297. ->setRevisionable(TRUE)
  298. ->setSetting('target_type', 'user')
  299. ->setSetting('handler', 'default')
  300. ->setTranslatable(TRUE)
  301. ->setDisplayOptions('view', array(
  302. 'label' => 'hidden',
  303. 'type' => 'author',
  304. 'weight' => 0,
  305. ))
  306. ->setDisplayOptions('form', array(
  307. 'type' => 'entity_reference_autocomplete',
  308. 'weight' => 5,
  309. 'settings' => array(
  310. 'match_operator' => 'CONTAINS',
  311. 'size' => '60',
  312. 'autocomplete_type' => 'tags',
  313. 'placeholder' => '',
  314. ),
  315. ))
  316. ->setDisplayConfigurable('form', TRUE)
  317. ->setDisplayConfigurable('view', TRUE);
  318. $fields['path'] = BaseFieldDefinition::create('string')
  319. ->setLabel(t('Path'))
  320. ->setSettings(array(
  321. 'max_length' => 255,
  322. ));
  323. $fields['name'] = BaseFieldDefinition::create('string')
  324. ->setLabel(t('Name'))
  325. ->setDescription(t('The name of the Heartbeat stream entity.'))
  326. ->setRevisionable(TRUE)
  327. ->setSettings(array(
  328. 'max_length' => 50,
  329. 'text_processing' => 0,
  330. ))
  331. ->setDefaultValue('')
  332. ->setDisplayOptions('view', array(
  333. 'label' => 'above',
  334. 'type' => 'string',
  335. 'weight' => -4,
  336. ))
  337. ->setDisplayOptions('form', array(
  338. 'type' => 'string_textfield',
  339. 'weight' => -4,
  340. ))
  341. ->setDisplayConfigurable('form', TRUE)
  342. ->setDisplayConfigurable('view', TRUE);
  343. $fields['status'] = BaseFieldDefinition::create('boolean')
  344. ->setLabel(t('Publishing status'))
  345. ->setDescription(t('A boolean indicating whether the Heartbeat stream is published.'))
  346. ->setRevisionable(TRUE)
  347. ->setDefaultValue(TRUE);
  348. $fields['created'] = BaseFieldDefinition::create('created')
  349. ->setLabel(t('Created'))
  350. ->setDescription(t('The time that the entity was created.'));
  351. $fields['changed'] = BaseFieldDefinition::create('changed')
  352. ->setLabel(t('Changed'))
  353. ->setDescription(t('The time that the entity was last edited.'));
  354. $fields['revision_timestamp'] = BaseFieldDefinition::create('created')
  355. ->setLabel(t('Revision timestamp'))
  356. ->setDescription(t('The time that the current revision was created.'))
  357. ->setQueryable(FALSE)
  358. ->setRevisionable(TRUE);
  359. $fields['revision_uid'] = BaseFieldDefinition::create('entity_reference')
  360. ->setLabel(t('Revision user ID'))
  361. ->setDescription(t('The user ID of the author of the current revision.'))
  362. ->setSetting('target_type', 'user')
  363. ->setQueryable(FALSE)
  364. ->setRevisionable(TRUE);
  365. $fields['types'] = BaseFieldDefinition::create('entity_reference')
  366. ->setLabel(t('Heartbeat Types'))
  367. ->setDescription(t('The Heartbeat Types included in this stream'))
  368. ->setCardinality(BaseFieldDefinition::CARDINALITY_UNLIMITED)
  369. ->setRequired(TRUE)
  370. ->setRevisionable(TRUE)
  371. ->setSetting('target_type', 'heartbeat_type');
  372. $fields['weight'] = BaseFieldDefinition::create('integer')
  373. ->setLabel(t('Weight'))
  374. ->setDescription(t('The weight of the stream'))
  375. ->setDefaultValue(0);
  376. return $fields;
  377. }
  378. /**
  379. * @return mixed
  380. */
  381. public function setWeight($weight) {
  382. $this->set('weight', $weight);
  383. }
  384. /**
  385. * @param $weight
  386. * @return mixed
  387. */
  388. public function getWeight() {
  389. return $this->get('weight');
  390. }
  391. }