1 | <?php |
||
25 | 4 | class RequestHelper { |
|
26 | 4 | /** |
|
27 | 4 | * @var IRequest |
|
28 | */ |
||
29 | private $request; |
||
30 | |||
31 | /** |
||
32 | * @var CappedMemoryCache |
||
33 | */ |
||
34 | private static $fileSizeCache; |
||
35 | |||
36 | /** |
||
37 | 3 | * RequestHelper constructor. |
|
38 | 3 | * |
|
39 | * @param IRequest $request |
||
40 | 3 | */ |
|
41 | 3 | public function __construct(IRequest $request) { |
|
42 | 3 | $this->request = $request; |
|
43 | } |
||
44 | 3 | ||
45 | /** |
||
46 | 1 | * @return CappedMemoryCache |
|
47 | 1 | */ |
|
48 | public function getCache() { |
||
49 | if (self::$fileSizeCache === null) { |
||
50 | self::$fileSizeCache = new CappedMemoryCache(); |
||
51 | } |
||
52 | return self::$fileSizeCache; |
||
53 | } |
||
54 | |||
55 | /** |
||
56 | * @param string $path |
||
57 | * @param string $size |
||
58 | * |
||
59 | 2 | * @return void |
|
60 | 1 | */ |
|
61 | public function setSizeForPath($path, $size) { |
||
64 | |||
65 | /** |
||
66 | * Get current upload size |
||
67 | * returns null for chunks and when there is no upload |
||
68 | * |
||
69 | * @param Storage $storage |
||
70 | * @param string $path |
||
71 | * |
||
72 | 3 | * @return int|null |
|
73 | 3 | */ |
|
74 | 3 | public function getUploadSize(Storage $storage, $path) { |
|
75 | $requestMethod = $this->request->getMethod(); |
||
76 | |||
77 | // Handle MOVE first |
||
78 | // the size is cached by the app dav plugin in this case |
||
79 | if ($requestMethod === 'MOVE') { |
||
80 | // remove .ocTransferId444531916.part from part files |
||
81 | $cleanedPath = \preg_replace( |
||
82 | '|\.ocTransferId\d+\.part$|', |
||
83 | '', |
||
84 | $path |
||
85 | ); |
||
86 | // cache uses dav path in /files/$user/path format |
||
87 | $translatedPath = \preg_replace( |
||
88 | '|^files/|', |
||
89 | 'files/' . $storage->getOwner('/') . '/', |
||
90 | $cleanedPath |
||
91 | ); |
||
92 | $cachedSize = $this->getCache()->get($translatedPath); |
||
93 | if ($cachedSize > 0) { |
||
94 | return $cachedSize; |
||
95 | } |
||
96 | } |
||
97 | |||
98 | // Are we uploading anything? |
||
99 | if ($requestMethod !== 'PUT') { |
||
100 | return null; |
||
101 | } |
||
102 | $isRemoteScript = $this->isScriptName('remote.php'); |
||
103 | $isPublicScript = $this->isScriptName('public.php'); |
||
104 | if (!$isRemoteScript && !$isPublicScript) { |
||
105 | return null; |
||
106 | } |
||
107 | |||
108 | if ($isRemoteScript) { |
||
109 | // v1 && v2 Chunks are not scanned |
||
110 | if (\strpos($path, 'uploads/') === 0) { |
||
111 | return null; |
||
112 | } |
||
113 | |||
114 | if (\OC_FileChunking::isWebdavChunk() |
||
115 | && \strpos($path, 'cache/') === 0 |
||
116 | ) { |
||
117 | return null; |
||
118 | } |
||
119 | } |
||
120 | $uploadSize = (int)$this->request->getHeader('CONTENT_LENGTH'); |
||
121 | |||
122 | return $uploadSize; |
||
123 | } |
||
124 | |||
125 | /** |
||
126 | * |
||
127 | * @param string $string |
||
128 | * |
||
129 | * @return bool |
||
130 | */ |
||
131 | public function isScriptName($string) { |
||
135 | } |
||
136 |