Version 1
[yaffs-website] / vendor / drupal / console / src / Utils / Create / CommentData.php
diff --git a/vendor/drupal/console/src/Utils/Create/CommentData.php b/vendor/drupal/console/src/Utils/Create/CommentData.php
new file mode 100644 (file)
index 0000000..1a6b9cc
--- /dev/null
@@ -0,0 +1,95 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\Console\Utils\Create\CommentData.
+ */
+
+namespace Drupal\Console\Utils\Create;
+
+use Drupal\Core\Entity\EntityTypeManagerInterface;
+use Drupal\Core\Entity\EntityFieldManagerInterface;
+use Drupal\Core\Datetime\DateFormatterInterface;
+
+/**
+ * Class Nodes
+ *
+ * @package Drupal\Console\Utils\Create
+ */
+class CommentData extends Base
+{
+    /**
+     * Comments constructor.
+     *
+     * @param EntityTypeManagerInterface  $entityTypeManager
+     * @param EntityFieldManagerInterface $entityFieldManager
+     * @param DateFormatterInterface      $dateFormatter
+     */
+    public function __construct(
+        EntityTypeManagerInterface $entityTypeManager,
+        EntityFieldManagerInterface $entityFieldManager,
+        DateFormatterInterface $dateFormatter
+    ) {
+        parent::__construct(
+            $entityTypeManager,
+            $entityFieldManager,
+            $dateFormatter
+        );
+    }
+
+    /**
+     * @param $nid
+     * @param $limit
+     * @param $titleWords
+     * @param $timeRange
+     *
+     * @return array
+     */
+    public function create(
+        $nid,
+        $limit,
+        $titleWords,
+        $timeRange
+    ) {
+        $comments = [];
+
+        for ($i=0; $i<$limit; $i++) {
+            $comment = $this->entityTypeManager->getStorage('comment')->create(
+                [
+                'entity_id' => $nid,
+                'entity_type' => 'node',
+                'field_name' => 'comment',
+                'created' => REQUEST_TIME - mt_rand(0, $timeRange),
+                'uid' => $this->getUserID(),
+                'status' => true,
+                'subject' => $this->getRandom()->sentences(mt_rand(1, $titleWords), true),
+                'language' => 'und',
+                'comment_body' => ['und' => ['random body']],
+                ]
+            );
+
+            $this->generateFieldSampleData($comment);
+
+            try {
+                $comment->save();
+                $comments['success'][] = [
+                    'nid' => $nid,
+                    'cid' => $comment->id(),
+                    'title' => $comment->getSubject(),
+                    'created' => $this->dateFormatter->format(
+                        $comment->getCreatedTime(),
+                        'custom',
+                        'Y-m-d h:i:s'
+                    )
+                ];
+            } catch (\Exception $error) {
+                $comments['error'][] = [
+                    'title' => $comment->getTitle(),
+                    'error' => $error->getMessage()
+                ];
+            }
+        }
+
+        return $comments;
+    }
+}