-
Notifications
You must be signed in to change notification settings - Fork 645
/
Copy pathElementHelper.php
423 lines (361 loc) · 12.8 KB
/
ElementHelper.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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
<?php
/**
* @link https://craftcms.com/
* @copyright Copyright (c) Pixel & Tonic, Inc.
* @license https://craftcms.github.io/license/
*/
namespace craft\helpers;
use Craft;
use craft\base\BlockElementInterface;
use craft\base\Element;
use craft\base\ElementInterface;
use craft\db\Query;
use craft\errors\OperationAbortedException;
use yii\base\Exception;
/**
* Class ElementHelper
*
* @author Pixel & Tonic, Inc. <[email protected]>
* @since 3.0
*/
class ElementHelper
{
// Public Methods
// =========================================================================
/**
* Generates a new temporary slug.
*
* @return string
* @since 3.2.2
*/
public static function tempSlug(): string
{
return '__temp_' . StringHelper::randomString();
}
/**
* Returns whether the given slug is temporary.
*
* @param string $slug
* @return bool
* @since 3.2.2
*/
public static function isTempSlug(string $slug): bool
{
return strpos($slug, '__temp_') === 0;
}
/**
* Creates a slug based on a given string.
*
* @param string $str
* @return string
*/
public static function createSlug(string $str): string
{
// Special case for the homepage
if ($str === '__home__') {
return $str;
}
// Remove HTML tags
$str = StringHelper::stripHtml($str);
// Remove inner-word punctuation
$str = preg_replace('/[\'"‘’“”\[\]\(\)\{\}:]/', '', $str);
// Make it lowercase
$generalConfig = Craft::$app->getConfig()->getGeneral();
if (!$generalConfig->allowUppercaseInSlug) {
$str = mb_strtolower($str);
}
// Get the "words". Split on anything that is not alphanumeric or allowed punctuation
// Reference: http://www.regular-expressions.info/unicode.html
$words = array_filter(preg_split('/[^\p{L}\p{N}\p{M}\._\-]+/u', $str));
return implode($generalConfig->slugWordSeparator, $words);
}
/**
* Sets the URI on an element using a given URL format, tweaking its slug if necessary to ensure it's unique.
*
* @param ElementInterface $element
* @throws OperationAbortedException if a unique URI could not be found
*/
public static function setUniqueUri(ElementInterface $element)
{
/** @var Element $element */
$uriFormat = $element->getUriFormat();
// No URL format, no URI.
if ($uriFormat === null) {
$element->uri = null;
return;
}
// If the URL format returns an empty string, the URL format probably wrapped everything in a condition
$testUri = self::_renderUriFormat($uriFormat, $element);
if ($testUri === '') {
$element->uri = null;
return;
}
// Does the URL format even have a {slug} tag?
if (!static::doesUriFormatHaveSlugTag($uriFormat)) {
// Make sure it's unique
if (!self::_isUniqueUri($testUri, $element)) {
throw new OperationAbortedException('Could not find a unique URI for this element');
}
$element->uri = $testUri;
return;
}
$slugWordSeparator = Craft::$app->getConfig()->getGeneral()->slugWordSeparator;
$maxSlugIncrement = Craft::$app->getConfig()->getGeneral()->maxSlugIncrement;
for ($i = 0; $i < $maxSlugIncrement; $i++) {
$testSlug = $element->slug;
if ($i > 0) {
$testSlug .= $slugWordSeparator . $i;
}
$originalSlug = $element->slug;
$element->slug = $testSlug;
$testUri = self::_renderUriFormat($uriFormat, $element);
// Make sure we're not over our max length.
if (mb_strlen($testUri) > 255) {
// See how much over we are.
$overage = mb_strlen($testUri) - 255;
// Do we have anything left to chop off?
if ($overage < mb_strlen($element->slug)) {
// Chop off the overage amount from the slug
$element->slug = mb_substr($element->slug, 0, -$overage);
// Let's try this again.
$i--;
continue;
}
// We're screwed, blow things up.
throw new OperationAbortedException('Could not find a unique URI for this element');
}
if (self::_isUniqueUri($testUri, $element)) {
// OMG!
$element->slug = $testSlug;
$element->uri = $testUri;
return;
}
// Try again...
$element->slug = $originalSlug;
}
throw new OperationAbortedException('Could not find a unique URI for this element');
}
/**
* Renders and normalizes a given element URI Format.
*
* @param string $uriFormat
* @param ElementInterface $element
* @return string
*/
private static function _renderUriFormat(string $uriFormat, ElementInterface $element): string
{
/** @var Element $element */
$variables = [];
// If the URI format contains {id} but the element doesn't have one yet, preserve the {id} tag
if (!$element->id && strpos($uriFormat, '{id') !== false) {
$variables['id'] = $element->tempId = 'id-' . StringHelper::randomString(10);
}
$uri = Craft::$app->getView()->renderObjectTemplate($uriFormat, $element, $variables);
// Remove any leading/trailing/double slashes
$uri = preg_replace('/^\/+|(?<=\/)\/+|\/+$/', '', $uri);
return $uri;
}
/**
* Tests a given element URI for uniqueness.
*
* @param string $testUri
* @param ElementInterface $element
* @return bool
*/
private static function _isUniqueUri(string $testUri, ElementInterface $element): bool
{
/** @var Element $element */
$query = (new Query())
->from(['{{%elements_sites}} elements_sites'])
->innerJoin('{{%elements}} elements', '[[elements.id]] = [[elements_sites.elementId]]')
->where([
'elements_sites.siteId' => $element->siteId,
'elements.draftId' => null,
'elements.revisionId' => null,
'elements.dateDeleted' => null,
]);
if (Craft::$app->getDb()->getIsMysql()) {
$query->andWhere([
'elements_sites.uri' => $testUri,
]);
} else {
// Postgres is case-sensitive
$query->andWhere([
'lower([[elements_sites.uri]])' => mb_strtolower($testUri),
]);
}
if (($sourceId = $element->getSourceId()) !== null) {
$query->andWhere(['not', [
'elements.id' => $sourceId,
]]);
}
return (int)$query->count() === 0;
}
/**
* Returns whether a given URL format has a proper {slug} tag.
*
* @param string $uriFormat
* @return bool
*/
public static function doesUriFormatHaveSlugTag(string $uriFormat): bool
{
return (bool)preg_match('/\bslug\b/', $uriFormat);
}
/**
* Returns a list of sites that a given element supports.
*
* Each site is represented as an array with 'siteId' and 'enabledByDefault' keys.
*
* @param ElementInterface $element
* @return array
* @throws Exception if any of the element's supported sites are invalid
*/
public static function supportedSitesForElement(ElementInterface $element): array
{
$sites = [];
$siteUidMap = ArrayHelper::map(Craft::$app->getSites()->getAllSites(), 'id', 'uid');
foreach ($element->getSupportedSites() as $site) {
if (!is_array($site)) {
$site = [
'siteId' => $site,
];
} else if (!isset($site['siteId'])) {
throw new Exception('Missing "siteId" key in ' . get_class($element) . '::getSupportedSites()');
}
$site['siteUid'] = $siteUidMap[$site['siteId']];
$sites[] = array_merge([
'enabledByDefault' => true,
], $site);
}
return $sites;
}
/**
* Returns whether the given element is editable by the current user, taking user permissions into account.
*
* @param ElementInterface $element
* @return bool
*/
public static function isElementEditable(ElementInterface $element): bool
{
if ($element->getIsEditable()) {
if (Craft::$app->getIsMultiSite()) {
foreach (static::supportedSitesForElement($element) as $siteInfo) {
if (Craft::$app->getUser()->checkPermission('editSite:' . $siteInfo['siteUid'])) {
return true;
}
}
} else {
return true;
}
}
return false;
}
/**
* Returns the editable site IDs for a given element, taking user permissions into account.
*
* @param ElementInterface $element
* @return array
*/
public static function editableSiteIdsForElement(ElementInterface $element): array
{
$siteIds = [];
if ($element->getIsEditable()) {
if (Craft::$app->getIsMultiSite()) {
foreach (static::supportedSitesForElement($element) as $siteInfo) {
if (Craft::$app->getUser()->checkPermission('editSite:' . $siteInfo['siteUid'])) {
$siteIds[] = $siteInfo['siteId'];
}
}
} else {
$siteIds[] = Craft::$app->getSites()->getPrimarySite()->id;
}
}
return $siteIds;
}
/**
* Returns the root element of a given element.
*
* @param ElementInterface $element
* @return ElementInterface
*/
public static function rootElement(ElementInterface $element): ElementInterface
{
if ($element instanceof BlockElementInterface) {
return static::rootElement($element->getOwner());
}
return $element;
}
/**
* Returns whether the given element (or its root element if a block element) is a draft or revision.
*
* @param ElementInterface $element
* @return bool
*/
public static function isDraftOrRevision(ElementInterface $element): bool
{
/** @var Element $root */
$root = ElementHelper::rootElement($element);
return $root->getIsDraft() || $root->getIsRevision();
}
/**
* Given an array of elements, will go through and set the appropriate "next"
* and "prev" elements on them.
*
* @param ElementInterface[] $elements The array of elements.
*/
public static function setNextPrevOnElements(array $elements)
{
/** @var ElementInterface $lastElement */
$lastElement = null;
foreach ($elements as $i => $element) {
if ($lastElement) {
$lastElement->setNext($element);
$element->setPrev($lastElement);
} else {
$element->setPrev(false);
}
$lastElement = $element;
}
if ($lastElement) {
$lastElement->setNext(false);
}
}
/**
* Returns an element type's source definition based on a given source key/path and context.
*
* @param string $elementType The element type class
* @param string $sourceKey The source key/path
* @param string|null $context The context
* @return array|null The source definition, or null if it cannot be found
*/
public static function findSource(string $elementType, string $sourceKey, string $context = null)
{
/** @var string|ElementInterface $elementType */
$path = explode('/', $sourceKey);
$sources = $elementType::sources($context);
while (!empty($path)) {
$key = array_shift($path);
$source = null;
foreach ($sources as $testSource) {
if (isset($testSource['key']) && $testSource['key'] === $key) {
$source = $testSource;
break;
}
}
if ($source === null) {
return null;
}
// Is that the end of the path?
if (empty($path)) {
// If this is a nested source, set the full path on it so we don't forget it
if ($source['key'] !== $sourceKey) {
$source['keyPath'] = $sourceKey;
}
return $source;
}
// Prepare for searching nested sources
$sources = $source['nested'] ?? [];
}
return null;
}
}