ar_JO
5 years ago
ar_SA
5 years ago
at_AT
5 years ago
bg_BG
5 years ago
bn_BD
5 years ago
cs_CZ
5 years ago
da_DK
5 years ago
de_AT
5 years ago
de_CH
5 years ago
de_DE
5 years ago
el_CY
5 years ago
el_GR
5 years ago
en_AU
5 years ago
en_CA
5 years ago
en_GB
5 years ago
en_HK
5 years ago
en_IN
5 years ago
en_NG
5 years ago
en_NZ
5 years ago
en_PH
5 years ago
en_SG
5 years ago
en_UG
5 years ago
en_US
5 years ago
en_ZA
5 years ago
es_AR
5 years ago
es_ES
5 years ago
es_PE
5 years ago
es_VE
5 years ago
et_EE
5 years ago
fa_IR
5 years ago
fi_FI
5 years ago
fr_BE
5 years ago
fr_CA
5 years ago
fr_CH
5 years ago
fr_FR
5 years ago
he_IL
5 years ago
hr_HR
5 years ago
hu_HU
5 years ago
hy_AM
5 years ago
id_ID
5 years ago
is_IS
5 years ago
it_CH
5 years ago
it_IT
5 years ago
ja_JP
5 years ago
ka_GE
5 years ago
kk_KZ
5 years ago
ko_KR
5 years ago
lt_LT
5 years ago
lv_LV
5 years ago
me_ME
5 years ago
mn_MN
5 years ago
ms_MY
5 years ago
nb_NO
5 years ago
ne_NP
5 years ago
nl_BE
5 years ago
nl_NL
5 years ago
pl_PL
5 years ago
pt_BR
5 years ago
pt_PT
5 years ago
ro_MD
5 years ago
ro_RO
5 years ago
ru_RU
5 years ago
sk_SK
5 years ago
sl_SI
5 years ago
sr_Cyrl_RS
5 years ago
sr_Latn_RS
5 years ago
sr_RS
5 years ago
sv_SE
5 years ago
th_TH
5 years ago
tr_TR
5 years ago
uk_UA
5 years ago
vi_VN
5 years ago
zh_CN
5 years ago
zh_TW
5 years ago
Address.php
5 years ago
Barcode.php
5 years ago
Base.php
5 years ago
Biased.php
5 years ago
Color.php
5 years ago
Company.php
5 years ago
DateTime.php
5 years ago
File.php
5 years ago
HtmlLorem.php
5 years ago
Image.php
5 years ago
Internet.php
5 years ago
Lorem.php
5 years ago
Miscellaneous.php
5 years ago
Payment.php
5 years ago
Person.php
5 years ago
PhoneNumber.php
5 years ago
Text.php
5 years ago
UserAgent.php
5 years ago
Uuid.php
5 years ago
UserAgent.php
166 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Faker\Provider; |
| 4 | |
| 5 | class UserAgent extends Base |
| 6 | { |
| 7 | protected static $userAgents = array('firefox', 'chrome', 'internetExplorer', 'opera', 'safari'); |
| 8 | |
| 9 | protected static $windowsPlatformTokens = array( |
| 10 | 'Windows NT 6.2', 'Windows NT 6.1', 'Windows NT 6.0', 'Windows NT 5.2', 'Windows NT 5.1', |
| 11 | 'Windows NT 5.01', 'Windows NT 5.0', 'Windows NT 4.0', 'Windows 98; Win 9x 4.90', 'Windows 98', |
| 12 | 'Windows 95', 'Windows CE' |
| 13 | ); |
| 14 | |
| 15 | /** |
| 16 | * Possible processors on Linux |
| 17 | */ |
| 18 | protected static $linuxProcessor = array('i686', 'x86_64'); |
| 19 | |
| 20 | /** |
| 21 | * Mac processors (it also added U;) |
| 22 | */ |
| 23 | protected static $macProcessor = array('Intel', 'PPC', 'U; Intel', 'U; PPC'); |
| 24 | |
| 25 | /** |
| 26 | * Add as many languages as you like. |
| 27 | */ |
| 28 | protected static $lang = array('en-US', 'sl-SI'); |
| 29 | |
| 30 | /** |
| 31 | * Generate mac processor |
| 32 | * |
| 33 | * @return string |
| 34 | */ |
| 35 | public static function macProcessor() |
| 36 | { |
| 37 | return static::randomElement(static::$macProcessor); |
| 38 | } |
| 39 | |
| 40 | /** |
| 41 | * Generate linux processor |
| 42 | * |
| 43 | * @return string |
| 44 | */ |
| 45 | public static function linuxProcessor() |
| 46 | { |
| 47 | return static::randomElement(static::$linuxProcessor); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * Generate a random user agent |
| 52 | * |
| 53 | * @example 'Mozilla/5.0 (Windows CE) AppleWebKit/5350 (KHTML, like Gecko) Chrome/13.0.888.0 Safari/5350' |
| 54 | */ |
| 55 | public static function userAgent() |
| 56 | { |
| 57 | $userAgentName = static::randomElement(static::$userAgents); |
| 58 | |
| 59 | return static::$userAgentName(); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Generate Chrome user agent |
| 64 | * |
| 65 | * @example 'Mozilla/5.0 (Macintosh; PPC Mac OS X 10_6_5) AppleWebKit/5312 (KHTML, like Gecko) Chrome/14.0.894.0 Safari/5312' |
| 66 | */ |
| 67 | public static function chrome() |
| 68 | { |
| 69 | $saf = mt_rand(531, 536) . mt_rand(0, 2); |
| 70 | |
| 71 | $platforms = array( |
| 72 | '(' . static::linuxPlatformToken() . ") AppleWebKit/$saf (KHTML, like Gecko) Chrome/" . mt_rand(36, 40) . '.0.' . mt_rand(800, 899) . ".0 Mobile Safari/$saf", |
| 73 | '(' . static::windowsPlatformToken() . ") AppleWebKit/$saf (KHTML, like Gecko) Chrome/" . mt_rand(36, 40) . '.0.' . mt_rand(800, 899) . ".0 Mobile Safari/$saf", |
| 74 | '(' . static::macPlatformToken() . ") AppleWebKit/$saf (KHTML, like Gecko) Chrome/" . mt_rand(36, 40) . '.0.' . mt_rand(800, 899) . ".0 Mobile Safari/$saf" |
| 75 | ); |
| 76 | |
| 77 | return 'Mozilla/5.0 ' . static::randomElement($platforms); |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Generate Firefox user agent |
| 82 | * |
| 83 | * @example 'Mozilla/5.0 (X11; Linuxi686; rv:7.0) Gecko/20101231 Firefox/3.6' |
| 84 | */ |
| 85 | public static function firefox() |
| 86 | { |
| 87 | $ver = 'Gecko/' . date('Ymd', mt_rand(strtotime('2010-1-1'), time())) . ' Firefox/' . mt_rand(35, 37) . '.0'; |
| 88 | |
| 89 | $platforms = array( |
| 90 | '(' . static::windowsPlatformToken() . '; ' . static::randomElement(static::$lang) . '; rv:1.9.' . mt_rand(0, 2) . '.20) ' . $ver, |
| 91 | '(' . static::linuxPlatformToken() . '; rv:' . mt_rand(5, 7) . '.0) ' . $ver, |
| 92 | '(' . static::macPlatformToken() . ' rv:' . mt_rand(2, 6) . '.0) ' . $ver |
| 93 | ); |
| 94 | |
| 95 | return "Mozilla/5.0 " . static::randomElement($platforms); |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Generate Safari user agent |
| 100 | * |
| 101 | * @example 'Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_7_1 rv:3.0; en-US) AppleWebKit/534.11.3 (KHTML, like Gecko) Version/4.0 Safari/534.11.3' |
| 102 | */ |
| 103 | public static function safari() |
| 104 | { |
| 105 | $saf = mt_rand(531, 535) . '.' . mt_rand(1, 50) . '.' . mt_rand(1, 7); |
| 106 | if (mt_rand(0, 1) == 0) { |
| 107 | $ver = mt_rand(4, 5) . '.' . mt_rand(0, 1); |
| 108 | } else { |
| 109 | $ver = mt_rand(4, 5) . '.0.' . mt_rand(1, 5); |
| 110 | } |
| 111 | |
| 112 | $mobileDevices = array( |
| 113 | 'iPhone; CPU iPhone OS', |
| 114 | 'iPad; CPU OS' |
| 115 | ); |
| 116 | |
| 117 | $platforms = array( |
| 118 | '(Windows; U; ' . static::windowsPlatformToken() . ") AppleWebKit/$saf (KHTML, like Gecko) Version/$ver Safari/$saf", |
| 119 | '(' . static::macPlatformToken() . ' rv:' . mt_rand(2, 6) . '.0; ' . static::randomElement(static::$lang) . ") AppleWebKit/$saf (KHTML, like Gecko) Version/$ver Safari/$saf", |
| 120 | '(' . static::randomElement($mobileDevices) . ' ' . mt_rand(7, 8) . '_' . mt_rand(0, 2) . '_' . mt_rand(1, 2) . ' like Mac OS X; ' . static::randomElement(static::$lang) . ") AppleWebKit/$saf (KHTML, like Gecko) Version/" . mt_rand(3, 4) . ".0.5 Mobile/8B" . mt_rand(111, 119) . " Safari/6$saf", |
| 121 | ); |
| 122 | |
| 123 | return "Mozilla/5.0 " . static::randomElement($platforms); |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Generate Opera user agent |
| 128 | * |
| 129 | * @example 'Opera/8.25 (Windows NT 5.1; en-US) Presto/2.9.188 Version/10.00' |
| 130 | */ |
| 131 | public static function opera() |
| 132 | { |
| 133 | $platforms = array( |
| 134 | '(' . static::linuxPlatformToken() . '; ' . static::randomElement(static::$lang) . ') Presto/2.' . mt_rand(8, 12) . '.' . mt_rand(160, 355) . ' Version/' . mt_rand(10, 12) . '.00', |
| 135 | '(' . static::windowsPlatformToken() . '; ' . static::randomElement(static::$lang) . ') Presto/2.' . mt_rand(8, 12) . '.' . mt_rand(160, 355) . ' Version/' . mt_rand(10, 12) . '.00' |
| 136 | ); |
| 137 | |
| 138 | return "Opera/" . mt_rand(8, 9) . '.' . mt_rand(10, 99) . ' ' . static::randomElement($platforms); |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * Generate Internet Explorer user agent |
| 143 | * |
| 144 | * @example 'Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Win 9x 4.90; Trident/3.0)' |
| 145 | */ |
| 146 | public static function internetExplorer() |
| 147 | { |
| 148 | return 'Mozilla/5.0 (compatible; MSIE ' . mt_rand(5, 11) . '.0; ' . static::windowsPlatformToken() . '; Trident/' . mt_rand(3, 5) . '.' . mt_rand(0, 1) . ')'; |
| 149 | } |
| 150 | |
| 151 | public static function windowsPlatformToken() |
| 152 | { |
| 153 | return static::randomElement(static::$windowsPlatformTokens); |
| 154 | } |
| 155 | |
| 156 | public static function macPlatformToken() |
| 157 | { |
| 158 | return 'Macintosh; ' . static::randomElement(static::$macProcessor) . ' Mac OS X 10_' . mt_rand(5, 8) . '_' . mt_rand(0, 9); |
| 159 | } |
| 160 | |
| 161 | public static function linuxPlatformToken() |
| 162 | { |
| 163 | return 'X11; Linux ' . static::randomElement(static::$linuxProcessor); |
| 164 | } |
| 165 | } |
| 166 |