UNPKG

sfdx-hardis

Version:

Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards

72 lines â€ĸ 2.16 kB
import { getEnvVar } from "../../config/index.js"; export class UtilsNotifs { static isSlackAvailable() { if (getEnvVar("SLACK_TOKEN")) { return true; } return false; } static isMsTeamsAvailable() { if (getEnvVar("MS_TEAMS_WEBHOOK_URL")) { return true; } return false; } static isEmailAvailable() { if (getEnvVar("NOTIF_EMAIL_ADDRESS") && globalThis.jsForceConn) { return true; } return false; } static isApiAvailable() { if (getEnvVar("NOTIF_API_URL")) { return true; } return false; } static markdownLink(url, label, type = "slack") { if (type == "teams") { return `[${label}](${url})`; } if (type === "jira") { return `{ "label": "${label}", "url": "${url}"}`; } if (type == "html") { return `<a href="${url}">${label}</a>`; } return `<${url}|*${label}*>`; } static prefixWithSeverityEmoji(text, severity) { const emojis = { critical: "đŸ’Ĩ", error: "❌", warning: "âš ī¸", info: "â„šī¸", success: "✅", }; const emoji = emojis[severity || ""] || emojis["info"]; return `${emoji} ${text}`; } static getImageUrl(imageKey) { const images = { backup: "https://raw.githubusercontent.com/hardisgroupcom/sfdx-hardis/main/docs/assets/notif/backup.png", test: "", monitoring: "", deployment: "", }; return images[imageKey] || null; } static slackToTeamsMarkdown(text) { // Bold const boldRegex = /(\*(.*?)\*)/gm; text = text.replace(boldRegex, "**$2**"); // Carriage return const carriageReturnRegex = /\n/gm; text = text.replace(carriageReturnRegex, "\n\n"); // Hyperlink const hyperlinkRegex = /<(.*?)\|(.*?)>/gm; text = text.replace(hyperlinkRegex, "[$2]($1)"); return text; } } //# sourceMappingURL=utils.js.map