aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2024-05-30 17:52:14 +0200
committerGitHub <noreply@github.com>2024-05-30 17:52:14 +0200
commit4d9199fb8879482e5c7615a57daed24dd0d761f6 (patch)
treee9d52bd178cc85ad02aa3e4f9e3866789e66d330 /lib/private
parent0963336fb1565fe8b7c496fccda5c74c06f863a5 (diff)
parentbe4e97d1dc309826a970700862f1e066231922c7 (diff)
downloadnextcloud-server-4d9199fb8879482e5c7615a57daed24dd0d761f6.tar.gz
nextcloud-server-4d9199fb8879482e5c7615a57daed24dd0d761f6.zip
Merge branch 'master' into refactor/OC-Server-getL10NFactory
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
Diffstat (limited to 'lib/private')
-rw-r--r--lib/private/Files/Storage/DAV.php2
-rw-r--r--lib/private/Mail/Mailer.php2
-rw-r--r--lib/private/Share20/ProviderFactory.php8
-rw-r--r--lib/private/legacy/OC_Util.php5
4 files changed, 10 insertions, 7 deletions
diff --git a/lib/private/Files/Storage/DAV.php b/lib/private/Files/Storage/DAV.php
index 50e0dd5271a..63ef1399a69 100644
--- a/lib/private/Files/Storage/DAV.php
+++ b/lib/private/Files/Storage/DAV.php
@@ -86,7 +86,7 @@ class DAV extends Common {
*/
public function __construct($params) {
$this->statCache = new ArrayCache();
- $this->httpClientService = \OC::$server->getHTTPClientService();
+ $this->httpClientService = \OC::$server->get(IClientService::class);
if (isset($params['host']) && isset($params['user']) && isset($params['password'])) {
$host = $params['host'];
//remove leading http[s], will be generated in createBaseUri()
diff --git a/lib/private/Mail/Mailer.php b/lib/private/Mail/Mailer.php
index c4e89df7304..041ab8b0ff7 100644
--- a/lib/private/Mail/Mailer.php
+++ b/lib/private/Mail/Mailer.php
@@ -38,7 +38,7 @@ use Symfony\Component\Mime\Exception\RfcComplianceException;
*
* Example usage:
*
- * $mailer = \OC::$server->getMailer();
+ * $mailer = \OC::$server->get(\OCP\Mail\IMailer::class);
* $message = $mailer->createMessage();
* $message->setSubject('Your Subject');
* $message->setFrom(array('cloud@domain.org' => 'ownCloud Notifier'));
diff --git a/lib/private/Share20/ProviderFactory.php b/lib/private/Share20/ProviderFactory.php
index 99af6da04a6..fde63a4c394 100644
--- a/lib/private/Share20/ProviderFactory.php
+++ b/lib/private/Share20/ProviderFactory.php
@@ -20,8 +20,10 @@ use OCP\Defaults;
use OCP\EventDispatcher\IEventDispatcher;
use OCP\Federation\ICloudFederationFactory;
use OCP\Files\IRootFolder;
+use OCP\Http\Client\IClientService;
use OCP\IServerContainer;
use OCP\L10N\IFactory;
+use OCP\Mail\IMailer;
use OCP\Security\IHasher;
use OCP\Share\IManager;
use OCP\Share\IProviderFactory;
@@ -79,7 +81,7 @@ class ProviderFactory implements IProviderFactory {
$this->serverContainer->getUserManager(),
$this->serverContainer->getGroupManager(),
$this->serverContainer->get(IRootFolder::class),
- $this->serverContainer->getMailer(),
+ $this->serverContainer->get(IMailer::class),
$this->serverContainer->query(Defaults::class),
$this->serverContainer->get(IFactory::class),
$this->serverContainer->getURLGenerator(),
@@ -116,7 +118,7 @@ class ProviderFactory implements IProviderFactory {
);
$notifications = new Notifications(
$addressHandler,
- $this->serverContainer->getHTTPClientService(),
+ $this->serverContainer->get(IClientService::class),
$this->serverContainer->query(\OCP\OCS\IDiscoveryService::class),
$this->serverContainer->getJobList(),
\OC::$server->getCloudFederationProviderManager(),
@@ -172,7 +174,7 @@ class ProviderFactory implements IProviderFactory {
$this->serverContainer->get(IRootFolder::class),
$this->serverContainer->getL10N('sharebymail'),
$this->serverContainer->get(LoggerInterface::class),
- $this->serverContainer->getMailer(),
+ $this->serverContainer->get(IMailer::class),
$this->serverContainer->getURLGenerator(),
$this->serverContainer->getActivityManager(),
$settingsManager,
diff --git a/lib/private/legacy/OC_Util.php b/lib/private/legacy/OC_Util.php
index 2c7390881c0..14918dfe89a 100644
--- a/lib/private/legacy/OC_Util.php
+++ b/lib/private/legacy/OC_Util.php
@@ -9,6 +9,7 @@ use bantu\IniGetWrapper\IniGetWrapper;
use OC\Authentication\TwoFactorAuth\Manager as TwoFactorAuthManager;
use OC\Files\SetupManager;
use OCP\Files\Template\ITemplateManager;
+use OCP\Http\Client\IClientService;
use OCP\IConfig;
use OCP\IGroupManager;
use OCP\IURLGenerator;
@@ -878,7 +879,7 @@ class OC_Util {
// accessing the file via http
$url = \OC::$server->getURLGenerator()->getAbsoluteURL(OC::$WEBROOT . '/data' . $fileName);
try {
- $content = \OC::$server->getHTTPClientService()->newClient()->get($url)->getBody();
+ $content = \OC::$server->get(IClientService::class)->newClient()->get($url)->getBody();
} catch (\Exception $e) {
$content = false;
}
@@ -890,7 +891,7 @@ class OC_Util {
}
try {
- $fallbackContent = \OC::$server->getHTTPClientService()->newClient()->get($url)->getBody();
+ $fallbackContent = \OC::$server->get(IClientService::class)->newClient()->get($url)->getBody();
} catch (\Exception $e) {
$fallbackContent = false;
}