-
-
Notifications
You must be signed in to change notification settings - Fork 8
Template API
The template API is used to create, manage, update, extend, and remove templates. As of now, it isn't authenticated. It functions as a REST API, supporting a variety of routes and methods.
All APIs are mounted on the /api
route, including the template API.
Unless states otherwise, all non-empty request bodies are expected to be be JSON.
The following routes and methods are supported in the template API.
This route supports 3 methods: GET
, POST
, and DELETE
.
Retrieves the names of all templates.
Request
GET /api/template
Response
{
"msg": "3 template(s) found!",
"count": 1,
"data": [
"empty-curly-borders",
...
]
}
Creates a new template.
Request
POST http://localhost:8080/api/template
Content-Type: application/json
{
"name": "empty-curly-borders",
"title": "Empty, Curly Borders",
"background": "stock/empty/curly-borders.png",
"dimensions": {
"x": 990,
"y": 765
},
"fields": [
{ ... },
{ ... }
]
}
Response
{
"data": {
"name": "empty-curly-borders",
"title": "Empty, Curly Borders",
"background": "stock/empty/curly-borders.png",
"dimensions": {
"x": 990,
"y": 765
},
"fields": [
{ ... },
{ ... }
],
"date": "2021-07-11T12:47:31.771Z"
},
"msg": "Template created!"
}
Deletes all/multiple templates.
- If no query parameters are provided,
- If there are no existing certificates, it deletes all templates.
- If there are existing certificates, it returns a failure message.
- If the parameter
unused
is provided with any value, it deletes all unused templates i. e. Those not used by any certificate. - If the parameter
force
is provided with any value, it deletes all certificates and templates.
Request
DELETE /api/template
Response
{
"msg": "All templates deleted!",
"data": [
"empty-curly-borders",
...
],
"count": 3
}
This route is used for operations pertaining to the template identified by {name}
.
It supports the GET
, PATCH
, and DELETE
methods.
Retrieves a particular template.
Request
GET /api/template/empty-curly-borders
Response
{
"msg": "Template found!",
"data": {
"name": "empty-curly-borders",
"title": "Empty, Curly Borders",
"background": "stock/empty/curly-borders.png",
"dimensions": {
"x": 990,
"y": 765
},
"fields": [
{ ... },
{ ... }
],
"date": "2021-07-11T12:53:36.294Z"
}
}
Update a particular template.
The request body is supposed to have an updated version of the same template. The untouched global properties of the template and the unchanged fields may be omitted.
-
Fields that are supposed to be deleted should have the property
delete
set totrue
.Example
{ "fields": [ { ... }, { "name": "unwantedField", "delete": true }, { ... } ] }
-
Fields that have the property
fixed
set to true in the template cannot be updated unless"force": true
is present in the field's body.Example
{ "fields": [ { ... }, { "name": "thisFieldFailsToGetUpdated", "position": { "x": 20, "y": 30 } }, { "name": "thisFieldGetsUpdatedSuccessfully", "position": { "x": 20, "y": 30 }, "force": true }, { ... } ] }
-
If no query parameters are provided,
- If there are no existing certificates associated with the template, it updates the template.
- If there are existing certificates associated with the template, it returns a failure message.
-
If the parameter
force
is provided with any value, it deletes all the associated certificates are deleted and the template is updated. -
If both the
force
andkeep
parameters are provided with any values, the associated certificates are retained and the template is updated.
Request
PATCH /api/template/empty-curly-borders
Content-Type: application/json
{
"dimensions": {
"x": 400,
"y": 500
},
"title": "Chappal",
"fields": [
{
"name": "Surname",
"delete": true
},
{
"name": "DP",
"position": {
"x": 200,
"y": 300
}
}
]
}
Response
{
"data": {
"name": "empty-curly-borders",
"title": "Chappal",
"background": "stock/empty/curly-borders.png",
"dimensions": {
"x": 400,
"y": 500
},
"fields": [
{
"name": "Name",
...
},
{
"name": "DP",
"position": {
"x": 200,
"y": 300
},
...
}
],
"date": "2021-07-11T13:01:32.711Z"
},
"msg": "Template updated!"
}
Deletes a particular template.
If the templates is being used by at least one certificate, it won't be deleted and a failure message will be returned.
To force deletion of the template and its corresponding
certificates, use the force
query parameter with any value.
Request
DELETE /api/template/empty-curly-borders
Response
{
"msg": "Template deleted!",
"data": {
"name": "empty-curly-borders",
"title": "Chappal",
"background": "stock/empty/curly-borders.png",
"dimensions": { ... },
"fields": [
{ ... },
{ ... }
],
"date": "2021-07-11T13:01:32.711Z"
}
}
This route supports only GET
requests and returns a
preview of the template identified by {name}
. The format
is PNG by default. If the query parameter pdf
is provided
with any value, the preview is rendered and returned
as a PDF.
- PNG:
GET /api/template/empty-curly-borders/preview
- PDF:
GET /api/template/empty-curly-borders/preview?pdf
This route supports only POST
requests and is used to create
new templates inheriting properties from the existing template
identified by {name}
.
Creates a new template based on an existing template.
The same set of updation rules apply here as those of
PATCH
on the /api/template/{name}
route. See
here for details.
Request
POST /api/template/empty-curly-borders/extend
Content-Type: application/json
{
"name": "empty-curly-borders-new",
"dimensions": {
"x": 400,
"y": 500
},
"title": "Kurta",
"fields": [
{
"name": "Surname",
"delete": true
},
{
"name": "DP",
"image": {
"expectedSize": {
"x": 30,
"y": 34
}
},
"value": "data:image/png;base64,iVBORw0KG...CYII=",
"fixed": true
}
]
}
Response
{
"data": {
"name": "empty-curly-borders-new",
"title": "Kurta",
"background": "stock/empty/curly-borders.png",
"dimensions": { ... },
"fields": [
{
"name": "Name",
...
},
{
"value": "data:image/png;base64,iVBORw0KG...CYII=",
"name": "DP",
"image": {
"expectedSize": {
"x": 30,
"y": 34
}
},
"fixed": true,
...
}
],
"date": "2021-07-11T13:14:40.685Z"
},
"msg": "Template created!"
}
This route supports only GET
requests and returns and triggers
the download of the exported JSON document for the existing template
identified by {name}
.
All images and resources used in the template are returned as a part
of the JSON in the form of Base64 encoded data URIs. If you don't want
this to happen and just want it with resource paths, use the query
parameter plain
with any value.
The exported JSON can later be sent via a POST
to
/api/template
to recreate the template. All images and
resources used within the template will be embedded within the
exported JSON file.
Returns the template as an exported JSON.
Request
GET /api/template/empty-curly-borders/export
Response
{
"name": "empty-curly-borders",
"title": "Empty, Curly Borders",
"background": "data:image/svg+xml;base64,PD94bW...iIgb2Zm=",
"dimensions": {
"x": 990,
"y": 765
},
"fields": [
{ ... },
{ ... }
]
}