chairo
This is a fork of geek/chairo
chairo ("happy" in ancient Greek: χαίρω) is a Seneca micro-services plugin
for hapi. The plugin integrates the Seneca functionality into
hapi and provide tools to map its actions to server methods and views for easy access.
Usage
Install
// Install for œhapi/hapi v20 or higher
npm i @devninjas/chairo@4 -s
// Install for œhapi/hapi v19
npm i @devninjas/chairo@3 -s
// Install for œhapi/hapi v18
npm i @devninjas/chairo@2 -s
// Install for œhapi/hapi v17
npm i @devninjas/chairo@1 -s
Plugin Registration
chairo is registered with a hapi server using the server.register()
method. Once
registered it decorates the server
object with a reference to the seneca
object initialized
using the provided plugin options. Default plugin options:
seneca
: false
log
: silent
actcache
:
You can use an existing instance to seneca
and let chairo
do the decorations
for your server. When setting the seneca
option on the configuration, please
note that the other settings won't be used.
const Chairo = require('chairo');
const Hapi = require('hapi');
const server = new Hapi.Server();
(async () => {
try {
await server.register({ register: Chairo });
let id = 0;
server.seneca.addAsync({ generate: 'id' }, async message => {
return { id: ++id };
});
const result = await server.seneca.actAsync({ generate: 'id' });
server.seneca.act({ generate: 'id' });
} catch (err) {}
})();
In addition, the hapi request object is decorated with a reference to the seneca
object for
easy access:
server.route({
method: 'POST',
path: '/id',
handler: function(request) {
return request.seneca.actAsync({ generate: 'id' });
}
});
server.action(name, pattern, [options])
Maps a Seneca action pattern to a hapi
server method
where:
name
- the server method name (same as the name used in server.method()
).pattern
- the Seneca action pattern (e.g. 'generate:id'
or { generate: 'id' }
) to map.options
- optional settings options where:
cache
- method caching options (same as the name used in server.method()
).generateKey
- method generating custom cache key (same as the name used in server.method()
).
'use strict';
const Chairo = require('chairo');
const Hapi = require('hapi');
const server = new Hapi.Server();
(async () => {
try {
await server.register(Chairo);
let id = 0;
server.seneca.addAsync({ generate: 'id' }, async message => {
return { id: ++id };
});
server.seneca.addAsync({ calc: 'average' }, async message => {
return {
average:
(message.samples.dataset.values[0] +
message.samples.dataset.values[0]) /
2
};
});
server.action('generate', 'generate:id', {
cache: { expiresIn: 1000, generateTimeout: 3000 }
});
server.action('average', 'calc:average', {
cache: { expiresIn: 1000, generateTimeout: 3000 },
generateKey: function(message) {
return (
'average-' +
message.samples.dataset.values[0] +
':' +
message.samples.dataset.values[1]
);
}
});
await server.start();
const result1 = await server.methods.generate();
const result2 = await server.methods.generate();
const avg1 = await server.methods.average({
samples: { dataset: { values: [2, 3] } }
});
const avg2 = await server.methods.average({
samples: { dataset: { values: [2, 3] } }
});
} catch (err) {}
})();
h.act(pattern)
Sends back a handler response using the result of a Seneca action where:
pattern
- the Seneca action called to generate the response.
const Chairo = require('chairo');
const Hapi = require('hapi');
const server = new Hapi.Server();
(async () => {
try {
await server.register(Chairo);
let id = 0;
server.seneca.addAsync({ generate: 'id' }, async message => {
return { id: ++id };
});
server.route({
method: 'POST',
path: '/id',
handler: function(request, h) {
return h.act({ generate: 'id' });
}
});
} catch (err) {}
})();
In addition, the act
handler shortcut is also provided:
server.route({
method: 'POST',
path: '/id',
handler: { act: 'generate:id' }
});
reply.compose(template, context, [options])
Renders a template view using the provided template and context where:
template
- the view engine template (same as the name used in
reply.view()
).context
- the context object used to render the template. Chairo
provides a special key $resolve
where you can map context variables to Seneca actions matching they key's value pattern. Each of the services mapped to keys is resolved and the resultant key value maps are copied to the context root before redering the template.options
- optional settings passed to reply.view()
.
It requires the vision
plugin to be registered with Hapi.
const Chairo = require('chairo');
const Handlebars = require('handlebars');
const Vision = require('vision');
const Hapi = require('hapi');
const server = new Hapi.Server();
(async () => {
try {
await server.register([Chairo, Vision]);
server.seneca.addAsync({ lookup: 'date' }, async message => {
return { date: new Date().toString() };
});
server.seneca.addAsync({ load: 'user' }, async message => {
return { name: message.name };
});
server.views({
engines: { html: Handlebars },
path: __dirname + '/templates'
});
server.route({
method: 'GET',
path: '/',
handler: function(request, h) {
const context = {
$resolve: {
today: 'lookup:date',
user: { load: 'user', name: 'john' }
},
general: {
message: 'hello!'
}
};
return h.compose('example', context);
}
});
} catch (err) {}
})();
Using the template ./templates/example.html
:
<div>
<h1>{{today.date}}</h1>
<h2>{{user.name}}</h2>
<h3>{{general.message}}</h3>
</div>
In addition, the compose
handler shortcut is also provided:
server.route({
method: 'POST',
path: '/id',
handler: {
compose: {
template: 'example',
context: {
$resolve: {
today: 'lookup:date',
user: { load: 'user', name: 'john' }
},
general: {
message: 'hello!'
}
}
}
}
});