1 | <?php |
||
11 | class Status { |
||
12 | |||
13 | /* |
||
14 | * The file was not checked (e.g. because the AV daemon wasn't running). |
||
15 | */ |
||
16 | const SCANRESULT_UNCHECKED = -1; |
||
17 | |||
18 | /* |
||
19 | * The file was checked and found to be clean. |
||
20 | */ |
||
21 | const SCANRESULT_CLEAN = 0; |
||
22 | |||
23 | /* |
||
24 | * The file was checked and found to be infected. |
||
25 | */ |
||
26 | const SCANRESULT_INFECTED = 1; |
||
27 | |||
28 | /* |
||
29 | * Should be SCANRESULT_UNCHECKED | SCANRESULT_INFECTED | SCANRESULT_CLEAN |
||
30 | */ |
||
31 | protected $numericStatus; |
||
32 | |||
33 | /* |
||
34 | * Virus name or error message |
||
35 | */ |
||
36 | protected $details = ""; |
||
37 | |||
38 | protected $ruleMapper; |
||
39 | |||
40 | public function __construct(){ |
||
44 | |||
45 | /** |
||
46 | * Get scan status as integer |
||
47 | * @return int |
||
48 | */ |
||
49 | public function getNumericStatus(){ |
||
50 | return $this->numericStatus; |
||
51 | } |
||
52 | |||
53 | /** |
||
54 | * Get scan status as string |
||
55 | * @return string |
||
56 | */ |
||
57 | public function getDetails(){ |
||
60 | |||
61 | /** |
||
62 | * @param string $rawResponse |
||
63 | * @param integer $result |
||
64 | */ |
||
65 | public function parseResponse($rawResponse, $result = null){ |
||
66 | $matches = array(); |
||
67 | $ruleMapper = new Db\RuleMapper(\OC::$server->getDb()); |
||
68 | if (is_null($result)){ // Daemon or socket mode |
||
69 | try{ |
||
70 | $allRules = $this->getResponseRules(); |
||
71 | } catch (\Exception $e){ |
||
72 | \OCP\Util::writeLog('files_antivirus', __METHOD__.', exception: '.$e->getMessage(), \OCP\Util::ERROR); |
||
73 | return; |
||
74 | } |
||
75 | |||
76 | $isMatched = false; |
||
77 | foreach ($allRules as $rule){ |
||
78 | if (preg_match($rule->getMatch(), $rawResponse, $matches)){ |
||
79 | $isMatched = true; |
||
80 | $this->numericStatus = $rule->getStatus(); |
||
81 | if (intval($rule->getStatus())===self::SCANRESULT_CLEAN){ |
||
82 | $this->details = ''; |
||
83 | } else { |
||
84 | $this->details = isset($matches[1]) ? $matches[1] : 'unknown'; |
||
85 | } |
||
86 | break; |
||
87 | } |
||
88 | } |
||
89 | |||
90 | if (!$isMatched){ |
||
91 | $this->numericStatus = self::SCANRESULT_UNCHECKED; |
||
92 | $this->details = 'No matching rules. Please check antivirus rules.'; |
||
93 | } |
||
94 | |||
95 | } else { // Executable mode |
||
96 | $scanStatus = $ruleMapper->findByResult($result); |
||
97 | if (is_array($scanStatus) && count($scanStatus)){ |
||
98 | $this->numericStatus = $scanStatus[0]->getStatus(); |
||
99 | $this->details = $scanStatus[0]->getDescription(); |
||
100 | } |
||
101 | |||
102 | switch($this->numericStatus) { |
||
103 | case self::SCANRESULT_INFECTED: |
||
104 | $report = array(); |
||
105 | $rawResponse = explode("\n", $rawResponse); |
||
106 | |||
107 | foreach ($rawResponse as $line){ |
||
108 | if (preg_match('/.*: (.*) FOUND\s*$/', $line, $matches)) { |
||
109 | $report[] = $matches[1]; |
||
110 | } |
||
111 | } |
||
112 | $this->details = implode(', ', $report); |
||
113 | |||
114 | break; |
||
115 | case self::SCANRESULT_UNCHECKED: |
||
116 | if (!$this->details) { |
||
117 | $this->details = 'No matching rule for exit code ' . $this->numericStatus .'. Please check antivirus rules configuration.' ; |
||
118 | } |
||
119 | } |
||
120 | } |
||
121 | } |
||
122 | |||
123 | protected function getResponseRules(){ |
||
136 | |||
137 | public function dispatch($item, $isBackground = false){ |
||
150 | } |
||
151 |