A Hello World Example for JSON
If you change the example slightly, then a JSON object will be delivered.
- arangosh> db._routing.save({
- ........> url: "/hello/json",
- ........> content: {
- ........> contentType: "application/json",
- ........> body: '{"hello" : "world"}'
- ........> }
- ........> });
- arangosh> require("internal").reloadRouting()
Show execution results
- {
- "_id" : "_routing/68279",
- "_key" : "68279",
- "_rev" : "_ZP4PGjW---"
- }
Hide execution results
Again check with your browser or cURL http://localhost:8529/hello/json
Depending on your browser and installed add-ons you will either see the JSONobject or a download dialog. If your browser wants to open an externalapplication to display the JSON object, you can change the contentType to“text/plain” for the example. This makes it easier to check the example usinga browser. Or use curl to access the server.
Show execution results
- shell> curl --header 'accept: application/json' --dump - http://localhost:8529/hello/json
- HTTP/1.1 OK
- content-type: application/json; charset=utf-8
- x-content-type-options: nosniff
- {
- "hello" : "world"
- }
Hide execution results
Show execution results
Hide execution results
Delivering Content
There are a lot of different ways on how to deliver content. We have alreadyseen the simplest one, where static content is delivered. The fun, however,starts when delivering dynamic content.
Static Content
You can specify a body and a content-type.
- arangosh> db._routing.save({
- ........> url: "/hello/contentType",
- ........> content: {
- ........> contentType: "text/html",
- ........> body: "<html><body>Hello World</body></html>"
- ........> }
- ........> });
- arangosh> require("internal").reloadRouting()
Show execution results
- {
- "_id" : "_routing/68289",
- "_key" : "68289",
- "_rev" : "_ZP4PGlW---"
- }
Hide execution results
Show execution results
- shell> curl --header 'accept: application/json' --dump - http://localhost:8529/hello/contentType
- HTTP/1.1 OK
- content-type: text/html
- x-content-type-options: nosniff
- "Hello World"
Hide execution results
Show execution results
Hide execution results
If the content type is text/plain then you can use the short-cut
{
content: "Hello World"
}
A Simple Action
The simplest dynamic action is:
{
action: {
do: "@arangodb/actions/echoRequest"
}
}
It is not advisable to store functions directly in the routing table. It isbetter to call functions defined in modules. In the above example the functioncan be accessed from JavaScript as:
require("@arangodb/actions").echoRequest
The function echoRequest is pre-defined. It takes the request objects andechos it in the response.
The signature of such a function must be
function (req, res, options, next)
Examples
- arangosh> db._routing.save({
- ........> url: "/hello/echo",
- ........> action: {
- ........> do: "@arangodb/actions/echoRequest"
- ........> }
- ........> });
Show execution results
- {
- "_id" : "_routing/68299",
- "_key" : "68299",
- "_rev" : "_ZP4PGn6---"
- }
Hide execution results
Reload the routing and check http:// 127.0.0.1:8529/hello/echo
You should see something like
- arangosh> arango.GET_RAW("/hello/echo", { "accept" : "application/json" })
Show execution results
- {
- "code" : 200,
- "error" : false,
- "body" : "{\"request\":{\"authorized\":true,\"user\":\"root\",\"database\":\"_system\",\"url\":\"/hello/echo\",\"protocol\":\"http\",\"server\":{\"address\":\"127.0.0.1\",\"port\":37891},\"client\":{\"address\":\"127.0.0.1\",\"port\":44042,\"id\":\"156817587559043\"},\"internals\":{},\"headers\":{\"host\":\"127....",
- "headers" : {
- "connection" : "Keep-Alive",
- "content-length" : "467",
- "content-type" : "application/json; charset=utf-8",
- "http/1.1" : "OK",
- "server" : "ArangoDB",
- "x-content-type-options" : "nosniff"
- }
- }
Hide execution results
Show execution results
Hide execution results
The request might contain path, prefix, suffix, and urlParameters_attributes. _path is the complete path as supplied by the user and alwaysavailable. If a prefix was matched, then this prefix is stored in the attributeprefix and the remaining URL parts are stored as an array in suffix. If oneor more parameters were matched, then the parameter values are stored inurlParameters.
For example, if the url description is
{
url: {
match: "/hello/:name/:action"
}
}
and you request the path /hello/emil/jump, then the request objectwill contain the following attribute
urlParameters: {
name: "emil",
action: "jump"
}
Action Controller
As an alternative to the simple action, you can use controllers. A controller isa module, defines the function get, put, post, delete, head,patch. If a request of the corresponding type is matched, the function will becalled.
Examples
- arangosh> db._routing.save({
- ........> url: "/hello/echo",
- ........> action: {
- ........> controller: "@arangodb/actions/echoController"
- ........> }
- ........> });
Show execution results
- {
- "_id" : "_routing/68309",
- "_key" : "68309",
- "_rev" : "_ZP4PGp6---"
- }
Hide execution results
Reload the routing and check http:// 127.0.0.1:8529/hello/echo:
- arangosh> arango.GET_RAW("/hello/echo", { "accept" : "application/json" })
Show execution results
- {
- "code" : 200,
- "error" : false,
- "body" : "{\"request\":{\"authorized\":true,\"user\":\"root\",\"database\":\"_system\",\"url\":\"/hello/echo\",\"protocol\":\"http\",\"server\":{\"address\":\"127.0.0.1\",\"port\":37891},\"client\":{\"address\":\"127.0.0.1\",\"port\":44042,\"id\":\"156817587559043\"},\"internals\":{},\"headers\":{\"host\":\"127....",
- "headers" : {
- "connection" : "Keep-Alive",
- "content-length" : "467",
- "content-type" : "application/json; charset=utf-8",
- "http/1.1" : "OK",
- "server" : "ArangoDB",
- "x-content-type-options" : "nosniff"
- }
- }
Hide execution results
Show execution results
Hide execution results
Prefix Action Controller
The controller is selected when the definition is read. There is a moreflexible, but slower and maybe insecure variant, the prefix controller.
Assume that the url is a prefix match
{
url: {
match: /hello/*"
}
}
You can use
{
action: {
prefixController: "@arangodb/actions"
}
}
to define a prefix controller. If the URL /hello/echoController is given, thenthe module @arangodb/actions/echoController is used.
If you use a prefix controller, you should make certain that no unwanted actionsare available under the prefix.
The definition
{
action: "@arangodb/actions"
}
is a short-cut for a prefix controller definition.
Function Action
You can also store a function directly in the routing table.
Examples
- arangosh> db._routing.save({
- ........> url: "/hello/echo",
- ........> action: {
- ........> callback: "function(req,res) {res.statusCode=200; res.body='Hello'}"
- ........> }
- ........> });
Show execution results
- {
- "_id" : "_routing/68319",
- "_key" : "68319",
- "_rev" : "_ZP4PGr6---"
- }
Hide execution results
- arangosh> arango.GET_RAW("hello/echo", { "accept" : "application/json" })
- arangosh> db._query("FOR route IN _routing FILTER route.url == '/hello/echo' REMOVE route in _routing")
- arangosh> require("internal").reloadRouting()
Show execution results
- {
- "code" : 200,
- "error" : false,
- "body" : "Hello",
- "headers" : {
- "connection" : "Keep-Alive",
- "content-length" : "5",
- "content-type" : "application/json; charset=utf-8",
- "http/1.1" : "OK",
- "server" : "ArangoDB",
- "x-content-type-options" : "nosniff"
- }
- }
- [object ArangoQueryCursor, count: 0, cached: false, hasMore: false]
Hide execution results
Requests and Responses
The controller must define handler functions which take a request object andfill the response object.
A very simple example is the function echoRequest defined in the module@arangodb/actions.
function (req, res, options, next) {
var result;
result = { request: req, options: options };
res.responseCode = exports.HTTP_OK;
res.contentType = "application/json";
res.body = JSON.stringify(result);
}
Install it via:
- arangosh> db._routing.save({
- ........> url: "/echo",
- ........> action: {
- ........> do: "@arangodb/actions/echoRequest"
- ........> }
- ........> })
Show execution results
- {
- "_id" : "_routing/68328",
- "_key" : "68328",
- "_rev" : "_ZP4PGt6---"
- }
Hide execution results
Reload the routing and check http:// 127.0.0.1:8529/hello/echo
You should see something like
- arangosh> arango.GET_RAW("/hello/echo", { "accept" : "application/json" })
- arangosh> db._query("FOR route IN _routing FILTER route.url == '/hello/echo' REMOVE route in _routing")
- arangosh> require("internal").reloadRouting()
Show execution results
- {
- "code" : 404,
- "error" : true,
- "errorNum" : 404,
- "errorMessage" : "404 Not Found",
- "body" : "{\"error\":true,\"code\":404,\"errorNum\":404,\"errorMessage\":\"unknown path '/hello/echo'\"}",
- "headers" : {
- "connection" : "Keep-Alive",
- "content-length" : "84",
- "content-type" : "application/json; charset=utf-8",
- "http/1.1" : "Not Found",
- "server" : "ArangoDB",
- "x-content-type-options" : "nosniff"
- }
- }
- [object ArangoQueryCursor, count: 0, cached: false, hasMore: false]
Hide execution results
You may also pass options to the called function:
- arangosh> db._routing.save({
- ........> url: "/echo",
- ........> action: {
- ........> do: "@arangodb/actions/echoRequest",
- ........> options: {
- ........> "Hello": "World"
- ........> }
- ........> }
- ........> });
Show execution results
- {
- "_id" : "_routing/68337",
- "_key" : "68337",
- "_rev" : "_ZP4PGvm---"
- }
Hide execution results
You now see the options in the result:
- arangosh> arango.GET_RAW("/echo", { accept: "application/json" })
- arangosh> db._query("FOR route IN _routing FILTER route.url == '/echo' REMOVE route in _routing")
- arangosh> require("internal").reloadRouting()
Show execution results
- {
- "code" : 200,
- "error" : false,
- "body" : "{\"request\":{\"authorized\":true,\"user\":\"root\",\"database\":\"_system\",\"url\":\"/echo\",\"protocol\":\"http\",\"server\":{\"address\":\"127.0.0.1\",\"port\":37891},\"client\":{\"address\":\"127.0.0.1\",\"port\":44042,\"id\":\"156817587559043\"},\"internals\":{},\"headers\":{\"host\":\"127.0.0.1\"...",
- "headers" : {
- "connection" : "Keep-Alive",
- "content-length" : "461",
- "content-type" : "application/json; charset=utf-8",
- "http/1.1" : "OK",
- "server" : "ArangoDB",
- "x-content-type-options" : "nosniff"
- }
- }
- [object ArangoQueryCursor, count: 0, cached: false, hasMore: false]
Hide execution results