Feature #883
openPiStore needs to respond to multicast queries
0%
Description
PiSentry devices will send a multicast query to ask for pistore addresses. The response comes with a unique uuid generated by PiStore or an existing uuid if it previously registered the PiSentry. This query will be on a different port than Ironman multicast queries. Any newly generated UUID remains in pre-registration state for 1 minute waiting for the PiSentry to complete registration through a PiStore API.
PiStore devices will respond to the PiSentry with the uuid calling the PiSentry's /uuid API (like /register for Ironman, but specifcally for PiSentry). PiSentry's complete the registration by calling the PiStore's /register API. This causes PiStore to remove the pre-registration state for that UUID.
PiSentry picks the first response that arrives from it's multicast request. After registration is completed the PiSentry then calls an API on PiStores's mongoose server to request a place to store its files. PiStore reserves a location (under directories marked for PiSentry use) by creating a directory with the PiSentry UUID and responds with the mount point and directory name.
PiSentry maintains the UUID w/IP. If the same IP sends the multicast request again it returns the same UUID. The storage remains on PiStore until PiStore WebUI frees it or the owning PiSentry clears it.
See piboxd for how to receive multicast messages (from IoT devices). This may need to be ported to piboxlib to allow easier re-use.
PiStore will create a device UUID and session id under it's name and save files to <mount>/pisentry/<device id>/<session id>/<files>. A unique name assigned by the user may be used instead of the device ID (see /etc/monitor for the DESCRIPTOR entered in imwww web UI).
The Session ID is created every time a PiSentry requests a new registration even though it's already registered with the PiStore.
Files
Related issues