summaryrefslogtreecommitdiffstats
path: root/lib/private/Remote/InstanceFactory.php
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2017-10-04 16:21:50 +0200
committerMorris Jobke <hey@morrisjobke.de>2017-12-08 16:37:14 +0100
commit5133a31d3c713e3e3c562e6fcd131ed2738d8798 (patch)
tree7bb2499876e7a75caa8e4921de46d528b97ee062 /lib/private/Remote/InstanceFactory.php
parent74b5ce8fd4311f0d6f6a59e0636d343807b79d74 (diff)
downloadnextcloud-server-5133a31d3c713e3e3c562e6fcd131ed2738d8798.tar.gz
nextcloud-server-5133a31d3c713e3e3c562e6fcd131ed2738d8798.zip
Add public api for remote api
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'lib/private/Remote/InstanceFactory.php')
-rw-r--r--lib/private/Remote/InstanceFactory.php41
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/private/Remote/InstanceFactory.php b/lib/private/Remote/InstanceFactory.php
new file mode 100644
index 00000000000..3b99bc61825
--- /dev/null
+++ b/lib/private/Remote/InstanceFactory.php
@@ -0,0 +1,41 @@
+<?php
+/**
+ * @copyright Copyright (c) 2017 Robin Appelman <robin@icewind.nl>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace OC\Remote;
+
+
+use OCP\Http\Client\IClientService;
+use OCP\ICache;
+use OCP\Remote\IInstanceFactory;
+
+class InstanceFactory implements IInstanceFactory {
+ private $cache;
+ private $clientService;
+
+ public function __construct(ICache $cache, IClientService $clientService) {
+ $this->cache = $cache;
+ $this->clientService = $clientService;
+ }
+
+ public function getInstance($url) {
+ return new Instance($url, $this->cache, $this->clientService);
+ }
+}