]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - support/doc/development/server/code.md
Misc. typos (#245)
[github/Chocobozzz/PeerTube.git] / support / doc / development / server / code.md
CommitLineData
00ffc03e
C
1# Server code documentation
2
69f616ab 3The server is a web server developed with [TypeScript](https://www.typescriptlang.org/)/[Express](http://expressjs.com).
00ffc03e
C
4
5
6## Technologies
7
69f616ab 8 * [TypeScript](https://www.typescriptlang.org/) -> Language
7e6afafd 9 * [PostgreSQL](https://www.postgresql.org/) -> Database
00ffc03e 10 * [Express](http://expressjs.com) -> Web server framework
7e6afafd 11 * [Sequelize](http://docs.sequelizejs.com/en/v3/) -> SQL ORM
82e62423 12 * [WebTorrent](https://webtorrent.io/) -> BitTorrent tracker and torrent creation
00ffc03e
C
13 * [Mocha](https://mochajs.org/) -> Test framework
14
15
16## Files
17
afe81767
C
18The server main file is [server.ts](/server.ts).
19The server modules description are in the [package.json](/package.json) at the project root.
20All other server files are in the [server](/server) directory:
00ffc03e 21
2bb0f9d5 22 server.ts -> app initialization, main routes configuration (static routes...)
00ffc03e
C
23 config -> server YAML configurations (for tests, production...)
24 scripts -> Scripts files for npm run
25 server
26 |__ controllers -> API routes/controllers files
27 |__ helpers -> functions used by different part of the project (logger, utils...)
28 |__ initializers -> functions used at the server startup (installer, database, constants...)
339632b4 29 |__ lib -> library function (WebTorrent, OAuth2, ActivityPub...)
00ffc03e 30 |__ middlewares -> middlewares for controllers (requests validators, requests pagination...)
fcaf1e0a 31 |__ models -> Sequelize models for each SQL tables (videos, users, accounts...)
00ffc03e
C
32 |__ tests -> API tests and real world simulations (to test the decentralized feature...)
33
34
35## Conventions
36
37Uses [JavaScript Standard Style](http://standardjs.com/).
38
00ffc03e
C
39## Architecture
40
41The server is composed by:
42
a2431b7d 43 * a REST API (Express framework)
00ffc03e 44 * a WebTorrent Tracker
00ffc03e 45
a2431b7d 46A video is seeded by the server with the [WebSeed](http://www.bittorrent.org/beps/bep_0019.html) protocol (HTTP).
00ffc03e 47
afe81767 48![Architecture scheme](/support/doc/development/server/upload-video.png)
00ffc03e 49
7e6afafd 50When a user uploads a video, the rest API create the torrent file and then adds it to its database.
00ffc03e 51
82e62423 52If a user wants to watch the video, the tracker will indicate all other users that are watching the video + the HTTP url for the WebSeed.
00ffc03e
C
53
54## Newcomers
55
afe81767
C
56The server entrypoint is [server.ts](/server.ts). You can begin to look at this file.
57Then you can try to understand the [controllers](/server/controllers): they are the entrypoint of each API request.