Skip to content
Snippets Groups Projects
Unverified Commit 8bed3021 authored by Daniel Kesselberg's avatar Daniel Kesselberg
Browse files

Exclude .rnd files from integrity check

parent 5b604eae
No related branches found
No related tags found
No related merge requests found
...@@ -43,6 +43,7 @@ class ExcludeFileByNameFilterIterator extends \RecursiveFilterIterator { ...@@ -43,6 +43,7 @@ class ExcludeFileByNameFilterIterator extends \RecursiveFilterIterator {
'Thumbs.db', // Microsoft Windows 'Thumbs.db', // Microsoft Windows
'.directory', // Dolphin (KDE) '.directory', // Dolphin (KDE)
'.webapp', // Gentoo/Funtoo & derivatives use a tool known as webapp-config to manage web-apps. '.webapp', // Gentoo/Funtoo & derivatives use a tool known as webapp-config to manage web-apps.
'.rnd',
]; ];
/** /**
...@@ -54,7 +55,7 @@ class ExcludeFileByNameFilterIterator extends \RecursiveFilterIterator { ...@@ -54,7 +55,7 @@ class ExcludeFileByNameFilterIterator extends \RecursiveFilterIterator {
*/ */
private $excludedFilenamePatterns = [ private $excludedFilenamePatterns = [
'/^\.webapp-nextcloud-(\d+\.){2}(\d+)(-r\d+)?$/', // Gentoo/Funtoo & derivatives use a tool known as webapp-config to manage wep-apps. '/^\.webapp-nextcloud-(\d+\.){2}(\d+)(-r\d+)?$/', // Gentoo/Funtoo & derivatives use a tool known as webapp-config to manage wep-apps.
]; ];
/** /**
* @return bool * @return bool
...@@ -68,12 +69,12 @@ class ExcludeFileByNameFilterIterator extends \RecursiveFilterIterator { ...@@ -68,12 +69,12 @@ class ExcludeFileByNameFilterIterator extends \RecursiveFilterIterator {
} }
$currentFileName = $current->getFilename(); $currentFileName = $current->getFilename();
if (in_array($currentFileName, $this->excludedFilenames, true)){ if (in_array($currentFileName, $this->excludedFilenames, true)) {
return false; return false;
} }
foreach ($this->excludedFilenamePatterns as $pattern){ foreach ($this->excludedFilenamePatterns as $pattern) {
if (preg_match($pattern, $currentFileName) > 0){ if (preg_match($pattern, $currentFileName) > 0) {
return false; return false;
} }
} }
......
...@@ -45,6 +45,7 @@ class ExcludeFileByNameFilterIteratorTest extends TestCase { ...@@ -45,6 +45,7 @@ class ExcludeFileByNameFilterIteratorTest extends TestCase {
['.webapp-nextcloud-15.0.2', false], ['.webapp-nextcloud-15.0.2', false],
['.webapp-nextcloud-14.0.5-r3', false], ['.webapp-nextcloud-14.0.5-r3', false],
['wx.webapp-nextcloud-obee', true], ['wx.webapp-nextcloud-obee', true],
['.rnd', false],
]; ];
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment