forked from samdark/sitemap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Sitemap.php
534 lines (460 loc) · 15.6 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
<?php
namespace samdark\sitemap;
use XMLWriter;
/**
* A class for generating Sitemaps (http://www.sitemaps.org/)
*
* @author Alexander Makarov <[email protected]>
*/
class Sitemap
{
const ALWAYS = 'always';
const HOURLY = 'hourly';
const DAILY = 'daily';
const WEEKLY = 'weekly';
const MONTHLY = 'monthly';
const YEARLY = 'yearly';
const NEVER = 'never';
/**
* @var integer Maximum allowed number of URLs in a single file.
*/
private $maxUrls = 50000;
/**
* @var integer number of URLs added
*/
private $urlsCount = 0;
/**
* @var integer Maximum allowed number of bytes in a single file.
*/
private $maxBytes = 10485760;
/**
* @var integer number of bytes already written to the current file, before compression
*/
private $byteCount = 0;
/**
* @var string path to the file to be written
*/
private $filePath;
/**
* @var string path of the XML stylesheet
*/
private $stylesheet;
/**
* @var integer number of files written
*/
private $fileCount = 0;
/**
* @var array path of files written
*/
private $writtenFilePaths = array();
/**
* @var integer number of URLs to be kept in memory before writing it to file
*/
private $bufferSize = 10;
/**
* @var bool if XML should be indented
*/
private $useIndent = true;
/**
* @var bool if should XHTML namespace be specified
* Useful for multi-language sitemap to point crawler to alternate language page via xhtml:link tag.
* @see https://support.google.com/webmasters/answer/2620865?hl=en
*/
private $useXhtml = false;
/**
* @var array valid values for frequency parameter
*/
private $validFrequencies = array(
self::ALWAYS,
self::HOURLY,
self::DAILY,
self::WEEKLY,
self::MONTHLY,
self::YEARLY,
self::NEVER
);
/**
* @var bool whether to gzip the resulting files or not
*/
private $useGzip = false;
/**
* @var WriterInterface that does the actual writing
*/
private $writerBackend;
/**
* @var XMLWriter
*/
private $writer;
/**
* @var dateFormat
*/
private $dateFormat = 'c';
/**
* @param string $filePath path of the file to write to
* @param bool $useXhtml is XHTML namespace should be specified
*
* @throws \InvalidArgumentException
*/
public function __construct($filePath, $useXhtml = false)
{
$dir = dirname($filePath);
if (!is_dir($dir)) {
throw new \InvalidArgumentException(
"Please specify valid file path. Directory not exists. You have specified: {$dir}."
);
}
$this->filePath = $filePath;
$this->useXhtml = $useXhtml;
}
/**
* Get array of generated files
* @return array
*/
public function getWrittenFilePath()
{
return $this->writtenFilePaths;
}
/**
* Creates new file
* @throws \RuntimeException if file is not writeable
*/
private function createNewFile()
{
$this->fileCount++;
$filePath = $this->getCurrentFilePath();
$this->writtenFilePaths[] = $filePath;
if (file_exists($filePath)) {
$filePath = realpath($filePath);
if (is_writable($filePath)) {
unlink($filePath);
} else {
throw new \RuntimeException("File \"$filePath\" is not writable.");
}
}
if ($this->useGzip) {
if (function_exists('deflate_init') && function_exists('deflate_add')) {
$this->writerBackend = new DeflateWriter($filePath);
} else {
$this->writerBackend = new TempFileGZIPWriter($filePath);
}
} else {
$this->writerBackend = new PlainFileWriter($filePath);
}
$this->writer = new XMLWriter();
$this->writer->openMemory();
$this->writer->startDocument('1.0', 'UTF-8');
// Use XML stylesheet, if available
if (isset($this->stylesheet)) {
$this->writer->writePi('xml-stylesheet', "type=\"text/xsl\" href=\"" . $this->stylesheet . "\"");
$this->writer->writeRaw("\n");
}
$this->writer->setIndent($this->useIndent);
$this->writer->startElement('urlset');
$this->writer->writeAttribute('xmlns', 'http://www.sitemaps.org/schemas/sitemap/0.9');
if ($this->useXhtml) {
$this->writer->writeAttribute('xmlns:xhtml', 'http://www.w3.org/1999/xhtml');
}
/*
* XMLWriter does not give us much options, so we must make sure, that
* the header was written correctly and we can simply reuse any <url>
* elements that did not fit into the previous file. (See self::flush)
*/
$this->writer->text("\n");
$this->flush(true);
}
/**
* Writes closing tags to current file
*/
private function finishFile()
{
if ($this->writer !== null) {
$this->writer->endElement();
$this->writer->endDocument();
/* To prevent infinite recursion through flush */
$this->urlsCount = 0;
$this->flush(0);
$this->writerBackend->finish();
$this->writerBackend = null;
$this->byteCount = 0;
}
}
/**
* Finishes writing
*/
public function write()
{
$this->finishFile();
}
/**
* Flushes buffer into file
*
* @param int $footSize Size of the remaining closing tags
* @throws \OverflowException
*/
private function flush($footSize = 10)
{
$data = $this->writer->flush(true);
$dataSize = mb_strlen($data, '8bit');
/*
* Limit the file size of each single site map
*
* We use a heuristic of 10 Bytes for the remainder of the file,
* i.e. </urlset> plus a new line.
*/
if ($this->byteCount + $dataSize + $footSize > $this->maxBytes) {
if ($this->urlsCount <= 1) {
throw new \OverflowException('The buffer size is too big for the defined file size limit');
}
$this->finishFile();
$this->createNewFile();
}
$this->writerBackend->append($data);
$this->byteCount += $dataSize;
}
/**
* Takes a string and validates, if the string
* is a valid url
*
* @param string $location
* @throws \InvalidArgumentException
*/
protected function validateLocation($location) {
if (false === filter_var($location, FILTER_VALIDATE_URL)) {
throw new \InvalidArgumentException(
"The location must be a valid URL. You have specified: {$location}."
);
}
}
/**
* Adds a new item to sitemap
*
* @param string|array $location location item URL
* @param integer $lastModified last modification timestamp
* @param string $changeFrequency change frequency. Use one of self:: constants here
* @param string $priority item's priority (0.0-1.0). Default null is equal to 0.5
*
* @throws \InvalidArgumentException
*/
public function addItem($location, $lastModified = null, $changeFrequency = null, $priority = null)
{
if ($this->urlsCount >= $this->maxUrls) {
$this->finishFile();
}
if ($this->writerBackend === null) {
$this->createNewFile();
}
if (is_array($location)) {
$this->addMultiLanguageItem($location, $lastModified, $changeFrequency, $priority);
} else {
$this->addSingleLanguageItem($location, $lastModified, $changeFrequency, $priority);
}
$this->urlsCount++;
if ($this->urlsCount % $this->bufferSize === 0) {
$this->flush();
}
}
/**
* Adds a new single item to sitemap
*
* @param string $location location item URL
* @param integer $lastModified last modification timestamp
* @param float $changeFrequency change frequency. Use one of self:: constants here
* @param string $priority item's priority (0.0-1.0). Default null is equal to 0.5
*
* @throws \InvalidArgumentException
*
* @see addItem
*/
private function addSingleLanguageItem($location, $lastModified, $changeFrequency, $priority)
{
$this->validateLocation($location);
$this->writer->startElement('url');
$this->writer->writeElement('loc', $location);
if ($lastModified !== null) {
$this->writer->writeElement('lastmod', date($this->dateFormat, $lastModified));
}
if ($changeFrequency !== null) {
if (!in_array($changeFrequency, $this->validFrequencies, true)) {
throw new \InvalidArgumentException(
'Please specify valid changeFrequency. Valid values are: '
. implode(', ', $this->validFrequencies)
. "You have specified: {$changeFrequency}."
);
}
$this->writer->writeElement('changefreq', $changeFrequency);
}
if ($priority !== null) {
if (!is_numeric($priority) || $priority < 0 || $priority > 1) {
throw new \InvalidArgumentException(
"Please specify valid priority. Valid values range from 0.0 to 1.0. You have specified: {$priority}."
);
}
$this->writer->writeElement('priority', number_format($priority, 1, '.', ','));
}
$this->writer->endElement();
}
/**
* Adds a multi-language item, based on multiple locations with alternate hrefs to sitemap
*
* @param array $locations array of language => link pairs
* @param integer $lastModified last modification timestamp
* @param float $changeFrequency change frequency. Use one of self:: constants here
* @param string $priority item's priority (0.0-1.0). Default null is equal to 0.5
*
* @throws \InvalidArgumentException
*
* @see addItem
*/
private function addMultiLanguageItem($locations, $lastModified, $changeFrequency, $priority)
{
foreach ($locations as $language => $url) {
$this->validateLocation($url);
$this->writer->startElement('url');
$this->writer->writeElement('loc', $url);
if ($lastModified !== null) {
$this->writer->writeElement('lastmod', date($this->dateFormat, $lastModified));
}
if ($changeFrequency !== null) {
if (!in_array($changeFrequency, $this->validFrequencies, true)) {
throw new \InvalidArgumentException(
'Please specify valid changeFrequency. Valid values are: '
. implode(', ', $this->validFrequencies)
. "You have specified: {$changeFrequency}."
);
}
$this->writer->writeElement('changefreq', $changeFrequency);
}
if ($priority !== null) {
if (!is_numeric($priority) || $priority < 0 || $priority > 1) {
throw new \InvalidArgumentException(
"Please specify valid priority. Valid values range from 0.0 to 1.0. You have specified: {$priority}."
);
}
$this->writer->writeElement('priority', number_format($priority, 1, '.', ','));
}
foreach ($locations as $hreflang => $href) {
$this->writer->startElement('xhtml:link');
$this->writer->startAttribute('rel');
$this->writer->text('alternate');
$this->writer->endAttribute();
$this->writer->startAttribute('hreflang');
$this->writer->text($hreflang);
$this->writer->endAttribute();
$this->writer->startAttribute('href');
$this->writer->text($href);
$this->writer->endAttribute();
$this->writer->endElement();
}
$this->writer->endElement();
}
}
/**
* @return string path of currently opened file
*/
private function getCurrentFilePath()
{
if ($this->fileCount < 2) {
return $this->filePath;
}
$parts = pathinfo($this->filePath);
if ($parts['extension'] === 'gz') {
$filenameParts = pathinfo($parts['filename']);
if (!empty($filenameParts['extension'])) {
$parts['filename'] = $filenameParts['filename'];
$parts['extension'] = $filenameParts['extension'] . '.gz';
}
}
return $parts['dirname'] . DIRECTORY_SEPARATOR . $parts['filename'] . '_' . $this->fileCount . '.' . $parts['extension'];
}
/**
* Returns an array of URLs written
*
* @param string $baseUrl base URL of all the sitemaps written
* @return array URLs of sitemaps written
*/
public function getSitemapUrls($baseUrl)
{
$urls = array();
foreach ($this->writtenFilePaths as $file) {
$urls[] = $baseUrl . pathinfo($file, PATHINFO_BASENAME);
}
return $urls;
}
/**
* Sets maximum number of URLs to write in a single file.
* Default is 50000.
* @param integer $number
*/
public function setMaxUrls($number)
{
$this->maxUrls = (int)$number;
}
/**
* Sets maximum number of bytes to write in a single file.
* Default is 10485760 or 10 MiB.
* @param integer $number
*/
public function setMaxBytes($number)
{
$this->maxBytes = (int)$number;
}
/**
* Sets number of URLs to be kept in memory before writing it to file.
* Default is 10.
*
* @param integer $number
*/
public function setBufferSize($number)
{
$this->bufferSize = (int)$number;
}
/**
* Sets if XML should be indented.
* Default is true.
*
* @param bool $value
*/
public function setUseIndent($value)
{
$this->useIndent = (bool)$value;
}
/**
* Sets whether the resulting files will be gzipped or not.
* @param bool $value
* @throws \RuntimeException when trying to enable gzip while zlib is not available or when trying to change
* setting when some items are already written
*/
public function setUseGzip($value)
{
if ($value && !extension_loaded('zlib')) {
throw new \RuntimeException('Zlib extension must be enabled to gzip the sitemap.');
}
if ($this->writerBackend !== null && $value != $this->useGzip) {
throw new \RuntimeException('Cannot change the gzip value once items have been added to the sitemap.');
}
$this->useGzip = $value;
}
/**
* Sets stylesheet for the XML file.
* Default is to not generate XML stylesheet tag.
* @param string $stylesheetUrl Stylesheet URL.
*/
public function setStylesheet($stylesheetUrl)
{
if (false === filter_var($stylesheetUrl, FILTER_VALIDATE_URL)) {
throw new \InvalidArgumentException(
"The stylesheet URL is not valid. You have specified: {$stylesheetUrl}."
);
} else {
$this->stylesheet = $stylesheetUrl;
}
}
/**
* Allow to choose the date format pattern
* @param string DateTimeInterface::format pattern
*/
public function setDateFormat($dateFormat)
{
$this->dateFormat = $dateFormat;
}
}