blob: 77c88a569577bf1fea11521146ce1ddb0f68f4be [file] [log] [blame]
/*
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
'use strict'
var request = require('request'),
helpers = require('../helpers'),
UsergridResponse = require('../lib/response'),
_ = require('lodash')
var UsergridRequest = function(options) {
var client = helpers.client.validate(options.client)
var callback = helpers.cb(helpers.args(arguments))
if (!_.isString(options.type) && !_.isString(options.path) && !_.isString(options.uri)) {
throw new Error('one of "type" (collection name), "path", or "uri" parameters are required when initializing a UsergridRequest')
}
if (!_.includes(['GET', 'PUT', 'POST', 'DELETE'], options.method)) {
throw new Error('"method" parameter is required when initializing a UsergridRequest')
}
var uri = options.uri || helpers.build.uri(client, options)
var formData = helpers.build.formData(options)
var body = ((formData !== undefined) ? undefined : options.body)
request(uri, {
headers: helpers.build.headers(client, options),
body: body,
encoding: options.encoding || null,
json: true,
method: options.method,
qs: helpers.build.qs(options),
formData: formData
}, function(error, response) {
var usergridResponse = new UsergridResponse(response)
var returnBody = _.first([usergridResponse.user, usergridResponse.users, usergridResponse.entity, usergridResponse.entities, usergridResponse.body].filter(_.isObject))
callback(error || usergridResponse.error, usergridResponse, returnBody)
})
}
module.exports = UsergridRequest