Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMatthias Held <ilovemilk@wusa.io>2018-09-14 21:37:43 +0300
committerMatthias Held <ilovemilk@wusa.io>2018-09-14 21:37:43 +0300
commit0a3747e6f5a18dbfc60c2984df33be2991230b4e (patch)
tree438fd635c8ebc55ae982f6975f3d5816c7fec300 /lib
parentd13f6eb2292046408b7f60f8b94d483a3be1733e (diff)
Fix visibility and unused code
Signed-off-by: Matthias Held <matthias.held@uni-konstanz.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/Monitor.php66
1 files changed, 33 insertions, 33 deletions
diff --git a/lib/Monitor.php b/lib/Monitor.php
index 5bb70de..9c658b9 100644
--- a/lib/Monitor.php
+++ b/lib/Monitor.php
@@ -279,6 +279,39 @@ class Monitor
}
/**
+ * Check if we are in the LoginController and if so, ignore the firewall.
+ *
+ * @return bool
+ */
+ protected function isCreatingSkeletonFiles()
+ {
+ $exception = new \Exception();
+ $trace = $exception->getTrace();
+ foreach ($trace as $step) {
+ if (isset($step['class'], $step['function']) &&
+ $step['class'] === 'OC\Core\Controller\LoginController' &&
+ $step['function'] === 'tryLogin') {
+ return true;
+ }
+ }
+
+ return false;
+ }
+
+ /**
+ * Reset PROPFIND_COUNT.
+ */
+ protected function resetProfindCount()
+ {
+ $userKeys = $this->config->getUserKeys($this->userId, Application::APP_ID);
+ foreach ($userKeys as $key) {
+ if (strpos($key, 'propfind_count') !== false) {
+ $this->config->deleteUserValue($this->userId, Application::APP_ID, $key);
+ }
+ }
+ }
+
+ /**
* Return file size of a path.
*
* @param string $path
@@ -343,39 +376,6 @@ class Monitor
}
/**
- * Check if we are in the LoginController and if so, ignore the firewall.
- *
- * @return bool
- */
- protected function isCreatingSkeletonFiles()
- {
- $exception = new \Exception();
- $trace = $exception->getTrace();
- foreach ($trace as $step) {
- if (isset($step['class'], $step['function']) &&
- $step['class'] === 'OC\Core\Controller\LoginController' &&
- $step['function'] === 'tryLogin') {
- return true;
- }
- }
-
- return false;
- }
-
- /**
- * Reset PROPFIND_COUNT.
- */
- protected function resetProfindCount()
- {
- $userKeys = $this->config->getUserKeys($this->userId, Application::APP_ID);
- foreach ($userKeys as $key) {
- if (strpos($key, 'propfind_count') !== false) {
- $this->config->deleteUserValue($this->userId, Application::APP_ID, $key);
- }
- }
- }
-
- /**
* Add a folder to the operations.
*
* @param array $paths