Tables for project/team parent/child tracking
This commit is contained in:
parent
ee91a6403e
commit
1f06d689f5
4 changed files with 725 additions and 0 deletions
359
migrations/570_2023-12-09_source_dest.model
Normal file
359
migrations/570_2023-12-09_source_dest.model
Normal file
|
@ -0,0 +1,359 @@
|
||||||
|
------------------------------------------------------------------------------
|
||||||
|
-- Inheritance - Receiver tracking her givers
|
||||||
|
-- (Project tracking its children)
|
||||||
|
-- (Team tracking its parents)
|
||||||
|
------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Source
|
||||||
|
role Role
|
||||||
|
|
||||||
|
SourceHolderProject
|
||||||
|
source SourceId
|
||||||
|
project ProjectId
|
||||||
|
|
||||||
|
UniqueSourceHolderProject source
|
||||||
|
|
||||||
|
SourceHolderGroup
|
||||||
|
source SourceId
|
||||||
|
group GroupId
|
||||||
|
|
||||||
|
UniqueSourceHolderGroup source
|
||||||
|
|
||||||
|
-------------------------------- Source topic --------------------------------
|
||||||
|
|
||||||
|
SourceTopicLocal
|
||||||
|
source SourceId
|
||||||
|
|
||||||
|
UniqueSourceTopicLocal source
|
||||||
|
|
||||||
|
SourceTopicProject
|
||||||
|
holder SourceHolderProjectId
|
||||||
|
topic SourceTopicLocalId
|
||||||
|
child ProjectId
|
||||||
|
|
||||||
|
UniqueSourceTopicProject holder
|
||||||
|
UniqueSourceTopicProjectTopic topic
|
||||||
|
|
||||||
|
SourceTopicGroup
|
||||||
|
holder SourceHolderGroupId
|
||||||
|
topic SourceTopicLocalId
|
||||||
|
parent GroupId
|
||||||
|
|
||||||
|
UniqueSourceTopicGroup holder
|
||||||
|
UniqueSourceTopicGroupTopic topic
|
||||||
|
|
||||||
|
SourceTopicRemote
|
||||||
|
source SourceId
|
||||||
|
topic RemoteActorId
|
||||||
|
|
||||||
|
UniqueSourceTopicRemote source
|
||||||
|
|
||||||
|
-------------------------------- Source flow ---------------------------------
|
||||||
|
|
||||||
|
SourceOriginUs
|
||||||
|
source SourceId
|
||||||
|
|
||||||
|
UniqueSourceOriginUs source
|
||||||
|
|
||||||
|
SourceOriginThem
|
||||||
|
source SourceId
|
||||||
|
|
||||||
|
UniqueSourceOriginThem source
|
||||||
|
|
||||||
|
-- Our collaborator's gesture
|
||||||
|
--
|
||||||
|
-- OriginUs: The Add that started the sequence
|
||||||
|
-- OriginThem: N/A (they send their Accept but we don't record it)
|
||||||
|
|
||||||
|
SourceUsGestureLocal
|
||||||
|
us SourceOriginUsId
|
||||||
|
add OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceUsGestureLocal us
|
||||||
|
UniqueSourceUsGestureLocalAdd add
|
||||||
|
|
||||||
|
SourceUsGestureRemote
|
||||||
|
us SourceOriginUsId
|
||||||
|
actor RemoteActorId
|
||||||
|
add RemoteActivityId
|
||||||
|
|
||||||
|
UniqueSourceUsGestureRemote us
|
||||||
|
UniqueSourceUsGestureRemoteAdd add
|
||||||
|
|
||||||
|
-- Our accept
|
||||||
|
--
|
||||||
|
-- OriginUs: I checked the Add and sending my Accept
|
||||||
|
-- OriginThem: N/A
|
||||||
|
|
||||||
|
SourceUsAccept
|
||||||
|
us SourceOriginUsId
|
||||||
|
accept OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceUsAccept us
|
||||||
|
UniqueSourceUsAcceptAccept accept
|
||||||
|
|
||||||
|
-- Their collaborator's gesture
|
||||||
|
--
|
||||||
|
-- OriginUs: N/A (they send it but we don't record it)
|
||||||
|
-- OriginThem: The Add that started the sequence
|
||||||
|
|
||||||
|
SourceThemGestureLocal
|
||||||
|
them SourceOriginThemId
|
||||||
|
add OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceThemGestureLocal them
|
||||||
|
UniqueSourceThemGestureLocalAdd add
|
||||||
|
|
||||||
|
SourceThemGestureRemote
|
||||||
|
them SourceOriginThemId
|
||||||
|
actor RemoteActorId
|
||||||
|
add RemoteActivityId
|
||||||
|
|
||||||
|
UniqueSourceThemGestureRemote them
|
||||||
|
UniqueSourceThemGestureRemoteAdd add
|
||||||
|
|
||||||
|
-- Their accept
|
||||||
|
--
|
||||||
|
-- OriginUs: Seeing our accept and their collaborator's accept, they send their
|
||||||
|
-- own accept
|
||||||
|
-- OriginThem: Checking the Add, they send their Accept
|
||||||
|
|
||||||
|
SourceThemAcceptLocal
|
||||||
|
topic SourceTopicLocalId
|
||||||
|
accept OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceThemAcceptLocal topic
|
||||||
|
UniqueSourceThemAcceptLocalAccept accept
|
||||||
|
|
||||||
|
SourceThemAcceptRemote
|
||||||
|
topic SourceTopicRemoteId
|
||||||
|
accept RemoteActivityId
|
||||||
|
|
||||||
|
UniqueSourceThemAcceptRemote topic
|
||||||
|
UniqueSourceThemAcceptRemoteAccept accept
|
||||||
|
|
||||||
|
-------------------------------- Source enable -------------------------------
|
||||||
|
|
||||||
|
-- Witnesses that, seeing their approval and our collaborator's gesture, I've
|
||||||
|
-- sent then a delegator-Grant and now officially considering them a source of
|
||||||
|
-- us
|
||||||
|
SourceUsSendDelegator
|
||||||
|
source SourceId
|
||||||
|
grant OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceUsSendDelegator source
|
||||||
|
UniqueSourceUsSendDelegatorGrant grant
|
||||||
|
|
||||||
|
-- Witnesses that, using the delegator-Grant, they sent us a start-Grant or
|
||||||
|
-- extension-Grant to delegate further
|
||||||
|
|
||||||
|
SourceThemDelegateLocal
|
||||||
|
source SourceThemAcceptLocalId
|
||||||
|
grant OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceThemDelegateLocal source
|
||||||
|
UniqueSourceThemDelegateLocalGrant grant
|
||||||
|
|
||||||
|
SourceThemDelegateRemote
|
||||||
|
source SourceThemAcceptRemoteId
|
||||||
|
grant RemoteActivityId
|
||||||
|
|
||||||
|
UniqueSourceThemDelegateRemote source
|
||||||
|
UniqueSourceThemDelegateRemoteGrant grant
|
||||||
|
|
||||||
|
-- Witnesses that, seeing the delegation from them, I've sent an
|
||||||
|
-- extension-Grant to a Dest of mine
|
||||||
|
|
||||||
|
SourceUsGatherLocal
|
||||||
|
deleg SourceUsSendDelegatorId
|
||||||
|
dest DestThemSendDelegatorLocalId
|
||||||
|
grant OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceUsGatherLocal grant
|
||||||
|
|
||||||
|
SourceUsGatherRemote
|
||||||
|
deleg SourceUsSendDelegatorId
|
||||||
|
dest DestThemSendDelegatorRemoteId
|
||||||
|
grant RemoteActivityId
|
||||||
|
|
||||||
|
UniqueSourceUsGatherRemote grant
|
||||||
|
|
||||||
|
-- Witnesses that, seeing the delegation from them, I've sent a leaf-Grant to a
|
||||||
|
-- direct-collaborator of mine
|
||||||
|
|
||||||
|
SourceUsLeafLocal
|
||||||
|
deleg SourceUsSendDelegatorId
|
||||||
|
collab CollabDelegLocalId
|
||||||
|
grant OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceUsLeafLocal grant
|
||||||
|
|
||||||
|
SourceUsLeafRemote
|
||||||
|
deleg SourceUsSendDelegatorId
|
||||||
|
collab CollabDelegRemoteId
|
||||||
|
grant RemoteActivityId
|
||||||
|
|
||||||
|
UniqueSourceUsLeafRemote grant
|
||||||
|
|
||||||
|
------------------------------------------------------------------------------
|
||||||
|
-- Inheritance - Giver tracking her receivers
|
||||||
|
-- (Project tracking its parents)
|
||||||
|
-- (Team tracking its children)
|
||||||
|
------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Dest
|
||||||
|
role Role
|
||||||
|
|
||||||
|
DestHolderProject
|
||||||
|
dest DestId
|
||||||
|
project ProjectId
|
||||||
|
|
||||||
|
UniqueDestHolderProject dest
|
||||||
|
|
||||||
|
DestHolderGroup
|
||||||
|
dest DestId
|
||||||
|
group GroupId
|
||||||
|
|
||||||
|
UniqueDestHolderGroup dest
|
||||||
|
|
||||||
|
---------------------------------- Dest topic --------------------------------
|
||||||
|
|
||||||
|
DestTopicLocal
|
||||||
|
dest DestId
|
||||||
|
|
||||||
|
UniqueDestTopicLocal dest
|
||||||
|
|
||||||
|
DestTopicProject
|
||||||
|
holder DestHolderProjectId
|
||||||
|
topic DestTopicLocalId
|
||||||
|
parent ProjectId
|
||||||
|
|
||||||
|
UniqueDestTopicProject holder
|
||||||
|
UniqueDestTopicProjectTopic topic
|
||||||
|
|
||||||
|
DestTopicGroup
|
||||||
|
holder DestHolderGroupId
|
||||||
|
topic DestTopicLocalId
|
||||||
|
child GroupId
|
||||||
|
|
||||||
|
UniqueDestTopicGroup holder
|
||||||
|
UniqueDestTopicGroupTopic topic
|
||||||
|
|
||||||
|
DestTopicRemote
|
||||||
|
dest DestId
|
||||||
|
topic RemoteActorId
|
||||||
|
|
||||||
|
UniqueDestTopicRemote dest
|
||||||
|
|
||||||
|
---------------------------------- Dest flow ---------------------------------
|
||||||
|
|
||||||
|
DestOriginUs
|
||||||
|
dest DestId
|
||||||
|
|
||||||
|
UniqueDestOriginUs dest
|
||||||
|
|
||||||
|
DestOriginThem
|
||||||
|
dest DestId
|
||||||
|
|
||||||
|
UniqueDestOriginThem dest
|
||||||
|
|
||||||
|
-- Our collaborator's gesture
|
||||||
|
--
|
||||||
|
-- OriginUs: The Add that started the sequence
|
||||||
|
-- OriginThem: Seeing the Add and their Accept, my collaborator has sent her
|
||||||
|
-- Accept
|
||||||
|
|
||||||
|
DestUsGestureLocal
|
||||||
|
dest DestId
|
||||||
|
activity OutboxItemId
|
||||||
|
|
||||||
|
UniqueDestUsGestureLocal dest
|
||||||
|
UniqueDestUsGestureLocalActivity activity
|
||||||
|
|
||||||
|
DestUsGestureRemote
|
||||||
|
dest DestId
|
||||||
|
actor RemoteActorId
|
||||||
|
activity RemoteActivityId
|
||||||
|
|
||||||
|
UniqueDestUsGestureRemote dest
|
||||||
|
UniqueDestUsGestureRemoteActivity activity
|
||||||
|
|
||||||
|
-- Our accept
|
||||||
|
--
|
||||||
|
-- OriginUs: Checking my collaborator's Add, I sent my Accept
|
||||||
|
-- OriginThem: Seeing the Add, their Accept and my collaborator's Accept, I
|
||||||
|
-- sent my Accept
|
||||||
|
|
||||||
|
DestUsAccept
|
||||||
|
dest DestId
|
||||||
|
accept OutboxItemId
|
||||||
|
|
||||||
|
UniqueDestUsAccept dest
|
||||||
|
UniqueDestUsAcceptAccept accept
|
||||||
|
|
||||||
|
-- Their collaborator's gesture
|
||||||
|
--
|
||||||
|
-- OriginUs: N/A (they send it but we don't record it)
|
||||||
|
-- OriginThem: The Add that started the sequence
|
||||||
|
|
||||||
|
DestThemGestureLocal
|
||||||
|
them DestOriginThemId
|
||||||
|
add OutboxItemId
|
||||||
|
|
||||||
|
UniqueDestThemGestureLocal them
|
||||||
|
UniqueDestThemGestureLocalAdd add
|
||||||
|
|
||||||
|
DestThemGestureRemote
|
||||||
|
them DestOriginThemId
|
||||||
|
actor RemoteActorId
|
||||||
|
add RemoteActivityId
|
||||||
|
|
||||||
|
UniqueDestThemGestureRemote them
|
||||||
|
UniqueDestThemGestureRemoteAdd add
|
||||||
|
|
||||||
|
-- Their accept
|
||||||
|
--
|
||||||
|
-- OriginUs: N/A
|
||||||
|
-- OriginThem: Seeing their collaborator's Add, they sent an Accept
|
||||||
|
|
||||||
|
DestThemAcceptLocal
|
||||||
|
them DestOriginThemId
|
||||||
|
topic DestTopicLocalId
|
||||||
|
accept OutboxItemId
|
||||||
|
|
||||||
|
UniqueDestThemAcceptLocal them
|
||||||
|
UniqueDestThemAcceptLocalTopic topic
|
||||||
|
UniqueDestThemAcceptLocalAccept accept
|
||||||
|
|
||||||
|
DestThemAcceptRemote
|
||||||
|
them DestOriginThemId
|
||||||
|
topic DestTopicRemoteId
|
||||||
|
accept RemoteActivityId
|
||||||
|
|
||||||
|
UniqueDestThemAcceptRemote them
|
||||||
|
UniqueDestThemAcceptRemoteTopic topic
|
||||||
|
UniqueDestThemAcceptRemoteAccept accept
|
||||||
|
|
||||||
|
---------------------------------- Dest enable -------------------------------
|
||||||
|
|
||||||
|
-- Witnesses that, seeing our approval and their collaborator's gesture,
|
||||||
|
-- they've sent us a delegator-Grant, and we now officially consider them a
|
||||||
|
-- dest of us
|
||||||
|
|
||||||
|
DestThemSendDelegatorLocal
|
||||||
|
dest DestUsAcceptId
|
||||||
|
topic DestTopicLocalId
|
||||||
|
grant OutboxItemId
|
||||||
|
|
||||||
|
UniqueDestThemSendDelegatorLocal dest
|
||||||
|
UniqueDestThemSendDelegatorLocalTopic topic
|
||||||
|
UniqueDestThemSendDelegatorLocalGrant grant
|
||||||
|
|
||||||
|
DestThemSendDelegatorRemote
|
||||||
|
dest DestUsAcceptId
|
||||||
|
topic DestTopicRemoteId
|
||||||
|
grant RemoteActivityId
|
||||||
|
|
||||||
|
UniqueDestThemSendDelegatorRemote dest
|
||||||
|
UniqueDestThemSendDelegatorRemoteTopic topic
|
||||||
|
UniqueDestThemSendDelegatorRemoteGrant grant
|
|
@ -3196,6 +3196,8 @@ changes hLocal ctx =
|
||||||
further E.^. ComponentFurtherLocal565Collab E.==. E.val cdl
|
further E.^. ComponentFurtherLocal565Collab E.==. E.val cdl
|
||||||
return $ further E.^. ComponentFurtherLocal565Grant
|
return $ further E.^. ComponentFurtherLocal565Grant
|
||||||
insertMany_ $ map (PermitTopicExtendLocal565 sendID enableID . E.unValue) gs
|
insertMany_ $ map (PermitTopicExtendLocal565 sendID enableID . E.unValue) gs
|
||||||
|
-- 570
|
||||||
|
, addEntities model_570_source_dest
|
||||||
]
|
]
|
||||||
|
|
||||||
migrateDB
|
migrateDB
|
||||||
|
|
|
@ -67,6 +67,7 @@ module Vervis.Migration.Entities
|
||||||
, model_551_group_collab
|
, model_551_group_collab
|
||||||
, model_552_collab_deleg
|
, model_552_collab_deleg
|
||||||
, model_564_permit
|
, model_564_permit
|
||||||
|
, model_570_source_dest
|
||||||
)
|
)
|
||||||
where
|
where
|
||||||
|
|
||||||
|
@ -260,3 +261,6 @@ model_552_collab_deleg = $(schema "552_2023-11-21_collab_deleg")
|
||||||
|
|
||||||
model_564_permit :: [Entity SqlBackend]
|
model_564_permit :: [Entity SqlBackend]
|
||||||
model_564_permit = $(schema "564_2023-11-22_permit")
|
model_564_permit = $(schema "564_2023-11-22_permit")
|
||||||
|
|
||||||
|
model_570_source_dest :: [Entity SqlBackend]
|
||||||
|
model_570_source_dest = $(schema "570_2023-12-09_source_dest")
|
||||||
|
|
360
th/models
360
th/models
|
@ -1267,3 +1267,363 @@ StemDelegateLocal
|
||||||
|
|
||||||
UniqueStemDelegateLocal stem
|
UniqueStemDelegateLocal stem
|
||||||
UniqueStemDelegateLocalGrant grant
|
UniqueStemDelegateLocalGrant grant
|
||||||
|
|
||||||
|
------------------------------------------------------------------------------
|
||||||
|
-- Inheritance - Receiver tracking her givers
|
||||||
|
-- (Project tracking its children)
|
||||||
|
-- (Team tracking its parents)
|
||||||
|
------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Source
|
||||||
|
role Role
|
||||||
|
|
||||||
|
SourceHolderProject
|
||||||
|
source SourceId
|
||||||
|
project ProjectId
|
||||||
|
|
||||||
|
UniqueSourceHolderProject source
|
||||||
|
|
||||||
|
SourceHolderGroup
|
||||||
|
source SourceId
|
||||||
|
group GroupId
|
||||||
|
|
||||||
|
UniqueSourceHolderGroup source
|
||||||
|
|
||||||
|
-------------------------------- Source topic --------------------------------
|
||||||
|
|
||||||
|
SourceTopicLocal
|
||||||
|
source SourceId
|
||||||
|
|
||||||
|
UniqueSourceTopicLocal source
|
||||||
|
|
||||||
|
SourceTopicProject
|
||||||
|
holder SourceHolderProjectId
|
||||||
|
topic SourceTopicLocalId
|
||||||
|
child ProjectId
|
||||||
|
|
||||||
|
UniqueSourceTopicProject holder
|
||||||
|
UniqueSourceTopicProjectTopic topic
|
||||||
|
|
||||||
|
SourceTopicGroup
|
||||||
|
holder SourceHolderGroupId
|
||||||
|
topic SourceTopicLocalId
|
||||||
|
parent GroupId
|
||||||
|
|
||||||
|
UniqueSourceTopicGroup holder
|
||||||
|
UniqueSourceTopicGroupTopic topic
|
||||||
|
|
||||||
|
SourceTopicRemote
|
||||||
|
source SourceId
|
||||||
|
topic RemoteActorId
|
||||||
|
|
||||||
|
UniqueSourceTopicRemote source
|
||||||
|
|
||||||
|
-------------------------------- Source flow ---------------------------------
|
||||||
|
|
||||||
|
SourceOriginUs
|
||||||
|
source SourceId
|
||||||
|
|
||||||
|
UniqueSourceOriginUs source
|
||||||
|
|
||||||
|
SourceOriginThem
|
||||||
|
source SourceId
|
||||||
|
|
||||||
|
UniqueSourceOriginThem source
|
||||||
|
|
||||||
|
-- Our collaborator's gesture
|
||||||
|
--
|
||||||
|
-- OriginUs: The Add that started the sequence
|
||||||
|
-- OriginThem: N/A (they send their Accept but we don't record it)
|
||||||
|
|
||||||
|
SourceUsGestureLocal
|
||||||
|
us SourceOriginUsId
|
||||||
|
add OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceUsGestureLocal us
|
||||||
|
UniqueSourceUsGestureLocalAdd add
|
||||||
|
|
||||||
|
SourceUsGestureRemote
|
||||||
|
us SourceOriginUsId
|
||||||
|
actor RemoteActorId
|
||||||
|
add RemoteActivityId
|
||||||
|
|
||||||
|
UniqueSourceUsGestureRemote us
|
||||||
|
UniqueSourceUsGestureRemoteAdd add
|
||||||
|
|
||||||
|
-- Our accept
|
||||||
|
--
|
||||||
|
-- OriginUs: I checked the Add and sending my Accept
|
||||||
|
-- OriginThem: N/A
|
||||||
|
|
||||||
|
SourceUsAccept
|
||||||
|
us SourceOriginUsId
|
||||||
|
accept OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceUsAccept us
|
||||||
|
UniqueSourceUsAcceptAccept accept
|
||||||
|
|
||||||
|
-- Their collaborator's gesture
|
||||||
|
--
|
||||||
|
-- OriginUs: N/A (they send it but we don't record it)
|
||||||
|
-- OriginThem: The Add that started the sequence
|
||||||
|
|
||||||
|
SourceThemGestureLocal
|
||||||
|
them SourceOriginThemId
|
||||||
|
add OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceThemGestureLocal them
|
||||||
|
UniqueSourceThemGestureLocalAdd add
|
||||||
|
|
||||||
|
SourceThemGestureRemote
|
||||||
|
them SourceOriginThemId
|
||||||
|
actor RemoteActorId
|
||||||
|
add RemoteActivityId
|
||||||
|
|
||||||
|
UniqueSourceThemGestureRemote them
|
||||||
|
UniqueSourceThemGestureRemoteAdd add
|
||||||
|
|
||||||
|
-- Their accept
|
||||||
|
--
|
||||||
|
-- OriginUs: Seeing our accept and their collaborator's accept, they send their
|
||||||
|
-- own accept
|
||||||
|
-- OriginThem: Checking the Add, they send their Accept
|
||||||
|
|
||||||
|
SourceThemAcceptLocal
|
||||||
|
topic SourceTopicLocalId
|
||||||
|
accept OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceThemAcceptLocal topic
|
||||||
|
UniqueSourceThemAcceptLocalAccept accept
|
||||||
|
|
||||||
|
SourceThemAcceptRemote
|
||||||
|
topic SourceTopicRemoteId
|
||||||
|
accept RemoteActivityId
|
||||||
|
|
||||||
|
UniqueSourceThemAcceptRemote topic
|
||||||
|
UniqueSourceThemAcceptRemoteAccept accept
|
||||||
|
|
||||||
|
-------------------------------- Source enable -------------------------------
|
||||||
|
|
||||||
|
-- Witnesses that, seeing their approval and our collaborator's gesture, I've
|
||||||
|
-- sent then a delegator-Grant and now officially considering them a source of
|
||||||
|
-- us
|
||||||
|
SourceUsSendDelegator
|
||||||
|
source SourceId
|
||||||
|
grant OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceUsSendDelegator source
|
||||||
|
UniqueSourceUsSendDelegatorGrant grant
|
||||||
|
|
||||||
|
-- Witnesses that, using the delegator-Grant, they sent us a start-Grant or
|
||||||
|
-- extension-Grant to delegate further
|
||||||
|
|
||||||
|
SourceThemDelegateLocal
|
||||||
|
source SourceThemAcceptLocalId
|
||||||
|
grant OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceThemDelegateLocal source
|
||||||
|
UniqueSourceThemDelegateLocalGrant grant
|
||||||
|
|
||||||
|
SourceThemDelegateRemote
|
||||||
|
source SourceThemAcceptRemoteId
|
||||||
|
grant RemoteActivityId
|
||||||
|
|
||||||
|
UniqueSourceThemDelegateRemote source
|
||||||
|
UniqueSourceThemDelegateRemoteGrant grant
|
||||||
|
|
||||||
|
-- Witnesses that, seeing the delegation from them, I've sent an
|
||||||
|
-- extension-Grant to a Dest of mine
|
||||||
|
|
||||||
|
SourceUsGatherLocal
|
||||||
|
deleg SourceUsSendDelegatorId
|
||||||
|
dest DestThemSendDelegatorLocalId
|
||||||
|
grant OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceUsGatherLocal grant
|
||||||
|
|
||||||
|
SourceUsGatherRemote
|
||||||
|
deleg SourceUsSendDelegatorId
|
||||||
|
dest DestThemSendDelegatorRemoteId
|
||||||
|
grant RemoteActivityId
|
||||||
|
|
||||||
|
UniqueSourceUsGatherRemote grant
|
||||||
|
|
||||||
|
-- Witnesses that, seeing the delegation from them, I've sent a leaf-Grant to a
|
||||||
|
-- direct-collaborator of mine
|
||||||
|
|
||||||
|
SourceUsLeafLocal
|
||||||
|
deleg SourceUsSendDelegatorId
|
||||||
|
collab CollabDelegLocalId
|
||||||
|
grant OutboxItemId
|
||||||
|
|
||||||
|
UniqueSourceUsLeafLocal grant
|
||||||
|
|
||||||
|
SourceUsLeafRemote
|
||||||
|
deleg SourceUsSendDelegatorId
|
||||||
|
collab CollabDelegRemoteId
|
||||||
|
grant RemoteActivityId
|
||||||
|
|
||||||
|
UniqueSourceUsLeafRemote grant
|
||||||
|
|
||||||
|
------------------------------------------------------------------------------
|
||||||
|
-- Inheritance - Giver tracking her receivers
|
||||||
|
-- (Project tracking its parents)
|
||||||
|
-- (Team tracking its children)
|
||||||
|
------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Dest
|
||||||
|
role Role
|
||||||
|
|
||||||
|
DestHolderProject
|
||||||
|
dest DestId
|
||||||
|
project ProjectId
|
||||||
|
|
||||||
|
UniqueDestHolderProject dest
|
||||||
|
|
||||||
|
DestHolderGroup
|
||||||
|
dest DestId
|
||||||
|
group GroupId
|
||||||
|
|
||||||
|
UniqueDestHolderGroup dest
|
||||||
|
|
||||||
|
---------------------------------- Dest topic --------------------------------
|
||||||
|
|
||||||
|
DestTopicLocal
|
||||||
|
dest DestId
|
||||||
|
|
||||||
|
UniqueDestTopicLocal dest
|
||||||
|
|
||||||
|
DestTopicProject
|
||||||
|
holder DestHolderProjectId
|
||||||
|
topic DestTopicLocalId
|
||||||
|
parent ProjectId
|
||||||
|
|
||||||
|
UniqueDestTopicProject holder
|
||||||
|
UniqueDestTopicProjectTopic topic
|
||||||
|
|
||||||
|
DestTopicGroup
|
||||||
|
holder DestHolderGroupId
|
||||||
|
topic DestTopicLocalId
|
||||||
|
child GroupId
|
||||||
|
|
||||||
|
UniqueDestTopicGroup holder
|
||||||
|
UniqueDestTopicGroupTopic topic
|
||||||
|
|
||||||
|
DestTopicRemote
|
||||||
|
dest DestId
|
||||||
|
topic RemoteActorId
|
||||||
|
|
||||||
|
UniqueDestTopicRemote dest
|
||||||
|
|
||||||
|
---------------------------------- Dest flow ---------------------------------
|
||||||
|
|
||||||
|
DestOriginUs
|
||||||
|
dest DestId
|
||||||
|
|
||||||
|
UniqueDestOriginUs dest
|
||||||
|
|
||||||
|
DestOriginThem
|
||||||
|
dest DestId
|
||||||
|
|
||||||
|
UniqueDestOriginThem dest
|
||||||
|
|
||||||
|
-- Our collaborator's gesture
|
||||||
|
--
|
||||||
|
-- OriginUs: The Add that started the sequence
|
||||||
|
-- OriginThem: Seeing the Add and their Accept, my collaborator has sent her
|
||||||
|
-- Accept
|
||||||
|
|
||||||
|
DestUsGestureLocal
|
||||||
|
dest DestId
|
||||||
|
activity OutboxItemId
|
||||||
|
|
||||||
|
UniqueDestUsGestureLocal dest
|
||||||
|
UniqueDestUsGestureLocalActivity activity
|
||||||
|
|
||||||
|
DestUsGestureRemote
|
||||||
|
dest DestId
|
||||||
|
actor RemoteActorId
|
||||||
|
activity RemoteActivityId
|
||||||
|
|
||||||
|
UniqueDestUsGestureRemote dest
|
||||||
|
UniqueDestUsGestureRemoteActivity activity
|
||||||
|
|
||||||
|
-- Our accept
|
||||||
|
--
|
||||||
|
-- OriginUs: Checking my collaborator's Add, I sent my Accept
|
||||||
|
-- OriginThem: Seeing the Add, their Accept and my collaborator's Accept, I
|
||||||
|
-- sent my Accept
|
||||||
|
|
||||||
|
DestUsAccept
|
||||||
|
dest DestId
|
||||||
|
accept OutboxItemId
|
||||||
|
|
||||||
|
UniqueDestUsAccept dest
|
||||||
|
UniqueDestUsAcceptAccept accept
|
||||||
|
|
||||||
|
-- Their collaborator's gesture
|
||||||
|
--
|
||||||
|
-- OriginUs: N/A (they send it but we don't record it)
|
||||||
|
-- OriginThem: The Add that started the sequence
|
||||||
|
|
||||||
|
DestThemGestureLocal
|
||||||
|
them DestOriginThemId
|
||||||
|
add OutboxItemId
|
||||||
|
|
||||||
|
UniqueDestThemGestureLocal them
|
||||||
|
UniqueDestThemGestureLocalAdd add
|
||||||
|
|
||||||
|
DestThemGestureRemote
|
||||||
|
them DestOriginThemId
|
||||||
|
actor RemoteActorId
|
||||||
|
add RemoteActivityId
|
||||||
|
|
||||||
|
UniqueDestThemGestureRemote them
|
||||||
|
UniqueDestThemGestureRemoteAdd add
|
||||||
|
|
||||||
|
-- Their accept
|
||||||
|
--
|
||||||
|
-- OriginUs: N/A
|
||||||
|
-- OriginThem: Seeing their collaborator's Add, they sent an Accept
|
||||||
|
|
||||||
|
DestThemAcceptLocal
|
||||||
|
them DestOriginThemId
|
||||||
|
topic DestTopicLocalId
|
||||||
|
accept OutboxItemId
|
||||||
|
|
||||||
|
UniqueDestThemAcceptLocal them
|
||||||
|
UniqueDestThemAcceptLocalTopic topic
|
||||||
|
UniqueDestThemAcceptLocalAccept accept
|
||||||
|
|
||||||
|
DestThemAcceptRemote
|
||||||
|
them DestOriginThemId
|
||||||
|
topic DestTopicRemoteId
|
||||||
|
accept RemoteActivityId
|
||||||
|
|
||||||
|
UniqueDestThemAcceptRemote them
|
||||||
|
UniqueDestThemAcceptRemoteTopic topic
|
||||||
|
UniqueDestThemAcceptRemoteAccept accept
|
||||||
|
|
||||||
|
---------------------------------- Dest enable -------------------------------
|
||||||
|
|
||||||
|
-- Witnesses that, seeing our approval and their collaborator's gesture,
|
||||||
|
-- they've sent us a delegator-Grant, and we now officially consider them a
|
||||||
|
-- dest of us
|
||||||
|
|
||||||
|
DestThemSendDelegatorLocal
|
||||||
|
dest DestUsAcceptId
|
||||||
|
topic DestTopicLocalId
|
||||||
|
grant OutboxItemId
|
||||||
|
|
||||||
|
UniqueDestThemSendDelegatorLocal dest
|
||||||
|
UniqueDestThemSendDelegatorLocalTopic topic
|
||||||
|
UniqueDestThemSendDelegatorLocalGrant grant
|
||||||
|
|
||||||
|
DestThemSendDelegatorRemote
|
||||||
|
dest DestUsAcceptId
|
||||||
|
topic DestTopicRemoteId
|
||||||
|
grant RemoteActivityId
|
||||||
|
|
||||||
|
UniqueDestThemSendDelegatorRemote dest
|
||||||
|
UniqueDestThemSendDelegatorRemoteTopic topic
|
||||||
|
UniqueDestThemSendDelegatorRemoteGrant grant
|
||||||
|
|
Loading…
Reference in a new issue