summaryrefslogtreecommitdiffstats
path: root/lib/Service/FollowService.php
blob: ee295e4548889e3295e19fdc0d4326d4ed56b1df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
<?php

declare(strict_types=1);


/**
 * Nextcloud - Social Support
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Maxence Lange <maxence@artificial-owl.com>
 * @copyright 2018, Maxence Lange <maxence@artificial-owl.com>
 * @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\Social\Service;

use ActivityPhp\Type;
use OCA\Social\AP;
use OCA\Social\Entity\Account;
use OCA\Social\Entity\Follow;
use OCA\Social\Entity\FollowRequest;
use OCA\Social\Service\Feed\FeedManager;
use OCP\DB\ORM\IEntityManager;
use OCP\DB\ORM\IEntityRepository;

class FollowOption {
	/**
	 * Show reblog of the account
	 */
	public bool $showReblogs = true;

	/**
	 * Notify about new posts
	 */
	public bool $notify = false;

	static public function default(): self {
		return new FollowOption();
	}
}

class FollowService {
	private IEntityManager $entityManager;
	/** @var IEntityRepository<Follow> $followRepository */
	private IEntityRepository $followRepository;
	/** @var IEntityRepository<FollowRequest> $followRepository */
	private IEntityRepository $followRequestRepository;
	private FeedManager $feedManager;

	public function __construct(IEntityManager $entityManager, FeedManager $feedManager) {
		$this->entityManager = $entityManager;
		$this->followRepository = $entityManager->getRepository(Follow::class);
		$this->followRepository = $entityManager->getRepository(FollowRequest::class);
		$this->feedManager = $feedManager;
	}

	public function follow(Account $sourceAccount, Account $targetAccount, FollowOption $option): void {
		if ($sourceAccount->following($targetAccount)) {
			$this->updateFollow($sourceAccount, $targetAccount, $option->notify, $option->showReblogs);
			return;
		} elseif ($sourceAccount->followRequested($targetAccount)) {
			$this->updateFollowRequest($sourceAccount, $targetAccount, $option->notify, $option->showReblogs);
			return;
		}

		if ($targetAccount->isLocked() || !$targetAccount->isLocal()) {
			$this->requestFollow($sourceAccount, $targetAccount);
		} else {
			$this->directFollow($sourceAccount, $targetAccount);
		}
	}

	private function updateFollow(Account $sourceAccount, Account $targetAccount, bool $notify, bool $showReblogs): void {
		/** @var Follow $follow */
		$follow = $this->followRepository->findOneBy([
			'account' => $sourceAccount,
			'targetAccount' => $targetAccount,
		]);
		assert($follow);

		$follow->setNotify($notify);
		$follow->setShowReblogs($showReblogs);
		$this->entityManager->persist($follow);
		$this->entityManager->flush();
	}

	private function updateFollowRequest(Account $sourceAccount, Account $targetAccount, bool $notify, bool $showReblogs): void {
		/** @var Follow $follow */
		$followRequest = $this->followRequestRepository->findOneBy([
			'account' => $sourceAccount,
			'targetAccount' => $targetAccount,
		]);
		assert($followRequest);

		$followRequest->setNotify($notify);
		$followRequest->setShowReblogs($showReblogs);
		$this->entityManager->persist($followRequest);
		$this->entityManager->flush();
	}

	private function directFollow(Account $sourceAccount, Account $targetAccount): Follow {
		$follow = $sourceAccount->follow($targetAccount);
		$this->entityManager->persist($sourceAccount);

		// TODO Notify target account they got a new follower

		$this->feedManager->mergeIntoHome($targetAccount, $sourceAccount);

		return $follow;
	}

	private function requestFollow(Account $sourceAccount, Account $targetAccount) {
		if ($targetAccount->isLocal()) {
			// Just create an internal follow request

		} else {
			$this->createRemoteFollowRequest($sourceAccount, $targetAccount);
		}
	}

	private function createRemoteFollowRequest(Account $sourceAccount, Account $targetAccount): void {
		/** @var Type\Extended\Activity\Follow $follow */
		$follow = Type::create('Follow', [
			'@context' => 'https://www.w3.org/ns/activitystreams',
			'actor' => $sourceAccount->getUri(),
			'object' => $targetAccount->getUri(),
		]);
	}

