UNPKG

@slack/web-api

Version:

Official library for using the Slack Platform's Web API

75 lines 3.44 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 () { var ownKeys = function(o) { ownKeys = Object.getOwnPropertyNames || function (o) { var ar = []; for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; return ar; }; return ownKeys(o); }; return function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); __setModuleDefault(result, mod); return result; }; })(); Object.defineProperty(exports, "__esModule", { value: true }); exports.addAppMetadata = addAppMetadata; exports.getUserAgent = getUserAgent; const os = __importStar(require("node:os")); const node_path_1 = require("node:path"); 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, node_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; } /** * 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 it's not empty return (appIdentifier.length > 0 ? `${appIdentifier} ` : '') + baseUserAgent; } //# sourceMappingURL=instrument.js.map