P2PSP server implementation
Method to check if proper P2PSP core binaries are present on supplied path. Exits with code 1 if checks fail.
Void
Main controller method for listing out all channels currently present in database. Response is sent in JSON encoded array of objects containing channel information, HTTP 500 for server error.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
res | Object |
- Express response object |
Void
Controller method for getting information about a single channel with given channel url. Response is sent in JSON JSON encoded object containing channel information, HTTP 400 for wrong url, HTTP 500 for server error.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
res | Object |
- Express response object |
Void
Controller method for adding a new channel with given channel name. Newly created channel's password and url are returned along with HTTP 200, on error HTTP 500 is returned instead. For every server error, logger is fed with err stack which shall be printed on attached [process.stdout].
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
res | Object |
- Express response object |
Void
Controller method for editing a single channel with given channel url and its corresponding password. HTTP 200 is returned if successful, otherwise HTTP 500 for error.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
res | Object |
- Express response object |
Void
Controller method for removing a single channel with given channel url and its corresponding password. HTTP 200 is returned if successful, otherwise HTTP 500 for error.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
res | Object |
- Express response object |
Void
Main controller method for rendering all channels currently present in database.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
res | Object |
- Express response object |
Void
Controller method for getting information about a single channel with given channel url.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
res | Object |
- Express response object |
Void
Controller method for rendering form for adding a new channel.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
res | Object |
- Express response object |
Void
Controller method for adding a new channel with given channel name.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
res | Object |
- Express response object |
Void
Controller method for rendering form for editing an exisitng channel.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
res | Object |
- Express response object |
Void
Controller method for editing a single channel with given channel url and its corresponding password.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
res | Object |
- Express response object |
Void
Controller method for rendering remove channel form.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
res | Object |
- Express response object |
Void
Controller method for removing a single channel with given channel url and its corresponding password.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
res | Object |
- Express response object |
Void
Validator for listing all existing channels. Sanitizes limit and offset query and proceeds to next() middleware. If limit is more than 50 items, it will default to 50.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
req.query.limit | String |
- Numerical value for limit on items | |
req.query.offset | String |
- Numerical value for offset of items | |
res | Object |
- Express response object | |
next | Function |
- Express next middleware function |
Request body validator for adding a new channel route. Validates the type of data being sent and also performs checks on port numbers. Returns HTTP Status 400 if wrong data is being sent otherwise calls next() middleware. Keep in mind that this validator is seperate from frontendAdd() since this guards the api rather than the frontend request.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
req.body.channelDescription | String |
- Description about the channel | |
req.body.channelName | String |
- Name of the channel | |
req.body.sourceAddress | String |
- Address of the source stream | |
req.body.sourcePort | Number |
- Source port, should be between 0 - 65535 | |
req.body.headerSize | Number |
- Size of headers in bytes | |
req.body.isSmartSourceClient | Boolean |
- Boolean flag to change modes | |
res | Object |
- Express response object | |
next | Function |
- Express next middleware function |
Request body validator for adding a new channel through frontend. Validates the type of data being sent and also performs checks on port numbers. Returns HTTP Status 400 if wrong data is being sent otherwise calls next() middleware The isSmartSourceClient is optional field because of the way HTTP form works with a checkbox value, nothing is sent if it's not checked.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
req.body.channelDescription | String |
- Description about the channel | |
req.body.channelName | String |
- Name of the channel | |
req.body.sourceAddress | String |
- Address of the source stream | |
req.body.sourcePort | Number |
- Source port, should be between 0 - 65535 | |
req.body.headerSize | Number |
- Size of headers in bytes | |
req.body.isSmartSourceClient | Boolean |
- Boolean flag to change modes (optional) | |
res | Object |
- Express response object | |
next | Function |
- Express next middleware function |
Request body validator for editing channel route. Checks for channelNewName, channelNewDescription, channelUrl and channelPassword are sent with the request and calls next(), otherwise denies the request by returning HTTP 400. Does not performs any kind of authorization, needs another validator for that
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
req.body.channelNewDescription | String |
- New description about the channel | |
req.body.channelNewName | String |
- New name of the channel | |
req.body.channelUrl | String |
- Url of the channel to be edited | |
req.body.channelPassword | String |
- Password of the channel to be edited | |
res | Object |
- Express response object | |
next | Function |
- Express next middleware function |
Request body validator for removing an existing channel route. Checks for channelUrl and channelPassword are sent with the request and calls next(), denies the request otherwise by returning HTTP 400. Does not performs any kind of authorization, needs another validator for that.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
req.body.channelUrl | String |
- Url of the channel to be removed | |
req.body.channelPassword | String |
- Password of the channel to be removed | |
res | Object |
- Express response object | |
next | Function |
- Express next middleware function |
Authorization middleware - assumes channelUrl is already present in request and tries to locate and authorize appropirate channel if possible, otherwise denies the request and returns HTTP 401.
Name | Type | Description | |
---|---|---|---|
req | Object |
- Express request object | |
req.body.channelUrl | String |
- Url of the channel | |
req.body.channelPassword | String |
- Password of the channel | |
res | Object |
- Express response object | |
next | Function |
- Express next middleware function |
Function to check if passed parameter is valid port number or not.
Name | Type | Description | |
---|---|---|---|
port | Number |
- Port number |
boolean
Tag Method that helps generating execution command for given string & params
Name | Type | Description | |
---|---|---|---|
strings | Array |
- Array of Strings | |
params | Array |
- Array of arguments passed to function |
String
string with all params placed at right position
Simply stiches together the command and params passed to this function to generate splitter process execution command
Name | Type | Description | |
---|---|---|---|
params | Array |
- Array of arguments passed to function |
String
splitter process execution command
Simply stiches together the command and params passed to this function to generate monitor process execution command
Name | Type | Description | |
---|---|---|---|
params | Array |
- Array of arguments passed to function |
String
monitor process execution command
Communicator module to establish connection and execute commands on remote standalone engine
Exports methods
- connect
- launch
- stop
Void
Function to set processMap to supplied map type
Name | Type | Description | |
---|---|---|---|
mapp | Map |
- Map to store all running processes |
Void
Async function to launch splitter and monitor processes for given channel, returns splitter and monitor address on success, otherwise throws Error
Name | Type | Description | |
---|---|---|---|
strings | Array |
- Array of Strings | |
params | Array |
- Array of arguments passed to function |
Array
Array of splitter and monitor address
Function to stop splitter and monitor process associated with certain channel
Name | Type | Description | |
---|---|---|---|
url | string |
- Unique channel url for which stop is to be called |
Void
OnExit handler, in case of fatal exit all processes are killed
Void
Generates a random port via net.createServer() and returns it in a promise.
Promise
promise resolving to port number
Async function to launch monitor process for given channel, returns monitor process and address on success, otherwise throws Error
Name | Type | Description | |
---|---|---|---|
channel | Object |
- Channel object containing relevant information | |
splitterPort | Number |
- Port number of splitter process |
Object
Contains monitor process and address
Async function to launch splitter process for given channel, returns splitter process and address on success, otherwise throws Error
Name | Type | Description | |
---|---|---|---|
channel | Object |
- Channel object containing relevant information |
Object
Contains splitter process and address
Documentation generated with doxdox.