Compatibility
Compatible with Meteor 2.4
This repository provides versions for the package simple:authenticate-user-by-token that are compatible with latest Meteor. This is necessary because the author is not maintaining package anymore.
Changes
- v2.3.1
- Fixes "body-parser deprecated undefined extended"
- v2.3.0
- Npm dependencies updated
connect: '3.7.0', 'body-parser': '1.19.0', 'connect-query': '1.0.0',
- Npm dependencies updated
- v2.2.0 - Broken (don't use it)
api.versionsFromonPackage.onUsewas changed from1.0to2.4.
simple:json-routes
https://atmospherejs.com/simple/json-routes
The simplest bare-bones way to define server-side JSON API endpoints, without any extra functionality. Based on connect-route.
Example
1JsonRoutes.add("get", "/posts/:id", function (req, res, next) { 2 var id = req.params.id; 3 4 JsonRoutes.sendResult(res, { 5 data: Posts.findOne(id) 6 }); 7});
API
JsonRoutes.add(method, path, handler)
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. 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.requestis a Node request object,responseis a Node response object,nextis a callback to call to let the next middleware handle this route. You don't need to use this normally.
JsonRoutes.sendResult(response, options)
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.200for OK,500for 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.
Errors
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:
1JsonRoutes.ErrorMiddleware.use( 2 '/widgets', 3 RestMiddleware.handleErrorAsJson 4); 5 6JsonRoutes.add('get', 'widgets', function () { 7 var error = new Meteor.Error('not-found', 'Not Found'); 8 error.statusCode = 404; 9 throw error; 10});
JsonRoutes.setResponseHeaders(headerObj)
Set the default headers used by JsonRoutes.sendResult for the response. Default value is:
1{ 2 "Cache-Control": "no-store", 3 "Pragma": "no-cache" 4}
You can pass additional headers directly to JsonRoutes.sendResult
Adding Middleware
If you want to insert connect middleware and ensure that it runs before your
REST route is hit, use JsonRoutes.Middleware.
1JsonRoutes.Middleware.use(function (req, res, next) { 2 console.log(req.body); 3 next(); 4});
Creating Middleware Packages
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 simple 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:
1RestMiddleware.someMiddlewareFunc = function (req, res, next) { 2 // Do some awesome middleware stuff here 3}; 4 5RestMiddleware.someMiddlewareErrorFunc = function (err, req, res, next) { 6 // Do some awesome middleware error handling here 7};
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.
Auth Middleware
- By convention, any middleware you create that parses the request to find an authentication token should then save that token on
req.authToken. Seesimple:rest-bearer-token-parserfor an example. - By convention, any middleware you create that determines a user ID should save that ID on
req.userId. Seesimple:authenticate-user-by-tokenfor an example.
Change Log
2.1.0
- Fix issue #82 by wrapping the middlewares in a fiber.
2.0.1
- Increase request size limit to 50 MB, PR #88, Issue #75
2.0.0
JsonRoutes.sendResultfunction signature has changed to(response, options)and you can now pass in headers. See documentation.JsonRoutes.sendErrorno longer exists. Throw the error instead, and use error handling middleware to parse and return it.connectdependency updated to 2.30.2RestMiddlewareobject is exported for packages to add middleware functions toJsonRoutes.ErrorMiddleware.useis a new function that can be called to add error handling middleware, globally or per route, to ensure it is added last.
1.0.4
- Allow case-insensitive method names to be passed as the first param to
JsonRoutes.add()(e.g.,JsonRoutes.add('get',...)andJsonRoutes.add('GET',...)are both acceptable) - Add
JsonRoutes.sendErrorwith automatic parsing of error objects. - Catch handler errors and automatically send a response. Look for
statusCodeanddataproperties on thrown errors. - Add
JsonRoutes.Middlewareto eventually replaceJsonRoutes.middleWare(since 'middleware' is one word) - Fix Connect middleware deprecation error https://github.com/stubailo/meteor-rest/issues/18
1.0.3
Add JsonRoutes.middleWare for adding middleware to the stack