Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-09-06 21:52:28 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2018-09-06 21:52:28 +0300
commit6eefc956d99d163db1f92dc2e593df81bb366434 (patch)
tree05b5b18bff66d33a2ca20a71a42f39d1f75cddd3 /docs
parent6af2e182264328771547e077949a29d8fc0fac65 (diff)
Start of template API
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'docs')
-rw-r--r--docs/tempaltes.md84
1 files changed, 84 insertions, 0 deletions
diff --git a/docs/tempaltes.md b/docs/tempaltes.md
new file mode 100644
index 00000000..7b91d182
--- /dev/null
+++ b/docs/tempaltes.md
@@ -0,0 +1,84 @@
+# Templates
+
+Often users will use the same templates. This documents describes the flow and
+API's that will eventually come into place.
+
+## Template location
+
+There are two kind of templates:
+
+1. system wide templates
+2. user defined tempaltes
+
+Both should be simple template files and preview for them should be obtained using
+the preview API. The richdocuments works as a preview provider so it should provide
+proper previews to use.
+
+### System wide templates
+
+An admin can configure system wide templates. This can be done from the admin
+settings.
+
+These templates are stored in the AppData.
+
+> Note: it might require some less pretty code to get the previews out of the
+appdata. But since it will also work on 13 we have no real alternative.
+
+There are a few special templates that are shipped with the app. The empty
+files. They should always be available.
+
+### User defined tempaltes
+
+In the Collabora user settings the user can select a folder from where to load
+templates. This can be any folder the user has access to. So users can share template
+folders among eachother.
+
+## API
+
+### Listing templates
+
+Send a GET to:
+
+`<server>/ocs/v2.php/apps/richdocuemnts/api/v1/templates/<type>`
+
+Here type can be:
+
+* docuemnt
+* spreadsheet
+* presentation
+
+This returns a list of templates with
+
+* id
+* name
+* link to preview
+* extention
+
+### Template previews
+
+Send a GET to:
+
+`<server>/apps/richdocuemnts/templates/<id>`
+
+Where `id` is the id of the template obtained in the listing. This returns back
+an image (jpeg or png). For displaying.
+
+### Creating document based on a template
+
+Send a POST to
+
+`<server>/ocs/v2.php/apps/richdocuemnts/api/v1/templates/new`
+
+with:
+* `path`: the full path relative to the user where to create the document
+* `template`: the template id you want to create
+
+## Web frontend
+
+When clicking on a new document a selection popup appears listing the
+available templates.
+
+The user can select a template, possible change the name and create it.
+
+This is similar to the current flow with the difference that the user can now
+select a template.