Document structure of pageindex.json

This commit is contained in:
Starbeamrainbowlabs 2020-08-16 16:03:50 +01:00
parent b66c895145
commit 490aeb9752
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
3 changed files with 54 additions and 1 deletions

View File

@ -7,6 +7,7 @@ This file holds the changelog for Pepperminty Wiki. This is the master list of t
### Added
- Added dark theme via `prefers-color-scheme` to configuration guide (see the stable channel guide [here](https://starbeamrainbowlabs.com/labs/peppermint/peppermint-config-info.php) - will only be updated when v0.22 is released)
- Added link thingy you can click next to each setting to jump right to it
- [docs] Documented the structure of `pageindex.json`
### Fixed
- Hide the admin email address at the bottom of every page - we missed it in v0.22-beta1 (but got every other one though :P)

50
docs/60-ref-pageindex.md Normal file
View File

@ -0,0 +1,50 @@
# `pageindex.json` Reference
When working with Pepperminty Wiki, inevitably there will come a point when you'll be interested in the data structures that Pepperminty Wiki uses to store it's primary (i.e. doesn't exist elsewhere) data. Here, the structure of arguably the most important index is discussed - `pageindex.json`.
As the name suggests, `pageindex.json` (henceforth called simply "the page index") contains an index of all the pages present in a wiki and their metadata. It's structure is 1 big JSON object, like this:
```json
{
"Page Name": { ... },
"Another Page Name": { ... },
....
}
```
This structure allows for easy and rapid lookups of metadata relating to a specific page. Each page has it's own metadata object - the structure of which is explained below.
## Page Metadata
As mentioned above, each page has it's own metadata object. This object has a large number of potential different keys from different modules. It is expected that should any module (whether written by @sbrl or otherwise) that needs to store small amounts of page-specific metadata will put it in that page's metadata object.
All the currently known keys in a page's metadata object are listed below. Note that only the core keys may exist. All of the others may or may not exist depending on the specific circumstances.
Key | Module | Type | Purpose
--------------------|-------------------|-----------|-------------
`filename` | _core_ | `string` | The filename where the page's data is stored, relative to the data dir (use `$env->page_filename` instead, not this directly unless you're moving it on disk)
`size` | _core_ | `int` | The size of the page in bytes
`lastmodified` | _core_ | `string` | The UNIX timestamp when the page was last modified (this will change to a datetime string sometime soon)
`lasteditor` | _core_ | `string` | The username of the last user to edit the page.
`tags` | _core_ | `string[]`| List of tags attached to the page
`history` | `feature-history` | `object[]`| List of history object revisions (see below)
`protect` | `action-protect` | `bool` | Whether the page is protected from editing or not
`uploadedfile` | `feature-upload` | `bool` | Whether the page has an associated uploaded file or not
`uploadedfilepath` | `feature-upload` | `string` | Path (relative to the data storage dir) to the uploaded file
`uploadedfilemime` | `feature-upload` | `string` | The MIME type of the uploaded file
`redirect` | `feature-redirect`| `bool` | Whether the page is a redirect page or not
`redirect_target` | `feature-redirect`| `string` | The page name that the redirect page redirects to
`redirect_absolute` | `feature-redirect`| `bool` | Whether the redirect is absolute or not. Absolute redirects are a raw URL that is put into the `location` header.
If a bool doesn't exist, then it is assumed that it's value is `false`.
### History Revision
History revisions in `history` array of objects also have a particular structure. Additionally, order matters: They _must_ be in ascending order of revision id.
Key | Type | Purpose
------------|-----------|-------------------
`type` | `string` | The type of edit. Current known values: `edit`, `revert`
`rid` | `int` | The revision id.
`timestamp` | `int` | The UNIX timestamp of when the edit was made (again, this will be changed to a datetime string soon).
`filename` | `string` | The filepath (relative to the data storage dir) to this specific revision's content on disk (see `$env->page_filename`, as it's sensitive to the history revision being requested. See also `$env->history`).
`newsize` | `int` | The new size of the page, in bytes
`sizediff` | `int` | The difference in size between the previous version and this version
`editor` | `string` | The username of the user who saved this revision.

View File

@ -13,7 +13,9 @@
* [External Renderers](06.8-External-Renderers.md)
* **Maintenance**
* [Command-Line Interface](20-Command-Line-Interface.md)
* [Writing Modules](50-Writing-Modules.md)
* **Development**
* [Writing Modules](50-Writing-Modules.md)
* [`pageindex.json` reference](60-ref-pageindex.md)
* **References**
* [Configuration Settings](https://starbeamrainbowlabs.com/labs/peppermint/peppermint-config-info.php)
* [HTTP API](https://starbeamrainbowlabs.com/labs/peppermint/docs/RestApi/)