]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - ARCHITECTURE.md
Add shares forward and collection on videos/video channels
[github/Chocobozzz/PeerTube.git] / ARCHITECTURE.md
CommitLineData
164283f5 1# Protocol (WIP, help welcome)
8c308c2b
C
2
3## Vocabulary
4
164283f5
C
5 - **Network:** several servers communicating each others with this software compose a network
6 - **Pod:** a server of the network (inspired from Diaspora, no really signification)
7 - **Friend:** a pod that communicates with yours
82e62423 8 - **Origin pod:** the pod on which the video was uploaded and which is seeding (throught WebSeed protocol) the video
164283f5 9 - **Make friend:** the action of a server which will join a network (and so become friend with all pods that compose this network)
8c308c2b
C
10
11## Base
12
13### The first run: join a network and make friends
164283f5
C
14 * The server generates a RSA key
15 * If the server administrator wants to join a network, he just has to make an http request to the API
16 * The server joins a network by checking entrypoints (server urls of the targeted network) in the configuration file
8c308c2b 17 * If the config file doesn't specify other pods, the network will be composed by this only pod
164283f5
C
18 * If the config file specifies one or more pods, the server will ask them the list of the pods in the network.
19 The server will add in its friends list all pods that are in > 50% of all other pods friends list + the pods that are asked for the list. For example if there are the following pods in a network with their following friends list:
8c308c2b
C
20
21 http://pod1.com
22 - http://pod2.com
23 - http://pod3.com
24 - http://pod4.com
25 - http://pod5.com
26
27 http://pod2.com
28 - http://pod3.com
29 - http://pod5.com
30
31 http://pod3.com
32 - http://pod5.com
33
34 It will add: `http://pod1.com`, `http://pod2.com` and `http://pod3.com` because it asks to them the list of their friends. Then, it will add all pods that are in >= 50% of pods friends list so: `http://pod5.com`.
164283f5
C
35 * When the friends list is added, the server will present itself to all these friends ("make friend" operation) with the following informations: its **public RSA key** and its **URL**
36 * Then, the pods will slowly share their videos database
37 * All the friends have the initial score of x points which represents the reliability of this friend
38 * If the score reaches 0 the friend is revoked (blacklisted for the future?) and its videos are deleted
8c308c2b
C
39
40### Communications
164283f5
C
41 * All the communications between pods are signed, encrypted with a RSA key and a symetric encryption in a POST request (body)
42 * All the requests are retried if they failed
43 * The requests are made at regular intervals to all pods of the network with a limit of parallel requests: if there are 1000 pods in the networks, the server won't make more than 10 requests in parallel
44 * If there are no informations to send (no video addition/removal), no requests are made
f018f38e
C
45 * The requests are grouped: for example if the interval is 1 hour and a user$ upload 2 videos there will be only 1 request that contains the 2 videos informations
46 * The requests in the group are ordered: if a user add a video and remove it, we need to transmit these informations to the other pods in the same order
47 * The requests are grouped with a limit: if a user uploads 100 videos at a time, the information could be propagated in a few hours to do not make too big requests
164283f5
C
48 * If a grouped request fails the score is decreased by x points
49 * If a grouped request is a success the score is increased by x points
50 * The maximum of points would be defined
51 * A pod which receives a request checks if the signature corresponds to the pod it has in its database. Then, it decrypts the body (or ignores it if the signature is not valid) and process the requests in the same order
8c308c2b
C
52
53### Actions on a pod
164283f5
C
54 * A pod is a websocket tracker which is responsible for all the video uploaded in it
55 * A pod has an administrator that can add/remove users, make friends and quit friends
8c308c2b 56 * A pod has different user accounts that can upload videos
55e0591c
C
57 * All pods have an index of all videos of the network (name, origin pod url, small description, uploader username, magnet Uri, thumbnail name, created date and the thumbnail file). For example, a test with 1000000 videos (3 tags each) with alphanum characters and the following lengths: name = 50, author = 50, podHost = 25, description = 250, videoExtension = 4, remoteId = 50, infoHash = 50 and tag = 10 has a PostgreSQL size of ~ 2GB with all the useful indexes. To this, we add 1 000 000 thumbnails of 5-15 KB so 15GB maximum
58
59 table_name | row_estimate | index | toast | table
60 pod | 983416 | 140 MB | 83 MB | 57 MB
61 author | 1e+06 | 229 MB | 140 MB | 89 MB
62 tag | 2.96758e+06 | 309 MB | 182 MB | 127 MB
63 video | 1e+06 | 723 MB | 263 MB | 460 MB
64 video_tag | 3e+06 | 316 MB | 212 MB | 104 MB
65
66
82e62423 67 * After having uploaded a video, the server seeds it (WebSeed protocol), adds the meta data in its database and makes a secure request to all of its friends
f018f38e 68 * If a user wants to watch a video, he asks its pod the magnetUri and the frontend adds the torrent (with WebTorrent), creates the HTML5 video tag and streams the file into it
82e62423 69 * A user watching a video seeds it too (BitTorrent) so another user who is watching the same video can get the data from the origin server and the user 1 (etc)
8c308c2b
C
70
71## Ideas
72
73 * A video could have more information (detailed description etc) that are not sent on other pods. The user who wants to see these informations has to ask its pod:
164283f5
C
74 user asks its pod -> user pod asks origin video pod -> origin video pod responds with the informations -> user pod responds to the user (and puts in cache the informations ?). We could extend this scheme with other informations
75 * Redondance: if the origin pod is down, the video is not accessible anymore (no tracker/seeds). We could imagine a redondance between pods that keep seeding the video
8c308c2b 76 * Server could transcode the video to lower qualities (cost in CPU and disk space)
164283f5
C
77 * Add subtitles to videos
78 * Avoid stocking friends URL schemes (http/https)
8c308c2b
C
79
80## Debate
81
8c308c2b 82 * Is an ex-friend should be blacklisted for the future?
164283f5 83 * Handle API breaks in a network. If a major update breaks the API: we need the entire network update to the same major version. We could specify a limit date (2, 3 weeks after the release?) after which all the updated pod would switch to the new version of the API. The non updated pod will then be ejected of the network because would not implement the new API