1
1
Fork 1
walnut.js/API.md

245 Zeilen
8.9 KiB
Markdown

2017-08-02 22:23:58 +00:00
* Bootstrap Initialization
2017-08-02 23:28:33 +00:00
* Package Discovery
* Package Layout
2017-08-02 22:23:58 +00:00
* Package APIs
* RESTful API constraints
2017-08-02 21:41:10 +00:00
2017-08-02 22:23:58 +00:00
Bootstrap Initialization
--------------
2017-08-02 21:41:10 +00:00
2017-08-02 22:23:58 +00:00
Before walnut is configured it starts up in a bootstrap mode with a single API exposed to set its primary domain.
2017-08-02 21:41:10 +00:00
```bash
2017-08-02 22:23:58 +00:00
# Set up with example.com as the primary domain
curl -X POST http://api.localhost.daplie.me:3000/api/walnut@daplie.com/init \
-H 'X-Forwarded-Proto: https' \
-H 'Content-Type: application/json' \
-d '{ "domain": "example.com" }'
2017-08-02 21:41:10 +00:00
```
2017-08-02 22:23:58 +00:00
From this point forward you can now interact with Walnut at that domain.
2017-08-02 21:41:10 +00:00
2017-08-02 23:28:33 +00:00
OAuth3 Package Discovery
-----------------
Unlike most package systems such as npm (node.js), gem (ruby), pip (python), etc,
which rely on a single, [centralized closed-source repository](https://github.com/npm/registry/issues/41),
walnut packages use the OAuth3 Package Specification which allows for open and closed,
public and private, free and paid packages, according to the desire of the publisher.
In this model the name of a package is all that is necessary to install it from its publisher.
Let's `hello@example.com` as an example:
`hello@example.com` specifies that `hello` is a submodule of the `example.com` package.
As you might guess, the publisher `example.com` is responsible for this package.
`https://example.com/.well-known/packages@oauth3.org/` is the known location where package types can be discovered.
Since we're using `walnut.js` which is published by daplie.com, we can find walnut packages at
`https://example.com/.well-known/packages@oauth3.org/walnut.js@daplie.com.json`
This file tells us where example.com publishes packages that adhere to the `walnut.js@daplie.com` package spec.
(you can imagine that if walnut were to be implemented in ruby the ruby packages could be found at `walnut.rb@daplie.com`
or if walnut were not protected by trademark and another company were to create a similar, but incompatible package
system for it, it would be `walnut.go@acme.co` or some such)
2017-08-02 23:43:28 +00:00
For publishers with a long list of packages you might find a URL to describe
where more information about a package can be found.
Template variables
```
:package_name
:package_version
2017-08-02 23:43:28 +00:00
```
2017-08-02 23:28:33 +00:00
```json
{ "package_url": "https://packages.example.com/indexes/:package_name.json"
, "package_index": "https://packages.example.com/index.json"
2017-08-02 23:59:41 +00:00
, "pingback_url": "https://api.example.com/api/pingback@oauth3.org/:package_name?version=:package_version"
2017-08-02 23:28:33 +00:00
}
```
2017-08-02 23:43:28 +00:00
For publishers with a short list of packages you might find that all of the packages are listed directly.
Template variables
```
:package_name
:package_version
:payment_token
```
2017-08-02 23:28:33 +00:00
```json
{ "package_url": null
, "package_index": null
2017-08-02 23:59:41 +00:00
, "pingback_url": "https://api.example.com/api/pingback@oauth3.org/:package_name?version=:package_version"
2017-08-02 23:28:33 +00:00
, "packages": [
{ "name": "hello@example.com"
, "license": "Physical-Source-v2@licenses.org"
, "requires_payment": true
, "payment_url": "https://author.tld/api/payments@oauth3.org/schemas/packages/walnut.js@daplie.com/:package_name"
, "zip_url": "https://cdn.tld/api/orders@cdn.tld/:package_name-:package_version.zip?authorization=:payment_token"
, "git_https_url":"https://git.cdn.tld/author.tld/:package_name.git#:package_version?authorization=:payment_token"
, "git_ssh_url":":payment_token@git.cdn.tld:author.tld/:package_name.git#:package_version"
}
, { "name": "gizmo@example.com"
, "license": "MIT@licenses.org"
, "requires_payment": false
, "zip_url": "https://example.com/packages/:package_name-:package_version.zip"
, "git_https_url":"https://git.cdn.tld/author.tld/:package_name.git#:package_version"
, "git_ssh_url":"git@git.cdn.tld:author.tld/:package_name.git#:package_version"
}
] }
```
2017-08-02 23:59:41 +00:00
**Note**: It is not expected that the package manage will directly query the publisher -
a centralized caching service may be used.
However, it is intended that a package manager *could* query the publisher, even if the
publisher points back to a centralized cdn.
2017-08-02 23:28:33 +00:00
Package Layout
2017-08-02 22:23:58 +00:00
--------------
2017-08-02 23:28:33 +00:00
Packages have data model, api, and RESTful components.
```
/srv/walnut/packages/rest/hello@example.com/
package.json
api.js
models.js
rest.js
```
Each package must be enabled on a per-domain basis.
```
/srv/walnut/packages/client-api-grants/provider.example.com
'''
hello@example.com
'''
```
When a package is enabled for `example.com` it becomes immediately available via https
as `https://api.example.com/api/package@publisher.tld/`.
Note: although hot-loading of packages is supported, reloading still requires
restarting the walnut server - for now at least
2017-08-02 22:23:58 +00:00
Package APIs
------------
2017-08-02 21:41:10 +00:00
2017-08-02 23:59:41 +00:00
Packages are intended to be functional, however, they allow for instantiation as
a matter of not putting ourselves in a box and finding out later that it's very,
very, very hard to open the box back up.
`rest.js`:
```js
2017-08-02 23:59:41 +00:00
module.exports.create = function (conf, deps, app) {
var API = require('./api.js');
var REST = {
hello: function (req, res/*, next*/) {
var promise = API.hello(deps, req.Models, req.oauth3/*, opts*/);
2017-08-02 23:59:41 +00:00
app.handlePromise(req, res, promise, "[hello@example.com]");
}
}
};
```
2017-08-03 00:47:07 +00:00
### Special methods for `app`:
2017-08-02 23:59:41 +00:00
```js
2017-08-03 00:47:07 +00:00
app.handlePromise(request, response, promise, message);
```
2017-08-02 23:59:41 +00:00
`handlePromise` will respond to the request with the result of `promise` as JSON.
If there is an error, it will include `message` in order to help you debug.
2017-08-03 00:47:07 +00:00
### Special properties of `request`:
2017-08-03 00:11:48 +00:00
```js
2017-08-03 00:21:42 +00:00
req.getSiteCapability(pkg) // Promises a capability on behalf of the current site (req.experienceId) without exposing secrets
req.webhookParser(pkg, req, opts) // Allows the use of potentially dangerous parsers (i.e. urlencoded) for the sake of webhooks
2017-08-03 00:15:28 +00:00
req.apiUrlPrefix // This represents the full package path without any package specific endpoints
// This is particularly useful when constructing webhook URLs
// i.e. https://api.example.com/api/pkg@domain.tld
// (of https://api.example.com/api/pkg@domain.tld/public/foo)
2017-08-03 00:11:48 +00:00
req.experienceId // The instance name of an app as a whole, where an app is mounted
// i.e. the 'example.com' part of https://example.com/foo
// OR 'example.com#foo' if '/foo' is part of the app's mount point
2017-08-03 00:11:48 +00:00
req.clientApiUri // The api URL for the instance of an app
2017-08-03 00:15:28 +00:00
// i.e. the 'api.example.com' part of https://api.example.com/api/hello@example.com/kv/foo
2017-08-03 00:15:28 +00:00
req.pkgId // The name of the package being accessed
// i.e. the 'hello@example.com' part of https://api.example.com/api/hello@example.com/kv/foo
2017-08-03 00:28:41 +00:00
req.oauth3.accountIdx // The system id of the account represented by the token
// i.e. this is the user
2017-08-03 00:21:42 +00:00
```
Internal (and/or deprecated) APIs that you will very likely encounter
```js
2017-08-03 00:28:41 +00:00
req.getSiteStore().then(function (models) {
req.Models = models;
});
//
// Consider Models for a package 'hello@example.com', the would be named like so
//
req.Models.HelloExampleComData.create(obj)
req.Models.ComExampleHelloData.save(obj)
req.Models.ComExampleHelloData.find(params)
req.Models.ComExampleHelloData.destroy(objOrId)
2017-08-02 21:41:10 +00:00
2017-08-03 00:28:41 +00:00
//
// These should be scoped in such a way that the only hand back data specific
// to the experience and not expose secrets
//
2017-08-02 21:41:10 +00:00
2017-08-03 00:28:41 +00:00
req.getSiteConfig('com.example.hello').then(function (config) {
// the com.example.hello section of /srv/walnut/etc/:domain/config.json
});
req.getSitePackageConfig
2017-08-02 21:41:10 +00:00
2017-08-03 00:28:41 +00:00
//
// Deprecated
//
// These helper methods should be moved to a capability
2017-08-02 21:41:10 +00:00
2017-08-03 00:28:41 +00:00
req.Stripe
req.Mandrill
req.Mailchimp
2017-08-02 21:41:10 +00:00
2017-08-03 00:28:41 +00:00
req.getSiteMailer().then(function (mailer) {});
2017-08-02 21:41:10 +00:00
```
2017-08-02 22:23:58 +00:00
RESTful API Contstraints
------------------------
Walnut will reject requests to all domains and subdomains except those that begin with the subdomain `api`, `assets`, and `webhooks`.
* `api` is for JSON APIs and must use JWT in HTTP Authorization headers for authentication
* secured by disallowing cookies
* secured by disallowing non-JSON form types
* secured by requiring authentication in header
2017-08-02 22:29:21 +00:00
* `assets` is for protected access to large files and other blobs and must use JWT in Cookies for authentication
2017-08-02 22:23:58 +00:00
* warning: allows implicit authorization via cookies for hotlinking and the like
* secured by not exposing tokens when users copy-paste
* `webhooks` is for 3rd-party API hooks and APIs with special requirements outside of the normal security model
* warning: these are insecure and should be used with caution, prudence, and wisdom
* JWT via query parameter
* urlencoded forms
2017-08-02 22:29:21 +00:00
* XML forms
Bare and www domains are DISALLOWED from being served by Walnut.
This enables scalability of static sites as the static assets
are never on the same domain as generic APIs or authenticated assets.
It also enforces security by disallowing 1990s web vulnerabilities by default.