Eventually-decentralized project hosting and management platform

[[ 🗃 ^WvWbo vervis ]] :: [📥 Inbox] [📤 Outbox] [🐤 Followers] [🤝 Collaborators] [🛠 Changes]

Clone

HTTPS: darcs clone https://vervis.peers.community/repos/WvWbo

SSH: darcs clone USERNAME@vervis.peers.community:WvWbo

Tags

TODO

src / Vervis / Federation /

Collab.hs

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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
{- This file is part of Vervis.
 -
 - Written in 2022, 2023 by fr33domlover <fr33domlover@riseup.net>.
 -
 - ♡ Copying is an act of love. Please copy, reuse and share.
 -
 - The author(s) have dedicated all copyright and related and neighboring
 - rights to this software to the public domain worldwide. This software is
 - distributed without any warranty.
 -
 - You should have received a copy of the CC0 Public Domain Dedication along
 - with this software. If not, see
 - <http://creativecommons.org/publicdomain/zero/1.0/>.
 -}

{-# LANGUAGE RankNTypes #-}

module Vervis.Federation.Collab
    ( --personInviteF
      topicInviteF

    , repoJoinF
    , deckJoinF
    , loomJoinF

    , repoAcceptF
    , deckAcceptF
    , loomAcceptF

    --, personGrantF
    )
where

import Control.Applicative
import Control.Exception hiding (Handler)
import Control.Monad
import Control.Monad.IO.Class
import Control.Monad.Trans.Class
import Control.Monad.Trans.Except
import Control.Monad.Trans.Maybe
import Control.Monad.Trans.Reader
import Data.Barbie
import Data.Bifunctor
import Data.Bitraversable
import Data.ByteString (ByteString)
import Data.Either
import Data.Foldable
import Data.Functor.Identity
import Data.List.NonEmpty (NonEmpty)
import Data.Maybe
import Data.Text (Text)
import Data.Time.Clock
import Data.Traversable
import Database.Persist
import Database.Persist.Sql
import Yesod.Persist.Core

import qualified Data.ByteString.Lazy as BL
import qualified Data.Text as T

import Database.Persist.JSON
import Development.PatchMediaType
import Network.FedURI
import Yesod.ActivityPub
import Yesod.FedURI
import Yesod.Hashids
import Yesod.MonadSite

import qualified Web.ActivityPub as AP

import Control.Monad.Trans.Except.Local
import Data.Either.Local
import Data.Tuple.Local
import Database.Persist.Local
import Yesod.Persist.Local

import Vervis.Access
import Vervis.ActivityPub
import Vervis.Actor (RemoteAuthor (..), ActivityBody (..))
import Vervis.Data.Actor
import Vervis.Data.Collab
import Vervis.Web.Delivery
import Vervis.FedURI
import Vervis.Federation.Auth
import Vervis.Federation.Util
import Vervis.Foundation
import Vervis.Model
import Vervis.Persist.Actor
import Vervis.Persist.Collab
import Vervis.Recipient
import Vervis.RemoteActorStore

topicInviteF
    :: UTCTime
    -> GrantResourceBy KeyHashid
    -> RemoteAuthor
    -> ActivityBody
    -> Maybe (RecipientRoutes, ByteString)
    -> LocalURI
    -> AP.Invite URIMode
    -> ExceptT Text Handler (Text, Maybe (ExceptT Text Worker Text))
topicInviteF now recipByHash author body mfwd luInvite invite = do

    -- Check input
    uCap <- do
        let muCap = AP.activityCapability $ actbActivity body
        fromMaybeE muCap "No capability provided"
    (resourceAndCap, recipient) <- do

        -- Check the invite-specific data
        (resource, recip) <-
            parseInvite (Right $ remoteAuthorURI author) invite

        -- Verify the capability URI is one of:
        --   * Outbox item URI of a local actor, i.e. a local activity
        --   * A remote URI
        capability <- nameExceptT "Invite capability" $ parseActivityURI uCap

        -- Verify that capability is either a local activity of a local
        -- resource, or both resource and capability are of the same remote
        -- instance
        (,recip) <$> case (resource, capability) of
            (Left r, Left (actor, _, item)) -> do
                unless (grantResourceLocalActor r == actor) $
                    throwE "Local capability belongs to actor that isn't the resource"
                return $ Left (r, item)
            (Left _, Right _) ->
                throwE "Remote capability obviously doesn't belong to local resource"
            (Right _, Left _) ->
                throwE "Local capability obviously doesn't belong to remote resource"
            (Right (ObjURI h r), Right (ObjURI h' c)) -> do
                unless (h == h') $
                    throwE "Capability and resource are on different remote instances"
                return $ Right (ObjURI h r, c)

    -- Find recipient topic in DB, returning 404 if doesn't exist because
    -- we're in the topic's inbox post handler
    recipByKey <- unhashGrantResource404 recipByHash
    (_recipByEntity, recipActorID, recipActor) <- lift $ runDB $ do
        recipE <- getGrantResource404 recipByKey
        let actorID = grantResourceActorID $ bmap (Identity . entityVal) recipE
        (recipE, actorID,) <$> getJust actorID

    -- Verify that Invite's topic is me, otherwise I don't need this Invite
    capability <-
        case resourceAndCap of
            Left (resource, item) | resource == recipByKey -> return item
            _ -> throwE "I'm not the Invite's topic, don't need this Invite"

    return $ (,) "Ran initial checks, doing the rest asynchronously" $ Just $ do
        mhttp <- do
            mractid <- lift $ runSiteDB $ insertToInbox now author body (actorInbox recipActor) luInvite False
            for mractid $ \ inviteID -> do

                -- Verify the specified capability gives relevant access to the
                -- resource
                let recipLocalActorByKey = grantResourceLocalActor recipByKey
                runSiteDBExcept $
                    verifyCapability
                        (recipLocalActorByKey, capability)
                        (Right $ remoteAuthorId author)
                        recipByKey

                -- If recipient is remote, HTTP GET it, make sure it's an
                -- actor, and insert it to our DB. If recipient is local, find
                -- it in our DB.
                recipientDB <-
                    bitraverse
                        (runSiteDBExcept . flip getGrantRecip "Invitee not found in DB")
                        (\ u@(ObjURI h lu) -> do
                            instanceID <-
                                lift $ runSiteDB $ either entityKey id <$> insertBy' (Instance h)
                            result <-
                                ExceptT $ first (T.pack . displayException) <$>
                                    fetchRemoteActor instanceID h lu
                            case result of
                                Left Nothing -> throwE "Recipient @id mismatch"
                                Left (Just err) -> throwE $ T.pack $ displayException err
                                Right Nothing -> throwE "Recipient isn't an actor"
                                Right (Just actor) -> return $ entityKey actor
                        )
                        recipient

                lift $ runSiteDB $ do

                    -- Insert Collab record to DB
                    insertCollab recipByKey recipientDB inviteID

                    -- Forward the Invite activity to relevant local stages,
                    -- and schedule delivery for unavailable remote members of
                    -- them
                    for mfwd $ \ (localRecips, sig) -> do
                        let recipLocalActor =
                                grantResourceLocalActor recipByHash
                            sieve =
                                makeRecipientSet [] [localActorFollowers recipLocalActor]
                        forwardActivityDB
                            (actbBL body) localRecips sig recipActorID
                            recipLocalActor sieve inviteID

        -- Launch asynchronous HTTP forwarding of the Invite activity
        case mhttp of
            Nothing -> return "I already have this activity in my inbox, doing nothing"
            Just maybeForward -> do
                traverse_ (forkWorker "topicInviteF inbox-forwarding") maybeForward
                return $
                    case maybeForward of
                        Nothing -> "Inserted Collab to DB, no inbox-forwarding to do"
                        Just _ -> "Inserted Collab to DB and ran inbox-forwarding of the Invite"

    where

    insertCollab resource recipient inviteID = do
        collabID <- insert Collab
        fulfillsID <- insert $ CollabFulfillsInvite collabID
        case resource of
            GrantResourceRepo repoID ->
                insert_ $ CollabTopicRepo collabID repoID
            GrantResourceDeck deckID ->
                insert_ $ CollabTopicDeck collabID deckID
            GrantResourceLoom loomID ->
                insert_ $ CollabTopicLoom collabID loomID
        let authorID = remoteAuthorId author
        insert_ $ CollabInviterRemote fulfillsID authorID inviteID
        case recipient of
            Left (GrantRecipPerson (Entity personID _)) ->
                insert_ $ CollabRecipLocal collabID personID
            Right remoteActorID ->
                insert_ $ CollabRecipRemote collabID remoteActorID

topicJoinF
    :: (PersistRecordBackend topic SqlBackend, ToBackendKey SqlBackend topic)
    => (topic -> ActorId)
    -> (forall f. f topic -> GrantResourceBy f)
    -> UTCTime
    -> KeyHashid topic
    -> RemoteAuthor
    -> ActivityBody
    -> Maybe (RecipientRoutes, ByteString)
    -> LocalURI
    -> AP.Join URIMode
    -> ExceptT Text Handler (Text, Maybe (ExceptT Text Worker Text))
topicJoinF topicActor topicResource now recipHash author body mfwd luJoin join = (,Nothing) <$> do

    -- Check input
    recipKey <- decodeKeyHashid404 recipHash
    verifyNothingE
        (AP.activityCapability $ actbActivity body)
        "Capability not needed"
    resource <- parseJoin join
    unless (resource == Left (topicResource recipKey)) $
        throwE "Join's object isn't me, don't need this Join"

    maybeHttp <- lift $ runDB $ do

        -- Find recipient topic in DB, returning 404 if doesn't exist because
        -- we're in the topic's inbox post handler
        (recipActorID, recipActor) <- do
            topic <- get404 recipKey
            let actorID = topicActor topic
            (actorID,) <$> getJust actorID

        -- Insert the Join to topic's inbox
        mractid <- insertToInbox now author body (actorInbox recipActor) luJoin False
        for mractid $ \ joinID -> do

            -- Insert Collab record to DB
            insertCollab (topicResource recipKey) joinID

            -- Forward the Join activity to relevant local stages,
            -- and schedule delivery for unavailable remote members of
            -- them
            for mfwd $ \ (localRecips, sig) -> do
                let recipByHash =
                        grantResourceLocalActor $ topicResource recipHash
                    sieve =
                        makeRecipientSet
                            []
                            [localActorFollowers recipByHash]
                forwardActivityDB
                    (actbBL body) localRecips sig recipActorID recipByHash
                    sieve joinID

    -- Launch asynchronous HTTP forwarding of the Join activity
    case maybeHttp of
        Nothing -> return "I already have this activity in my inbox, doing nothing"
        Just maybeForward -> do
            traverse_ (forkWorker "topicJoinF inbox-forwarding") maybeForward
            return $
                case maybeForward of
                    Nothing -> "Inserted Collab to DB, no inbox-forwarding to do"
                    Just _ -> "Inserted Collab to DB and ran inbox-forwarding of the Join"

    where

    insertCollab topic joinID = do
        collabID <- insert Collab
        fulfillsID <- insert $ CollabFulfillsJoin collabID
        case topic of
            GrantResourceRepo repoID ->
                insert_ $ CollabTopicRepo collabID repoID
            GrantResourceDeck deckID ->
                insert_ $ CollabTopicDeck collabID deckID
            GrantResourceLoom loomID ->
                insert_ $ CollabTopicLoom collabID loomID
        let authorID = remoteAuthorId author
        recipID <- insert $ CollabRecipRemote collabID authorID
        insert_ $ CollabRecipRemoteJoin recipID fulfillsID joinID

repoJoinF
    :: UTCTime
    -> KeyHashid Repo
    -> RemoteAuthor
    -> ActivityBody
    -> Maybe (RecipientRoutes, ByteString)
    -> LocalURI
    -> AP.Join URIMode
    -> ExceptT Text Handler (Text, Maybe (ExceptT Text Worker Text))
repoJoinF = topicJoinF repoActor GrantResourceRepo

deckJoinF
    :: UTCTime
    -> KeyHashid Deck
    -> RemoteAuthor
    -> ActivityBody
    -> Maybe (RecipientRoutes, ByteString)
    -> LocalURI
    -> AP.Join URIMode
    -> ExceptT Text Handler (Text, Maybe (ExceptT Text Worker Text))
deckJoinF = topicJoinF deckActor GrantResourceDeck

loomJoinF
    :: UTCTime
    -> KeyHashid Loom
    -> RemoteAuthor
    -> ActivityBody
    -> Maybe (RecipientRoutes, ByteString)
    -> LocalURI
    -> AP.Join URIMode
    -> ExceptT Text Handler (Text, Maybe (ExceptT Text Worker Text))
loomJoinF = topicJoinF loomActor GrantResourceLoom

topicAcceptF
    :: (PersistRecordBackend topic SqlBackend, ToBackendKey SqlBackend topic)
    => (topic -> ActorId)
    -> (forall f. f topic -> GrantResourceBy f)
    -> UTCTime
    -> KeyHashid topic
    -> RemoteAuthor
    -> ActivityBody
    -> Maybe (RecipientRoutes, ByteString)
    -> LocalURI
    -> AP.Accept URIMode
    -> ExceptT Text Handler (Text, Maybe (ExceptT Text Worker Text))
topicAcceptF topicActor topicResource now recipHash author body mfwd luAccept accept = (,Nothing) <$> do

    -- Check input
    acceptee <- parseAccept accept

    -- Verify the capability URI is one of:
    --   * Outbox item URI of a local actor, i.e. a local activity
    --   * A remote URI
    maybeCap <-
        traverse
            (nameExceptT "Accept capability" . parseActivityURI)
            (AP.activityCapability $ actbActivity body)

    -- Find recipient topic in DB, returning 404 if doesn't exist because
    -- we're in the topic's inbox post handler
    recipKey <- decodeKeyHashid404 recipHash
    mhttp <- runDBExcept $ do
        (recipActorID, recipActor) <- lift $ do
            recip <- get404 recipKey
            let actorID = topicActor recip
            (actorID,) <$> getJust actorID

        -- Find the accepted activity in our DB
        accepteeDB <- do
            a <- getActivity acceptee
            fromMaybeE a "Can't find acceptee in DB"

        -- See if the accepted activity is an Invite or Join to a local
        -- resource, grabbing the Collab record from our DB
        collab <- do
            maybeCollab <-
                lift $ runMaybeT $
                    Left <$> tryInvite accepteeDB <|>
                    Right <$> tryJoin accepteeDB
            fromMaybeE maybeCollab "Accepted activity isn't an Invite or Join I'm aware of"

        -- Find the local resource and verify it's me
        collabID <-
            lift $ case collab of
                Left (fulfillsID, _) ->
                    collabFulfillsInviteCollab <$> getJust fulfillsID
                Right (fulfillsID, _) ->
                    collabFulfillsJoinCollab <$> getJust fulfillsID
        topic <- lift $ getCollabTopic collabID
        unless (topicResource recipKey == topic) $
            throwE "Accept object is an Invite for some other resource"

        idsForAccept <-
            case collab of

                -- If accepting an Invite, find the Collab recipient and verify
                -- it's the sender of the Accept
                Left (fulfillsID, _) -> Left <$> do
                    recip <-
                        lift $
                        requireEitherAlt
                            (getBy $ UniqueCollabRecipLocal collabID)
                            (getBy $ UniqueCollabRecipRemote collabID)
                            "Found Collab with no recip"
                            "Found Collab with multiple recips"
                    case recip of
                        Right (Entity crrid crr)
                            | collabRecipRemoteActor crr == remoteAuthorId author -> return (fulfillsID, crrid)
                        _ -> throwE "Accepting an Invite whose recipient is someone else"

                -- If accepting a Join, verify accepter has permission
                Right (fulfillsID, _) -> Right <$> do
                    capID <- fromMaybeE maybeCap "No capability provided"
                    capability <-
                        case capID of
                            Left (capActor, _, capItem) -> return (capActor, capItem)
                            Right _ -> throwE "Capability is a remote URI, i.e. not authored by the local resource"
                    verifyCapability
                        capability
                        (Right $ remoteAuthorId author)
                        (topicResource recipKey)
                    return fulfillsID

        -- Verify the Collab isn't already validated
        maybeEnabled <- lift $ getBy $ UniqueCollabEnable collabID
        verifyNothingE maybeEnabled "I already sent a Grant for this Invite/Join"

        -- Record the Accept on the Collab
        mractid <- lift $ insertToInbox now author body (actorInbox recipActor) luAccept False
        for mractid $ \ acceptID -> do

            case idsForAccept of
                Left (fulfillsID, recipID) -> do
                    maybeAccept <- lift $ insertUnique $ CollabRecipRemoteAccept recipID fulfillsID acceptID
                    unless (isNothing maybeAccept) $ do
                        lift $ delete acceptID
                        throwE "This Invite already has an Accept by recip"
                Right fulfillsID -> do
                    maybeAccept <- lift $ insertUnique $ CollabApproverRemote fulfillsID (remoteAuthorId author) acceptID
                    unless (isNothing maybeAccept) $ do
                        lift $ delete acceptID
                        throwE "This Join already has an Accept"

            -- Forward the Accept activity to relevant local stages, and
            -- schedule delivery for unavailable remote members of them
            let recipByHash = grantResourceLocalActor $ topicResource recipHash
            maybeHttpFwdAccept <- lift $ for mfwd $ \ (localRecips, sig) -> do
                let sieve =
                        makeRecipientSet [] [localActorFollowers recipByHash]
                forwardActivityDB
                    (actbBL body) localRecips sig recipActorID recipByHash
                    sieve acceptID

            deliverHttpGrant <- do

                -- Enable the Collab in our DB
                grantID <- lift $ insertEmptyOutboxItem (actorOutbox recipActor) now
                lift $ insert_ $ CollabEnable collabID grantID

                -- Prepare a Grant activity and insert to topic's outbox
                let inviterOrJoiner = either snd snd collab
                (actionGrant, localRecipsGrant, remoteRecipsGrant, fwdHostsGrant) <-
                    lift $ prepareGrant inviterOrJoiner
                let recipByKey = grantResourceLocalActor $ topicResource recipKey
                _luGrant <- lift $ updateOutboxItem recipByKey grantID actionGrant

                -- Deliver the Grant to local recipients, and schedule delivery
                -- for unavailable remote recipients
                deliverActivityDB
                    recipByHash recipActorID localRecipsGrant remoteRecipsGrant
                    fwdHostsGrant grantID actionGrant

            return (maybeHttpFwdAccept, deliverHttpGrant)

    -- Launch asynchronous HTTP forwarding of the Accept activity
    case mhttp of
        Nothing -> return "I already have this activity in my inbox, doing nothing"
        Just (mhttpFwd, deliverHttpGrant) -> do
            forkWorker "topicAcceptF Grant HTTP delivery" deliverHttpGrant
            case mhttpFwd of
                Nothing -> return "Sent a Grant, no inbox-forwarding to do"
                Just forwardHttpAccept -> do
                    forkWorker "topicAcceptF inbox-forwarding" forwardHttpAccept
                    return "Sent a Grant and ran inbox-forwarding of the Accept"

    where

    tryInvite (Left (actorByKey, _actorEntity, itemID)) =
        (,Left actorByKey) . collabInviterLocalCollab <$>
            MaybeT (getValBy $ UniqueCollabInviterLocalInvite itemID)
    tryInvite (Right remoteActivityID) = do
        CollabInviterRemote collab actorID _ <-
            MaybeT $ getValBy $
                UniqueCollabInviterRemoteInvite remoteActivityID
        actor <- lift $ getJust actorID
        sender <-
            lift $ (,remoteActorFollowers actor) <$> getRemoteActorURI actor
        return (collab, Right sender)

    tryJoin (Left (actorByKey, _actorEntity, itemID)) =
        (,Left actorByKey) . collabRecipLocalJoinFulfills <$>
            MaybeT (getValBy $ UniqueCollabRecipLocalJoinJoin itemID)
    tryJoin (Right remoteActivityID) = do
        CollabRecipRemoteJoin recipID fulfillsID _ <-
            MaybeT $ getValBy $
                UniqueCollabRecipRemoteJoinJoin remoteActivityID
        remoteActorID <- lift $ collabRecipRemoteActor <$> getJust recipID
        actor <- lift $ getJust remoteActorID
        joiner <-
            lift $ (,remoteActorFollowers actor) <$> getRemoteActorURI actor
        return (fulfillsID, Right joiner)

    prepareGrant sender = do
        encodeRouteHome <- getEncodeRouteHome

        accepter <- getJust $ remoteAuthorId author
        let topicByHash = grantResourceLocalActor $ topicResource recipHash

        senderHash <- bitraverse hashLocalActor pure sender

        let audSender =
                case senderHash of
                    Left actor -> AudLocal [actor] [localActorFollowers actor]
                    Right (ObjURI h lu, followers) ->
                        AudRemote h [lu] (maybeToList followers)
            audRecip =
                let ObjURI h lu = remoteAuthorURI author
                in  AudRemote h [lu] (maybeToList $ remoteActorFollowers accepter)
            audTopic = AudLocal [] [localActorFollowers topicByHash]

            (recipientSet, remoteActors, fwdHosts, audLocal, audRemote) =
                collectAudience [audSender, audRecip, audTopic]

            recips = map encodeRouteHome audLocal ++ audRemote
            action = AP.Action
                { AP.actionCapability = Nothing
                , AP.actionSummary    = Nothing
                , AP.actionAudience   = AP.Audience recips [] [] [] [] []
                , AP.actionFulfills   = [AP.acceptObject accept]
                , AP.actionSpecific   = AP.GrantActivity AP.Grant
                    { AP.grantObject    = Left AP.RoleAdmin
                    , AP.grantContext   = encodeRouteHome $ renderLocalActor topicByHash
                    , AP.grantTarget    = remoteAuthorURI author
                    }
                }

        return (action, recipientSet, remoteActors, fwdHosts)

repoAcceptF
    :: UTCTime
    -> KeyHashid Repo
    -> RemoteAuthor
    -> ActivityBody
    -> Maybe (RecipientRoutes, ByteString)
    -> LocalURI
    -> AP.Accept URIMode
    -> ExceptT Text Handler (Text, Maybe (ExceptT Text Worker Text))
repoAcceptF = topicAcceptF repoActor GrantResourceRepo

deckAcceptF
    :: UTCTime
    -> KeyHashid Deck
    -> RemoteAuthor
    -> ActivityBody
    -> Maybe (RecipientRoutes, ByteString)
    -> LocalURI
    -> AP.Accept URIMode
    -> ExceptT Text Handler (Text, Maybe (ExceptT Text Worker Text))
deckAcceptF = topicAcceptF deckActor GrantResourceDeck

loomAcceptF
    :: UTCTime
    -> KeyHashid Loom
    -> RemoteAuthor
    -> ActivityBody
    -> Maybe (RecipientRoutes, ByteString)
    -> LocalURI
    -> AP.Accept URIMode
    -> ExceptT Text Handler (Text, Maybe (ExceptT Text Worker Text))
loomAcceptF = topicAcceptF loomActor GrantResourceLoom
[See repo JSON]