	/**
	 * @param Person $actor
	 * @param string $account
	 *
	 * @throws CacheActorDoesNotExistException
	 * @throws FollowSameAccountException
	 * @throws InvalidOriginException
	 * @throws InvalidResourceException
	 * @throws MalformedArrayException
	 * @throws RedundancyLimitException
	 * @throws RetrieveAccountFormatException
	 * @throws SocialAppConfigException
	 * @throws ItemUnknownException
	 * @throws UrlCloudException
	 * @throws RequestContentException
	 * @throws RequestNetworkException
	 * @throws RequestResultSizeException
	 * @throws RequestServerException
	 * @throws RequestResultNotJsonException
	 * @throws UnauthorizedFediverseException
	 */
	public function followAccount(Person $actor, string $account) {
		$remoteActor = $this->cacheActorService->getFromAccount($account);
		if ($remoteActor->getId() === $actor->getId()) {
			throw new FollowSameAccountException("Don't follow yourself, be your own lead");
		}


		try {
			$this->followsRequest->getByPersons($actor->getId(), $remoteActor->getId());
		} catch (FollowNotFoundException $e) {
			$this->followsRequest->save($follow);

			$follow->addInstancePath(
				new InstancePath(
					$remoteActor->getInbox(), InstancePath::TYPE_INBOX, InstancePath::PRIORITY_TOP
				)
			);
			$this->activityService->request($follow);
		}
	}


	/**
	 * @param Person $actor
	 * @param string $account
	 *
	 * @throws CacheActorDoesNotExistException
	 * @throws InvalidOriginException
	 * @throws InvalidResourceException
	 * @throws MalformedArrayException
	 * @throws RedundancyLimitException
	 * @throws RequestContentException
	 * @throws RetrieveAccountFormatException
	 * @throws RequestNetworkException
	 * @throws RequestResultSizeException
	 * @throws RequestServerException
	 * @throws SocialAppConfigException
	 * @throws ItemUnknownException
	 * @throws UrlCloudException
	 * @throws RequestResultNotJsonException
	 * @throws UnauthorizedFediverseException
	 */
	public function unfollowAccount(Person $actor, string $account) {
		$remoteActor = $this->cacheActorService->getFromAccount($account);

		try {
			$follow = $this->followsRequest->getByPersons($actor->getId(), $remoteActor->getId());
			$this->followsRequest->delete($follow);

			$undo = AP::$activityPub->getItemFromType(Undo::TYPE);
			$follow->setParent($undo);
			$undo->generateUniqueId('#undo/follows');
			$undo->setObject($follow);
			$undo->setActorId($actor->getId());

			$undo->addInstancePath(
				new InstancePath(
					$remoteActor->getInbox(), InstancePath::TYPE_INBOX, InstancePath::PRIORITY_TOP
				)
			);
			$this->activityService->request($undo);
		} catch (FollowNotFoundException $e) {
		}
	}


	/**
	 * @param Person $local
	 * @param Person $actor
	 *
	 * @return array
	 */
	public function getLinksBetweenPersons(Person $local, Person $actor): array {
		$links = [
			'follower' => false,
			'following' => false
		];

		try {
			$this->followsRequest->getByPersons($local->getId(), $actor->getId());
			$links['following'] = true;
		} catch (FollowNotFoundException $e) {
		}

		try {
			$this->followsRequest->getByPersons($actor->getId(), $local->getId());
			$links['follower'] = true;
		} catch (FollowNotFoundException $e) {
		}

		return $links;
	}


	/**
	 * @param Person $actor
	 *
	 * @return Person[]
	 */
	public function getFollowers(Person $actor): array {
		return $this->followsRequest->getFollowersByActorId($actor->getId());
	}


	/**
	 * @param Person $actor
	 *
	 * @return OrderedCollection
	 */
	public function getFollowersCollection(Person $actor): OrderedCollection {
		$collection = new OrderedCollection();
		$collection->setId($actor->getFollowers());
		$collection->setTotalItems(20);
		$collection->setFirst('...');

		return $collection;
	}


	/**
	 * @param Person $actor
	 *
	 * @return Person[]
	 */
	public function getFollowing(Person $actor): array {
		return $this->followsRequest->getFollowingByActorId($actor->getId());
	}


	/**
	 * @param Person $actor
	 *
	 * @return OrderedCollection
	 */
	public function getFollowingCollection(Person $actor): OrderedCollection {
		$collection = new OrderedCollection();
//		$collection->setId($actor->getFollowers());
//		$collection->setTotalItems(20);
//		$collection->setFirst('...');

		return $collection;
	}


	/**
	 * @param string $recipient
	 *
	 * @return Follow[]
	 */
	public function getFollowersFromFollowId(string $recipient): array {
		return $this->followsRequest->getFollowersByFollowId($recipient);
	}
}