Media/Content Library
The Media/Content Library plugin allows content items (basically, any files including media files such as images and videos) to be saved, organized, and served by Iotellect. The items are organized in a hierarchy of folders and each can be accessed by a URI determined by the folder structure and the Iotellect server host name. In addition to being used as typical Unified Data Model variables, the resources of the Media/Content Library can also be accesses through its HTTP API, for example from Iotellect Dashboard components.
![]() | The Media/Content Library API and REST API are separate plugins which require different authentication tokens. Although each plugin has an Furthermore, REST commands have the path format |
Configuration
Configuration properties for the library.
Field Description | Type | Details |
Allow Anonymous Access | Boolean | When enabled, content will be served regardless of whether the requestor is authenticated. When disabled, content will be served only to authenticated requestors. Especially applicable in the case where Anonymous Permissions are enabled. |
File List
Folders and resources in the Media/Content Library are defined as entries in a table with the following fields:
Field Description | Type | Details |
Type | String | Indicate whether the entry is a
|
Name | String | The name of the file or folder. The URI of the API call for retrieving a resource will be based on this field and the name fields of any parent folder or folders. |
Folder Contents | Data Table | Nested data table which is accessible for |
File | Data Block | Data block which is accessible for |
Content Type | String | Accessible for |
Cache Control | String | HTTP header defining instructions for client caching in accordance with RFC 7234 Cache Control.
|
URI Alias | String | Accessible for For example, if a file named The URI Alias may be expressed as a path, for example,
|
Using the Media/Content Library REST API
File Request
Retrieves a resources from the library.
Request
GET /content/file/<Path to File>/<File Name>
Path to File - directory names in increasing order of depth separated by the
/
character.File Name - Name of the file indicated in the Name field of the configuration table.
Request Header Fields
Authorization — Current authentication token. For more information about authentication, see Authenticating.
Response Body
Dependent on the content type of the resource being retrieved.
Example Request
Request:
GET https://localhost:8080/content/file/text_directory/text_file.txt
Example Response
Text file content
Media/Content Library Usage Example
Adding Content
The example below includes two rows, one configured as a text file, the other as a folder. The file example_text.txt
contains text data, and the folder plants
contains a sub-table with an image flower_picture.png
.
Type | Name | Folder Contents | File | Content Type | Cache Control |
---|---|---|---|---|---|
File | text.txt | N/a | example_text.txt | text/plain | Public |
Folder | plants |
| N/A | N/A | Public |
Sub-Table
Type | Name | Folder Contents | File | Content Type | Cache Control |
---|---|---|---|---|---|
File | flower.png | N/a | flower_picture.png | image/png | Public |
Authentication
All requests to the library must be fully authenticated, meaning they must contain a bearer token generated from the authorization request.
An example using cURL in a Linux command line appears as the following:
curl --request POST 'http://localhost:8080/web/v1/public/auth' \
--header 'Content-Type: application/json' \
--data-raw '{"username":"admin","password":"admin"}'
Response
{
"token": "eyJhbGciOiJIUzI1NiJ9.dCI6MTY3NDIxMDg1NywiaXNzIjoiY29tLnRpYmJvLmxpbmtzZXJ2ZXIuc...",
"simpleMode": false,
"existsAdministrationDashboard": false,
"accessedAdministrationDashboard": true,
"administrationDashboardPath": "users.admin.dashboards.administration"
}
The token
parameter contains the authentication token.
API Commands
File request
To retrieve the text data from the command line, the following request can be used:
curl --request GET 'http://localhost:8080/content/file/text.txt' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiJ9.dCI6MTY3NDIxMDg1NywiaXNzIjoiY29tLnRpYmJvLmxpbmtzZXJ2ZXIuc...'
Response
The above command will return the value of the file text.txt
:
This is some example text.
Dashboards
To use a resource in a dashboard component, for example in an Image component, select the URL option and use the URI of the desired resource. In the example above, if the desired image is flowers.png
in the folder plants/
, than the URL to use will be http://localhost:8080/content/file/plants/flowers.png
.
Replacing Default Assets
The Media/Content Library can also be used to replace any asset visible in the web UI. An example use case might be replacing the default Iotellect menu icons to match a given palette, or changing the default font.
Changing Icons
Suppose the goal is to replace the default server icon with a custom icon custom-icon.png
. The default icon is displayed below:

Use the developer tools of the browser to determine the HTML that displays the icon:
<img src="/web/static/images/st_server.png" alt="" loading="lazy" draggable="false">
From this HTML, determine the location of the resource, in this case /web/static/images/st_server.png
.
Add the custom-icon.png
to the Media/Content library so it will display for /web/static/images/st_server.png
and override the default icon. The below tables must be created in the Media/Content Library for this purpose:
Root Folder, ‘web’
Type | Name | Folder Contents | File | Content Type | Cache Control |
---|---|---|---|---|---|
Folder | web |
| N/A | N/A | Public |
Sub Table 1 ('static' Folder)
Folder | static |
| N/A | N/A | Public |
Sub Table 2 ('images' Folder)
Folder | images |
| N/A | N/A | Public |
Sub-Table-3 (File)
File | st_server.png | N/A |
|
| Public |
As a result, any references to web/static/images/st_server.png
will be overwritten by the custom icon custom-icon.png
.
Customize Fonts
Default fonts can be overridden with the same process described above. Using the developer tools, identify the default font location. For example, the following part of the fonts.css
file indicates the storage location of the Roboto-Light
fonts:
@font-face {
font-family: 'Roboto';
src: url(/web/static/fonts/Roboto-Light.woff2) format('woff2'),
url(/web/static/fonts/Roboto-Light.woff) format('woff'),
url(/web/static/fonts/Roboto-Light.ttf) format('truetype');
font-weight: 300;
font-style: normal;
font-display: swap;
}
From the above, the default locations of the fonts are /web/static/fonts/Roboto-Light.woff2
, with format woff2
, and so on. Create a similar folder and file structure in the Media/Content Library leading to /web/static/fonts/Roboto-Light.woff2
, similar to what was described in the Changing Icons section.
Root Folder, ‘web’
Type | Name | Folder Contents | File | Content Type | Cache Control |
---|---|---|---|---|---|
Folder | web |
| N/A | N/A | Public |
Sub Table 1 ('static' Folder)
Folder | static |
| N/A | N/A | Public |
Sub Table 2 ('fonts' Folder)
Folder | fonts |
| N/A | N/A | Public |
Sub-Table-3 (File)
File | Roboto-Light.woff2 | N/A |
|
| Public |
File | Roboto-Light.woff | N/A |
|
| Public |
File | Roboto-Light.ttf | N/A |
|
| Public |
In place of the default fonts, the custom fonts will be loaded.
Was this page helpful?