aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCôme Chilliet <91878298+come-nc@users.noreply.github.com>2023-08-07 09:10:43 +0200
committerGitHub <noreply@github.com>2023-08-07 09:10:43 +0200
commitbfe42de8f878985c75c6f0bb868b905fe293d8da (patch)
treee52c4d55a622533f171c2079e8e125f8bd147cfe
parent97ad1fbd96086bb57bf89bd5e40bfabe25d699fd (diff)
parent9d15e6e21da653beab4837bfd439ff2a13bf749c (diff)
downloadnextcloud-server-bfe42de8f878985c75c6f0bb868b905fe293d8da.tar.gz
nextcloud-server-bfe42de8f878985c75c6f0bb868b905fe293d8da.zip
Merge pull request #38604 from fsamapoor/replace_strpos_calls_in_workflowengine_app
Refactors "strpos" calls in /apps/workflowengine
-rw-r--r--apps/workflowengine/lib/Check/FileMimeType.php8
-rw-r--r--apps/workflowengine/lib/Check/RequestURL.php4
-rw-r--r--apps/workflowengine/tests/Check/FileMimeTypeTest.php4
3 files changed, 8 insertions, 8 deletions
diff --git a/apps/workflowengine/lib/Check/FileMimeType.php b/apps/workflowengine/lib/Check/FileMimeType.php
index dfcfed9466b..a167baa47a3 100644
--- a/apps/workflowengine/lib/Check/FileMimeType.php
+++ b/apps/workflowengine/lib/Check/FileMimeType.php
@@ -151,11 +151,11 @@ class FileMimeType extends AbstractStringCheck implements IFileCheck {
protected function isWebDAVRequest() {
return substr($this->request->getScriptName(), 0 - strlen('/remote.php')) === '/remote.php' && (
$this->request->getPathInfo() === '/webdav' ||
- strpos($this->request->getPathInfo(), '/webdav/') === 0 ||
+ str_starts_with($this->request->getPathInfo() ?? '', '/webdav/') ||
$this->request->getPathInfo() === '/dav/files' ||
- strpos($this->request->getPathInfo(), '/dav/files/') === 0 ||
+ str_starts_with($this->request->getPathInfo() ?? '', '/dav/files/') ||
$this->request->getPathInfo() === '/dav/uploads' ||
- strpos($this->request->getPathInfo(), '/dav/uploads/') === 0
+ str_starts_with($this->request->getPathInfo() ?? '', '/dav/uploads/')
);
}
@@ -165,7 +165,7 @@ class FileMimeType extends AbstractStringCheck implements IFileCheck {
protected function isPublicWebDAVRequest() {
return substr($this->request->getScriptName(), 0 - strlen('/public.php')) === '/public.php' && (
$this->request->getPathInfo() === '/webdav' ||
- strpos($this->request->getPathInfo(), '/webdav/') === 0
+ str_starts_with($this->request->getPathInfo() ?? '', '/webdav/')
);
}
diff --git a/apps/workflowengine/lib/Check/RequestURL.php b/apps/workflowengine/lib/Check/RequestURL.php
index 73e6a2e6ce6..deff68826f2 100644
--- a/apps/workflowengine/lib/Check/RequestURL.php
+++ b/apps/workflowengine/lib/Check/RequestURL.php
@@ -90,9 +90,9 @@ class RequestURL extends AbstractStringCheck {
}
return substr($this->request->getScriptName(), 0 - strlen('/remote.php')) === '/remote.php' && (
$this->request->getPathInfo() === '/webdav' ||
- strpos($this->request->getPathInfo(), '/webdav/') === 0 ||
+ str_starts_with($this->request->getPathInfo() ?? '', '/webdav/') ||
$this->request->getPathInfo() === '/dav/files' ||
- strpos($this->request->getPathInfo(), '/dav/files/') === 0
+ str_starts_with($this->request->getPathInfo() ?? '', '/dav/files/')
);
}
}
diff --git a/apps/workflowengine/tests/Check/FileMimeTypeTest.php b/apps/workflowengine/tests/Check/FileMimeTypeTest.php
index e5a4c99269f..08dd9f26258 100644
--- a/apps/workflowengine/tests/Check/FileMimeTypeTest.php
+++ b/apps/workflowengine/tests/Check/FileMimeTypeTest.php
@@ -68,7 +68,7 @@ class FileMimeTypeTest extends TestCase {
$this->mimeDetector->method('detectPath')
->willReturnCallback(function ($path) {
foreach ($this->extensions as $extension => $mime) {
- if (strpos($path, $extension) !== false) {
+ if (str_contains($path, $extension)) {
return $mime;
}
}
@@ -78,7 +78,7 @@ class FileMimeTypeTest extends TestCase {
->willReturnCallback(function ($path) {
$body = file_get_contents($path);
foreach ($this->content as $match => $mime) {
- if (strpos($body, $match) !== false) {
+ if (str_contains($body, $match)) {
return $mime;
}
}