"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.CloudGainsightPlugin = void 0; var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty")); function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); } function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; } /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ class CloudGainsightPlugin { constructor(initializerContext) { (0, _defineProperty2.default)(this, "config", void 0); this.initializerContext = initializerContext; this.config = this.initializerContext.config.get(); } setup(core, { cloud }) { if (cloud.isCloudEnabled) { this.setupGainsight({ analytics: core.analytics, basePath: core.http.basePath }).catch(e => // eslint-disable-next-line no-console console.debug(`Error setting up Gainsight: ${e.toString()}`)); } } start() {} stop() {} /** * If the right config is provided, register the Gainsight shipper to the analytics client. * @param analytics Core's Analytics service's setup contract. * @param basePath Core's http.basePath helper. * @private */ async setupGainsight({ analytics, basePath }) { const { org_id: gainsightOrgId } = this.config; if (!gainsightOrgId) { return; // do not load any Gainsight code in the browser if not enabled } // Keep this import async so that we do not load any Gainsight code into the browser when it is disabled. const { GainsightShipper } = await Promise.resolve().then(() => _interopRequireWildcard(require('@kbn/analytics-shippers-gainsight'))); analytics.registerShipper(GainsightShipper, { gainsightOrgId, // Load an Elastic-internally audited script. Ideally, it should be hosted on a CDN. scriptUrl: basePath.prepend(`/internal/cloud/${this.initializerContext.env.packageInfo.buildNum}/gainsight.js`), cssFileEndpoint: basePath.prepend(`/internal/cloud/${this.initializerContext.env.packageInfo.buildNum}/gainsight.css`), widgetFileEndpoint: basePath.prepend(`/internal/cloud/${this.initializerContext.env.packageInfo.buildNum}/gainsight_widget.js`) }); } } exports.CloudGainsightPlugin = CloudGainsightPlugin;