UNPKG

pubnub

Version:

Publish & Subscribe Real-time Messaging with PubNub

62 lines (49 loc) 1.85 kB
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.getOperation = getOperation; exports.validateParams = validateParams; exports.getURL = getURL; exports.getRequestTimeout = getRequestTimeout; exports.isAuthSupported = isAuthSupported; exports.prepareParams = prepareParams; exports.handleResponse = handleResponse; var _flow_interfaces = require("../../flow_interfaces"); var _operations = _interopRequireDefault(require("../../constants/operations")); var _utils = _interopRequireDefault(require("../../utils")); function getOperation() { return _operations["default"].PNRemoveChannelsFromGroupOperation; } function validateParams(modules, incomingParams) { var channels = incomingParams.channels, channelGroup = incomingParams.channelGroup; var config = modules.config; if (!channelGroup) return 'Missing Channel Group'; if (!channels || channels.length === 0) return 'Missing Channels'; if (!config.subscribeKey) return 'Missing Subscribe Key'; } function getURL(modules, incomingParams) { var channelGroup = incomingParams.channelGroup; var config = modules.config; return "/v1/channel-registration/sub-key/".concat(config.subscribeKey, "/channel-group/").concat(_utils["default"].encodeString(channelGroup)); } function getRequestTimeout(_ref) { var config = _ref.config; return config.getTransactionTimeout(); } function isAuthSupported() { return true; } function prepareParams(modules, incomingParams) { var _incomingParams$chann = incomingParams.channels, channels = _incomingParams$chann === void 0 ? [] : _incomingParams$chann; return { remove: channels.join(',') }; } function handleResponse() { return {}; } //# sourceMappingURL=remove_channels.js.map