updated core to 8.6.1 via composer
This commit is contained in:
@@ -45,7 +45,12 @@ class CommentAccessControlHandler extends EntityAccessControlHandler {
|
||||
return $access_result;
|
||||
|
||||
case 'update':
|
||||
return AccessResult::allowedIf($account->id() && $account->id() == $entity->getOwnerId() && $entity->isPublished() && $account->hasPermission('edit own comments'))->cachePerPermissions()->cachePerUser()->addCacheableDependency($entity);
|
||||
$access_result = AccessResult::allowedIf($account->id() && $account->id() == $entity->getOwnerId() && $entity->isPublished() && $account->hasPermission('edit own comments'))
|
||||
->cachePerPermissions()->cachePerUser()->addCacheableDependency($entity);
|
||||
if (!$access_result->isAllowed()) {
|
||||
$access_result->setReason("The 'edit own comments' permission is required, the user must be the comment author, and the comment must be published.");
|
||||
}
|
||||
return $access_result;
|
||||
|
||||
default:
|
||||
// No opinion.
|
||||
|
||||
@@ -9,7 +9,8 @@ use Drupal\Component\Utility\Unicode;
|
||||
use Drupal\Core\Datetime\DrupalDateTime;
|
||||
use Drupal\Core\Entity\ContentEntityForm;
|
||||
use Drupal\Core\Entity\EntityConstraintViolationListInterface;
|
||||
use Drupal\Core\Entity\EntityManagerInterface;
|
||||
use Drupal\Core\Entity\EntityFieldManagerInterface;
|
||||
use Drupal\Core\Entity\EntityRepositoryInterface;
|
||||
use Drupal\Core\Entity\EntityTypeBundleInfoInterface;
|
||||
use Drupal\Core\Form\FormStateInterface;
|
||||
use Drupal\Core\Render\RendererInterface;
|
||||
@@ -37,24 +38,32 @@ class CommentForm extends ContentEntityForm {
|
||||
*/
|
||||
protected $renderer;
|
||||
|
||||
/**
|
||||
* The entity field manager.
|
||||
*
|
||||
* @var \Drupal\Core\Entity\EntityFieldManagerInterface
|
||||
*/
|
||||
protected $entityFieldManager;
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public static function create(ContainerInterface $container) {
|
||||
return new static(
|
||||
$container->get('entity.manager'),
|
||||
$container->get('entity.repository'),
|
||||
$container->get('current_user'),
|
||||
$container->get('renderer'),
|
||||
$container->get('entity_type.bundle.info'),
|
||||
$container->get('datetime.time')
|
||||
$container->get('datetime.time'),
|
||||
$container->get('entity_field.manager')
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructs a new CommentForm.
|
||||
*
|
||||
* @param \Drupal\Core\Entity\EntityManagerInterface $entity_manager
|
||||
* The entity manager service.
|
||||
* @param \Drupal\Core\Entity\EntityRepositoryInterface $entity_repository
|
||||
* The entity repository.
|
||||
* @param \Drupal\Core\Session\AccountInterface $current_user
|
||||
* The current user.
|
||||
* @param \Drupal\Core\Render\RendererInterface $renderer
|
||||
@@ -64,10 +73,11 @@ class CommentForm extends ContentEntityForm {
|
||||
* @param \Drupal\Component\Datetime\TimeInterface $time
|
||||
* The time service.
|
||||
*/
|
||||
public function __construct(EntityManagerInterface $entity_manager, AccountInterface $current_user, RendererInterface $renderer, EntityTypeBundleInfoInterface $entity_type_bundle_info = NULL, TimeInterface $time = NULL) {
|
||||
parent::__construct($entity_manager, $entity_type_bundle_info, $time);
|
||||
public function __construct(EntityRepositoryInterface $entity_repository, AccountInterface $current_user, RendererInterface $renderer, EntityTypeBundleInfoInterface $entity_type_bundle_info = NULL, TimeInterface $time = NULL, EntityFieldManagerInterface $entity_field_manager = NULL) {
|
||||
parent::__construct($entity_repository, $entity_type_bundle_info, $time);
|
||||
$this->currentUser = $current_user;
|
||||
$this->renderer = $renderer;
|
||||
$this->entityFieldManager = $entity_field_manager ?: \Drupal::service('entity_field.manager');
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -76,9 +86,9 @@ class CommentForm extends ContentEntityForm {
|
||||
public function form(array $form, FormStateInterface $form_state) {
|
||||
/** @var \Drupal\comment\CommentInterface $comment */
|
||||
$comment = $this->entity;
|
||||
$entity = $this->entityManager->getStorage($comment->getCommentedEntityTypeId())->load($comment->getCommentedEntityId());
|
||||
$entity = $this->entityTypeManager->getStorage($comment->getCommentedEntityTypeId())->load($comment->getCommentedEntityId());
|
||||
$field_name = $comment->getFieldName();
|
||||
$field_definition = $this->entityManager->getFieldDefinitions($entity->getEntityTypeId(), $entity->bundle())[$comment->getFieldName()];
|
||||
$field_definition = $this->entityFieldManager->getFieldDefinitions($entity->getEntityTypeId(), $entity->bundle())[$comment->getFieldName()];
|
||||
$config = $this->config('user.settings');
|
||||
|
||||
// In several places within this function, we vary $form on:
|
||||
@@ -369,22 +379,22 @@ class CommentForm extends ContentEntityForm {
|
||||
// Add a log entry.
|
||||
$logger->notice('Comment posted: %subject.', [
|
||||
'%subject' => $comment->getSubject(),
|
||||
'link' => $this->l(t('View'), $comment->urlInfo()->setOption('fragment', 'comment-' . $comment->id()))
|
||||
'link' => $this->l(t('View'), $comment->urlInfo()->setOption('fragment', 'comment-' . $comment->id())),
|
||||
]);
|
||||
|
||||
// Explain the approval queue if necessary.
|
||||
if (!$comment->isPublished()) {
|
||||
if (!$this->currentUser->hasPermission('administer comments')) {
|
||||
drupal_set_message($this->t('Your comment has been queued for review by site administrators and will be published after approval.'));
|
||||
$this->messenger()->addStatus($this->t('Your comment has been queued for review by site administrators and will be published after approval.'));
|
||||
}
|
||||
}
|
||||
else {
|
||||
drupal_set_message($this->t('Your comment has been posted.'));
|
||||
$this->messenger()->addStatus($this->t('Your comment has been posted.'));
|
||||
}
|
||||
$query = [];
|
||||
// Find the current display page for this comment.
|
||||
$field_definition = $this->entityManager->getFieldDefinitions($entity->getEntityTypeId(), $entity->bundle())[$field_name];
|
||||
$page = $this->entityManager->getStorage('comment')->getDisplayOrdinal($comment, $field_definition->getSetting('default_mode'), $field_definition->getSetting('per_page'));
|
||||
$field_definition = $this->entityFieldManager->getFieldDefinitions($entity->getEntityTypeId(), $entity->bundle())[$field_name];
|
||||
$page = $this->entityTypeManager->getStorage('comment')->getDisplayOrdinal($comment, $field_definition->getSetting('default_mode'), $field_definition->getSetting('per_page'));
|
||||
if ($page > 0) {
|
||||
$query['page'] = $page;
|
||||
}
|
||||
@@ -394,7 +404,7 @@ class CommentForm extends ContentEntityForm {
|
||||
}
|
||||
else {
|
||||
$logger->warning('Comment: unauthorized comment submitted or comment submitted to a closed post %subject.', ['%subject' => $comment->getSubject()]);
|
||||
drupal_set_message($this->t('Comment: unauthorized comment submitted or comment submitted to a closed post %subject.', ['%subject' => $comment->getSubject()]), 'error');
|
||||
$this->messenger()->addError($this->t('Comment: unauthorized comment submitted or comment submitted to a closed post %subject.', ['%subject' => $comment->getSubject()]));
|
||||
// Redirect the user to the entity they are commenting on.
|
||||
}
|
||||
$form_state->setRedirectUrl($uri);
|
||||
|
||||
@@ -107,7 +107,7 @@ class CommentLinkBuilder implements CommentLinkBuilderInterface {
|
||||
'title' => $this->formatPlural($entity->get($field_name)->comment_count, '1 comment', '@count comments'),
|
||||
'attributes' => ['title' => $this->t('Jump to the first comment.')],
|
||||
'fragment' => 'comments',
|
||||
'url' => $entity->urlInfo(),
|
||||
'url' => $entity->toUrl(),
|
||||
];
|
||||
if ($this->moduleHandler->moduleExists('history')) {
|
||||
$links['comment-new-comments'] = [
|
||||
@@ -141,7 +141,7 @@ class CommentLinkBuilder implements CommentLinkBuilderInterface {
|
||||
]);
|
||||
}
|
||||
else {
|
||||
$links['comment-add'] += ['url' => $entity->urlInfo()];
|
||||
$links['comment-add'] += ['url' => $entity->toUrl()];
|
||||
}
|
||||
}
|
||||
elseif ($this->currentUser->isAnonymous()) {
|
||||
@@ -174,7 +174,7 @@ class CommentLinkBuilder implements CommentLinkBuilderInterface {
|
||||
]);
|
||||
}
|
||||
else {
|
||||
$links['comment-add']['url'] = $entity->urlInfo();
|
||||
$links['comment-add']['url'] = $entity->toUrl();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
namespace Drupal\comment;
|
||||
|
||||
use Drupal\Core\Cache\CacheBackendInterface;
|
||||
use Drupal\Core\Cache\MemoryCache\MemoryCacheInterface;
|
||||
use Drupal\Core\Database\Connection;
|
||||
use Drupal\Core\Entity\EntityManagerInterface;
|
||||
use Drupal\Core\Entity\EntityTypeInterface;
|
||||
@@ -43,9 +44,11 @@ class CommentStorage extends SqlContentEntityStorage implements CommentStorageIn
|
||||
* Cache backend instance to use.
|
||||
* @param \Drupal\Core\Language\LanguageManagerInterface $language_manager
|
||||
* The language manager.
|
||||
* @param \Drupal\Core\Cache\MemoryCache\MemoryCacheInterface $memory_cache
|
||||
* The memory cache.
|
||||
*/
|
||||
public function __construct(EntityTypeInterface $entity_info, Connection $database, EntityManagerInterface $entity_manager, AccountInterface $current_user, CacheBackendInterface $cache, LanguageManagerInterface $language_manager) {
|
||||
parent::__construct($entity_info, $database, $entity_manager, $cache, $language_manager);
|
||||
public function __construct(EntityTypeInterface $entity_info, Connection $database, EntityManagerInterface $entity_manager, AccountInterface $current_user, CacheBackendInterface $cache, LanguageManagerInterface $language_manager, MemoryCacheInterface $memory_cache) {
|
||||
parent::__construct($entity_info, $database, $entity_manager, $cache, $language_manager, $memory_cache);
|
||||
$this->currentUser = $current_user;
|
||||
}
|
||||
|
||||
@@ -59,7 +62,8 @@ class CommentStorage extends SqlContentEntityStorage implements CommentStorageIn
|
||||
$container->get('entity.manager'),
|
||||
$container->get('current_user'),
|
||||
$container->get('cache.entity'),
|
||||
$container->get('language_manager')
|
||||
$container->get('language_manager'),
|
||||
$container->get('entity.memory_cache')
|
||||
);
|
||||
}
|
||||
|
||||
@@ -67,7 +71,7 @@ class CommentStorage extends SqlContentEntityStorage implements CommentStorageIn
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getMaxThread(CommentInterface $comment) {
|
||||
$query = $this->database->select('comment_field_data', 'c')
|
||||
$query = $this->database->select($this->getDataTable(), 'c')
|
||||
->condition('entity_id', $comment->getCommentedEntityId())
|
||||
->condition('field_name', $comment->getFieldName())
|
||||
->condition('entity_type', $comment->getCommentedEntityTypeId())
|
||||
@@ -81,7 +85,7 @@ class CommentStorage extends SqlContentEntityStorage implements CommentStorageIn
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getMaxThreadPerThread(CommentInterface $comment) {
|
||||
$query = $this->database->select('comment_field_data', 'c')
|
||||
$query = $this->database->select($this->getDataTable(), 'c')
|
||||
->condition('entity_id', $comment->getCommentedEntityId())
|
||||
->condition('field_name', $comment->getFieldName())
|
||||
->condition('entity_type', $comment->getCommentedEntityTypeId())
|
||||
@@ -98,8 +102,9 @@ class CommentStorage extends SqlContentEntityStorage implements CommentStorageIn
|
||||
public function getDisplayOrdinal(CommentInterface $comment, $comment_mode, $divisor = 1) {
|
||||
// Count how many comments (c1) are before $comment (c2) in display order.
|
||||
// This is the 0-based display ordinal.
|
||||
$query = $this->database->select('comment_field_data', 'c1');
|
||||
$query->innerJoin('comment_field_data', 'c2', 'c2.entity_id = c1.entity_id AND c2.entity_type = c1.entity_type AND c2.field_name = c1.field_name');
|
||||
$data_table = $this->getDataTable();
|
||||
$query = $this->database->select($data_table, 'c1');
|
||||
$query->innerJoin($data_table, 'c2', 'c2.entity_id = c1.entity_id AND c2.entity_type = c1.entity_type AND c2.field_name = c1.field_name');
|
||||
$query->addExpression('COUNT(*)', 'count');
|
||||
$query->condition('c2.cid', $comment->id());
|
||||
if (!$this->currentUser->hasPermission('administer comments')) {
|
||||
@@ -133,6 +138,7 @@ class CommentStorage extends SqlContentEntityStorage implements CommentStorageIn
|
||||
public function getNewCommentPageNumber($total_comments, $new_comments, FieldableEntityInterface $entity, $field_name) {
|
||||
$field = $entity->getFieldDefinition($field_name);
|
||||
$comments_per_page = $field->getSetting('per_page');
|
||||
$data_table = $this->getDataTable();
|
||||
|
||||
if ($total_comments <= $comments_per_page) {
|
||||
// Only one page of comments.
|
||||
@@ -146,7 +152,7 @@ class CommentStorage extends SqlContentEntityStorage implements CommentStorageIn
|
||||
// Threaded comments.
|
||||
|
||||
// 1. Find all the threads with a new comment.
|
||||
$unread_threads_query = $this->database->select('comment_field_data', 'comment')
|
||||
$unread_threads_query = $this->database->select($data_table, 'comment')
|
||||
->fields('comment', ['thread'])
|
||||
->condition('entity_id', $entity->id())
|
||||
->condition('entity_type', $entity->getEntityTypeId())
|
||||
@@ -171,7 +177,7 @@ class CommentStorage extends SqlContentEntityStorage implements CommentStorageIn
|
||||
$first_thread = substr($first_thread, 0, -1);
|
||||
|
||||
// Find the number of the first comment of the first unread thread.
|
||||
$count = $this->database->query('SELECT COUNT(*) FROM {comment_field_data} WHERE entity_id = :entity_id
|
||||
$count = $this->database->query('SELECT COUNT(*) FROM {' . $data_table . '} WHERE entity_id = :entity_id
|
||||
AND entity_type = :entity_type
|
||||
AND field_name = :field_name
|
||||
AND status = :status
|
||||
@@ -192,7 +198,7 @@ class CommentStorage extends SqlContentEntityStorage implements CommentStorageIn
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getChildCids(array $comments) {
|
||||
return $this->database->select('comment_field_data', 'c')
|
||||
return $this->database->select($this->getDataTable(), 'c')
|
||||
->fields('c', ['cid'])
|
||||
->condition('pid', array_keys($comments), 'IN')
|
||||
->condition('default_langcode', 1)
|
||||
@@ -258,7 +264,8 @@ class CommentStorage extends SqlContentEntityStorage implements CommentStorageIn
|
||||
* to consider the trailing "/" so we use a substring only.
|
||||
*/
|
||||
public function loadThread(EntityInterface $entity, $field_name, $mode, $comments_per_page = 0, $pager_id = 0) {
|
||||
$query = $this->database->select('comment_field_data', 'c');
|
||||
$data_table = $this->getDataTable();
|
||||
$query = $this->database->select($data_table, 'c');
|
||||
$query->addField('c', 'cid');
|
||||
$query
|
||||
->condition('c.entity_id', $entity->id())
|
||||
@@ -278,7 +285,7 @@ class CommentStorage extends SqlContentEntityStorage implements CommentStorageIn
|
||||
$query->element($pager_id);
|
||||
}
|
||||
|
||||
$count_query = $this->database->select('comment_field_data', 'c');
|
||||
$count_query = $this->database->select($data_table, 'c');
|
||||
$count_query->addExpression('COUNT(*)');
|
||||
$count_query
|
||||
->condition('c.entity_id', $entity->id())
|
||||
@@ -324,7 +331,7 @@ class CommentStorage extends SqlContentEntityStorage implements CommentStorageIn
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getUnapprovedCount() {
|
||||
return $this->database->select('comment_field_data', 'c')
|
||||
return $this->database->select($this->getDataTable(), 'c')
|
||||
->condition('status', CommentInterface::NOT_PUBLISHED, '=')
|
||||
->condition('default_langcode', 1)
|
||||
->countQuery()
|
||||
|
||||
@@ -17,24 +17,26 @@ class CommentStorageSchema extends SqlContentEntityStorageSchema {
|
||||
protected function getEntitySchema(ContentEntityTypeInterface $entity_type, $reset = FALSE) {
|
||||
$schema = parent::getEntitySchema($entity_type, $reset);
|
||||
|
||||
$schema['comment_field_data']['indexes'] += [
|
||||
'comment__status_pid' => ['pid', 'status'],
|
||||
'comment__num_new' => [
|
||||
'entity_id',
|
||||
'entity_type',
|
||||
'comment_type',
|
||||
'status',
|
||||
'created',
|
||||
'cid',
|
||||
'thread',
|
||||
],
|
||||
'comment__entity_langcode' => [
|
||||
'entity_id',
|
||||
'entity_type',
|
||||
'comment_type',
|
||||
'default_langcode',
|
||||
],
|
||||
];
|
||||
if ($data_table = $this->storage->getDataTable()) {
|
||||
$schema[$data_table]['indexes'] += [
|
||||
'comment__status_pid' => ['pid', 'status'],
|
||||
'comment__num_new' => [
|
||||
'entity_id',
|
||||
'entity_type',
|
||||
'comment_type',
|
||||
'status',
|
||||
'created',
|
||||
'cid',
|
||||
'thread',
|
||||
],
|
||||
'comment__entity_langcode' => [
|
||||
'entity_id',
|
||||
'entity_type',
|
||||
'comment_type',
|
||||
'default_langcode',
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
return $schema;
|
||||
}
|
||||
|
||||
@@ -111,7 +111,7 @@ class CommentTypeForm extends EntityForm {
|
||||
'#default_value' => $comment_type->getTargetEntityTypeId(),
|
||||
'#title' => t('Target entity type'),
|
||||
'#options' => $options,
|
||||
'#description' => t('The target entity type can not be changed after the comment type has been created.')
|
||||
'#description' => t('The target entity type can not be changed after the comment type has been created.'),
|
||||
];
|
||||
}
|
||||
else {
|
||||
@@ -160,12 +160,12 @@ class CommentTypeForm extends EntityForm {
|
||||
|
||||
$edit_link = $this->entity->link($this->t('Edit'));
|
||||
if ($status == SAVED_UPDATED) {
|
||||
drupal_set_message(t('Comment type %label has been updated.', ['%label' => $comment_type->label()]));
|
||||
$this->messenger()->addStatus(t('Comment type %label has been updated.', ['%label' => $comment_type->label()]));
|
||||
$this->logger->notice('Comment type %label has been updated.', ['%label' => $comment_type->label(), 'link' => $edit_link]);
|
||||
}
|
||||
else {
|
||||
$this->commentManager->addBodyField($comment_type->id());
|
||||
drupal_set_message(t('Comment type %label has been added.', ['%label' => $comment_type->label()]));
|
||||
$this->messenger()->addStatus(t('Comment type %label has been added.', ['%label' => $comment_type->label()]));
|
||||
$this->logger->notice('Comment type %label has been added.', ['%label' => $comment_type->label(), 'link' => $edit_link]);
|
||||
}
|
||||
|
||||
|
||||
@@ -98,6 +98,7 @@ class CommentViewBuilder extends EntityViewBuilder {
|
||||
|
||||
// A counter to track the indentation level.
|
||||
$current_indent = 0;
|
||||
$attach_history = $this->moduleHandler->moduleExists('history') && $this->currentUser->isAuthenticated();
|
||||
|
||||
foreach ($entities as $id => $entity) {
|
||||
if ($build[$id]['#comment_threaded']) {
|
||||
@@ -143,7 +144,7 @@ class CommentViewBuilder extends EntityViewBuilder {
|
||||
$build[$id]['#attached'] = [];
|
||||
}
|
||||
$build[$id]['#attached']['library'][] = 'comment/drupal.comment-by-viewer';
|
||||
if ($this->moduleHandler->moduleExists('history') && $this->currentUser->isAuthenticated()) {
|
||||
if ($attach_history && $commented_entity->getEntityTypeId() === 'node') {
|
||||
$build[$id]['#attached']['library'][] = 'comment/drupal.comment-new-indicator';
|
||||
|
||||
// Embed the metadata for the comment "new" indicators on this node.
|
||||
|
||||
@@ -214,7 +214,7 @@ class CommentViewsData extends EntityViewsData {
|
||||
[
|
||||
'field' => 'entity_type',
|
||||
'value' => $type,
|
||||
'table' => 'comment_field_data'
|
||||
'table' => 'comment_field_data',
|
||||
],
|
||||
],
|
||||
],
|
||||
@@ -235,7 +235,7 @@ class CommentViewsData extends EntityViewsData {
|
||||
|
||||
// Define the base group of this table. Fields that don't have a group defined
|
||||
// will go into this field by default.
|
||||
$data['comment_entity_statistics']['table']['group'] = $this->t('Comment Statistics');
|
||||
$data['comment_entity_statistics']['table']['group'] = $this->t('Comment Statistics');
|
||||
|
||||
// Provide a relationship for each entity type except comment.
|
||||
foreach ($entities_types as $type => $entity_type) {
|
||||
|
||||
@@ -82,10 +82,10 @@ class CommentController extends ControllerBase {
|
||||
* @return \Symfony\Component\HttpFoundation\RedirectResponse
|
||||
*/
|
||||
public function commentApprove(CommentInterface $comment) {
|
||||
$comment->setPublished(TRUE);
|
||||
$comment->setPublished();
|
||||
$comment->save();
|
||||
|
||||
drupal_set_message($this->t('Comment approved.'));
|
||||
$this->messenger()->addStatus($this->t('Comment approved.'));
|
||||
$permalink_uri = $comment->permalink();
|
||||
$permalink_uri->setAbsolute();
|
||||
return new RedirectResponse($permalink_uri->toString());
|
||||
|
||||
@@ -56,6 +56,7 @@ use Drupal\user\UserInterface;
|
||||
* links = {
|
||||
* "canonical" = "/comment/{comment}",
|
||||
* "delete-form" = "/comment/{comment}/delete",
|
||||
* "delete-multiple-form" = "/admin/content/comment/delete",
|
||||
* "edit-form" = "/comment/{comment}/edit",
|
||||
* "create" = "/comment",
|
||||
* },
|
||||
@@ -142,10 +143,6 @@ class Comment extends ContentEntityBase implements CommentInterface {
|
||||
$this->threadLock = $lock_name;
|
||||
}
|
||||
$this->setThread($thread);
|
||||
if (!$this->getHostname()) {
|
||||
// Ensure a client host from the current request.
|
||||
$this->setHostname(\Drupal::request()->getClientIP());
|
||||
}
|
||||
}
|
||||
// The entity fields for name and mail have no meaning if the user is not
|
||||
// Anonymous. Set them to NULL to make it clearer that they are not used.
|
||||
@@ -290,7 +287,8 @@ class Comment extends ContentEntityBase implements CommentInterface {
|
||||
->setLabel(t('Hostname'))
|
||||
->setDescription(t("The comment author's hostname."))
|
||||
->setTranslatable(TRUE)
|
||||
->setSetting('max_length', 128);
|
||||
->setSetting('max_length', 128)
|
||||
->setDefaultValueCallback(static::class . '::getDefaultHostname');
|
||||
|
||||
$fields['created'] = BaseFieldDefinition::create('created')
|
||||
->setLabel(t('Created'))
|
||||
@@ -571,4 +569,14 @@ class Comment extends ContentEntityBase implements CommentInterface {
|
||||
return \Drupal::currentUser()->hasPermission('skip comment approval') ? CommentInterface::PUBLISHED : CommentInterface::NOT_PUBLISHED;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the default value for entity hostname base field.
|
||||
*
|
||||
* @return string
|
||||
* The client host name.
|
||||
*/
|
||||
public static function getDefaultHostname() {
|
||||
return \Drupal::request()->getClientIP();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -37,7 +37,7 @@ use Drupal\comment\CommentTypeInterface;
|
||||
* "delete-form" = "/admin/structure/comment/manage/{comment_type}/delete",
|
||||
* "edit-form" = "/admin/structure/comment/manage/{comment_type}",
|
||||
* "add-form" = "/admin/structure/comment/types/add",
|
||||
* "collection" = "/admin/structure/comment/types",
|
||||
* "collection" = "/admin/structure/comment",
|
||||
* },
|
||||
* config_export = {
|
||||
* "id",
|
||||
|
||||
@@ -279,7 +279,7 @@ class CommentAdminOverview extends FormBase {
|
||||
}
|
||||
$comment->save();
|
||||
}
|
||||
drupal_set_message($this->t('The update has been performed.'));
|
||||
$this->messenger()->addStatus($this->t('The update has been performed.'));
|
||||
$form_state->setRedirect('comment.admin');
|
||||
}
|
||||
else {
|
||||
@@ -290,9 +290,9 @@ class CommentAdminOverview extends FormBase {
|
||||
$info[$comment->id()][$langcode] = $langcode;
|
||||
}
|
||||
$this->tempStoreFactory
|
||||
->get('comment_multiple_delete_confirm')
|
||||
->set($this->currentUser()->id(), $info);
|
||||
$form_state->setRedirect('comment.multiple_delete_confirm');
|
||||
->get('entity_delete_multiple_confirm')
|
||||
->set($this->currentUser()->id() . ':comment', $info);
|
||||
$form_state->setRedirect('entity.comment.delete_multiple_form');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -2,76 +2,21 @@
|
||||
|
||||
namespace Drupal\comment\Form;
|
||||
|
||||
use Drupal\comment\CommentStorageInterface;
|
||||
use Drupal\Core\TempStore\PrivateTempStoreFactory;
|
||||
use Drupal\Core\Form\ConfirmFormBase;
|
||||
use Drupal\Core\Form\FormStateInterface;
|
||||
use Drupal\Core\Entity\Form\DeleteMultipleForm as EntityDeleteMultipleForm;
|
||||
use Drupal\Core\Url;
|
||||
use Symfony\Component\DependencyInjection\ContainerInterface;
|
||||
|
||||
/**
|
||||
* Provides the comment multiple delete confirmation form.
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
class ConfirmDeleteMultiple extends ConfirmFormBase {
|
||||
|
||||
/**
|
||||
* The tempstore factory.
|
||||
*
|
||||
* @var \Drupal\Core\TempStore\PrivateTempStoreFactory
|
||||
*/
|
||||
protected $tempStoreFactory;
|
||||
|
||||
/**
|
||||
* The comment storage.
|
||||
*
|
||||
* @var \Drupal\comment\CommentStorageInterface
|
||||
*/
|
||||
protected $commentStorage;
|
||||
|
||||
/**
|
||||
* An array of comments to be deleted.
|
||||
*
|
||||
* @var string[][]
|
||||
*/
|
||||
protected $commentInfo;
|
||||
|
||||
/**
|
||||
* Creates an new ConfirmDeleteMultiple form.
|
||||
*
|
||||
* @param \Drupal\comment\CommentStorageInterface $comment_storage
|
||||
* The comment storage.
|
||||
* @param \Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory
|
||||
* The tempstore factory.
|
||||
*/
|
||||
public function __construct(CommentStorageInterface $comment_storage, PrivateTempStoreFactory $temp_store_factory) {
|
||||
$this->commentStorage = $comment_storage;
|
||||
$this->tempStoreFactory = $temp_store_factory;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public static function create(ContainerInterface $container) {
|
||||
return new static(
|
||||
$container->get('entity.manager')->getStorage('comment'),
|
||||
$container->get('tempstore.private')
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getFormId() {
|
||||
return 'comment_multiple_delete_confirm';
|
||||
}
|
||||
class ConfirmDeleteMultiple extends EntityDeleteMultipleForm {
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getQuestion() {
|
||||
return $this->formatPlural(count($this->commentInfo), 'Are you sure you want to delete this comment and all its children?', 'Are you sure you want to delete these comments and all their children?');
|
||||
return $this->formatPlural(count($this->selection), 'Are you sure you want to delete this comment and all its children?', 'Are you sure you want to delete these comments and all their children?');
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -84,116 +29,15 @@ class ConfirmDeleteMultiple extends ConfirmFormBase {
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getConfirmText() {
|
||||
return $this->t('Delete');
|
||||
protected function getDeletedMessage($count) {
|
||||
return $this->formatPlural($count, 'Deleted @count comment.', 'Deleted @count comments.');
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function buildForm(array $form, FormStateInterface $form_state) {
|
||||
$this->commentInfo = $this->tempStoreFactory->get('comment_multiple_delete_confirm')->get($this->currentUser()->id());
|
||||
if (empty($this->commentInfo)) {
|
||||
return $this->redirect('comment.admin');
|
||||
}
|
||||
/** @var \Drupal\comment\CommentInterface[] $comments */
|
||||
$comments = $this->commentStorage->loadMultiple(array_keys($this->commentInfo));
|
||||
|
||||
$items = [];
|
||||
foreach ($this->commentInfo as $id => $langcodes) {
|
||||
foreach ($langcodes as $langcode) {
|
||||
$comment = $comments[$id]->getTranslation($langcode);
|
||||
$key = $id . ':' . $langcode;
|
||||
$default_key = $id . ':' . $comment->getUntranslated()->language()->getId();
|
||||
|
||||
// If we have a translated entity we build a nested list of translations
|
||||
// that will be deleted.
|
||||
$languages = $comment->getTranslationLanguages();
|
||||
if (count($languages) > 1 && $comment->isDefaultTranslation()) {
|
||||
$names = [];
|
||||
foreach ($languages as $translation_langcode => $language) {
|
||||
$names[] = $language->getName();
|
||||
unset($items[$id . ':' . $translation_langcode]);
|
||||
}
|
||||
$items[$default_key] = [
|
||||
'label' => [
|
||||
'#markup' => $this->t('@label (Original translation) - <em>The following comment translations will be deleted:</em>', ['@label' => $comment->label()]),
|
||||
],
|
||||
'deleted_translations' => [
|
||||
'#theme' => 'item_list',
|
||||
'#items' => $names,
|
||||
],
|
||||
];
|
||||
}
|
||||
elseif (!isset($items[$default_key])) {
|
||||
$items[$key] = $comment->label();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$form['comments'] = [
|
||||
'#theme' => 'item_list',
|
||||
'#items' => $items,
|
||||
];
|
||||
|
||||
return parent::buildForm($form, $form_state);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function submitForm(array &$form, FormStateInterface $form_state) {
|
||||
if ($form_state->getValue('confirm') && !empty($this->commentInfo)) {
|
||||
$total_count = 0;
|
||||
$delete_comments = [];
|
||||
/** @var \Drupal\Core\Entity\ContentEntityInterface[][] $delete_translations */
|
||||
$delete_translations = [];
|
||||
/** @var \Drupal\comment\CommentInterface[] $comments */
|
||||
$comments = $this->commentStorage->loadMultiple(array_keys($this->commentInfo));
|
||||
|
||||
foreach ($this->commentInfo as $id => $langcodes) {
|
||||
foreach ($langcodes as $langcode) {
|
||||
$comment = $comments[$id]->getTranslation($langcode);
|
||||
if ($comment->isDefaultTranslation()) {
|
||||
$delete_comments[$id] = $comment;
|
||||
unset($delete_translations[$id]);
|
||||
$total_count += count($comment->getTranslationLanguages());
|
||||
}
|
||||
elseif (!isset($delete_comments[$id])) {
|
||||
$delete_translations[$id][] = $comment;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ($delete_comments) {
|
||||
$this->commentStorage->delete($delete_comments);
|
||||
$this->logger('content')->notice('Deleted @count comments.', ['@count' => count($delete_comments)]);
|
||||
}
|
||||
|
||||
if ($delete_translations) {
|
||||
$count = 0;
|
||||
foreach ($delete_translations as $id => $translations) {
|
||||
$comment = $comments[$id]->getUntranslated();
|
||||
foreach ($translations as $translation) {
|
||||
$comment->removeTranslation($translation->language()->getId());
|
||||
}
|
||||
$comment->save();
|
||||
$count += count($translations);
|
||||
}
|
||||
if ($count) {
|
||||
$total_count += $count;
|
||||
$this->logger('content')->notice('Deleted @count comment translations.', ['@count' => $count]);
|
||||
}
|
||||
}
|
||||
|
||||
if ($total_count) {
|
||||
drupal_set_message($this->formatPlural($total_count, 'Deleted 1 comment.', 'Deleted @count comments.'));
|
||||
}
|
||||
|
||||
$this->tempStoreFactory->get('comment_multiple_delete_confirm')->delete($this->currentUser()->id());
|
||||
}
|
||||
|
||||
$form_state->setRedirectUrl($this->getCancelUrl());
|
||||
protected function getInaccessibleMessage($count) {
|
||||
return $this->formatPlural($count, "@count comment has not been deleted because you do not have the necessary permissions.", "@count comments have not been deleted because you do not have the necessary permissions.");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -2,97 +2,33 @@
|
||||
|
||||
namespace Drupal\comment\Plugin\Action;
|
||||
|
||||
use Drupal\Core\Action\ActionBase;
|
||||
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
|
||||
use Drupal\Core\Action\Plugin\Action\DeleteAction;
|
||||
use Drupal\Core\Entity\EntityTypeManagerInterface;
|
||||
use Drupal\Core\Session\AccountInterface;
|
||||
use Drupal\Core\TempStore\PrivateTempStoreFactory;
|
||||
use Symfony\Component\DependencyInjection\ContainerInterface;
|
||||
|
||||
/**
|
||||
* Deletes a comment.
|
||||
*
|
||||
* @deprecated in Drupal 8.6.x, to be removed before Drupal 9.0.0.
|
||||
* Use \Drupal\Core\Action\Plugin\Action\DeleteAction instead.
|
||||
*
|
||||
* @see \Drupal\Core\Action\Plugin\Action\DeleteAction
|
||||
* @see https://www.drupal.org/node/2934349
|
||||
*
|
||||
* @Action(
|
||||
* id = "comment_delete_action",
|
||||
* label = @Translation("Delete comment"),
|
||||
* type = "comment",
|
||||
* confirm_form_route_name = "comment.multiple_delete_confirm"
|
||||
* label = @Translation("Delete comment")
|
||||
* )
|
||||
*/
|
||||
class DeleteComment extends ActionBase implements ContainerFactoryPluginInterface {
|
||||
|
||||
/**
|
||||
* The tempstore object.
|
||||
*
|
||||
* @var \Drupal\Core\TempStore\PrivateTempStore
|
||||
*/
|
||||
protected $tempStore;
|
||||
|
||||
/**
|
||||
* The current user.
|
||||
*
|
||||
* @var \Drupal\Core\Session\AccountInterface
|
||||
*/
|
||||
protected $currentUser;
|
||||
|
||||
/**
|
||||
* Constructs a new DeleteComment object.
|
||||
*
|
||||
* @param array $configuration
|
||||
* A configuration array containing information about the plugin instance.
|
||||
* @param string $plugin_id
|
||||
* The plugin ID for the plugin instance.
|
||||
* @param array $plugin_definition
|
||||
* The plugin implementation definition.
|
||||
* @param \Drupal\Core\TempStore\PrivateTempStoreFactory $temp_store_factory
|
||||
* The tempstore factory.
|
||||
* @param \Drupal\Core\Session\AccountInterface $current_user
|
||||
* The current user.
|
||||
*/
|
||||
public function __construct(array $configuration, $plugin_id, array $plugin_definition, PrivateTempStoreFactory $temp_store_factory, AccountInterface $current_user) {
|
||||
$this->currentUser = $current_user;
|
||||
$this->tempStore = $temp_store_factory->get('comment_multiple_delete_confirm');
|
||||
parent::__construct($configuration, $plugin_id, $plugin_definition);
|
||||
}
|
||||
class DeleteComment extends DeleteAction {
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
|
||||
return new static(
|
||||
$configuration,
|
||||
$plugin_id,
|
||||
$plugin_definition,
|
||||
$container->get('tempstore.private'),
|
||||
$container->get('current_user')
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function executeMultiple(array $entities) {
|
||||
$info = [];
|
||||
/** @var \Drupal\comment\CommentInterface $comment */
|
||||
foreach ($entities as $comment) {
|
||||
$langcode = $comment->language()->getId();
|
||||
$info[$comment->id()][$langcode] = $langcode;
|
||||
}
|
||||
$this->tempStore->set($this->currentUser->id(), $info);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function execute($entity = NULL) {
|
||||
$this->executeMultiple([$entity]);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function access($comment, AccountInterface $account = NULL, $return_as_object = FALSE) {
|
||||
/** @var \Drupal\comment\CommentInterface $comment */
|
||||
return $comment->access('delete', $account, $return_as_object);
|
||||
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, PrivateTempStoreFactory $temp_store_factory, AccountInterface $current_user) {
|
||||
parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_type_manager, $temp_store_factory, $current_user);
|
||||
@trigger_error(__NAMESPACE__ . '\DeleteComment is deprecated in Drupal 8.6.x, will be removed before Drupal 9.0.0. Use \Drupal\Core\Action\Plugin\Action\DeleteAction instead. See https://www.drupal.org/node/2934349.', E_USER_DEPRECATED);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -78,7 +78,7 @@ class UnpublishByKeywordComment extends ConfigurableActionBase implements Contai
|
||||
$text = $this->renderer->renderPlain($build);
|
||||
foreach ($this->configuration['keywords'] as $keyword) {
|
||||
if (strpos($text, $keyword) !== FALSE) {
|
||||
$comment->setPublished(FALSE);
|
||||
$comment->setUnpublished();
|
||||
$comment->save();
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -42,7 +42,7 @@ class CommentSelection extends DefaultSelection {
|
||||
|
||||
// In order to create a referenceable comment, it needs to published.
|
||||
/** @var \Drupal\comment\CommentInterface $comment */
|
||||
$comment->setPublished(TRUE);
|
||||
$comment->setPublished();
|
||||
|
||||
return $comment;
|
||||
}
|
||||
|
||||
@@ -117,9 +117,8 @@ class CommentItem extends FieldItemBase implements CommentItemInterface {
|
||||
'#title' => t('Comments per page'),
|
||||
'#default_value' => $settings['per_page'],
|
||||
'#required' => TRUE,
|
||||
'#min' => 10,
|
||||
'#min' => 1,
|
||||
'#max' => 1000,
|
||||
'#step' => 10,
|
||||
];
|
||||
$element['anonymous'] = [
|
||||
'#type' => 'select',
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
<?php
|
||||
|
||||
namespace Drupal\comment\Plugin\migrate;
|
||||
|
||||
use Drupal\migrate_drupal\Plugin\migrate\FieldMigration;
|
||||
|
||||
/**
|
||||
* Migration plugin for Drupal 7 comments with fields.
|
||||
*/
|
||||
class D7Comment extends FieldMigration {
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getProcess() {
|
||||
if ($this->init) {
|
||||
return parent::getProcess();
|
||||
}
|
||||
$this->init = TRUE;
|
||||
if (!\Drupal::moduleHandler()->moduleExists('field')) {
|
||||
return parent::getProcess();
|
||||
}
|
||||
$definition['source'] = [
|
||||
'ignore_map' => TRUE,
|
||||
] + $this->getSourceConfiguration();
|
||||
$definition['source']['plugin'] = 'd7_field_instance';
|
||||
$definition['destination']['plugin'] = 'null';
|
||||
$definition['idMap']['plugin'] = 'null';
|
||||
$field_migration = $this->migrationPluginManager->createStubMigration($definition);
|
||||
foreach ($field_migration->getSourcePlugin() as $row) {
|
||||
$field_name = $row->getSourceProperty('field_name');
|
||||
$field_type = $row->getSourceProperty('type');
|
||||
if ($this->fieldPluginManager->hasDefinition($field_type)) {
|
||||
if (!isset($this->fieldPluginCache[$field_type])) {
|
||||
$this->fieldPluginCache[$field_type] = $this->fieldPluginManager->createInstance($field_type, [], $this);
|
||||
}
|
||||
$info = $row->getSource();
|
||||
$this->fieldPluginCache[$field_type]->defineValueProcessPipeline($this, $field_name, $info);
|
||||
}
|
||||
else {
|
||||
$this->setProcessOfProperty($field_name, $field_name);
|
||||
}
|
||||
}
|
||||
return parent::getProcess();
|
||||
}
|
||||
|
||||
}
|
||||
@@ -31,7 +31,7 @@ class CommentVariablePerCommentType extends CommentVariable {
|
||||
$return['comment'] = [
|
||||
'comment_type' => 'comment',
|
||||
'label' => $this->t('Default comments'),
|
||||
'description' => $this->t('Allows commenting on content')
|
||||
'description' => $this->t('Allows commenting on content'),
|
||||
];
|
||||
}
|
||||
else {
|
||||
@@ -39,7 +39,7 @@ class CommentVariablePerCommentType extends CommentVariable {
|
||||
$return['comment_no_subject'] = [
|
||||
'comment_type' => 'comment_no_subject',
|
||||
'label' => $this->t('Comments without subject field'),
|
||||
'description' => $this->t('Allows commenting on content, comments without subject field')
|
||||
'description' => $this->t('Allows commenting on content, comments without subject field'),
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -40,6 +40,15 @@ class Comment extends FieldableEntity {
|
||||
$row->setSourceProperty($field, $this->getFieldValues('comment', $field, $cid));
|
||||
}
|
||||
|
||||
// If the comment subject was replaced by a real field using the Drupal 7
|
||||
// Title module, use the field value instead of the comment subject.
|
||||
if ($this->moduleExists('title')) {
|
||||
$subject_field = $row->getSourceProperty('subject_field');
|
||||
if (isset($subject_field[0]['value'])) {
|
||||
$row->setSourceProperty('subject', $subject_field[0]['value']);
|
||||
}
|
||||
}
|
||||
|
||||
return parent::prepareRow($row);
|
||||
}
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@ class UserUid extends ArgumentPluginBase {
|
||||
protected $database;
|
||||
|
||||
/**
|
||||
* Constructs a Drupal\Component\Plugin\PluginBase object.
|
||||
* Constructs a \Drupal\comment\Plugin\views\argument\UserUid object.
|
||||
*
|
||||
* @param array $configuration
|
||||
* A configuration array containing information about the plugin instance.
|
||||
|
||||
@@ -36,7 +36,7 @@ class NodeNewComments extends NumericField {
|
||||
protected $database;
|
||||
|
||||
/**
|
||||
* Constructs a Drupal\Component\Plugin\PluginBase object.
|
||||
* Constructs a \Drupal\comment\Plugin\views\field\NodeNewComments object.
|
||||
*
|
||||
* @param array $configuration
|
||||
* A configuration array containing information about the plugin instance.
|
||||
|
||||
@@ -32,9 +32,9 @@ class StatisticsLastCommentName extends FieldPluginBase {
|
||||
[
|
||||
'field' => 'uid',
|
||||
'operator' => '!=',
|
||||
'value' => '0'
|
||||
]
|
||||
]
|
||||
'value' => '0',
|
||||
],
|
||||
],
|
||||
];
|
||||
$join = \Drupal::service('plugin.manager.views.join')->createInstance('standard', $definition);
|
||||
|
||||
|
||||
@@ -1,155 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace Drupal\comment\Tests;
|
||||
|
||||
use Drupal\comment\CommentInterface;
|
||||
use Drupal\comment\CommentManagerInterface;
|
||||
use Drupal\comment\Entity\Comment;
|
||||
use Drupal\Core\Entity\EntityInterface;
|
||||
use Drupal\entity_test\Entity\EntityTest;
|
||||
use Drupal\field\Entity\FieldConfig;
|
||||
use Drupal\system\Tests\Entity\EntityWithUriCacheTagsTestBase;
|
||||
use Drupal\user\Entity\Role;
|
||||
use Drupal\user\RoleInterface;
|
||||
|
||||
/**
|
||||
* Tests the Comment entity's cache tags.
|
||||
*
|
||||
* @group comment
|
||||
*/
|
||||
class CommentCacheTagsTest extends EntityWithUriCacheTagsTestBase {
|
||||
|
||||
use CommentTestTrait;
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public static $modules = ['comment'];
|
||||
|
||||
/**
|
||||
* @var \Drupal\entity_test\Entity\EntityTest
|
||||
*/
|
||||
protected $entityTestCamelid;
|
||||
|
||||
/**
|
||||
* @var \Drupal\entity_test\Entity\EntityTest
|
||||
*/
|
||||
protected $entityTestHippopotamidae;
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected function setUp() {
|
||||
parent::setUp();
|
||||
|
||||
// Give anonymous users permission to view comments, so that we can verify
|
||||
// the cache tags of cached versions of comment pages.
|
||||
$user_role = Role::load(RoleInterface::ANONYMOUS_ID);
|
||||
$user_role->grantPermission('access comments');
|
||||
$user_role->save();
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected function createEntity() {
|
||||
// Create a "bar" bundle for the "entity_test" entity type and create.
|
||||
$bundle = 'bar';
|
||||
entity_test_create_bundle($bundle, NULL, 'entity_test');
|
||||
|
||||
// Create a comment field on this bundle.
|
||||
$this->addDefaultCommentField('entity_test', 'bar', 'comment');
|
||||
|
||||
// Display comments in a flat list; threaded comments are not render cached.
|
||||
$field = FieldConfig::loadByName('entity_test', 'bar', 'comment');
|
||||
$field->setSetting('default_mode', CommentManagerInterface::COMMENT_MODE_FLAT);
|
||||
$field->save();
|
||||
|
||||
// Create a "Camelids" test entity that the comment will be assigned to.
|
||||
$this->entityTestCamelid = EntityTest::create([
|
||||
'name' => 'Camelids',
|
||||
'type' => 'bar',
|
||||
]);
|
||||
$this->entityTestCamelid->save();
|
||||
|
||||
// Create a "Llama" comment.
|
||||
$comment = Comment::create([
|
||||
'subject' => 'Llama',
|
||||
'comment_body' => [
|
||||
'value' => 'The name "llama" was adopted by European settlers from native Peruvians.',
|
||||
'format' => 'plain_text',
|
||||
],
|
||||
'entity_id' => $this->entityTestCamelid->id(),
|
||||
'entity_type' => 'entity_test',
|
||||
'field_name' => 'comment',
|
||||
'status' => CommentInterface::PUBLISHED,
|
||||
]);
|
||||
$comment->save();
|
||||
|
||||
return $comment;
|
||||
}
|
||||
|
||||
/**
|
||||
* Test that comments correctly invalidate the cache tag of their host entity.
|
||||
*/
|
||||
public function testCommentEntity() {
|
||||
$this->verifyPageCache($this->entityTestCamelid->urlInfo(), 'MISS');
|
||||
$this->verifyPageCache($this->entityTestCamelid->urlInfo(), 'HIT');
|
||||
|
||||
// Create a "Hippopotamus" comment.
|
||||
$this->entityTestHippopotamidae = EntityTest::create([
|
||||
'name' => 'Hippopotamus',
|
||||
'type' => 'bar',
|
||||
]);
|
||||
$this->entityTestHippopotamidae->save();
|
||||
|
||||
$this->verifyPageCache($this->entityTestHippopotamidae->urlInfo(), 'MISS');
|
||||
$this->verifyPageCache($this->entityTestHippopotamidae->urlInfo(), 'HIT');
|
||||
|
||||
$hippo_comment = Comment::create([
|
||||
'subject' => 'Hippopotamus',
|
||||
'comment_body' => [
|
||||
'value' => 'The common hippopotamus (Hippopotamus amphibius), or hippo, is a large, mostly herbivorous mammal in sub-Saharan Africa',
|
||||
'format' => 'plain_text',
|
||||
],
|
||||
'entity_id' => $this->entityTestHippopotamidae->id(),
|
||||
'entity_type' => 'entity_test',
|
||||
'field_name' => 'comment',
|
||||
'status' => CommentInterface::PUBLISHED,
|
||||
]);
|
||||
$hippo_comment->save();
|
||||
|
||||
// Ensure that a new comment only invalidates the commented entity.
|
||||
$this->verifyPageCache($this->entityTestCamelid->urlInfo(), 'HIT');
|
||||
$this->verifyPageCache($this->entityTestHippopotamidae->urlInfo(), 'MISS');
|
||||
$this->assertText($hippo_comment->getSubject());
|
||||
|
||||
// Ensure that updating an existing comment only invalidates the commented
|
||||
// entity.
|
||||
$this->entity->save();
|
||||
$this->verifyPageCache($this->entityTestCamelid->urlInfo(), 'MISS');
|
||||
$this->verifyPageCache($this->entityTestHippopotamidae->urlInfo(), 'HIT');
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected function getAdditionalCacheContextsForEntity(EntityInterface $entity) {
|
||||
return [];
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* Each comment must have a comment body, which always has a text format.
|
||||
*/
|
||||
protected function getAdditionalCacheTagsForEntity(EntityInterface $entity) {
|
||||
/** @var \Drupal\comment\CommentInterface $entity */
|
||||
return [
|
||||
'config:filter.format.plain_text',
|
||||
'user:' . $entity->getOwnerId(),
|
||||
'user_view',
|
||||
];
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,152 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace Drupal\comment\Tests;
|
||||
|
||||
use Drupal\Component\Serialization\Json;
|
||||
use Drupal\Core\Language\LanguageInterface;
|
||||
use Drupal\comment\CommentInterface;
|
||||
use Drupal\Core\Url;
|
||||
use Drupal\comment\Entity\Comment;
|
||||
|
||||
/**
|
||||
* Tests the 'new' indicator posted on comments.
|
||||
*
|
||||
* @group comment
|
||||
*/
|
||||
class CommentNewIndicatorTest extends CommentTestBase {
|
||||
|
||||
/**
|
||||
* Use the main node listing to test rendering on teasers.
|
||||
*
|
||||
* @var array
|
||||
*
|
||||
* @todo Remove this dependency.
|
||||
*/
|
||||
public static $modules = ['views'];
|
||||
|
||||
/**
|
||||
* Get node "x new comments" metadata from the server for the current user.
|
||||
*
|
||||
* @param array $node_ids
|
||||
* An array of node IDs.
|
||||
*
|
||||
* @return string
|
||||
* The response body.
|
||||
*/
|
||||
protected function renderNewCommentsNodeLinks(array $node_ids) {
|
||||
// Build POST values.
|
||||
$post = [];
|
||||
for ($i = 0; $i < count($node_ids); $i++) {
|
||||
$post['node_ids[' . $i . ']'] = $node_ids[$i];
|
||||
}
|
||||
$post['field_name'] = 'comment';
|
||||
|
||||
// Serialize POST values.
|
||||
foreach ($post as $key => $value) {
|
||||
// Encode according to application/x-www-form-urlencoded
|
||||
// Both names and values needs to be urlencoded, according to
|
||||
// http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4.1
|
||||
$post[$key] = urlencode($key) . '=' . urlencode($value);
|
||||
}
|
||||
$post = implode('&', $post);
|
||||
|
||||
// Perform HTTP request.
|
||||
return $this->curlExec([
|
||||
CURLOPT_URL => \Drupal::url('comment.new_comments_node_links', [], ['absolute' => TRUE]),
|
||||
CURLOPT_POST => TRUE,
|
||||
CURLOPT_POSTFIELDS => $post,
|
||||
CURLOPT_HTTPHEADER => [
|
||||
'Accept: application/json',
|
||||
'Content-Type: application/x-www-form-urlencoded',
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests new comment marker.
|
||||
*/
|
||||
public function testCommentNewCommentsIndicator() {
|
||||
// Test if the right links are displayed when no comment is present for the
|
||||
// node.
|
||||
$this->drupalLogin($this->adminUser);
|
||||
$this->drupalGet('node');
|
||||
$this->assertNoLink(t('@count comments', ['@count' => 0]));
|
||||
$this->assertLink(t('Read more'));
|
||||
// Verify the data-history-node-last-comment-timestamp attribute, which is
|
||||
// used by the drupal.node-new-comments-link library to determine whether
|
||||
// a "x new comments" link might be necessary or not. We do this in
|
||||
// JavaScript to prevent breaking the render cache.
|
||||
$this->assertIdentical(0, count($this->xpath('//*[@data-history-node-last-comment-timestamp]')), 'data-history-node-last-comment-timestamp attribute is not set.');
|
||||
|
||||
// Create a new comment. This helper function may be run with different
|
||||
// comment settings so use $comment->save() to avoid complex setup.
|
||||
/** @var \Drupal\comment\CommentInterface $comment */
|
||||
$comment = Comment::create([
|
||||
'cid' => NULL,
|
||||
'entity_id' => $this->node->id(),
|
||||
'entity_type' => 'node',
|
||||
'field_name' => 'comment',
|
||||
'pid' => 0,
|
||||
'uid' => $this->loggedInUser->id(),
|
||||
'status' => CommentInterface::PUBLISHED,
|
||||
'subject' => $this->randomMachineName(),
|
||||
'hostname' => '127.0.0.1',
|
||||
'langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED,
|
||||
'comment_body' => [LanguageInterface::LANGCODE_NOT_SPECIFIED => [$this->randomMachineName()]],
|
||||
]);
|
||||
$comment->save();
|
||||
$this->drupalLogout();
|
||||
|
||||
// Log in with 'web user' and check comment links.
|
||||
$this->drupalLogin($this->webUser);
|
||||
$this->drupalGet('node');
|
||||
// Verify the data-history-node-last-comment-timestamp attribute. Given its
|
||||
// value, the drupal.node-new-comments-link library would determine that the
|
||||
// node received a comment after the user last viewed it, and hence it would
|
||||
// perform an HTTP request to render the "new comments" node link.
|
||||
$this->assertIdentical(1, count($this->xpath('//*[@data-history-node-last-comment-timestamp="' . $comment->getChangedTime() . '"]')), 'data-history-node-last-comment-timestamp attribute is set to the correct value.');
|
||||
$this->assertIdentical(1, count($this->xpath('//*[@data-history-node-field-name="comment"]')), 'data-history-node-field-name attribute is set to the correct value.');
|
||||
// The data will be pre-seeded on this particular page in drupalSettings, to
|
||||
// avoid the need for the client to make a separate request to the server.
|
||||
$settings = $this->getDrupalSettings();
|
||||
$this->assertEqual($settings['history'], ['lastReadTimestamps' => [1 => 0]]);
|
||||
$this->assertEqual($settings['comment'], [
|
||||
'newCommentsLinks' => [
|
||||
'node' => [
|
||||
'comment' => [
|
||||
1 => [
|
||||
'new_comment_count' => 1,
|
||||
'first_new_comment_link' => Url::fromRoute('entity.node.canonical', ['node' => 1])->setOptions([
|
||||
'fragment' => 'new',
|
||||
])->toString(),
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
]);
|
||||
// Pretend the data was not present in drupalSettings, i.e. test the
|
||||
// separate request to the server.
|
||||
$response = $this->renderNewCommentsNodeLinks([$this->node->id()]);
|
||||
$this->assertResponse(200);
|
||||
$json = Json::decode($response);
|
||||
$expected = [
|
||||
$this->node->id() => [
|
||||
'new_comment_count' => 1,
|
||||
'first_new_comment_link' => $this->node->url('canonical', ['fragment' => 'new']),
|
||||
],
|
||||
];
|
||||
$this->assertIdentical($expected, $json);
|
||||
|
||||
// Failing to specify node IDs for the endpoint should return a 404.
|
||||
$this->renderNewCommentsNodeLinks([]);
|
||||
$this->assertResponse(404);
|
||||
|
||||
// Accessing the endpoint as the anonymous user should return a 403.
|
||||
$this->drupalLogout();
|
||||
$this->renderNewCommentsNodeLinks([$this->node->id()]);
|
||||
$this->assertResponse(403);
|
||||
$this->renderNewCommentsNodeLinks([]);
|
||||
$this->assertResponse(403);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,432 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace Drupal\comment\Tests;
|
||||
|
||||
use Drupal\comment\CommentManagerInterface;
|
||||
use Drupal\Component\Utility\SafeMarkup;
|
||||
use Drupal\node\Entity\Node;
|
||||
|
||||
/**
|
||||
* Tests paging of comments and their settings.
|
||||
*
|
||||
* @group comment
|
||||
*/
|
||||
class CommentPagerTest extends CommentTestBase {
|
||||
/**
|
||||
* Confirms comment paging works correctly with flat and threaded comments.
|
||||
*/
|
||||
public function testCommentPaging() {
|
||||
$this->drupalLogin($this->adminUser);
|
||||
|
||||
// Set comment variables.
|
||||
$this->setCommentForm(TRUE);
|
||||
$this->setCommentSubject(TRUE);
|
||||
$this->setCommentPreview(DRUPAL_DISABLED);
|
||||
|
||||
// Create a node and three comments.
|
||||
$node = $this->drupalCreateNode(['type' => 'article', 'promote' => 1]);
|
||||
$comments = [];
|
||||
$comments[] = $this->postComment($node, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
$comments[] = $this->postComment($node, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
$comments[] = $this->postComment($node, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
|
||||
$this->setCommentSettings('default_mode', CommentManagerInterface::COMMENT_MODE_FLAT, 'Comment paging changed.');
|
||||
|
||||
// Set comments to one per page so that we are able to test paging without
|
||||
// needing to insert large numbers of comments.
|
||||
$this->setCommentsPerPage(1);
|
||||
|
||||
// Check the first page of the node, and confirm the correct comments are
|
||||
// shown.
|
||||
$this->drupalGet('node/' . $node->id());
|
||||
$this->assertRaw(t('next'), 'Paging links found.');
|
||||
$this->assertTrue($this->commentExists($comments[0]), 'Comment 1 appears on page 1.');
|
||||
$this->assertFalse($this->commentExists($comments[1]), 'Comment 2 does not appear on page 1.');
|
||||
$this->assertFalse($this->commentExists($comments[2]), 'Comment 3 does not appear on page 1.');
|
||||
|
||||
// Check the second page.
|
||||
$this->drupalGet('node/' . $node->id(), ['query' => ['page' => 1]]);
|
||||
$this->assertTrue($this->commentExists($comments[1]), 'Comment 2 appears on page 2.');
|
||||
$this->assertFalse($this->commentExists($comments[0]), 'Comment 1 does not appear on page 2.');
|
||||
$this->assertFalse($this->commentExists($comments[2]), 'Comment 3 does not appear on page 2.');
|
||||
|
||||
// Check the third page.
|
||||
$this->drupalGet('node/' . $node->id(), ['query' => ['page' => 2]]);
|
||||
$this->assertTrue($this->commentExists($comments[2]), 'Comment 3 appears on page 3.');
|
||||
$this->assertFalse($this->commentExists($comments[0]), 'Comment 1 does not appear on page 3.');
|
||||
$this->assertFalse($this->commentExists($comments[1]), 'Comment 2 does not appear on page 3.');
|
||||
|
||||
// Post a reply to the oldest comment and test again.
|
||||
$oldest_comment = reset($comments);
|
||||
$this->drupalGet('comment/reply/node/' . $node->id() . '/comment/' . $oldest_comment->id());
|
||||
$reply = $this->postComment(NULL, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
|
||||
$this->setCommentsPerPage(2);
|
||||
// We are still in flat view - the replies should not be on the first page,
|
||||
// even though they are replies to the oldest comment.
|
||||
$this->drupalGet('node/' . $node->id(), ['query' => ['page' => 0]]);
|
||||
$this->assertFalse($this->commentExists($reply, TRUE), 'In flat mode, reply does not appear on page 1.');
|
||||
|
||||
// If we switch to threaded mode, the replies on the oldest comment
|
||||
// should be bumped to the first page and comment 6 should be bumped
|
||||
// to the second page.
|
||||
$this->setCommentSettings('default_mode', CommentManagerInterface::COMMENT_MODE_THREADED, 'Switched to threaded mode.');
|
||||
$this->drupalGet('node/' . $node->id(), ['query' => ['page' => 0]]);
|
||||
$this->assertTrue($this->commentExists($reply, TRUE), 'In threaded mode, reply appears on page 1.');
|
||||
$this->assertFalse($this->commentExists($comments[1]), 'In threaded mode, comment 2 has been bumped off of page 1.');
|
||||
|
||||
// If (# replies > # comments per page) in threaded expanded view,
|
||||
// the overage should be bumped.
|
||||
$reply2 = $this->postComment(NULL, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
$this->drupalGet('node/' . $node->id(), ['query' => ['page' => 0]]);
|
||||
$this->assertFalse($this->commentExists($reply2, TRUE), 'In threaded mode where # replies > # comments per page, the newest reply does not appear on page 1.');
|
||||
|
||||
// Test that the page build process does not somehow generate errors when
|
||||
// # comments per page is set to 0.
|
||||
$this->setCommentsPerPage(0);
|
||||
$this->drupalGet('node/' . $node->id(), ['query' => ['page' => 0]]);
|
||||
$this->assertFalse($this->commentExists($reply2, TRUE), 'Threaded mode works correctly when comments per page is 0.');
|
||||
|
||||
$this->drupalLogout();
|
||||
}
|
||||
|
||||
/**
|
||||
* Confirms comment paging works correctly with flat and threaded comments.
|
||||
*/
|
||||
public function testCommentPermalink() {
|
||||
$this->drupalLogin($this->adminUser);
|
||||
|
||||
// Set comment variables.
|
||||
$this->setCommentForm(TRUE);
|
||||
$this->setCommentSubject(TRUE);
|
||||
$this->setCommentPreview(DRUPAL_DISABLED);
|
||||
|
||||
// Create a node and three comments.
|
||||
$node = $this->drupalCreateNode(['type' => 'article', 'promote' => 1]);
|
||||
$comments = [];
|
||||
$comments[] = $this->postComment($node, 'comment 1: ' . $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
$comments[] = $this->postComment($node, 'comment 2: ' . $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
$comments[] = $this->postComment($node, 'comment 3: ' . $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
|
||||
$this->setCommentSettings('default_mode', CommentManagerInterface::COMMENT_MODE_FLAT, 'Comment paging changed.');
|
||||
|
||||
// Set comments to one per page so that we are able to test paging without
|
||||
// needing to insert large numbers of comments.
|
||||
$this->setCommentsPerPage(1);
|
||||
|
||||
// Navigate to each comment permalink as anonymous and assert it appears on
|
||||
// the page.
|
||||
foreach ($comments as $index => $comment) {
|
||||
$this->drupalGet($comment->toUrl());
|
||||
$this->assertTrue($this->commentExists($comment), sprintf('Comment %d appears on page %d.', $index + 1, $index + 1));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests comment ordering and threading.
|
||||
*/
|
||||
public function testCommentOrderingThreading() {
|
||||
$this->drupalLogin($this->adminUser);
|
||||
|
||||
// Set comment variables.
|
||||
$this->setCommentForm(TRUE);
|
||||
$this->setCommentSubject(TRUE);
|
||||
$this->setCommentPreview(DRUPAL_DISABLED);
|
||||
|
||||
// Display all the comments on the same page.
|
||||
$this->setCommentsPerPage(1000);
|
||||
|
||||
// Create a node and three comments.
|
||||
$node = $this->drupalCreateNode(['type' => 'article', 'promote' => 1]);
|
||||
$comments = [];
|
||||
$comments[] = $this->postComment($node, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
$comments[] = $this->postComment($node, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
$comments[] = $this->postComment($node, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
|
||||
// Post a reply to the second comment.
|
||||
$this->drupalGet('comment/reply/node/' . $node->id() . '/comment/' . $comments[1]->id());
|
||||
$comments[] = $this->postComment(NULL, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
|
||||
// Post a reply to the first comment.
|
||||
$this->drupalGet('comment/reply/node/' . $node->id() . '/comment/' . $comments[0]->id());
|
||||
$comments[] = $this->postComment(NULL, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
|
||||
// Post a reply to the last comment.
|
||||
$this->drupalGet('comment/reply/node/' . $node->id() . '/comment/' . $comments[2]->id());
|
||||
$comments[] = $this->postComment(NULL, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
|
||||
// Post a reply to the second comment.
|
||||
$this->drupalGet('comment/reply/node/' . $node->id() . '/comment/' . $comments[3]->id());
|
||||
$comments[] = $this->postComment(NULL, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
|
||||
// At this point, the comment tree is:
|
||||
// - 0
|
||||
// - 4
|
||||
// - 1
|
||||
// - 3
|
||||
// - 6
|
||||
// - 2
|
||||
// - 5
|
||||
|
||||
$this->setCommentSettings('default_mode', CommentManagerInterface::COMMENT_MODE_FLAT, 'Comment paging changed.');
|
||||
|
||||
$expected_order = [
|
||||
0,
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
6,
|
||||
];
|
||||
$this->drupalGet('node/' . $node->id());
|
||||
$this->assertCommentOrder($comments, $expected_order);
|
||||
|
||||
$this->setCommentSettings('default_mode', CommentManagerInterface::COMMENT_MODE_THREADED, 'Switched to threaded mode.');
|
||||
|
||||
$expected_order = [
|
||||
0,
|
||||
4,
|
||||
1,
|
||||
3,
|
||||
6,
|
||||
2,
|
||||
5,
|
||||
];
|
||||
$this->drupalGet('node/' . $node->id());
|
||||
$this->assertCommentOrder($comments, $expected_order);
|
||||
}
|
||||
|
||||
/**
|
||||
* Asserts that the comments are displayed in the correct order.
|
||||
*
|
||||
* @param \Drupal\comment\CommentInterface[] $comments
|
||||
* An array of comments, must be of the type CommentInterface.
|
||||
* @param array $expected_order
|
||||
* An array of keys from $comments describing the expected order.
|
||||
*/
|
||||
public function assertCommentOrder(array $comments, array $expected_order) {
|
||||
$expected_cids = [];
|
||||
|
||||
// First, rekey the expected order by cid.
|
||||
foreach ($expected_order as $key) {
|
||||
$expected_cids[] = $comments[$key]->id();
|
||||
}
|
||||
|
||||
$comment_anchors = $this->xpath('//a[starts-with(@id,"comment-")]');
|
||||
$result_order = [];
|
||||
foreach ($comment_anchors as $anchor) {
|
||||
$result_order[] = substr($anchor['id'], 8);
|
||||
}
|
||||
return $this->assertEqual($expected_cids, $result_order, format_string('Comment order: expected @expected, returned @returned.', ['@expected' => implode(',', $expected_cids), '@returned' => implode(',', $result_order)]));
|
||||
}
|
||||
|
||||
/**
|
||||
* Tests calculation of first page with new comment.
|
||||
*/
|
||||
public function testCommentNewPageIndicator() {
|
||||
$this->drupalLogin($this->adminUser);
|
||||
|
||||
// Set comment variables.
|
||||
$this->setCommentForm(TRUE);
|
||||
$this->setCommentSubject(TRUE);
|
||||
$this->setCommentPreview(DRUPAL_DISABLED);
|
||||
|
||||
// Set comments to one per page so that we are able to test paging without
|
||||
// needing to insert large numbers of comments.
|
||||
$this->setCommentsPerPage(1);
|
||||
|
||||
// Create a node and three comments.
|
||||
$node = $this->drupalCreateNode(['type' => 'article', 'promote' => 1]);
|
||||
$comments = [];
|
||||
$comments[] = $this->postComment($node, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
$comments[] = $this->postComment($node, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
$comments[] = $this->postComment($node, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
|
||||
// Post a reply to the second comment.
|
||||
$this->drupalGet('comment/reply/node/' . $node->id() . '/comment/' . $comments[1]->id());
|
||||
$comments[] = $this->postComment(NULL, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
|
||||
// Post a reply to the first comment.
|
||||
$this->drupalGet('comment/reply/node/' . $node->id() . '/comment/' . $comments[0]->id());
|
||||
$comments[] = $this->postComment(NULL, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
|
||||
// Post a reply to the last comment.
|
||||
$this->drupalGet('comment/reply/node/' . $node->id() . '/comment/' . $comments[2]->id());
|
||||
$comments[] = $this->postComment(NULL, $this->randomMachineName(), $this->randomMachineName(), TRUE);
|
||||
|
||||
// At this point, the comment tree is:
|
||||
// - 0
|
||||
// - 4
|
||||
// - 1
|
||||
// - 3
|
||||
// - 2
|
||||
// - 5
|
||||
|
||||
$this->setCommentSettings('default_mode', CommentManagerInterface::COMMENT_MODE_FLAT, 'Comment paging changed.');
|
||||
|
||||
$expected_pages = [
|
||||
// Page of comment 5
|
||||
1 => 5,
|
||||
// Page of comment 4
|
||||
2 => 4,
|
||||
// Page of comment 3
|
||||
3 => 3,
|
||||
// Page of comment 2
|
||||
4 => 2,
|
||||
// Page of comment 1
|
||||
5 => 1,
|
||||
// Page of comment 0
|
||||
6 => 0,
|
||||
];
|
||||
|
||||
$node = Node::load($node->id());
|
||||
foreach ($expected_pages as $new_replies => $expected_page) {
|
||||
$returned_page = \Drupal::entityManager()->getStorage('comment')
|
||||
->getNewCommentPageNumber($node->get('comment')->comment_count, $new_replies, $node, 'comment');
|
||||
$this->assertIdentical($expected_page, $returned_page, format_string('Flat mode, @new replies: expected page @expected, returned page @returned.', ['@new' => $new_replies, '@expected' => $expected_page, '@returned' => $returned_page]));
|
||||
}
|
||||
|
||||
$this->setCommentSettings('default_mode', CommentManagerInterface::COMMENT_MODE_THREADED, 'Switched to threaded mode.');
|
||||
|
||||
$expected_pages = [
|
||||
// Page of comment 5
|
||||
1 => 5,
|
||||
// Page of comment 4
|
||||
2 => 1,
|
||||
// Page of comment 4
|
||||
3 => 1,
|
||||
// Page of comment 4
|
||||
4 => 1,
|
||||
// Page of comment 4
|
||||
5 => 1,
|
||||
// Page of comment 0
|
||||
6 => 0,
|
||||
];
|
||||
|
||||
\Drupal::entityManager()->getStorage('node')->resetCache([$node->id()]);
|
||||
$node = Node::load($node->id());
|
||||
foreach ($expected_pages as $new_replies => $expected_page) {
|
||||
$returned_page = \Drupal::entityManager()->getStorage('comment')
|
||||
->getNewCommentPageNumber($node->get('comment')->comment_count, $new_replies, $node, 'comment');
|
||||
$this->assertEqual($expected_page, $returned_page, format_string('Threaded mode, @new replies: expected page @expected, returned page @returned.', ['@new' => $new_replies, '@expected' => $expected_page, '@returned' => $returned_page]));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Confirms comment paging works correctly with two pagers.
|
||||
*/
|
||||
public function testTwoPagers() {
|
||||
// Add another field to article content-type.
|
||||
$this->addDefaultCommentField('node', 'article', 'comment_2');
|
||||
// Set default to display comment list with unique pager id.
|
||||
entity_get_display('node', 'article', 'default')
|
||||
->setComponent('comment_2', [
|
||||
'label' => 'hidden',
|
||||
'type' => 'comment_default',
|
||||
'weight' => 30,
|
||||
'settings' => [
|
||||
'pager_id' => 1,
|
||||
'view_mode' => 'default',
|
||||
]
|
||||
])
|
||||
->save();
|
||||
|
||||
// Make sure pager appears in formatter summary and settings form.
|
||||
$account = $this->drupalCreateUser(['administer node display']);
|
||||
$this->drupalLogin($account);
|
||||
$this->drupalGet('admin/structure/types/manage/article/display');
|
||||
$this->assertNoText(t('Pager ID: @id', ['@id' => 0]), 'No summary for standard pager');
|
||||
$this->assertText(t('Pager ID: @id', ['@id' => 1]));
|
||||
$this->drupalPostAjaxForm(NULL, [], 'comment_settings_edit');
|
||||
// Change default pager to 2.
|
||||
$this->drupalPostForm(NULL, ['fields[comment][settings_edit_form][settings][pager_id]' => 2], t('Save'));
|
||||
$this->assertText(t('Pager ID: @id', ['@id' => 2]));
|
||||
// Revert the changes.
|
||||
$this->drupalPostAjaxForm(NULL, [], 'comment_settings_edit');
|
||||
$this->drupalPostForm(NULL, ['fields[comment][settings_edit_form][settings][pager_id]' => 0], t('Save'));
|
||||
$this->assertNoText(t('Pager ID: @id', ['@id' => 0]), 'No summary for standard pager');
|
||||
|
||||
$this->drupalLogin($this->adminUser);
|
||||
|
||||
// Add a new node with both comment fields open.
|
||||
$node = $this->drupalCreateNode(['type' => 'article', 'promote' => 1, 'uid' => $this->webUser->id()]);
|
||||
// Set comment options.
|
||||
$comments = [];
|
||||
foreach (['comment', 'comment_2'] as $field_name) {
|
||||
$this->setCommentForm(TRUE, $field_name);
|
||||
$this->setCommentPreview(DRUPAL_OPTIONAL, $field_name);
|
||||
$this->setCommentSettings('default_mode', CommentManagerInterface::COMMENT_MODE_FLAT, 'Comment paging changed.', $field_name);
|
||||
|
||||
// Set comments to one per page so that we are able to test paging without
|
||||
// needing to insert large numbers of comments.
|
||||
$this->setCommentsPerPage(1, $field_name);
|
||||
for ($i = 0; $i < 3; $i++) {
|
||||
$comment = t('Comment @count on field @field', [
|
||||
'@count' => $i + 1,
|
||||
'@field' => $field_name,
|
||||
]);
|
||||
$comments[] = $this->postComment($node, $comment, $comment, TRUE, $field_name);
|
||||
}
|
||||
}
|
||||
|
||||
// Check the first page of the node, and confirm the correct comments are
|
||||
// shown.
|
||||
$this->drupalGet('node/' . $node->id());
|
||||
$this->assertRaw(t('next'), 'Paging links found.');
|
||||
$this->assertRaw('Comment 1 on field comment');
|
||||
$this->assertRaw('Comment 1 on field comment_2');
|
||||
// Navigate to next page of field 1.
|
||||
$this->clickLinkWithXPath('//h3/a[normalize-space(text())=:label]/ancestor::section[1]//a[@rel="next"]', [':label' => 'Comment 1 on field comment']);
|
||||
// Check only one pager updated.
|
||||
$this->assertRaw('Comment 2 on field comment');
|
||||
$this->assertRaw('Comment 1 on field comment_2');
|
||||
// Return to page 1.
|
||||
$this->drupalGet('node/' . $node->id());
|
||||
// Navigate to next page of field 2.
|
||||
$this->clickLinkWithXPath('//h3/a[normalize-space(text())=:label]/ancestor::section[1]//a[@rel="next"]', [':label' => 'Comment 1 on field comment_2']);
|
||||
// Check only one pager updated.
|
||||
$this->assertRaw('Comment 1 on field comment');
|
||||
$this->assertRaw('Comment 2 on field comment_2');
|
||||
// Navigate to next page of field 1.
|
||||
$this->clickLinkWithXPath('//h3/a[normalize-space(text())=:label]/ancestor::section[1]//a[@rel="next"]', [':label' => 'Comment 1 on field comment']);
|
||||
// Check only one pager updated.
|
||||
$this->assertRaw('Comment 2 on field comment');
|
||||
$this->assertRaw('Comment 2 on field comment_2');
|
||||
}
|
||||
|
||||
/**
|
||||
* Follows a link found at a give xpath query.
|
||||
*
|
||||
* Will click the first link found with the given xpath query by default,
|
||||
* or a later one if an index is given.
|
||||
*
|
||||
* If the link is discovered and clicked, the test passes. Fail otherwise.
|
||||
*
|
||||
* @param string $xpath
|
||||
* Xpath query that targets an anchor tag, or set of anchor tags.
|
||||
* @param array $arguments
|
||||
* An array of arguments with keys in the form ':name' matching the
|
||||
* placeholders in the query. The values may be either strings or numeric
|
||||
* values.
|
||||
* @param int $index
|
||||
* Link position counting from zero.
|
||||
*
|
||||
* @return string|false
|
||||
* Page contents on success, or FALSE on failure.
|
||||
*
|
||||
* @see WebTestBase::clickLink()
|
||||
*/
|
||||
protected function clickLinkWithXPath($xpath, $arguments = [], $index = 0) {
|
||||
$url_before = $this->getUrl();
|
||||
$urls = $this->xpath($xpath, $arguments);
|
||||
if (isset($urls[$index])) {
|
||||
$url_target = $this->getAbsoluteUrl($urls[$index]['href']);
|
||||
$this->pass(SafeMarkup::format('Clicked link %label (@url_target) from @url_before', ['%label' => $xpath, '@url_target' => $url_target, '@url_before' => $url_before]), 'Browser');
|
||||
return $this->drupalGet($url_target);
|
||||
}
|
||||
$this->fail(SafeMarkup::format('Link %label does not exist on @url_before', ['%label' => $xpath, '@url_before' => $url_before]), 'Browser');
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user