mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 01:46:45 +02:00
MDL-50891 useragent: Move web crawler checks to useragent class
This commit is contained in:
parent
6d392b3027
commit
34c6ec1869
6 changed files with 283 additions and 90 deletions
|
@ -73,53 +73,6 @@ class core_setuplib_testcase extends advanced_testcase {
|
|||
get_docs_url('%%WWWROOT%%/lib/tests/setuplib_test.php'));
|
||||
}
|
||||
|
||||
public function test_is_web_crawler() {
|
||||
$browsers = array(
|
||||
'Mozilla/5.0 (Windows; U; MSIE 9.0; WIndows NT 9.0; en-US))',
|
||||
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:18.0) Gecko/18.0 Firefox/18.0',
|
||||
'Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en) AppleWebKit/412 (KHTML, like Gecko) Safari/412',
|
||||
'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_5; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 Safari/534.10',
|
||||
'Opera/9.0 (Windows NT 5.1; U; en)',
|
||||
'Mozilla/5.0 (Linux; U; Android 2.1; en-us; Nexus One Build/ERD62) AppleWebKit/530.17 (KHTML, like Gecko) Version/4.0 Mobile Safari/530.17 –Nexus',
|
||||
'Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5',
|
||||
);
|
||||
$crawlers = array(
|
||||
// Google.
|
||||
'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',
|
||||
'Googlebot/2.1 (+http://www.googlebot.com/bot.html)',
|
||||
'Googlebot-Image/1.0',
|
||||
// Yahoo.
|
||||
'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)',
|
||||
// Bing.
|
||||
'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
|
||||
'Mozilla/5.0 (compatible; bingbot/2.0 +http://www.bing.com/bingbot.htm)',
|
||||
// MSN.
|
||||
'msnbot/2.1',
|
||||
// Yandex.
|
||||
'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',
|
||||
'Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)',
|
||||
// AltaVista.
|
||||
'AltaVista V2.0B crawler@evreka.com',
|
||||
// ZoomSpider.
|
||||
'ZoomSpider - wrensoft.com [ZSEBOT]',
|
||||
// Baidu.
|
||||
'Baiduspider+(+http://www.baidu.com/search/spider_jp.html)',
|
||||
'Baiduspider+(+http://www.baidu.com/search/spider.htm)',
|
||||
'BaiDuSpider',
|
||||
// Ask.com.
|
||||
'User-Agent: Mozilla/2.0 (compatible; Ask Jeeves/Teoma)',
|
||||
);
|
||||
|
||||
foreach ($browsers as $agent) {
|
||||
$_SERVER['HTTP_USER_AGENT'] = $agent;
|
||||
$this->assertFalse(is_web_crawler());
|
||||
}
|
||||
foreach ($crawlers as $agent) {
|
||||
$_SERVER['HTTP_USER_AGENT'] = $agent;
|
||||
$this->assertTrue(is_web_crawler(), "$agent should be considered a search engine");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Test if get_exception_info() removes file system paths.
|
||||
*/
|
||||
|
|
|
@ -1091,6 +1091,235 @@ class core_useragent_testcase extends basic_testcase {
|
|||
'supports_svg' => false,
|
||||
),
|
||||
),
|
||||
|
||||
// Google web crawlers.
|
||||
array(
|
||||
'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
array(
|
||||
'Googlebot/2.1 (+http://www.googlebot.com/bot.html)',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
array(
|
||||
'Googlebot-Image/1.0',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
// Yahoo crawlers.
|
||||
// See https://help.yahoo.com/kb/slurp-crawling-page-sln22600.html.
|
||||
array(
|
||||
'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
// Bing / MSN / AdIdx crawlers.
|
||||
// See http://www.bing.com/webmaster/help/which-crawlers-does-bing-use-8c184ec0.
|
||||
array(
|
||||
'Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
array(
|
||||
'Mozilla/5.0 (compatible; bingbot/2.0 +http://www.bing.com/bingbot.htm)',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
array(
|
||||
'Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'is_webkit' => true,
|
||||
'is_safari_ios' => true,
|
||||
'check_safari_ios_version' => array(
|
||||
'527' => true,
|
||||
),
|
||||
|
||||
'versionclasses' => array(
|
||||
'safari',
|
||||
'ios',
|
||||
),
|
||||
|
||||
'devicetype' => 'mobile',
|
||||
),
|
||||
),
|
||||
array(
|
||||
'Mozilla/5.0 (Windows Phone 8.1; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 530) like Gecko (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'is_ie' => true,
|
||||
'check_ie_version' => array(
|
||||
'0' => true,
|
||||
'5.0' => true,
|
||||
'5.5' => true,
|
||||
'6.0' => true,
|
||||
'7.0' => true,
|
||||
'8.0' => true,
|
||||
'9.0' => true,
|
||||
'10' => true,
|
||||
'11' => true,
|
||||
),
|
||||
'versionclasses' => array(
|
||||
'ie',
|
||||
'ie11',
|
||||
),
|
||||
'devicetype' => 'mobile',
|
||||
),
|
||||
),
|
||||
|
||||
array(
|
||||
'msnbot/2.0b (+http://search.msn.com/msnbot.htm)',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
array(
|
||||
'msnbot/2.1',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
array(
|
||||
'msnbot-media/1.1 (+http://search.msn.com/msnbot.htm)',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
array(
|
||||
'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'is_webkit' => true,
|
||||
'is_safari' => true,
|
||||
'check_safari_version' => array(
|
||||
'1' => true,
|
||||
'312' => true,
|
||||
'500' => true,
|
||||
),
|
||||
|
||||
'versionclasses' => array(
|
||||
'safari',
|
||||
),
|
||||
),
|
||||
),
|
||||
array(
|
||||
'Mozilla/5.0 (Windows Phone 8.1; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 530) like Gecko BingPreview/1.0b',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'is_ie' => true,
|
||||
'check_ie_version' => array(
|
||||
'0' => true,
|
||||
'5.0' => true,
|
||||
'5.5' => true,
|
||||
'6.0' => true,
|
||||
'7.0' => true,
|
||||
'8.0' => true,
|
||||
'9.0' => true,
|
||||
'10' => true,
|
||||
'11' => true,
|
||||
),
|
||||
'versionclasses' => array(
|
||||
'ie',
|
||||
'ie11',
|
||||
),
|
||||
'devicetype' => 'mobile',
|
||||
),
|
||||
),
|
||||
|
||||
// Yandex.
|
||||
// See http://help.yandex.com/search/robots/agent.xml.
|
||||
array(
|
||||
'Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
array(
|
||||
'Mozilla/5.0 (compatible; YandexImages/3.0; +http://yandex.com/bots)',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
// AltaVista.
|
||||
array(
|
||||
'AltaVista V2.0B crawler@evreka.com',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
// ZoomSpider.
|
||||
array(
|
||||
'ZoomSpider - wrensoft.com [ZSEBOT]',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
// Baidu.
|
||||
array(
|
||||
'Baiduspider+(+http://www.baidu.com/search/spider_jp.html)',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
array(
|
||||
'Baiduspider+(+http://www.baidu.com/search/spider.htm)',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
// Ask.com.
|
||||
array(
|
||||
'User-Agent: Mozilla/2.0 (compatible; Ask Jeeves/Teoma)',
|
||||
array(
|
||||
'is_web_crawler' => true,
|
||||
'versionclasses' => array(
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -1525,4 +1754,15 @@ class core_useragent_testcase extends basic_testcase {
|
|||
}
|
||||
$this->assertCount(count($tests['versionclasses']), $actual);
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider user_agents_providers
|
||||
*/
|
||||
public function test_useragent_web_crawler($useragent, $tests) {
|
||||
// Setup the core_useragent instance.
|
||||
core_useragent::instance(true, $useragent);
|
||||
|
||||
$expectation = isset($tests['is_web_crawler']) ? $tests['is_web_crawler'] : false;
|
||||
$this->assertSame($expectation, core_useragent::is_web_crawler());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue