-
Notifications
You must be signed in to change notification settings - Fork 136
/
Copy pathComment.php
executable file
·344 lines (310 loc) · 10.2 KB
/
Comment.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
<?php
/**
* Copyright © Magefan (support@magefan.com). All rights reserved.
* Please visit Magefan.com for license details (https://magefan.com/end-user-license-agreement).
*
* Glory to Ukraine! Glory to the heroes!
*/
namespace Magefan\Blog\Model;
use Magento\Framework\Model\AbstractModel;
/**
* Comment model
*
* @method \Magefan\Blog\Model\ResourceModel\Comment _getResource()
* @method \Magefan\Blog\Model\ResourceModel\Comment getResource()
* @method int getPostId()
* @method $this setPostId(int $value)
* @method int getCustomerId()
* @method $this setCustomerId(int $value)
* @method int getAdminId()
* @method $this setAdminId(int $value)
* @method int getParentId()
* @method $this setParentId(int $value)
* @method int getStatus()
* @method $this setStatus(int $value)
* @method int getAuthorType()
* @method $this setAuthorType(int $value)
* @method string getAuthorNickname()
* @method $this setAuthorNickname(string $value)
* @method string getAuthorEmail()
* @method $this setAuthorEmail(string $value)
* @method string getText()
* @method $this setText(string $value)
* @method string getCreationTime()
* @method $this setCreationTime(string $value)
* @method string getUpdateTime()
* @method $this setUpdateTime(string $value)
*/
class Comment extends AbstractModel implements \Magento\Framework\DataObject\IdentityInterface
{
/**
* @var PostFactory
*/
protected $postFactory;
/**
* @var \Magento\Customer\Model\CustomerFactory
*/
protected $customerFactory;
/**
* @var \Magefan\Blog\Api\AuthorInterfaceFactory
*/
protected $userFactory;
/**
* @var \Magefan\Blog\Model\ResourceModel\Comment\CollectionFactory
*/
protected $commentCollectionFactory;
/**
* @var \Magento\Framework\DataObject
*/
protected $author;
/**
* @var \Magefan\Blog\Model\ResourceModel\Comment\Collection
*/
protected $comments;
/**
* blog cache comment
*/
const CACHE_TAG = 'mfb_co';
/**
* Initialize dependencies.
* @param \Magento\Framework\Model\Context $context
* @param \Magento\Framework\Registry $registry
* @param \Magefan\Blog\Model\PostFactory $postFactory
* @param \Magento\Customer\Model\CustomerFactory $customerFactory,
* @param \Magefan\Blog\Api\AuthorInterfaceFactory $userFactory,
* @param \Magefan\Blog\Model\ResourceModel\Comment\CollectionFactory $commentCollectionFactory
* @param \Magento\Framework\Model\ResourceModel\AbstractResource|null $resource
* @param \Magento\Framework\Data\Collection\AbstractDb|null $resourceCollection
* @param array $data
*/
public function __construct(
\Magento\Framework\Model\Context $context,
\Magento\Framework\Registry $registry,
\Magefan\Blog\Model\PostFactory $postFactory,
\Magento\Customer\Model\CustomerFactory $customerFactory,
\Magefan\Blog\Api\AuthorInterfaceFactory $userFactory,
\Magefan\Blog\Model\ResourceModel\Comment\CollectionFactory $commentCollectionFactory,
\Magento\Framework\Model\ResourceModel\AbstractResource $resource = null,
\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null,
array $data = []
) {
parent::__construct($context, $registry, $resource, $resourceCollection, $data);
$this->postFactory = $postFactory;
$this->customerFactory = $customerFactory;
$this->userFactory = $userFactory;
$this->commentCollectionFactory = $commentCollectionFactory;
}
/**
* Retrieve identities
*
* @return array
*/
public function getIdentities()
{
return [
self::CACHE_TAG . '_' . $this->getId(),
\Magefan\Blog\Model\Post::CACHE_TAG . '_' . $this->getPostId()
];
}
/**
* Initialize resource model
*
* @return void
*/
protected function _construct()
{
$this->_init(\Magefan\Blog\Model\ResourceModel\Comment::class);
}
/**
* Retrieve model title
* @param boolean $plural
* @return string
*/
public function getOwnTitle($plural = false)
{
return $plural ? 'Comments' : 'Comment';
}
/**
* Retrieve true if post is active
* @return boolean [description]
*/
public function isActive()
{
return ($this->getStatus() == \Magefan\Blog\Model\Config\Source\CommentStatus::APPROVED);
}
/**
* Retrieve if is visible on store
* @return bool
*/
public function isVisibleOnStore($storeId)
{
return $this->isActive()
&& (null === $storeId || array_intersect([0, $storeId], [$this->getStoreId()]));
}
/**
* Retrieve post
* @return \Magefan\Blog\Model\Post | false
*/
public function getPost()
{
if (!$this->hasData('post')) {
$this->setData('post', false);
if ($postId = $this->getData('post_id')) {
$post = $this->postFactory->create()->load($postId);
if ($post->getId()) {
$this->setData('post', $post);
}
}
}
return $this->getData('post');
}
/**
* Retrieve author
* @return \\Magento\Framework\DataObject
*/
public function getAuthor()
{
if (null === $this->author) {
$this->author = new \Magento\Framework\DataObject;
$this->author->setType(
$this->getAuthorType()
);
$guestData = [
'nickname' => $this->getAuthorNickname(),
'email' => $this->getAuthorEmail(),
];
switch ($this->getAuthorType()) {
case \Magefan\Blog\Model\Config\Source\AuthorType::GUEST:
$this->author->setData($guestData);
break;
case \Magefan\Blog\Model\Config\Source\AuthorType::CUSTOMER:
$customer = $this->customerFactory->create();
$customer->load($this->getCustomerId());
if ($customer->getId()) {
$this->author->setData([
'nickname' => $customer->getName(),
'email' => $this->getEmail(),
'customer' => $customer,
]);
} else {
$this->author->setData($guestData);
}
break;
case \Magefan\Blog\Model\Config\Source\AuthorType::ADMIN:
$admin = $this->userFactory->create();
$admin->load($this->getAdminId());
if ($admin->getId()) {
$this->author->setData([
'nickname' => $admin->getName(),
'email' => $this->getEmail(),
'admin' => $admin,
]);
} else {
$this->author->setData($guestData);
}
break;
}
}
return $this->author;
}
/**
* Retrieve parent comment
* @return self || false
*/
public function getParentComment()
{
$k = 'parent_comment';
if (null === $this->getData($k)) {
$this->setData($k, false);
if ($pId = $this->getParentId()) {
$comment = clone $this;
$comment->load($pId);
if ($comment->getId()) {
$this->setData($k, $comment);
}
}
}
return $this->getData($k);
}
/**
* Retrieve child comments
* @return \Magefan\Blog\Model\ResourceModel\Comment\Collection
*/
public function getChildComments()
{
if (null === $this->comments) {
$this->comments = $this->commentCollectionFactory->create()
->addFieldToFilter('parent_id', $this->getId());
}
return $this->comments;
}
/**
* Retrieve true if comment is reply to other comment
* @return boolean
*/
public function isReply()
{
return (bool)$this->getParentId();
}
/**
* Validate comment
* @return void
*/
public function validate()
{
if (mb_strlen($this->getText()) < 3) {
throw new \Exception(__('Comment text is too short.'), 1);
}
}
/**
* Retrieve post publish date using format
* @param string $format
* @return string
*/
public function getPublishDate($format = 'Y-m-d H:i:s')
{
return \Magefan\Blog\Helper\Data::getTranslatedDate(
$format,
$this->getData('creation_time')
);
}
/**
* @return array|ResourceModel\Comment\Collection
*/
public function getRepliesCollection()
{
$repliesCollection = [];
if (!$this->isReply()) {
$cId = $this->getId();
if (!isset($repliesCollection[$cId])) {
$repliesCollection[$cId] = $this->getChildComments()
->addActiveFilter()
/*->setPageSize($this->getNumberOfReplies())*/
//->setOrder('creation_time', 'DESC'); old sorting
->setOrder('creation_time', 'ASC');
}
return $repliesCollection[$cId];
} else {
return [];
}
}
/**
* @deprecated use getDynamicData method in graphQL data provider
* @param null $fields
* @return array
*/
public function getDynamicData($fields = null)
{
$data = $this->getData();
if (is_array($fields) && array_key_exists('replies', $fields)) {
$replies = [];
foreach ($this->getRepliesCollection() as $reply) {
$replies[] = $reply->getDynamicData(
isset($fields['replies']) ? $fields['replies'] : null
);
}
$data['replies'] = $replies;
}
return $data;
}
}