mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
20 lines
No EOL
526 B
PHP
20 lines
No EOL
526 B
PHP
<?php
|
|
|
|
class Actions
|
|
{
|
|
public static function param($key, $default = null)
|
|
{
|
|
return $_POST[$key] ?? $_GET[$key] ?? $default;
|
|
}
|
|
|
|
protected static function isForRobot()
|
|
{
|
|
$bots = [
|
|
'bot', 'spider', 'crawler', 'siteexplorer', 'yahoo', 'slurp', 'dataaccessd', 'facebook', 'twitter', 'coccoc',
|
|
'calendar', 'curl', 'wget', 'panopta', 'blogtrottr', 'zapier', 'newrelic', 'luasocket',
|
|
'okhttp', 'python'
|
|
];
|
|
|
|
return preg_match('/(' . join('|', $bots) . ')/i', Request::getUserAgent());
|
|
}
|
|
} |