-
Notifications
You must be signed in to change notification settings - Fork 9.3k
/
Sitemap.php
804 lines (717 loc) · 24.1 KB
/
Sitemap.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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
// @codingStandardsIgnoreFile
namespace Magento\Sitemap\Model;
use Magento\Config\Model\Config\Reader\Source\Deployed\DocumentRoot;
use Magento\Framework\App\ObjectManager;
use Magento\Robots\Model\Config\Value;
use Magento\Framework\DataObject;
/**
* Sitemap model
*
* @method string getSitemapType()
* @method \Magento\Sitemap\Model\Sitemap setSitemapType(string $value)
* @method string getSitemapFilename()
* @method \Magento\Sitemap\Model\Sitemap setSitemapFilename(string $value)
* @method string getSitemapPath()
* @method \Magento\Sitemap\Model\Sitemap setSitemapPath(string $value)
* @method string getSitemapTime()
* @method \Magento\Sitemap\Model\Sitemap setSitemapTime(string $value)
* @method int getStoreId()
* @method \Magento\Sitemap\Model\Sitemap setStoreId(int $value)
* @SuppressWarnings(PHPMD.TooManyFields)
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
* @api
* @since 100.0.2
*/
class Sitemap extends \Magento\Framework\Model\AbstractModel implements \Magento\Framework\DataObject\IdentityInterface
{
const OPEN_TAG_KEY = 'start';
const CLOSE_TAG_KEY = 'end';
const INDEX_FILE_PREFIX = 'sitemap';
const TYPE_INDEX = 'sitemap';
const TYPE_URL = 'url';
/**
* Last mode date min value
*/
const LAST_MOD_MIN_VAL = '0000-01-01 00:00:00';
/**
* Real file path
*
* @var string
*/
protected $_filePath;
/**
* Sitemap items
*
* @var array
*/
protected $_sitemapItems = [];
/**
* Current sitemap increment
*
* @var int
*/
protected $_sitemapIncrement = 0;
/**
* Sitemap start and end tags
*
* @var array
*/
protected $_tags = [];
/**
* Number of lines in sitemap
*
* @var int
*/
protected $_lineCount = 0;
/**
* Current sitemap file size
*
* @var int
*/
protected $_fileSize = 0;
/**
* New line possible symbols
*
* @var array
*/
private $_crlf = ["win" => "\r\n", "unix" => "\n", "mac" => "\r"];
/**
* @var \Magento\Framework\Filesystem\Directory\Write
*/
protected $_directory;
/**
* @var \Magento\Framework\Filesystem\File\Write
*/
protected $_stream;
/**
* Sitemap data
*
* @var \Magento\Sitemap\Helper\Data
*/
protected $_sitemapData;
/**
* @var \Magento\Framework\Escaper
*/
protected $_escaper;
/**
* @var \Magento\Sitemap\Model\ResourceModel\Catalog\CategoryFactory
*/
protected $_categoryFactory;
/**
* @var \Magento\Sitemap\Model\ResourceModel\Catalog\ProductFactory
*/
protected $_productFactory;
/**
* @var \Magento\Sitemap\Model\ResourceModel\Cms\PageFactory
*/
protected $_cmsFactory;
/**
* @var \Magento\Framework\Stdlib\DateTime\DateTime
*/
protected $_dateModel;
/**
* @var \Magento\Store\Model\StoreManagerInterface
*/
protected $_storeManager;
/**
* @var \Magento\Framework\App\RequestInterface
*/
protected $_request;
/**
* @var \Magento\Framework\Stdlib\DateTime
*/
protected $dateTime;
/**
* Model cache tag for clear cache in after save and after delete
*
* @var string
* @since 100.2.0
*/
protected $_cacheTag = true;
/**
* Last mode min timestamp value
*
* @var int
*/
private $lastModMinTsVal;
/**
* Initialize dependencies.
*
* @param \Magento\Framework\Model\Context $context
* @param \Magento\Framework\Registry $registry
* @param \Magento\Framework\Escaper $escaper
* @param \Magento\Sitemap\Helper\Data $sitemapData
* @param \Magento\Framework\Filesystem $filesystem
* @param ResourceModel\Catalog\CategoryFactory $categoryFactory
* @param ResourceModel\Catalog\ProductFactory $productFactory
* @param ResourceModel\Cms\PageFactory $cmsFactory
* @param \Magento\Framework\Stdlib\DateTime\DateTime $modelDate
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
* @param \Magento\Framework\App\RequestInterface $request
* @param \Magento\Framework\Stdlib\DateTime $dateTime
* @param \Magento\Framework\Model\ResourceModel\AbstractResource|null $resource
* @param \Magento\Framework\Data\Collection\AbstractDb|null $resourceCollection
* @param array $data
* @param DocumentRoot|null $documentRoot
* @SuppressWarnings(PHPMD.ExcessiveParameterList)
*/
public function __construct(
\Magento\Framework\Model\Context $context,
\Magento\Framework\Registry $registry,
\Magento\Framework\Escaper $escaper,
\Magento\Sitemap\Helper\Data $sitemapData,
\Magento\Framework\Filesystem $filesystem,
\Magento\Sitemap\Model\ResourceModel\Catalog\CategoryFactory $categoryFactory,
\Magento\Sitemap\Model\ResourceModel\Catalog\ProductFactory $productFactory,
\Magento\Sitemap\Model\ResourceModel\Cms\PageFactory $cmsFactory,
\Magento\Framework\Stdlib\DateTime\DateTime $modelDate,
\Magento\Store\Model\StoreManagerInterface $storeManager,
\Magento\Framework\App\RequestInterface $request,
\Magento\Framework\Stdlib\DateTime $dateTime,
\Magento\Framework\Model\ResourceModel\AbstractResource $resource = null,
\Magento\Framework\Data\Collection\AbstractDb $resourceCollection = null,
array $data = [],
\Magento\Config\Model\Config\Reader\Source\Deployed\DocumentRoot $documentRoot = null
) {
$this->_escaper = $escaper;
$this->_sitemapData = $sitemapData;
$documentRoot = $documentRoot ?: ObjectManager::getInstance()->get(DocumentRoot::class);
$this->_directory = $filesystem->getDirectoryWrite($documentRoot->getPath());
$this->_categoryFactory = $categoryFactory;
$this->_productFactory = $productFactory;
$this->_cmsFactory = $cmsFactory;
$this->_dateModel = $modelDate;
$this->_storeManager = $storeManager;
$this->_request = $request;
$this->dateTime = $dateTime;
parent::__construct($context, $registry, $resource, $resourceCollection, $data);
}
/**
* Init model
*
* @return void
*/
protected function _construct()
{
$this->_init(\Magento\Sitemap\Model\ResourceModel\Sitemap::class);
}
/**
* Get file handler
*
* @return \Magento\Framework\Filesystem\File\WriteInterface
* @throws \Magento\Framework\Exception\LocalizedException
*/
protected function _getStream()
{
if ($this->_stream) {
return $this->_stream;
} else {
throw new \Magento\Framework\Exception\LocalizedException(__('File handler unreachable'));
}
}
/**
* Add a sitemap item to the array of sitemap items
*
* @param DataObject $sitemapItem
* @return $this
* @since 100.2.0
*/
public function addSitemapItem(DataObject $sitemapItem)
{
$this->_sitemapItems[] = $sitemapItem;
return $this;
}
/**
* Collect all sitemap items
*
* @return void
* @since 100.2.0
*/
public function collectSitemapItems()
{
/** @var $helper \Magento\Sitemap\Helper\Data */
$helper = $this->_sitemapData;
$storeId = $this->getStoreId();
$this->_storeManager->setCurrentStore($storeId);
$this->addSitemapItem(new DataObject(
[
'changefreq' => $helper->getCategoryChangefreq($storeId),
'priority' => $helper->getCategoryPriority($storeId),
'collection' => $this->_categoryFactory->create()->getCollection($storeId),
]
));
$this->addSitemapItem(new DataObject(
[
'changefreq' => $helper->getProductChangefreq($storeId),
'priority' => $helper->getProductPriority($storeId),
'collection' => $this->_productFactory->create()->getCollection($storeId),
]
));
$this->addSitemapItem(new DataObject(
[
'changefreq' => $helper->getPageChangefreq($storeId),
'priority' => $helper->getPagePriority($storeId),
'collection' => $this->_cmsFactory->create()->getCollection($storeId),
]
));
}
/**
* Initialize sitemap
*
* @return void
*/
protected function _initSitemapItems()
{
$this->collectSitemapItems();
$this->_tags = [
self::TYPE_INDEX => [
self::OPEN_TAG_KEY => '<?xml version="1.0" encoding="UTF-8"?>' .
PHP_EOL .
'<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">' .
PHP_EOL,
self::CLOSE_TAG_KEY => '</sitemapindex>',
],
self::TYPE_URL => [
self::OPEN_TAG_KEY => '<?xml version="1.0" encoding="UTF-8"?>' .
PHP_EOL .
'<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"' .
' xmlns:content="http://www.google.com/schemas/sitemap-content/1.0"' .
' xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">' .
PHP_EOL,
self::CLOSE_TAG_KEY => '</urlset>',
],
];
}
/**
* Check sitemap file location and permissions
*
* @return \Magento\Framework\Model\AbstractModel
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function beforeSave()
{
$path = $this->getSitemapPath();
/**
* Check path is allow
*/
if ($path && preg_match('#\.\.[\\\/]#', $path)) {
throw new \Magento\Framework\Exception\LocalizedException(__('Please define a correct path.'));
}
/**
* Check exists and writable path
*/
if (!$this->_directory->isExist($path)) {
throw new \Magento\Framework\Exception\LocalizedException(
__(
'Please create the specified folder "%1" before saving the sitemap.',
$this->_escaper->escapeHtml($this->getSitemapPath())
)
);
}
if (!$this->_directory->isWritable($path)) {
throw new \Magento\Framework\Exception\LocalizedException(
__('Please make sure that "%1" is writable by the web-server.', $this->getSitemapPath())
);
}
/**
* Check allow filename
*/
if (!preg_match('#^[a-zA-Z0-9_\.]+$#', $this->getSitemapFilename())) {
throw new \Magento\Framework\Exception\LocalizedException(
__(
'Please use only letters (a-z or A-Z), numbers (0-9) or underscores (_) in the filename. No spaces or other characters are allowed.'
)
);
}
if (!preg_match('#\.xml$#', $this->getSitemapFilename())) {
$this->setSitemapFilename($this->getSitemapFilename() . '.xml');
}
$this->setSitemapPath(rtrim(str_replace(str_replace('\\', '/', $this->_getBaseDir()), '', $path), '/') . '/');
return parent::beforeSave();
}
/**
* Generate XML file
*
* @see http://www.sitemaps.org/protocol.html
*
* @return $this
*/
public function generateXml()
{
$this->_initSitemapItems();
/** @var $sitemapItem \Magento\Framework\DataObject */
foreach ($this->_sitemapItems as $sitemapItem) {
$changefreq = $sitemapItem->getChangefreq();
$priority = $sitemapItem->getPriority();
foreach ($sitemapItem->getCollection() as $item) {
$xml = $this->_getSitemapRow(
$item->getUrl(),
$item->getUpdatedAt(),
$changefreq,
$priority,
$item->getImages()
);
if ($this->_isSplitRequired($xml) && $this->_sitemapIncrement > 0) {
$this->_finalizeSitemap();
}
if (!$this->_fileSize) {
$this->_createSitemap();
}
$this->_writeSitemapRow($xml);
// Increase counters
$this->_lineCount++;
$this->_fileSize += strlen($xml);
}
}
$this->_finalizeSitemap();
if ($this->_sitemapIncrement == 1) {
// In case when only one increment file was created use it as default sitemap
$path = rtrim(
$this->getSitemapPath(),
'/'
) . '/' . $this->_getCurrentSitemapFilename(
$this->_sitemapIncrement
);
$destination = rtrim($this->getSitemapPath(), '/') . '/' . $this->getSitemapFilename();
$this->_directory->renameFile($path, $destination);
} else {
// Otherwise create index file with list of generated sitemaps
$this->_createSitemapIndex();
}
$this->setSitemapTime($this->_dateModel->gmtDate('Y-m-d H:i:s'));
$this->save();
return $this;
}
/**
* Generate sitemap index XML file
*
* @return void
*/
protected function _createSitemapIndex()
{
$this->_createSitemap($this->getSitemapFilename(), self::TYPE_INDEX);
for ($i = 1; $i <= $this->_sitemapIncrement; $i++) {
$xml = $this->_getSitemapIndexRow($this->_getCurrentSitemapFilename($i), $this->_getCurrentDateTime());
$this->_writeSitemapRow($xml);
}
$this->_finalizeSitemap(self::TYPE_INDEX);
}
/**
* Get current date time
*
* @return string
*/
protected function _getCurrentDateTime()
{
return (new \DateTime())->format(\Magento\Framework\Stdlib\DateTime::DATETIME_PHP_FORMAT);
}
/**
* Check is split required
*
* @param string $row
* @return bool
*/
protected function _isSplitRequired($row)
{
/** @var $helper \Magento\Sitemap\Helper\Data */
$helper = $this->_sitemapData;
$storeId = $this->getStoreId();
if ($this->_lineCount + 1 > $helper->getMaximumLinesNumber($storeId)) {
return true;
}
if ($this->_fileSize + strlen($row) > $helper->getMaximumFileSize($storeId)) {
return true;
}
return false;
}
/**
* Get sitemap row
*
* @param string $url
* @param null|string $lastmod
* @param null|string $changefreq
* @param null|string $priority
* @param null|array|\Magento\Framework\DataObject $images
* @return string
* Sitemap images
* @see http://support.google.com/webmasters/bin/answer.py?hl=en&answer=178636
*
* Sitemap PageMap
* @see http://support.google.com/customsearch/bin/answer.py?hl=en&answer=1628213
*/
protected function _getSitemapRow($url, $lastmod = null, $changefreq = null, $priority = null, $images = null)
{
$url = $this->_getUrl($url);
$row = '<loc>' . htmlspecialchars($url) . '</loc>';
if ($lastmod) {
$row .= '<lastmod>' . $this->_getFormattedLastmodDate($lastmod) . '</lastmod>';
}
if ($changefreq) {
$row .= '<changefreq>' . $changefreq . '</changefreq>';
}
if ($priority) {
$row .= sprintf('<priority>%.1f</priority>', $priority);
}
if ($images) {
// Add Images to sitemap
foreach ($images->getCollection() as $image) {
$row .= '<image:image>';
$row .= '<image:loc>' . htmlspecialchars($image->getUrl()) . '</image:loc>';
$row .= '<image:title>' . htmlspecialchars($images->getTitle()) . '</image:title>';
if ($image->getCaption()) {
$row .= '<image:caption>' . htmlspecialchars($image->getCaption()) . '</image:caption>';
}
$row .= '</image:image>';
}
// Add PageMap image for Google web search
$row .= '<PageMap xmlns="http://www.google.com/schemas/sitemap-pagemap/1.0"><DataObject type="thumbnail">';
$row .= '<Attribute name="name" value="' . htmlspecialchars($images->getTitle()) . '"/>';
$row .= '<Attribute name="src" value="' . htmlspecialchars($images->getThumbnail()) . '"/>';
$row .= '</DataObject></PageMap>';
}
return '<url>' . $row . '</url>';
}
/**
* Get sitemap index row
*
* @param string $sitemapFilename
* @param null|string $lastmod
* @return string
*/
protected function _getSitemapIndexRow($sitemapFilename, $lastmod = null)
{
$url = $this->getSitemapUrl($this->getSitemapPath(), $sitemapFilename);
$row = '<loc>' . htmlspecialchars($url) . '</loc>';
if ($lastmod) {
$row .= '<lastmod>' . $this->_getFormattedLastmodDate($lastmod) . '</lastmod>';
}
return '<sitemap>' . $row . '</sitemap>';
}
/**
* Create new sitemap file
*
* @param null|string $fileName
* @param string $type
* @return void
* @throws \Magento\Framework\Exception\LocalizedException
*/
protected function _createSitemap($fileName = null, $type = self::TYPE_URL)
{
if (!$fileName) {
$this->_sitemapIncrement++;
$fileName = $this->_getCurrentSitemapFilename($this->_sitemapIncrement);
}
$path = rtrim($this->getSitemapPath(), '/') . '/' . $fileName;
$this->_stream = $this->_directory->openFile($path);
$fileHeader = sprintf($this->_tags[$type][self::OPEN_TAG_KEY], $type);
$this->_stream->write($fileHeader);
$this->_fileSize = strlen($fileHeader . sprintf($this->_tags[$type][self::CLOSE_TAG_KEY], $type));
}
/**
* Write sitemap row
*
* @param string $row
* @return void
*/
protected function _writeSitemapRow($row)
{
$this->_getStream()->write($row . PHP_EOL);
}
/**
* Write closing tag and close stream
*
* @param string $type
* @return void
*/
protected function _finalizeSitemap($type = self::TYPE_URL)
{
if ($this->_stream) {
$this->_stream->write(sprintf($this->_tags[$type][self::CLOSE_TAG_KEY], $type));
$this->_stream->close();
}
// Reset all counters
$this->_lineCount = 0;
$this->_fileSize = 0;
}
/**
* Get current sitemap filename
*
* @param int $index
* @return string
*/
protected function _getCurrentSitemapFilename($index)
{
return str_replace('.xml', '', $this->getSitemapFilename()) . '-' . $this->getStoreId() . '-' . $index . '.xml';
}
/**
* Get base dir
*
* @return string
*/
protected function _getBaseDir()
{
return $this->_directory->getAbsolutePath();
}
/**
* Get store base url
*
* @param string $type
* @return string
*/
protected function _getStoreBaseUrl($type = \Magento\Framework\UrlInterface::URL_TYPE_LINK)
{
/** @var \Magento\Store\Model\Store $store */
$store = $this->_storeManager->getStore($this->getStoreId());
$isSecure = $store->isUrlSecure();
return rtrim($store->getBaseUrl($type, $isSecure), '/') . '/';
}
/**
* Get url
*
* @param string $url
* @param string $type
* @return string
*/
protected function _getUrl($url, $type = \Magento\Framework\UrlInterface::URL_TYPE_LINK)
{
return $this->_getStoreBaseUrl($type) . ltrim($url, '/');
}
/**
* Get media url
*
* @param string $url
* @return string
* @deprecated 100.2.0 No longer used, as we're generating product image URLs inside collection instead
* @see \Magento\Sitemap\Model\ResourceModel\Catalog\Product::_loadProductImages()
*/
protected function _getMediaUrl($url)
{
return $this->_getUrl($url, \Magento\Framework\UrlInterface::URL_TYPE_MEDIA);
}
/**
* Get date in correct format applicable for lastmod attribute
*
* @param string $date
* @return string
*/
protected function _getFormattedLastmodDate($date)
{
if ($this->lastModMinTsVal === null) {
$this->lastModMinTsVal = strtotime(self::LAST_MOD_MIN_VAL);
}
$timestamp = max(strtotime($date), $this->lastModMinTsVal);
return date('c', $timestamp);
}
/**
* Get Document root of Magento instance
*
* @return string
*/
protected function _getDocumentRoot()
{
return realpath($this->_request->getServer('DOCUMENT_ROOT'));
}
/**
* Get domain from store base url
*
* @return string
*/
protected function _getStoreBaseDomain()
{
$storeParsedUrl = parse_url($this->_getStoreBaseUrl());
$url = $storeParsedUrl['scheme'] . '://' . $storeParsedUrl['host'];
$documentRoot = trim(str_replace('\\', '/', $this->_getDocumentRoot()), '/');
$baseDir = trim(str_replace('\\', '/', $this->_getBaseDir()), '/');
if (strpos($baseDir, $documentRoot) === 0) {
//case when basedir is in document root
$installationFolder = trim(str_replace($documentRoot, '', $baseDir), '/');
$storeDomain = rtrim($url . '/' . $installationFolder, '/');
} else {
//case when documentRoot contains symlink to basedir
$url = $this->_getStoreBaseUrl(\Magento\Framework\UrlInterface::URL_TYPE_WEB);
$storeDomain = rtrim($url, '/');
}
return $storeDomain;
}
/**
* Get sitemap.xml URL according to all config options
*
* @param string $sitemapPath
* @param string $sitemapFileName
* @return string
*/
public function getSitemapUrl($sitemapPath, $sitemapFileName)
{
return $this->_getStoreBaseDomain() . str_replace('//', '/', $sitemapPath . '/' . $sitemapFileName);
}
/**
* Check is enabled submission to robots.txt
*
* @return bool
* @deprecated 100.2.0 Because the robots.txt file is not generated anymore,
* this method is not needed and will be removed in major release.
*/
protected function _isEnabledSubmissionRobots()
{
/** @var $helper \Magento\Sitemap\Helper\Data */
$helper = $this->_sitemapData;
$storeId = $this->getStoreId();
return (bool)$helper->getEnableSubmissionRobots($storeId);
}
/**
* Add sitemap file to robots.txt
*
* @param string $sitemapFileName
* @return void
* @deprecated 100.2.0 Because the robots.txt file is not generated anymore,
* this method is not needed and will be removed in major release.
*/
protected function _addSitemapToRobotsTxt($sitemapFileName)
{
$robotsSitemapLine = 'Sitemap: ' . $this->getSitemapUrl($this->getSitemapPath(), $sitemapFileName);
$filename = 'robots.txt';
$content = '';
if ($this->_directory->isExist($filename)) {
$content = $this->_directory->readFile($filename);
}
if (strpos($content, $robotsSitemapLine) === false) {
if (!empty($content)) {
$content .= $this->_findNewLinesDelimiter($content);
}
$content .= $robotsSitemapLine;
}
$this->_directory->writeFile($filename, $content);
}
/**
* Find new lines delimiter
*
* @param string $text
* @return string
*/
private function _findNewLinesDelimiter($text)
{
foreach ($this->_crlf as $delimiter) {
if (strpos($text, $delimiter) !== false) {
return $delimiter;
}
}
return PHP_EOL;
}
/**
* Get unique page cache identities
*
* @return array
* @since 100.2.0
*/
public function getIdentities()
{
return [
Value::CACHE_TAG . '_' . $this->getStoreId(),
];
}
}