View source
<?php
namespace Drupal\comment\Entity;
use Drupal\Component\Utility\Number;
use Drupal\Core\Cache\Cache;
use Drupal\Core\Entity\ContentEntityBase;
use Drupal\comment\CommentInterface;
use Drupal\Core\Entity\EntityChangedTrait;
use Drupal\Core\Entity\EntityPublishedTrait;
use Drupal\Core\Entity\EntityStorageInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Field\BaseFieldDefinition;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\user\Entity\User;
use Drupal\user\EntityOwnerTrait;
class Comment extends ContentEntityBase implements CommentInterface {
use EntityChangedTrait;
use EntityOwnerTrait;
use EntityPublishedTrait;
protected $threadLock = '';
public function preSave(EntityStorageInterface $storage) {
parent::preSave($storage);
if ($this
->isNew()) {
$thread = $this
->getThread();
if (empty($thread)) {
if ($this->threadLock) {
throw new \LogicException('preSave() is called again without calling postSave() or releaseThreadLock()');
}
if (!$this
->hasParentComment()) {
$max = $storage
->getMaxThread($this);
$max = rtrim($max, '/');
$parts = explode('.', $max);
$n = Number::alphadecimalToInt($parts[0]);
$prefix = '';
}
else {
$parent = $this
->getParentComment();
$parent
->setThread((string) rtrim((string) $parent
->getThread(), '/'));
$prefix = $parent
->getThread() . '.';
$max = $storage
->getMaxThreadPerThread($this);
if ($max == '') {
$n = -1;
}
else {
$max = rtrim($max, '/');
$parts = explode('.', $max);
$parent_depth = count(explode('.', $parent
->getThread()));
$n = Number::alphadecimalToInt($parts[$parent_depth]);
}
}
do {
$thread = $prefix . Number::intToAlphadecimal(++$n) . '/';
$lock_name = "comment:{$this->getCommentedEntityId()}:{$thread}";
} while (!\Drupal::lock()
->acquire($lock_name));
$this->threadLock = $lock_name;
}
$this
->setThread($thread);
}
if (!$this
->getOwner()
->isAnonymous()) {
$this
->set('name', NULL);
$this
->set('mail', NULL);
}
}
public function postSave(EntityStorageInterface $storage, $update = TRUE) {
parent::postSave($storage, $update);
if ($commented_entity = $this
->getCommentedEntity()) {
Cache::invalidateTags($commented_entity
->getCacheTagsToInvalidate());
}
$this
->releaseThreadLock();
\Drupal::service('comment.statistics')
->update($this);
}
protected function releaseThreadLock() {
if ($this->threadLock) {
\Drupal::lock()
->release($this->threadLock);
$this->threadLock = '';
}
}
public static function postDelete(EntityStorageInterface $storage, array $entities) {
parent::postDelete($storage, $entities);
$child_cids = $storage
->getChildCids($entities);
$comment_storage = \Drupal::entityTypeManager()
->getStorage('comment');
$comments = $comment_storage
->loadMultiple($child_cids);
$comment_storage
->delete($comments);
foreach ($entities as $id => $entity) {
\Drupal::service('comment.statistics')
->update($entity);
}
}
public function referencedEntities() {
$referenced_entities = parent::referencedEntities();
if ($this
->getCommentedEntityId()) {
$referenced_entities[] = $this
->getCommentedEntity();
}
return $referenced_entities;
}
public function permalink() {
$uri = $this
->toUrl();
$uri
->setOption('fragment', 'comment-' . $this
->id());
return $uri;
}
public static function baseFieldDefinitions(EntityTypeInterface $entity_type) {
$fields = parent::baseFieldDefinitions($entity_type);
$fields += static::publishedBaseFieldDefinitions($entity_type);
$fields += static::ownerBaseFieldDefinitions($entity_type);
$fields['cid']
->setLabel(t('Comment ID'))
->setDescription(t('The comment ID.'));
$fields['uuid']
->setDescription(t('The comment UUID.'));
$fields['comment_type']
->setLabel(t('Comment Type'))
->setDescription(t('The comment type.'));
$fields['langcode']
->setDescription(t('The comment language code.'));
$fields['status']
->setDefaultValueCallback('Drupal\\comment\\Entity\\Comment::getDefaultStatus');
$fields['pid'] = BaseFieldDefinition::create('entity_reference')
->setLabel(t('Parent ID'))
->setDescription(t('The parent comment ID if this is a reply to a comment.'))
->setSetting('target_type', 'comment');
$fields['entity_id'] = BaseFieldDefinition::create('entity_reference')
->setLabel(t('Entity ID'))
->setDescription(t('The ID of the entity of which this comment is a reply.'))
->setRequired(TRUE);
$fields['subject'] = BaseFieldDefinition::create('string')
->setLabel(t('Subject'))
->setTranslatable(TRUE)
->setSetting('max_length', 64)
->setDisplayOptions('form', [
'type' => 'string_textfield',
'weight' => 10,
])
->setDisplayConfigurable('form', TRUE);
$fields['uid']
->setDescription(t('The user ID of the comment author.'));
$fields['name'] = BaseFieldDefinition::create('string')
->setLabel(t('Name'))
->setDescription(t("The comment author's name."))
->setTranslatable(TRUE)
->setSetting('max_length', 60)
->setDefaultValue('');
$fields['mail'] = BaseFieldDefinition::create('email')
->setLabel(t('Email'))
->setDescription(t("The comment author's email address."))
->setTranslatable(TRUE);
$fields['homepage'] = BaseFieldDefinition::create('uri')
->setLabel(t('Homepage'))
->setDescription(t("The comment author's home page address."))
->setTranslatable(TRUE)
->setSetting('max_length', 255);
$fields['hostname'] = BaseFieldDefinition::create('string')
->setLabel(t('Hostname'))
->setDescription(t("The comment author's hostname."))
->setTranslatable(TRUE)
->setSetting('max_length', 128)
->setDefaultValueCallback(static::class . '::getDefaultHostname');
$fields['created'] = BaseFieldDefinition::create('created')
->setLabel(t('Created'))
->setDescription(t('The time that the comment was created.'))
->setTranslatable(TRUE);
$fields['changed'] = BaseFieldDefinition::create('changed')
->setLabel(t('Changed'))
->setDescription(t('The time that the comment was last edited.'))
->setTranslatable(TRUE);
$fields['thread'] = BaseFieldDefinition::create('string')
->setLabel(t('Thread place'))
->setDescription(t("The alphadecimal representation of the comment's place in a thread, consisting of a base 36 string prefixed by an integer indicating its length."))
->setSetting('max_length', 255);
$fields['entity_type'] = BaseFieldDefinition::create('string')
->setLabel(t('Entity type'))
->setRequired(TRUE)
->setDescription(t('The entity type to which this comment is attached.'))
->setSetting('is_ascii', TRUE)
->setSetting('max_length', EntityTypeInterface::ID_MAX_LENGTH);
$fields['field_name'] = BaseFieldDefinition::create('string')
->setLabel(t('Comment field name'))
->setRequired(TRUE)
->setDescription(t('The field name through which this comment was added.'))
->setSetting('is_ascii', TRUE)
->setSetting('max_length', FieldStorageConfig::NAME_MAX_LENGTH);
return $fields;
}
public static function bundleFieldDefinitions(EntityTypeInterface $entity_type, $bundle, array $base_field_definitions) {
if ($comment_type = CommentType::load($bundle)) {
$fields['entity_id'] = clone $base_field_definitions['entity_id'];
$fields['entity_id']
->setSetting('target_type', $comment_type
->getTargetEntityTypeId());
return $fields;
}
return [];
}
public function hasParentComment() {
return (bool) $this
->get('pid')->target_id;
}
public function getParentComment() {
return $this
->get('pid')->entity;
}
public function getCommentedEntity() {
return $this
->get('entity_id')->entity;
}
public function getCommentedEntityId() {
return $this
->get('entity_id')->target_id;
}
public function getCommentedEntityTypeId() {
return $this
->get('entity_type')->value;
}
public function setFieldName($field_name) {
$this
->set('field_name', $field_name);
return $this;
}
public function getFieldName() {
return $this
->get('field_name')->value;
}
public function getSubject() {
return $this
->get('subject')->value;
}
public function setSubject($subject) {
$this
->set('subject', $subject);
return $this;
}
public function getAuthorName() {
if ($this
->get('uid')->target_id && $this
->get('uid')->entity) {
return $this
->get('uid')->entity
->label();
}
return $this
->get('name')->value ?: \Drupal::config('user.settings')
->get('anonymous');
}
public function setAuthorName($name) {
$this
->set('name', $name);
return $this;
}
public function getAuthorEmail() {
$mail = $this
->get('mail')->value;
if ($this
->get('uid')->target_id != 0) {
$mail = $this
->get('uid')->entity
->getEmail();
}
return $mail;
}
public function getHomepage() {
return $this
->get('homepage')->value;
}
public function setHomepage($homepage) {
$this
->set('homepage', $homepage);
return $this;
}
public function getHostname() {
return $this
->get('hostname')->value;
}
public function setHostname($hostname) {
$this
->set('hostname', $hostname);
return $this;
}
public function getCreatedTime() {
if (isset($this
->get('created')->value)) {
return $this
->get('created')->value;
}
return NULL;
}
public function setCreatedTime($created) {
$this
->set('created', $created);
return $this;
}
public function getThread() {
$thread = $this
->get('thread');
if (!empty($thread->value)) {
return $thread->value;
}
}
public function setThread($thread) {
$this
->set('thread', $thread);
return $this;
}
public static function preCreate(EntityStorageInterface $storage, array &$values) {
if (empty($values['comment_type']) && !empty($values['field_name']) && !empty($values['entity_type'])) {
$fields = \Drupal::service('entity_field.manager')
->getFieldStorageDefinitions($values['entity_type']);
$values['comment_type'] = $fields[$values['field_name']]
->getSetting('comment_type');
}
}
public function getOwner() {
$user = $this
->get('uid')->entity;
if (!$user || $user
->isAnonymous()) {
$user = User::getAnonymousUser();
$user->name = $this
->getAuthorName();
$user->homepage = $this
->getHomepage();
}
return $user;
}
public function getTypeId() {
return $this
->bundle();
}
public static function getDefaultStatus() {
return \Drupal::currentUser()
->hasPermission('skip comment approval') ? CommentInterface::PUBLISHED : CommentInterface::NOT_PUBLISHED;
}
public static function getDefaultHostname() {
if (\Drupal::config('comment.settings')
->get('log_ip_addresses')) {
return \Drupal::request()
->getClientIP();
}
return '';
}
}