UNPKG

@slack/web-api

Version:

Official library for using the Slack Platform's Web API

65 lines 3.21 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.getUserAgent = exports.addAppMetadata = void 0; const os = __importStar(require("os")); const path_1 = require("path"); // eslint-disable-next-line @typescript-eslint/no-var-requires, import/no-commonjs const packageJson = require('../package.json'); /** * Replaces occurrences of '/' with ':' in a string, since '/' is meaningful inside User-Agent strings as a separator. */ function replaceSlashes(s) { return s.replace('/', ':'); } // TODO: for the deno build (see the `npm run build:deno` npm run script), we could replace the `os-browserify` npm // module shim with our own shim leveraging the deno beta compatibility layer for node's `os` module (for more info // see https://deno.land/std@0.116.0/node/os.ts). At the time of writing this TODO (2021/11/25), this required deno // v1.16.2 and use of the --unstable flag. Once support for this exists without the --unstable flag, we can improve // the `os` module deno shim to correctly report operating system from a deno runtime. Until then, the below `os`- // based code will report "browser/undefined" from a deno runtime. const baseUserAgent = `${replaceSlashes(packageJson.name)}/${packageJson.version} ` + `${(0, path_1.basename)(process.title)}/${process.version.replace('v', '')} ` + `${os.platform()}/${os.release()}`; const appMetadata = {}; /** * Appends the app metadata into the User-Agent value * @param appMetadata.name - name of tool to be counted in instrumentation * @param appMetadata.version - version of tool to be counted in instrumentation */ function addAppMetadata({ name, version }) { appMetadata[replaceSlashes(name)] = version; } exports.addAppMetadata = addAppMetadata; /** * Returns the current User-Agent value for instrumentation */ function getUserAgent() { const appIdentifier = Object.entries(appMetadata).map(([name, version]) => `${name}/${version}`).join(' '); // only prepend the appIdentifier when its not empty return ((appIdentifier.length > 0) ? `${appIdentifier} ` : '') + baseUserAgent; } exports.getUserAgent = getUserAgent; //# sourceMappingURL=instrument.js.map