@@ -25,8 +25,7 @@ |
||
| 25 | 25 | { |
| 26 | 26 | $this->Name = 'Desktop'; |
| 27 | 27 | $this->Type = 'desktop'; |
| 28 | - } |
|
| 29 | - else |
|
| 28 | + } else |
|
| 30 | 29 | { |
| 31 | 30 | parent::__construct($xmlData); |
| 32 | 31 | |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | */ |
| 22 | 22 | public function __construct(\SimpleXMLElement $xmlData) |
| 23 | 23 | { |
| 24 | - if($xmlData === null || $xmlData->getName() == 'null') |
|
| 24 | + if ($xmlData === null || $xmlData->getName() == 'null') |
|
| 25 | 25 | { |
| 26 | 26 | parent::__construct($xmlData); |
| 27 | 27 | |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | public function __construct(\SimpleXMLElement $xmlData) |
| 23 | 23 | { |
| 24 | 24 | parent::__construct($xmlData); |
| 25 | - if($xmlData !== null) |
|
| 25 | + if ($xmlData !== null) |
|
| 26 | 26 | { |
| 27 | 27 | foreach ($xmlData->children() as $child) { |
| 28 | 28 | switch ($child->getName()) { |
@@ -46,6 +46,6 @@ discard block |
||
| 46 | 46 | |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | -define('UNX','unix'); |
|
| 50 | -define('WIN','windows'); |
|
| 51 | -define('MC','mac'); |
|
| 49 | +define('UNX', 'unix'); |
|
| 50 | +define('WIN', 'windows'); |
|
| 51 | +define('MC', 'mac'); |
|
@@ -72,7 +72,7 @@ |
||
| 72 | 72 | { |
| 73 | 73 | parent::__construct($xmlData); |
| 74 | 74 | |
| 75 | - if($xmlData !== null) |
|
| 75 | + if ($xmlData !== null) |
|
| 76 | 76 | { |
| 77 | 77 | foreach ($xmlData->children() as $child) |
| 78 | 78 | { |
@@ -72,19 +72,19 @@ |
||
| 72 | 72 | { |
| 73 | 73 | parent::__construct($xmlData); |
| 74 | 74 | |
| 75 | - if($xmlData !== null) |
|
| 75 | + if ($xmlData !== null) |
|
| 76 | 76 | { |
| 77 | 77 | foreach ($xmlData->children() as $child) |
| 78 | 78 | { |
| 79 | 79 | $name = $child->getName(); |
| 80 | 80 | $val = $child->__toString(); |
| 81 | - if($name != 'id' && $name != 'pattern' && $name != 'SearchEngine') |
|
| 81 | + if ($name != 'id' && $name != 'pattern' && $name != 'SearchEngine') |
|
| 82 | 82 | { |
| 83 | 83 | $this->$name = $val; |
| 84 | 84 | } |
| 85 | - if($name == 'SearchEngine') |
|
| 85 | + if ($name == 'SearchEngine') |
|
| 86 | 86 | { |
| 87 | - if($val == 'true') |
|
| 87 | + if ($val == 'true') |
|
| 88 | 88 | { |
| 89 | 89 | $this->setSearchEngine(true); |
| 90 | 90 | } |
@@ -87,9 +87,9 @@ |
||
| 87 | 87 | if($val == 'true') |
| 88 | 88 | { |
| 89 | 89 | $this->setSearchEngine(true); |
| 90 | + } else { |
|
| 91 | + $this->setSearchEngine(false); |
|
| 90 | 92 | } |
| 91 | - else |
|
| 92 | - $this->setSearchEngine(false); |
|
| 93 | 93 | } |
| 94 | 94 | } |
| 95 | 95 | } |
@@ -104,13 +104,13 @@ discard block |
||
| 104 | 104 | |
| 105 | 105 | public function __construct(\SimpleXMLElement $xmlData) |
| 106 | 106 | { |
| 107 | - if($xmlData !== null) |
|
| 107 | + if ($xmlData !== null) |
|
| 108 | 108 | { |
| 109 | 109 | foreach ($xmlData->children() as $child) |
| 110 | 110 | { |
| 111 | 111 | $name = $child->getName(); |
| 112 | 112 | $val = $child->__toString(); |
| 113 | - if($name != 'TargetValue') |
|
| 113 | + if ($name != 'TargetValue') |
|
| 114 | 114 | { |
| 115 | 115 | $this->$name = $val; |
| 116 | 116 | } |
@@ -125,15 +125,15 @@ discard block |
||
| 125 | 125 | */ |
| 126 | 126 | public static function loadRulesFromFile() |
| 127 | 127 | { |
| 128 | - $path = str_replace('src','data',__DIR__).'/rules/'; |
|
| 128 | + $path = str_replace('src', 'data', __DIR__).'/rules/'; |
|
| 129 | 129 | $files = scandir($path); |
| 130 | 130 | $rules = array(); |
| 131 | - foreach($files as $file) |
|
| 131 | + foreach ($files as $file) |
|
| 132 | 132 | { |
| 133 | - if($file != '.' && $file != '..') |
|
| 133 | + if ($file != '.' && $file != '..') |
|
| 134 | 134 | { |
| 135 | 135 | $xmlObj = simplexml_load_file($path.$file); |
| 136 | - foreach($xmlObj->children() as $rule) |
|
| 136 | + foreach ($xmlObj->children() as $rule) |
|
| 137 | 137 | { |
| 138 | 138 | $rules[] = new self($rule); |
| 139 | 139 | } |
@@ -113,9 +113,9 @@ |
||
| 113 | 113 | if($name != 'TargetValue') |
| 114 | 114 | { |
| 115 | 115 | $this->$name = $val; |
| 116 | + } else { |
|
| 117 | + $this->$name = filter_var($val, FILTER_VALIDATE_BOOLEAN); |
|
| 116 | 118 | } |
| 117 | - else |
|
| 118 | - $this->$name = filter_var($val, FILTER_VALIDATE_BOOLEAN); |
|
| 119 | 119 | } |
| 120 | 120 | } |
| 121 | 121 | } |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | { |
| 19 | 19 | if ($pathToData == 'auto') |
| 20 | 20 | { |
| 21 | - $pathToData = str_replace('src', 'data', __DIR__) . '/'; |
|
| 21 | + $pathToData = str_replace('src', 'data', __DIR__).'/'; |
|
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | if (self::$xmlData === null) |
@@ -26,16 +26,16 @@ discard block |
||
| 26 | 26 | $xml = array('Robot', 'Browser', 'Device', 'OS'); |
| 27 | 27 | $xmlData = array(); |
| 28 | 28 | foreach ($xml as $name) { |
| 29 | - $xmlData[$name] = simplexml_load_file($pathToData . strtolower($name) . '.xml'); |
|
| 29 | + $xmlData[$name] = simplexml_load_file($pathToData.strtolower($name).'.xml'); |
|
| 30 | 30 | } |
| 31 | 31 | self::$xmlData = $xmlData; |
| 32 | 32 | } |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | - public static function analyse($uaString='UA') |
|
| 35 | + public static function analyse($uaString = 'UA') |
|
| 36 | 36 | { |
| 37 | 37 | $ua = $uaString; |
| 38 | - if($uaString == 'UA') |
|
| 38 | + if ($uaString == 'UA') |
|
| 39 | 39 | { |
| 40 | 40 | $ua = $_SERVER['HTTP_USER_AGENT']; |
| 41 | 41 | } |
@@ -47,14 +47,14 @@ discard block |
||
| 47 | 47 | $detectorResult->uaString = $ua; |
| 48 | 48 | $ns = '\\EndorphinStudio\\Detector\\'; |
| 49 | 49 | |
| 50 | - foreach($xml as $key => $item) |
|
| 50 | + foreach ($xml as $key => $item) |
|
| 51 | 51 | { |
| 52 | - $data = self::analysePart($xml,$key,$ua); |
|
| 52 | + $data = self::analysePart($xml, $key, $ua); |
|
| 53 | 53 | $classname = $ns.$key; |
| 54 | - if($data !== null) |
|
| 54 | + if ($data !== null) |
|
| 55 | 55 | { |
| 56 | 56 | $object = new $classname($data); |
| 57 | - if($key == 'OS' || $key == 'Browser') |
|
| 57 | + if ($key == 'OS' || $key == 'Browser') |
|
| 58 | 58 | { |
| 59 | 59 | $object->setVersion(self::getVersion($data, $ua)); |
| 60 | 60 | } |
@@ -77,13 +77,13 @@ discard block |
||
| 77 | 77 | * @param string $uaString User agent |
| 78 | 78 | * @return \SimpleXMLElement xml element |
| 79 | 79 | */ |
| 80 | - private static function analysePart($xmlData,$key,$uaString) |
|
| 80 | + private static function analysePart($xmlData, $key, $uaString) |
|
| 81 | 81 | { |
| 82 | 82 | $data = $xmlData[$key]->data; |
| 83 | - foreach($data as $xmlItem) |
|
| 83 | + foreach ($data as $xmlItem) |
|
| 84 | 84 | { |
| 85 | 85 | $pattern = '/'.$xmlItem->pattern.'/'; |
| 86 | - if(preg_match($pattern,$uaString)) |
|
| 86 | + if (preg_match($pattern, $uaString)) |
|
| 87 | 87 | { |
| 88 | 88 | return $xmlItem; |
| 89 | 89 | } |
@@ -96,21 +96,21 @@ discard block |
||
| 96 | 96 | * @param string $uaString User agent |
| 97 | 97 | * @return string Version |
| 98 | 98 | */ |
| 99 | - private static function getVersion(\SimpleXMLElement $xmlItem,$uaString) |
|
| 99 | + private static function getVersion(\SimpleXMLElement $xmlItem, $uaString) |
|
| 100 | 100 | { |
| 101 | - if($xmlItem !== null) |
|
| 101 | + if ($xmlItem !== null) |
|
| 102 | 102 | { |
| 103 | - foreach($xmlItem->children() as $node) |
|
| 103 | + foreach ($xmlItem->children() as $node) |
|
| 104 | 104 | { |
| 105 | - if($node->getName() == 'versionPattern') |
|
| 105 | + if ($node->getName() == 'versionPattern') |
|
| 106 | 106 | { |
| 107 | 107 | $vPattern = $node->__toString(); |
| 108 | - $version = '/' . $vPattern . '(\/| )[\w-._]{1,15}/'; |
|
| 108 | + $version = '/'.$vPattern.'(\/| )[\w-._]{1,15}/'; |
|
| 109 | 109 | $uaString = str_replace(' NT', '', $uaString); |
| 110 | 110 | if (preg_match($version, $uaString)) { |
| 111 | 111 | preg_match($version, $uaString, $v); |
| 112 | 112 | $version = $v[0]; |
| 113 | - $version = preg_replace('/' . $vPattern . '/', '', $version); |
|
| 113 | + $version = preg_replace('/'.$vPattern.'/', '', $version); |
|
| 114 | 114 | $version = str_replace(';', '', $version); |
| 115 | 115 | $version = str_replace(' ', '', $version); |
| 116 | 116 | $version = str_replace('/', '', $version); |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | '10.0' => '10' |
| 153 | 153 | ); |
| 154 | 154 | |
| 155 | - if(array_key_exists(strval($version),$versions)) |
|
| 155 | + if (array_key_exists(strval($version), $versions)) |
|
| 156 | 156 | return $versions[strval($version)]; |
| 157 | 157 | else |
| 158 | 158 | return D_NA; |
@@ -165,14 +165,14 @@ discard block |
||
| 165 | 165 | private static function checkRules(DetectorResult $result) |
| 166 | 166 | { |
| 167 | 167 | $Rules = DetectorRule::loadRulesFromFile(); |
| 168 | - foreach($Rules as $rule) |
|
| 168 | + foreach ($Rules as $rule) |
|
| 169 | 169 | { |
| 170 | 170 | $objectType = $rule->getObjectType(); |
| 171 | 171 | $objectProperty = $rule->getObjectProperty(); |
| 172 | 172 | $targetType = $rule->getTargetType(); |
| 173 | 173 | $targetValue = $rule->isTargetValue(); |
| 174 | 174 | $func = 'get'.$objectProperty; |
| 175 | - if($result->$objectType !== null) |
|
| 175 | + if ($result->$objectType !== null) |
|
| 176 | 176 | { |
| 177 | 177 | if ($result->$objectType->$func() == $rule->getObjectPropertyValue()) { |
| 178 | 178 | $result->$targetType = $targetValue; |
@@ -183,4 +183,4 @@ discard block |
||
| 183 | 183 | return $result; |
| 184 | 184 | } |
| 185 | 185 | } |
| 186 | -define('D_NA','N\A'); |
|
| 186 | +define('D_NA', 'N\A'); |
|
@@ -58,8 +58,7 @@ discard block |
||
| 58 | 58 | { |
| 59 | 59 | $object->setVersion(self::getVersion($data, $ua)); |
| 60 | 60 | } |
| 61 | - } |
|
| 62 | - else |
|
| 61 | + } else |
|
| 63 | 62 | { |
| 64 | 63 | $object = $classname::initEmpty(); |
| 65 | 64 | } |
@@ -152,10 +151,11 @@ discard block |
||
| 152 | 151 | '10.0' => '10' |
| 153 | 152 | ); |
| 154 | 153 | |
| 155 | - if(array_key_exists(strval($version),$versions)) |
|
| 156 | - return $versions[strval($version)]; |
|
| 157 | - else |
|
| 158 | - return D_NA; |
|
| 154 | + if(array_key_exists(strval($version),$versions)) { |
|
| 155 | + return $versions[strval($version)]; |
|
| 156 | + } else { |
|
| 157 | + return D_NA; |
|
| 158 | + } |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | 161 | /** |