summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorcall-me-matt <nextcloud@matthiasheinisch.de>2020-10-15 11:30:18 +0200
committercall-me-matt <nextcloud@matthiasheinisch.de>2020-10-15 11:42:54 +0200
commit5e6f65a9f000aaea7ac28d07f2892f7107e87934 (patch)
treea241e3e675ff1ef6626a7d2d7b4fbda2a109c6e6 /lib
parent1dcbafc16cfc175ea68c32f604566172b0b48eba (diff)
adding diaspora to the list for social sync
Signed-off-by: call-me-matt <nextcloud@matthiasheinisch.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/Service/Social/CompositeSocialProvider.php4
-rw-r--r--lib/Service/Social/DiasporaProvider.php89
2 files changed, 92 insertions, 1 deletions
diff --git a/lib/Service/Social/CompositeSocialProvider.php b/lib/Service/Social/CompositeSocialProvider.php
index a5f6e484..bca9939d 100644
--- a/lib/Service/Social/CompositeSocialProvider.php
+++ b/lib/Service/Social/CompositeSocialProvider.php
@@ -35,7 +35,8 @@ class CompositeSocialProvider {
MastodonProvider $mastodonProvider,
FacebookProvider $facebookProvider,
TwitterProvider $twitterProvider,
- TumblrProvider $tumblrProvider) {
+ TumblrProvider $tumblrProvider,
+ DiasporaProvider $diasporaProvider) {
// This determines the priority of known providers
$this->providers = [
@@ -44,6 +45,7 @@ class CompositeSocialProvider {
'twitter' => $twitterProvider,
'facebook' => $facebookProvider,
'tumblr' => $tumblrProvider,
+ 'diaspora' => $diasporaProvider,
];
}
diff --git a/lib/Service/Social/DiasporaProvider.php b/lib/Service/Social/DiasporaProvider.php
new file mode 100644
index 00000000..73f85792
--- /dev/null
+++ b/lib/Service/Social/DiasporaProvider.php
@@ -0,0 +1,89 @@
+<?php
+/**
+ * @copyright Copyright (c) 2020 Matthias Heinisch <nextcloud@matthiasheinisch.de>
+ *
+ * @author Matthias Heinisch <nextcloud@matthiasheinisch.de>
+ *
+ * @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 OCA\Contacts\Service\Social;
+
+use OCP\Http\Client\IClientService;
+
+class DiasporaProvider implements ISocialProvider {
+
+ /** @var IClientService */
+ private $httpClient;
+
+ /** @var boolean */
+ private $looping;
+
+ public function __construct(IClientService $httpClient) {
+ $this->httpClient = $httpClient->NewClient();
+ $this->looping = false;
+ }
+
+ /**
+ * Returns the profile-id
+ *
+ * @param {string} the value from the contact's x-socialprofile
+ *
+ * @return string
+ */
+ public function cleanupId(string $candidate):string {
+ try {
+ if (strpos($candidate, 'http') !== 0) {
+ $user_server = explode('@', $candidate);
+ $candidate = 'https://' . array_pop($user_server) . '/public/' . array_pop($user_server) . '.atom';
+ }
+ } catch (Exception $e) {
+ $candidate = null;
+ }
+ return $candidate;
+ }
+
+ /**
+ * Returns the profile-picture url
+ *
+ * @param {string} profileId the profile-id
+ *
+ * @return string|null
+ */
+ public function getImageUrl(string $profileUrl):?string {
+ try {
+ $result = $this->httpClient->get($profileUrl);
+ $htmlResult = $result->getBody();
+
+ $avatar = '/.*<logo>(.*)<\/logo>.*/';
+ if (preg_match($avatar, $htmlResult, $matches)) {
+ return (str_replace("small", "large", $matches[1]));
+ }
+ // keyword not found, second try:
+ if (!$this->looping) {
+ $this->looping = true;
+ $atom = '/.*<link rel="alternate" href="(.*.atom)".*/';
+ if (preg_match($atom, $htmlResult, $matches)) {
+ return ($this->getImageUrl($matches[1]));
+ }
+ }
+ return null;
+ } catch (Exception $e) {
+ return null;
+ }
+ }
+}