updated to use pod servie actor
This commit is contained in:
parent
a46fb594e5
commit
064092c373
|
@ -29,20 +29,22 @@ enterURL=>operation: User enters a remote pod URL
|
||||||
reachable=>condition: Is the pod reachable?
|
reachable=>condition: Is the pod reachable?
|
||||||
handleError=>subroutine: Backend handles the error
|
handleError=>subroutine: Backend handles the error
|
||||||
showError=>subroutine: Frontend displays an error message
|
showError=>subroutine: Frontend displays an error message
|
||||||
processContent=>operation: The pod scans all accessible content
|
APfollowrequest=>operation: The pods are added to the DomainFollow table is the follow request succed
|
||||||
userPlay=>operation: The user selects a card
|
activities=>operation: The followed pod send activities to the followers pods
|
||||||
userFollow=>operation: The user follows the library or channel
|
|
||||||
serverLoad=>operation: The pod follows loads the content into cache
|
|
||||||
|
|
||||||
start->enterURL->reachable
|
start->enterURL->reachable
|
||||||
reachable(yes)->processContent
|
reachable(yes)->APfollowrequest
|
||||||
reachable(no)->handleError(right)->showError(top)->enterURL
|
reachable(no)->handleError(right)->showError(top)->enterURL
|
||||||
processContent->userPlay->serverLoad->end
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Backend
|
### Backend
|
||||||
|
|
||||||
FUNKWHALE_OBJECT_TYPES `Domain`
|
FUNKWHALE_OBJECT_TYPES `Domain`
|
||||||
|
`DomainFollow` table :
|
||||||
|
- `target` : the remote pod service actor
|
||||||
|
- `actor` : the pod service actor (maybe its not needed since it will alway be the local service actor. maybe instead of using db entrie we could add this has a model property)
|
||||||
|
|
||||||
|
The follow request should respect AP protocol.
|
||||||
|
|
||||||
### Frontend
|
### Frontend
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue