This is fine-rest
Make your Meteor app's data accessible over HTTP. Integrate your Meteor backend into a native mobile app or just query your data over HTTP from any client.
Install fine-rest in your Meteor project via npm:
$ meteor npm install --save fine-rest
Now use fine-rest in project like so:
import { JsonRoutes } from 'fine-rest';
A Meteor example application using fine-rest:
This package was formally the following Meteor packages, their functionality now rolled into one fine NPM package:
...
A bare-bones way to define server-side JSON API endpoints, without any extra functionality. Based on [connect-route].
JsonRoutes.add("get", "/posts/:id", function (req, res, next) {
var id = req.params.id;
JsonRoutes.sendResult(res, {
data: Posts.findOne(id)
});
});
Add a server-side route that returns JSON.
method
- The HTTP method that this route should accept:"get"
,"post"
, etc. See the full list [here][connect-route L4]. The method name is case-insensitive, so'get'
and'GET'
are both acceptable.path
- The path, possibly with parameters prefixed with a:
. See the example.handler(request, response, next)
- A handler function for this route.request
is a Node request object,response
is a Node response object,next
is a callback to call to let the next middleware handle this route. You don't need to use this normally.
Return data fom a route.
response
- Required. The Node response object you got as an argument to your handler function.options.code
- Optional. The status code to send.200
for OK,500
for internal error, etc. Default is 200.options.headers
- Optional. Dictionary of headers to send back.options.data
- Optional. The data you want to send back. This is serialized to JSON with content typeapplication/json
. Ifundefined
, there will be no response body.
We recommend that you simply throw an Error or Meteor.Error from your handler function. You can then attach error handling middleware that converts those errors to JSON and sends the response. Here's how to do it with our default error middleware:
JsonRoutes.ErrorMiddleware.use(
'/widgets',
RestMiddleware.handleErrorAsJson
);
JsonRoutes.add('get', 'widgets', function () {
var error = new Meteor.Error('not-found', 'Not Found');
error.statusCode = 404;
throw error;
});
Set the default headers used by JsonRoutes.sendResult
for the response. Default value is:
{
"Cache-Control": "no-store",
"Pragma": "no-cache"
}
You can pass additional headers directly to JsonRoutes.sendResult
If you want to insert connect middleware and ensure that it runs before your
REST route is hit, use JsonRoutes.Middleware
.
JsonRoutes.Middleware.use(function (req, res, next) {
console.log(req.body);
next();
});
Once you've created an awesome piece of reusable middleware and you're ready to share it with the world, you should make it a Meteor package so it can be easily configured in any JSON Routes API. There are only two requirements. Actually, they're just very strong recommendations. Nothing will explode if you don't follow these guidelines, but doing so should promote a much cleaner middleware ecosystem.
Each middleware package should define a single middleware function and add it
to RestMiddleware
namespace:
RestMiddleware.someMiddlewareFunc = function (req, res, next) {
// Do some awesome middleware stuff here
};
RestMiddleware.someMiddlewareErrorFunc = function (err, req, res, next) {
// Do some awesome middleware error handling here
};
Alternatively, you could publish a pure NodeJS middleware package to NPM, and you will be able to require it and use it in your Meteor package or app.
- By convention, any middleware you create that parses the request to find an authentication token should then save that token on
req.authToken
. Seerest-bearer-token-parser
for an example. - By convention, any middleware you create that determines a user ID should save that ID on
req.userId
. Seeauthenticate-user-by-token
for an example.
Middleware for validating a Meteor.user's login token
This middleware can be accessed as:
JsonRoutes.Middleware.authenticateMeteorUserByToken
request.authToken
- String
- A valid login token for a
Meteor.user
account (requiresaccounts-base
)
request.userId
- String
- If the
request.authToken
is found in a user account, sets this to the ID of the authenticated user. Otherwise,null
.
Simply add this layer of middleware after any token parsing middleware, and voila!
For example:
JsonRoutes.Middleware.use('/auth', JsonRoutes.Middleware.parseBearerToken);
JsonRoutes.Middleware.use('/auth', JsonRoutes.Middleware.authenticateMeteorUserByToken);
JsonRoutes.add('GET', 'auth/test', function (request, response) {
// The authenticated user's ID will be set by this middleware
var userId = request.userId;
});
If you have accounts-password
in your app, and you want to be able to use it over HTTP, this is the package for you. Call these APIs to get an access token, and pass that token to API methods you defined with json-routes
to call methods and publications that require login.
Make sure to serve your app over HTTPS if you are using this for login, otherwise people can hijack your passwords. Try the force-ssl
package.
The login and registration endpoints take the same inputs. Pass an object with the following properties:
username
email
password
dbId
password
is required, and you must have at least one of username
or email
. dbId is optional and for multi-database scenarios.
The token-login endpoint only requires a token and optionally a Database ID.
dbId
loginToken
Both login and registration have the same response format.
// successful response, with HTTP code 200
{
token: "string",
tokenExpires: "ISO encoded date string",
id: "user id"
}
// error response, with HTTP code 500
{
error: "error-code",
reason: "Human readable error string"
}
After adding this package, API endpoints accept a standard bearer token header (Based on RFC 6750 and OAuth Bearer).
Authorization: Bearer <token>
Here is how you could use Meteor's http
package to call a method as a logged in user. Inside the method, the current user can be accessed the exact same way as in a normal method call, through this.userId
.
HTTP.post("/methods/return-five-auth", {
headers: { Authorization: "Bearer " + token }
}, function (err, res) {
console.log(res.data); // 5
});
Middleware for parsing a standard bearer token from an HTTP request
This middleware can be accessed as:
JsonRoutes.Middleware.parseBearerToken
- None
request.authToken
- String
- The parsed bearer token, or
null
if none is found
Accepts tokens passed via the standard header or URL query parameter (whichever is found first, in that order).
The header signature is: Authorization: Bearer <token>
The query signature is: ?access_token=<token>
Middleware for converting thrown Meteor.Errors to JSON and sending the response.
Handle errors from all routes:
JsonRoutes.ErrorMiddleware.use(RestMiddleware.handleErrorAsJson);
Handle errors from one route:
JsonRoutes.ErrorMiddleware.use(
'/handle-error',
RestMiddleware.handleErrorAsJson
);
JsonRoutes.ErrorMiddleware.use(
'/handle-error',
RestMiddleware.handleErrorAsJson
);
JsonRoutes.add('get', 'handle-error', function () {
var error = new Meteor.Error('not-found', 'Not Found');
error.statusCode = 404;
throw error;
});
- Added ability to log in with token at
/users/token-login
. - Pass in an optional Database ID for multi database scenarios to
/users/login
. - The log in option
/users/login
now has the option to pass in a Database ID for multi database scenarios. - Use the setting.json file in your root project to specify your database ID.
- Refactored code and converted over
JsonRoutes
& related packages to NPM fine-rest