mirror of https://github.com/YGGverse/YGGo.git
phpyggdrasilcrawlermysqljs-lessspideralt-websphinxsearch-engineopen-sourcedistributedwebcurlparserfts5privacy-orientedsphinxsearchfederativeweb-archivepdo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
2.2 KiB
117 lines
2.2 KiB
<?php |
|
|
|
class Robots { |
|
|
|
private $_rule = []; |
|
private $_sitemap = null; |
|
private $_data = null; |
|
|
|
public function __construct(mixed $data) { |
|
|
|
$this->_data = $data; |
|
|
|
$read = false; |
|
|
|
foreach ((array) explode(PHP_EOL, (string) $data) as $row) { |
|
|
|
$row = strtolower(trim($row)); |
|
|
|
// User-agent * begin |
|
if (preg_match('!^user-agent:\s?\*!', $row)) { |
|
$read = true; |
|
continue; |
|
} |
|
|
|
// Parse sitemap address |
|
if (preg_match('!^sitemap:\s?(.*)!', $row, $matches)) { |
|
|
|
if (!empty($matches[1])) { |
|
|
|
$this->_sitemap = urldecode(trim($matches[1])); |
|
} |
|
} |
|
|
|
if ($read) { |
|
$part = explode(' ', $row); |
|
|
|
if (isset($part[0]) && isset($part[1])) { |
|
|
|
if (false !== strpos($part[0], 'allow')) { |
|
$this->_rule[$this->_regex(trim($part[1]))] = true; |
|
} |
|
|
|
if (false !== strpos($part[0], 'disallow')) { |
|
$this->_rule[$this->_regex(trim($part[1]))] = false; |
|
} |
|
} |
|
} |
|
|
|
// User-agent * end |
|
if ($read && preg_match('!^user-agent:!', $row)) { |
|
break; |
|
} |
|
} |
|
} |
|
|
|
public function uriAllowed(string $uri) { |
|
|
|
// Unify case match |
|
$uri = strtolower(trim($uri)); |
|
|
|
// Index by default |
|
$result = true; |
|
|
|
// Begin index rules by ASC priority |
|
foreach ($this->_rule as $rule => $value) { |
|
|
|
if (preg_match('!^' . $rule . '!', $uri)) { |
|
|
|
$result = $value; |
|
} |
|
} |
|
|
|
return $result; |
|
} |
|
|
|
/* @TODO not in use |
|
public function append(string $key, string $value) { |
|
|
|
if (!preg_match('!^user-agent:\s?\*!', strtolower(trim($this->_data)))) { |
|
|
|
$this->_data .= PHP_EOL . 'User-agent: *' . PHP_EOL; |
|
} |
|
|
|
if (false === stripos($this->_data, PHP_EOL . $key . ' ' . $value)) { |
|
|
|
$this->_data .= PHP_EOL . $key . ' ' . $value; |
|
} |
|
} |
|
*/ |
|
|
|
public function getData() { |
|
|
|
return $this->_data; |
|
} |
|
|
|
public function getSitemap() { |
|
|
|
return $this->_sitemap; |
|
} |
|
|
|
private function _regex(string $string) { |
|
|
|
return str_replace( |
|
[ |
|
'*', |
|
'?', |
|
'+' |
|
], |
|
[ |
|
'.*', |
|
'\?', |
|
'\+' |
|
], |
|
$string |
|
); |
|
} |
|
} |