-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathReplicaInfo.php
More file actions
392 lines (367 loc) · 13.2 KB
/
Copy pathReplicaInfo.php
File metadata and controls
392 lines (367 loc) · 13.2 KB
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
<?php
declare(strict_types=1);
namespace FediE2EE\PKDServer\RequestHandlers\Api;
use DateMalformedStringException;
use FediE2EE\PKD\Crypto\Exceptions\{
CryptoException,
JsonException,
NotImplementedException
};
use FediE2EE\PKDServer\{
Meta\Route,
Redirect,
Traits\ReqTrait
};
use FediE2EE\PKDServer\Exceptions\{
CacheException,
DependencyException,
TableException
};
use FediE2EE\PKDServer\Tables\{
Peers,
ReplicaActors,
ReplicaAuxData,
ReplicaHistory,
ReplicaPublicKeys
};
use FediE2EE\PKDServer\Tables\Records\Peer;
use JsonException as BaseJsonException;
use Override;
use ParagonIE\CipherSweet\Exception\{
ArrayKeyException,
BlindIndexNotFoundException,
CipherSweetException,
CryptoOperationException,
InvalidCiphertextException
};
use Psr\Http\Server\RequestHandlerInterface;
use Psr\Http\Message\{
ServerRequestInterface,
ResponseInterface
};
use SodiumException;
use TypeError;
use function urlencode;
class ReplicaInfo implements RequestHandlerInterface
{
use ReqTrait;
/**
* @throws CacheException
* @throws CryptoException
* @throws DateMalformedStringException
* @throws DependencyException
* @throws SodiumException
* @throws TableException
*/
protected function getPeer(ServerRequestInterface $request): Peer
{
$peersTable = $this->table('Peers');
if (!($peersTable instanceof Peers)) {
throw new TypeError('peers table is not the right type');
}
$uniqueId = $request->getAttribute('replica_id');
if (empty($uniqueId)) {
throw new TableException('replica_id is missing');
}
$peer = $peersTable->getPeerByUniqueId((string) $uniqueId);
if (!$peer->replicate) {
throw new TableException('replication not enabled for peer');
}
return $peer;
}
/**
* @throws CacheException
* @throws CryptoException
* @throws DateMalformedStringException
* @throws DependencyException
* @throws JsonException
* @throws NotImplementedException
* @throws SodiumException
*/
#[Route("/api/replicas/{replica_id}")]
#[Override]
public function handle(ServerRequestInterface $request): ResponseInterface
{
try {
$peer = $this->getPeer($request);
} catch (TableException) {
return (new Redirect('/api/replicas'))->respond();
}
$encoded = urlencode($peer->uniqueId);
return $this->json([
'!pkd-context' => 'fedi-e2ee:v1/api/replica-info',
'time' => $this->time(),
'replica-urls' => [
'/api/replicas/' . $encoded . '/actor/:actor_id',
'/api/replicas/' . $encoded . '/actor/:actor_id/keys',
'/api/replicas/' . $encoded . '/actor/:actor_id/keys/key/:key_id',
'/api/replicas/' . $encoded . '/actor/:actor_id/auxiliary',
'/api/replicas/' . $encoded . '/actor/:actor_id/auxiliary/:aux_data_id',
'/api/replicas/' . $encoded . '/history',
'/api/replicas/' . $encoded . '/history/since/:last_hash',
]
]);
}
/**
* @throws ArrayKeyException
* @throws BlindIndexNotFoundException
* @throws CacheException
* @throws CipherSweetException
* @throws CryptoException
* @throws CryptoOperationException
* @throws DateMalformedStringException
* @throws DependencyException
* @throws InvalidCiphertextException
* @throws JsonException
* @throws NotImplementedException
* @throws SodiumException
* @throws TableException
*/
#[Route("/api/replicas/{replica_id}/actor/{actor_id}")]
public function actor(ServerRequestInterface $request): ResponseInterface
{
try {
$peer = $this->getPeer($request);
} catch (TableException $ex) {
return $this->error($ex->getMessage(), 404);
}
$actorId = (string) $request->getAttribute('actor_id');
/** @var ReplicaActors $replicaActors */
$replicaActors = $this->table('ReplicaActors');
$actor = $replicaActors->searchForActor($peer->getPrimaryKey(), $actorId);
if (!$actor) {
return $this->error('Actor not found', 404);
}
$counts = $replicaActors->getCounts($peer->getPrimaryKey(), $actor->getPrimaryKey());
return $this->json([
'!pkd-context' => 'fedi-e2ee:v1/api/replica/actor/info',
'actor-id' => $actorId,
'count-aux' => $counts['count-aux'],
'count-keys' => $counts['count-keys'],
]);
}
/**
* @throws ArrayKeyException
* @throws BaseJsonException
* @throws BlindIndexNotFoundException
* @throws CacheException
* @throws CipherSweetException
* @throws CryptoException
* @throws CryptoOperationException
* @throws DateMalformedStringException
* @throws DependencyException
* @throws InvalidCiphertextException
* @throws JsonException
* @throws NotImplementedException
* @throws SodiumException
* @throws TableException
*/
#[Route("/api/replicas/{replica_id}/actor/{actor_id}/keys")]
public function actorKeys(ServerRequestInterface $request): ResponseInterface
{
try {
$peer = $this->getPeer($request);
} catch (TableException $ex) {
return $this->error($ex->getMessage(), 404);
}
$actorId = (string) $request->getAttribute('actor_id');
/** @var ReplicaActors $replicaActors */
$replicaActors = $this->table('ReplicaActors');
$actor = $replicaActors->searchForActor($peer->getPrimaryKey(), $actorId);
if (!$actor) {
return $this->error('Actor not found', 404);
}
/** @var ReplicaPublicKeys $replicaKeys */
$replicaKeys = $this->table('ReplicaPublicKeys');
$publicKeys = $replicaKeys->getPublicKeysFor($peer->getPrimaryKey(), $actor->getPrimaryKey());
return $this->json([
'!pkd-context' => 'fedi-e2ee:v1/api/replica/actor/get-keys',
'actor-id' => $actorId,
'public-keys' => $publicKeys,
]);
}
/**
* @throws ArrayKeyException
* @throws BaseJsonException
* @throws BlindIndexNotFoundException
* @throws CacheException
* @throws CipherSweetException
* @throws CryptoException
* @throws CryptoOperationException
* @throws DateMalformedStringException
* @throws DependencyException
* @throws InvalidCiphertextException
* @throws JsonException
* @throws NotImplementedException
* @throws SodiumException
* @throws TableException
*/
#[Route("/api/replicas/{replica_id}/actor/{actor_id}/keys/key/{key_id}")]
public function actorKey(ServerRequestInterface $request): ResponseInterface
{
try {
$peer = $this->getPeer($request);
} catch (TableException $ex) {
return $this->error($ex->getMessage(), 404);
}
$actorId = (string) $request->getAttribute('actor_id');
$keyId = (string) $request->getAttribute('key_id');
/** @var ReplicaActors $replicaActors */
$replicaActors = $this->table('ReplicaActors');
$actor = $replicaActors->searchForActor($peer->getPrimaryKey(), $actorId);
if (!$actor) {
return $this->error('Actor not found', 404);
}
/** @var ReplicaPublicKeys $replicaKeys */
$replicaKeys = $this->table('ReplicaPublicKeys');
$publicKey = $replicaKeys->lookup($peer->getPrimaryKey(), $actor->getPrimaryKey(), $keyId);
if (empty($publicKey)) {
return $this->error('Key not found', 404);
}
return $this->json([
'!pkd-context' => 'fedi-e2ee:v1/api/replica/actor/get-key',
'actor-id' => $actorId,
...$publicKey
]);
}
/**
* @throws ArrayKeyException
* @throws BlindIndexNotFoundException
* @throws CacheException
* @throws CipherSweetException
* @throws CryptoException
* @throws CryptoOperationException
* @throws DateMalformedStringException
* @throws DependencyException
* @throws InvalidCiphertextException
* @throws JsonException
* @throws NotImplementedException
* @throws SodiumException
* @throws TableException
*/
#[Route("/api/replicas/{replica_id}/actor/{actor_id}/auxiliary")]
public function actorAuxiliary(ServerRequestInterface $request): ResponseInterface
{
try {
$peer = $this->getPeer($request);
} catch (TableException $ex) {
return $this->error($ex->getMessage(), 404);
}
$actorId = (string) $request->getAttribute('actor_id');
/** @var ReplicaActors $replicaActors */
$replicaActors = $this->table('ReplicaActors');
$actor = $replicaActors->searchForActor($peer->getPrimaryKey(), $actorId);
if (!$actor) {
return $this->error('Actor not found', 404);
}
/** @var ReplicaAuxData $replicaAuxData */
$replicaAuxData = $this->table('ReplicaAuxData');
$auxiliary = $replicaAuxData->getAuxDataForActor($peer->getPrimaryKey(), $actor->getPrimaryKey());
return $this->json([
'!pkd-context' => 'fedi-e2ee:v1/api/replica/actor/list-auxiliary',
'actor-id' => $actorId,
'auxiliary' => $auxiliary,
]);
}
/**
* @throws ArrayKeyException
* @throws BaseJsonException
* @throws BlindIndexNotFoundException
* @throws CacheException
* @throws CipherSweetException
* @throws CryptoException
* @throws CryptoOperationException
* @throws DateMalformedStringException
* @throws DependencyException
* @throws InvalidCiphertextException
* @throws JsonException
* @throws NotImplementedException
* @throws SodiumException
* @throws TableException
*/
#[Route("/api/replicas/{replica_id}/actor/{actor_id}/auxiliary/{aux_data_id}")]
public function actorAuxiliaryItem(ServerRequestInterface $request): ResponseInterface
{
try {
$peer = $this->getPeer($request);
} catch (TableException $ex) {
return $this->error($ex->getMessage(), 404);
}
$actorId = (string) $request->getAttribute('actor_id');
$auxId = (string) $request->getAttribute('aux_data_id');
/** @var ReplicaActors $replicaActors */
$replicaActors = $this->table('ReplicaActors');
$actor = $replicaActors->searchForActor($peer->getPrimaryKey(), $actorId);
if (!$actor) {
return $this->error('Actor not found', 404);
}
/** @var ReplicaAuxData $replicaAuxData */
$replicaAuxData = $this->table('ReplicaAuxData');
$auxDatum = $replicaAuxData->getAuxDataById($peer->getPrimaryKey(), $actor->getPrimaryKey(), $auxId);
if (empty($auxDatum)) {
return $this->error('Auxiliary data not found', 404);
}
return $this->json([
'!pkd-context' => 'fedi-e2ee:v1/api/replica/actor/get-auxiliary',
'actor-id' => $actorId,
...$auxDatum
]);
}
/**
* @throws BaseJsonException
* @throws CacheException
* @throws CryptoException
* @throws DateMalformedStringException
* @throws DependencyException
* @throws JsonException
* @throws NotImplementedException
* @throws SodiumException
* @throws TableException
*/
#[Route("/api/replicas/{replica_id}/history")]
public function history(ServerRequestInterface $request): ResponseInterface
{
try {
$peer = $this->getPeer($request);
} catch (TableException $ex) {
return $this->error($ex->getMessage(), 404);
}
/** @var ReplicaHistory $replicaHistory */
$replicaHistory = $this->table('ReplicaHistory');
$records = $replicaHistory->getHistory($peer->getPrimaryKey());
return $this->json([
'!pkd-context' => 'fedi-e2ee:v1/api/replica/history',
'replica-id' => $peer->uniqueId,
'records' => $records,
]);
}
/**
* @throws BaseJsonException
* @throws CacheException
* @throws CryptoException
* @throws DateMalformedStringException
* @throws DependencyException
* @throws JsonException
* @throws NotImplementedException
* @throws SodiumException
* @throws TableException
*/
#[Route("/api/replicas/{replica_id}/history/since/{hash}")]
public function historySince(ServerRequestInterface $request): ResponseInterface
{
try {
$peer = $this->getPeer($request);
} catch (TableException $ex) {
return $this->error($ex->getMessage(), 404);
}
$hash = (string) $request->getAttribute('hash');
/** @var ReplicaHistory $replicaHistory */
$replicaHistory = $this->table('ReplicaHistory');
$records = $replicaHistory->getHistorySince($peer->getPrimaryKey(), $hash);
return $this->json([
'!pkd-context' => 'fedi-e2ee:v1/api/replica/history',
'replica-id' => $peer->uniqueId,
'records' => $records,
]);
}
}