Completed
Pull Request — master (#196)
by Victor
32:09 queued 22:04
created

AvirWrapper::isScannableSize()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 6
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 9.4285
c 0
b 0
f 0
cc 3
eloc 4
nc 3
nop 0
1
<?php
2
/**
3
 * Copyright (c) 2014 Viktar Dubiniuk <[email protected]>
4
 * This file is licensed under the Affero General Public License version 3 or
5
 * later.
6
 * See the COPYING-README file.
7
 */
8
9
namespace OCA\Files_Antivirus;
10
11
use OC\Files\Filesystem;
12
use OC\Files\Storage\Wrapper\Wrapper;
13
use \OCP\App;
14
use \OCP\IL10N;
15
use \OCP\ILogger;
16
use \OCP\Files\InvalidContentException;
17
use Icewind\Streams\CallbackWrapper;
18
19
20
class AvirWrapper extends Wrapper{
21
	
22
	/**
23
	 * Modes that are used for writing 
24
	 * @var array 
25
	 */
26
	private $writingModes = array('r+', 'w', 'w+', 'a', 'a+', 'x', 'x+', 'c', 'c+');
27
28
	/**
29
	 * @var AppConfig
30
	 */
31
	protected $appConfig;
32
33
	/**
34
	 * @var \OCA\Files_Antivirus\ScannerFactory
35
	 */
36
	protected $scannerFactory;
37
	
38
	/**
39
	 * @var IL10N 
40
	 */
41
	protected $l10n;
42
	
43
	/**
44
	 * @var ILogger;
45
	 */
46
	protected $logger;
47
48
	/** @var  RequestHelper */
49
	protected $requestHelper;
50
51 3
	/**
52 3
	 * @param array $parameters
53 3
	 */
54 3
	public function __construct($parameters) {
55 3
		parent::__construct($parameters);
56 3
		$this->appConfig = $parameters['appConfig'];
57 3
		$this->scannerFactory = $parameters['scannerFactory'];
58
		$this->l10n = $parameters['l10n'];
59
		$this->logger = $parameters['logger'];
60
		$this->requestHelper = $parameters['requestHelper'];
61
	}
62
	
63
	/**
64
	 * Asynchronously scan data that are written to the file
65 4
	 * @param string $path
66 4
	 * @param string $mode
67 4
	 * @return resource | bool
68 4
	 */
69 4
	public function fopen($path, $mode){
70 4
		$stream = $this->storage->fopen($path, $mode);
71
72
		if (is_resource($stream)
73 2
			&& $this->isWritingMode($mode)
74 2
			&& $this->isScannableSize()
75 2
			&& strpos($path, 'uploads/') !== 0
76 2
		) {
77 2
			try {
78
				$scanner = $this->scannerFactory->getScanner();
79 2
				$scanner->initScanner();
80 2
				return CallBackWrapper::wrap(
81 2
					$stream,
82 2
					null,
83 2
					function ($data) use ($scanner){
84
						$scanner->onAsyncData($data);
85 2
					}, 
86 2
					function () use ($scanner, $path) {
87 2
						$status = $scanner->completeAsyncScan();
88
						if (intval($status->getNumericStatus()) === \OCA\Files_Antivirus\Status::SCANRESULT_INFECTED){
89
							//prevent from going to trashbin
90
							if (App::isEnabled('files_trashbin')) {
91
								\OCA\Files_Trashbin\Storage::preRenameHook([
92 2
									Filesystem::signal_param_oldpath => '',
93 2
									Filesystem::signal_param_newpath => ''
94
								]);
95 2
							}
96 2
							
97
							$owner = $this->getOwner($path);
98 2
							$this->unlink($path);
99 2
100 2
							if (App::isEnabled('files_trashbin')) {
101 2
								\OCA\Files_Trashbin\Storage::postRenameHook([]);
102
							}
103
							$this->logger->warning(
104 2
								'Infected file deleted. ' . $status->getDetails()
105 2
								. ' Account: ' . $owner . ' Path: ' . $path,
106 2
								['app' => 'files_antivirus']
107 2
							);
108 2
109 2
							\OC::$server->getActivityManager()->publishActivity(
110 2
								'files_antivirus',
111 2
								Activity::SUBJECT_VIRUS_DETECTED,
112 2
								[$path, $status->getDetails()],
113 2
								Activity::MESSAGE_FILE_DELETED,
114 2
								[],
115
								$path,
116
								'',
117 2
								$owner,
118 2
								Activity::TYPE_VIRUS_DETECTED,
119 2
								Activity::PRIORITY_HIGH
120 2
							);
121
											
122
							throw new InvalidContentException(
123
								$this->l10n->t(
124 2
									'Virus %s is detected in the file. Upload cannot be completed.',
125
									$status->getDetails()
126 2
								)
127 2
							);
128 2
						}
129
					}
130
				);
131 4
			} catch (\Exception $e){
132
				$message = 	implode(' ', [ __CLASS__, __METHOD__, $e->getMessage()]);
133
				$this->logger->warning($message);
134
			}
135
		}
136
		return $stream;
137
	}
138
	
139 4
	/**
140
	 * Checks whether passed mode is suitable for writing 
141 4
	 * @param string $mode
142 4
	 * @return bool
143 4
	 */
144 4
	private function isWritingMode($mode){
145
		// Strip unessential binary/text flags
146 4
		$cleanMode = str_replace(
147
			['t', 'b'],
148
			['', ''],
149
			$mode
150
		);
151
		return in_array($cleanMode, $this->writingModes);
152
	}
153
154 3
	/**
155 3
	 * checks the size for webdav PUT requests. defaults to true
156 3
	 * @return bool
157
	 */
158
	private function isScannableSize() {
159 3
		$scanSizeLimit = intval($this->appConfig->getAvMaxFileSize());
160
		$size = $this->requestHelper->getUploadSize();
161
162
		return $scanSizeLimit === -1 || $size === null || $scanSizeLimit >= $size;
163 3
	}
164
}
165