bedwetter v1.8.2

####Auto-generated, RESTful, CRUDdy route handlers to be used with hapi 8 (and 7) and its Waterline plugin, dogwater.
What it does
Bedwetter registers route handlers based upon the method and path of your route. It turns them into RESTful API endpoints that automatically interact with the model defined using dogwater. The route handler is based on one of eight bedwetters:
POSTis used forcreate,addwhenaddis used to create a record then add it to a relation, and forupdatePATCHis also used forupdatePUTis used foraddwhen it's used to simply add a record to a relationGETis used forfind,findOne, andpopulate(get related records or check an association)DELETEis used fordestroyandremove(remove a record from a relation)
For now, see SailsJs's documentation on Blueprints for info about parameters for the bedwetters. A portion of the code is adapted from this SailsJs hook.
Bedwetter also allows you to manage resources/records with owners. There are options to act on behalf of a user via hapi authentication. You can set owners automatically on new records, only display records when owned by the authenticated user, and make bedwetters behave like the primary record is the authenticated user.
Bedwetting Patterns
Suppose users are associated with comments via dogwater/Waterline. The user model associates comments in an attribute named comments. Here are some examples as to how the plugin will deduce which of the eight bedwetters to use, based upon route method and path definition.
GET /users↦findReturns an array of users with an
HTTP 200 OKresponse.GET /users/count↦findwith/countReturns the integer number of users matched with an
HTTP 200 OKresponse.GET /users/{id}↦findOneReturns user
idwith anHTTP 200 OKresponse. Responds with anHTTP 404 Not Foundresponse if the user is not found.GET /users/{id}/comments↦populateReturns an array of comments associated with user
id. ReturnsHTTP 200 OKif that user is found. Returns anHTTP 404 Not Foundresponse if that user is not found.GET /users/{id}/comments/count↦populatewith/countReturns the integer number of comments associated with user
id. ReturnsHTTP 200 OKif that user is found. Returns anHTTP 404 Not Foundresponse if that user is not found.GET /users/{id}/comments/{childId}↦populateReturns
HTTP 204 No Contentif commentchildIdis associated with userid. Returns anHTTP 404 Not Foundresponse if that user is not found or that comment is not associated with the user.POST /users↦createCreates a new user using the request payload and returns it with an
HTTP 201 Createdresponse.POST /users/{id}/comments↦addCreates a new comment using the request payload and associates that comment with user
id. Returns that comment with anHTTP 201 Created response. If that user is not found, returns anHTTP 404 Not Foundresponse.PUT /users/{id}/comments/{childId}↦addAssociates comment
childIdwith userid. Returns anHTTP 204 No Contentresponse on success. If the user or comment are not found, returns anHTTP 404 Not Foundresponse.DELETE /users/{id}↦destroyDestroys user
id. Returns anHTTP 204 No Contentresponse on success. If the user doesn't exist, returns anHTTP 404 Not Foundresponse.DELETE /users/{id}/comment/{childId}↦removeRemoves association between user
idand commentchildId. Returns anHTTP 204 No Contentresponse on success. If the user or comment doesn't exist, returns anHTTP 404 Not Foundresponse.PATCH /users/{id}orPOST /user/{id}↦updateUpdates user
idusing the request payload (which will typically only contain the attributes to update) and responds with the updated user. Returns anHTTP 200 OKresponse on success. If the user doesn't exist, returns anHTTP 404 Not Foundresponse.
Options
Options can be passed to the plugin when registered or defined directly on the route handler. Those defined on the route handler override those passed to the plugin on a per-route basis.
Acting as a User
These options allow you to act on behalf of the authenticated user. Typically the user info is taken directly off the credentials object without checking the Request.auth.isAuthenticated flag. This allows you to use authentication modes however you wish. For examples, for now please see tests at test/options/actAsUser.js.
actAsUser(boolean, defaultsfalse). Applies tofindOne,find,create,update,destroy,add,remove, andpopulate.This must be set to
truefor the following options in the section to take effect. The acting user is defined by hapi authentication credentials and theuserIdPropertyoption.userIdProperty(string, defaults"id"). Applies tofindOne,find,create,update,destroy,add,remove, andpopulate.When
actAsUseristruethis option takes effect. It defines a path intoRequest.auth.credentialsto determine the acting user's id. For example, if the credentials object equals{user: {info: {id: 17}}}then"user.info.id"would grab user id17. SeeHoek.reach, which is used to convert the string to a deep property in the hapi credentials object.userUrlPrefix(string, defaults"/user"). Applies tofindOne,update,destroy,add,remove, andpopulate.When
actAsUseristruethis option takes effect. This option works in tandem withuserModel. When a route path begins withuserUrlPrefix(after any other inert prefix has been stripped via theprefixoption), the URL is transformed to begin/:userModel/:actingUserIdbefore matching for a bedwetter; it essentially sets the primary record to the acting user.userModel(string, defaults"users"). Applies tofindOne,update,destroy,add,remove, andpopulate.When
actAsUseristruethis option takes effect. This option works in tandem withuserUrlPrefix. When a route path begins withuserUrlPrefix(after any other inert prefix has been stripped via theprefixoption), the URL is transformed to begin/:userModel/:actingUserIdbefore matching for a bedwetter; it essentially sets the primary record to the acting user. E.g., by default whenactAsUseris enabled, route pathPUT /user/following/10would internally be considered asPUT /users/17/following/10, which corresponds to theaddbedwetter applied to the authenticated user.requireOwner(boolean, defaultsfalse). Applies tofindOne,find,create,update,destroy,add,remove, andpopulate.When
actAsUseristruethis option takes effect. The option forces any record to that's being viewed or modified (including associations) to be owned by the user. Ownership is determined by matching the acting user's id against the attribute of the record determined byownerAttrorchildOwnerAttr.setOwner(boolean, defaultsfalse). Applies tocreate,update,add.When
actAsUseristruethis option takes effect. The option forces any record to that's being created or updated (including associated records) to be owned by the acting user. The owner is set on the record's attribute determined byownerAttrorchildOwnerAttr.ownerAttr(string orfalse, defaults"owner"). Applies tofindOne,find,update,destroy,add,remove, andpopulate.When
actAsUseristruethis option takes effect. Iffalse,requireOwnerandsetOwnerare disabled on the primary record. Otherwise,requireOwnerandsetOwneroptions act using the primary record's attribute with name specified byownerAttr.childOwnerAttr(string orfalse, defaults"owner"). Applies toadd,remove, andpopulate.When
actAsUseristruethis option takes effect. Iffalse,requireOwnerandsetOwnerare disabled on the child record. Otherwise,requireOwnerandsetOwneroptions act using the child record's attribute with name specified bychildOwnerAttr.
Other Options
prefix(string). Applies tofindOne,find,create,update,destroy,add,remove, andpopulate.Allows one to specify a prefix to the route path that will be ignored when determining which bedwetter to apply.
createdLocation(string). Applies tocreateand sometimes toadd.When this set (typically as a route-level option rather than a plugin-level option), a
Locationheader will be added to responses with a URL pointing to the created record. This option will act as the first argument toutil.formatwhen set, and there should be a single placeholder for the created record's id.model(string). Applies tofindOne,find,create,update,destroy,add,remove, andpopulate.Name of the model's Waterline identity. If not provided as an option, it is deduced from the route path.
Ex:
/user/1/files/3has the modeluser.associationAttr(string). Applies toadd,remove, andpopulateName of the association's Waterline attribute. If not provided as an option, it is deduced from the route path.
Ex:
/user/1/files/3has the association attributefiles(i.e., the Waterline modeluserhas an attribute,filescontaining records in a one-to-many relationship).criteria(object). Applies tofindandpopulate.blacklist(array)An array of attribute names. The criteria blacklist disallows searching by certain attribute criteria.
where(object). Applies tofindandpopulate. Whenwhere.idis specified, also applies tofindOne,update,destroy,add, andremove.Typically sets default criteria for the records in a list. Keys represent are attribute names and values represent values for those attributes. This can be overridden by query parameters. When
where.idis set, this is is used instead of the primary key path parameter (similarly to theidoption), but does not override theidoption.id(string or integer). Applies tofindOne,update,destroy,add,remove, andpopulate.Fixes a supplied primary key to a certain value. Typically this primary key would be pulled from the route parameter. In most cases this will cause a confusing implementation, but may be worth keeping to interact with future features.
limit(positive integer). Applies tofindandpopulate.Set default limit of records returned in a list. If not provided, this defaults to 30.
maxLimit(positive integer). Applies tofindandpopulate.If a user requests a certain number of records to be returned in a list (using the
limitquery parameter), it cannot exceed this maximum limit.populate(boolean). Applies tofindandfindOne.Determines if all association attributes are by default populated (overridden by
populatequery parameter, which contains a comma-separated list of attributes). Defaults to false.skip(positive integer). Applies tofindandpopulate.Sets default number of records to skip in a list (overridden by
skipquery parameter). Defaults to 0.sort(string). Applies tofindandpopulate.Sets default sorting criteria (i.e.
createdDate ASC) (overridden bysortquery parameter). Defaults to no sort applied.values(object). Applies tocreate,update, and sometimes toadd. Sets default attribute values in key-value pairs for records to be created or updated. Also includes ablacklistparameter:blacklist(array)An array of attribute names to be omitted when creating or updating a record.
deletedFlag(boolean, defaultsfalse). Applies todestroy.Rather than destroying the object, this will simply set a flag on the object using the
deletedAttranddeletedValueoptions.deletedAttr(string, defaults"deleted"). Applies todestroy.Model attribute to be updated with the
deletedValue.deletedValue(string|int, defaults1). Applies todestroy.Value to be updated on the model attribute specified
deletedAttrwhen thedeletedFlagoption is enabled.omit(string|array, defaults[]). Applies toadd,create,find,findOne,populate,update.When returning a record or array of records, the list of fields will not be included in the response per record. When populating a record association, you may use
Hoek.reach(https://github.com/hapijs/hoek#reachobj-chain-options style key identifiers to omit deep properties. If the property holds an array, deep omissions will omit the property from each record in the array.pkAttr(string orfalse, defaultsfalse). Applies toadd,destroy,findOne,populate,remove,update.This overrides which attribute used for looking-up the primary/parent record. By default bedwetter uses the model's primary key. This option can be used to look-up records by a unique identifier other than the primary key.
Ex: To look users up by their
usernameattribute rather than their numeric primary keyid, setpkAttrto"username". ThenGET /users/john-doewill return the user with username"john-doe".childPkAttr(string orfalse, defaultsfalse). Applies toadd,populate,remove.This overrides which attribute used for looking-up the secondary/child record. By default bedwetter uses the model's primary key. This option can be used to look-up records by a unique identifier other than the primary key.
Request State
The bedwetter request state can be accessed on Request.plugins.bedwetter. It it an object containing the following properties:
action(string). Indicates which one of the eight bedwetter actions was used. It is one offind,findone,update,create,destroy,populate,add, orremove.options(object). These are active bedwetter options used for the request. If any hooks modified the options, that will be reflected here.primaryRecord(Waterline model). This provides access to any primary record associated with this request. This will not be set if there is no primary record.secondaryRecord(Waterline model). This provides access to any secondary record associated with this request. This will not be set if there is no secondary record.
Usage
Here's a sort of crappy example.
// Assume `server` is a hapi server with the bedwetter plugin registered.
// Models with identities "zoo" and "treat" exist via dogwater.
// zoos and treats are in a many-to-many correspondence with each other.
// I suggest checking out ./test
server.route([
{ // findOne
method: 'GET',
path: '/zoo/{id}',
handler: {
bedwetter: options
}
},
{ // find
method: 'GET',
path: '/treat',
handler: {
bedwetter: options
}
},
{ // find with prefix
method: 'GET',
path: '/v1/treat',
handler: {
bedwetter: {
prefix: '/v1'
}
}
},
{ // destroy
method: 'DELETE',
path: '/treat/{id}',
handler: {
bedwetter: options
}
},
{ // create
method: 'POST',
path: '/zoo',
handler: {
bedwetter: options
}
},
{ // update
method: ['PATCH', 'POST'],
path: '/treat/{id}',
handler: {
bedwetter: options
}
},
{ // remove
method: 'DELETE',
path: '/zoo/{id}/treats/{childId}',
handler: {
bedwetter: options
}
},
{ // create then add
method: 'POST',
path: '/zoo/{id}/treats',
handler: {
bedwetter: options
}
},
{ // add
method: 'PUT',
path: '/zoo/{id}/treats/{childId}',
handler: {
bedwetter: options
}
},
{ // populate
method: 'GET',
path: '/zoo/{id}/treats/{childId?}',
handler: {
bedwetter: options
}
}]);10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago