UNPKG

auth0

Version:
180 lines (168 loc) 4.82 kB
var ArgumentError = require('rest-facade').ArgumentError; var utils = require('../utils'); var Auth0RestClient = require('../Auth0RestClient'); var RetryRestClient = require('../RetryRestClient'); /** * @class LogStreamsManager * The logStreams class provides a simple abstraction for performing CRUD operations * on Auth0 Log Streams. * @constructor * @memberOf module:management * * @param {Object} options The client options. * @param {String} options.baseUrl The URL of the API. * @param {Object} [options.headers] Headers to be included in all requests. * @param {Object} [options.retry] Retry Policy Config */ var LogStreamsManager = function(options) { if (options === null || typeof options !== 'object') { throw new ArgumentError('Must provide client options'); } if (options.baseUrl === null || options.baseUrl === undefined) { throw new ArgumentError('Must provide a base URL for the API'); } if ('string' !== typeof options.baseUrl || options.baseUrl.length === 0) { throw new ArgumentError('The provided base URL is invalid'); } /** * Options object for the Rest Client instance. * * @type {Object} */ var clientOptions = { headers: options.headers, query: { repeatParams: false } }; /** * Provides an abstraction layer for performing CRUD operations on * {@link https://auth0.com/docs/api/management/v2#!/Log_Streams Auth0 * Log Streams}. * * @type {external:RestClient} */ var auth0RestClient = new Auth0RestClient( options.baseUrl + '/log-streams/:id ', clientOptions, options.tokenProvider ); this.resource = new RetryRestClient(auth0RestClient, options.retry); }; /** * Get all Log Streams. * * @method getAll * @memberOf module:management.LogStreamsManager.prototype * * @example * * management.logStreams.getAll(function (err, logStreams) { * console.log(logStreams.length); * }); * * @param {Function} [cb] Callback function. * * @return {Promise|undefined} */ utils.wrapPropertyMethod(LogStreamsManager, 'getAll', 'resource.getAll'); /** * Get an Auth0 Log Streams. * * @method get * @memberOf module:management.LogStreamsManager.prototype * * @example * management.logStreams.get({ id: LOG_STREAM_ID }, function (err, logStream) { * if (err) { * // Handle error. * } * * console.log(logStream); * }); * * @param {Object} params Log Stream parameters. * @param {String} params.id Log Stream ID. * @param {Function} [cb] Callback function. * * @return {Promise|undefined} */ utils.wrapPropertyMethod(LogStreamsManager, 'get', 'resource.get'); /** * Create an Auth0 Log Stream. * * @method create * @memberOf module:management.LogStreamsManager.prototype * * @example * management.logStreams.create(data, function (err, log) { * if (err) { * // Handle error. * } * * console.log(log); * }); * * @param {Object} data Log Stream data. * @param {Function} [cb] Callback function. * * @return {Promise|undefined} */ utils.wrapPropertyMethod(LogStreamsManager, 'create', 'resource.create'); /** * Update an Auth0 Log Streams. * * @method update * @memberOf module:management.LogStreamsManager.prototype * * @example * var data = { name: 'New name' }; * var params = { id: LOG_STREAM_ID }; * * // Using auth0 instance. * management.updateLogStream(params, data, function (err, logStream) { * if (err) { * // Handle error. * } * * console.log(logStream.name); // 'New name' * }); * * // Using the logStreams manager directly. * management.logStreams.update(params, data, function (err, logStream) { * if (err) { * // Handle error. * } * * console.log(logStream.name); * }); * * @param {Object} params Log Stream parameters. * @param {String} params.id Log Stream ID. * @param {Object} data Updated Log Stream data. * @param {Function} [cb] Callback function. * * @return {Promise|undefined} */ utils.wrapPropertyMethod(LogStreamsManager, 'update', 'resource.patch'); /** * Delete an Auth0 Log Streams. * * @method delete * @memberOf module:management.LogStreamsManager.prototype * * @example * management.logStreams.delete({ id: LOG_STREAM_ID }, function (err, log) { * if (err) { * // Handle error. * } * * console.log(log); * }); * * @param {Object} params Log Stream parameters. * @param {String} params.id Log Stream ID. * @param {Function} [cb] Callback function. * * @return {Promise|undefined} */ utils.wrapPropertyMethod(LogStreamsManager, 'delete', 'resource.delete'); module.exports = LogStreamsManager;