UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

261 lines (250 loc) • 7.69 kB
/** * DevExtreme (cjs/__internal/core/license/license_validation.js) * Version: 24.2.6 * Build date: Mon Mar 17 2025 * * Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; exports.parseLicenseKey = parseLicenseKey; exports.peekValidationPerformed = peekValidationPerformed; exports.setLicenseCheckSkipCondition = setLicenseCheckSkipCondition; exports.validateLicense = validateLicense; var _config = _interopRequireDefault(require("../../../core/config")); var _errors = _interopRequireDefault(require("../../../core/errors")); var _version = require("../../../core/version"); var _version2 = require("../../utils/version"); var _byte_utils = require("./byte_utils"); var _key = require("./key"); var _pkcs = require("./pkcs1"); var _rsa_bigint = require("./rsa_bigint"); var _sha = require("./sha1"); var _trial_panel = require("./trial_panel"); var _types = require("./types"); const _excluded = ["customerId", "maxVersionAllowed", "format", "internalUsageId"]; function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e } } function _extends() { return _extends = Object.assign ? Object.assign.bind() : function(n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) { ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]) } } return n }, _extends.apply(null, arguments) } function _objectWithoutPropertiesLoose(r, e) { if (null == r) { return {} } var t = {}; for (var n in r) { if ({}.hasOwnProperty.call(r, n)) { if (e.includes(n)) { continue } t[n] = r[n] } } return t } const FORMAT = 1; const RTM_MIN_PATCH_VERSION = 3; const KEY_SPLITTER = "."; const BUY_NOW_LINK = "https://go.devexpress.com/Licensing_Installer_Watermark_DevExtremeJQuery.aspx"; const LICENSING_DOC_LINK = "https://go.devexpress.com/Licensing_Documentation_DevExtremeJQuery.aspx"; const GENERAL_ERROR = { kind: _types.TokenKind.corrupted, error: "general" }; const VERIFICATION_ERROR = { kind: _types.TokenKind.corrupted, error: "verification" }; const DECODING_ERROR = { kind: _types.TokenKind.corrupted, error: "decoding" }; const DESERIALIZATION_ERROR = { kind: _types.TokenKind.corrupted, error: "deserialization" }; const PAYLOAD_ERROR = { kind: _types.TokenKind.corrupted, error: "payload" }; const VERSION_ERROR = { kind: _types.TokenKind.corrupted, error: "version" }; let validationPerformed = false; function verifySignature(_ref) { let { text: text, signature: encodedSignature } = _ref; return (0, _rsa_bigint.compareSignatures)({ key: _key.PUBLIC_KEY, signature: (0, _byte_utils.base64ToBytes)(encodedSignature), actual: (0, _pkcs.pad)((0, _sha.sha1)(text)) }) } function parseLicenseKey(encodedKey) { if (void 0 === encodedKey) { return GENERAL_ERROR } const parts = encodedKey.split(KEY_SPLITTER); if (2 !== parts.length || 0 === parts[0].length || 0 === parts[1].length) { return GENERAL_ERROR } if (!verifySignature({ text: parts[0], signature: parts[1] })) { return VERIFICATION_ERROR } let decodedPayload = ""; try { decodedPayload = atob(parts[0]) } catch { return DECODING_ERROR } let payload = {}; try { payload = JSON.parse(decodedPayload) } catch { return DESERIALIZATION_ERROR } const { customerId: customerId, maxVersionAllowed: maxVersionAllowed, format: format, internalUsageId: internalUsageId } = payload, rest = _objectWithoutPropertiesLoose(payload, _excluded); if (void 0 !== internalUsageId) { return { kind: _types.TokenKind.internal, internalUsageId: internalUsageId } } if (void 0 === customerId || void 0 === maxVersionAllowed || void 0 === format) { return PAYLOAD_ERROR } if (format !== FORMAT) { return VERSION_ERROR } return { kind: _types.TokenKind.verified, payload: _extends({ customerId: customerId, maxVersionAllowed: maxVersionAllowed }, rest) } } function isPreview(patch) { return isNaN(patch) || patch < 3 } function getLicenseCheckParams(_ref2) { let { licenseKey: licenseKey, version: version } = _ref2; let preview = false; try { preview = isPreview(version.patch); const { major: major, minor: minor } = preview ? (0, _version2.getPreviousMajorVersion)(version) : version; if (!licenseKey) { return { preview: preview, error: "W0019" } } const license = parseLicenseKey(licenseKey); if (license.kind === _types.TokenKind.corrupted) { return { preview: preview, error: "W0021" } } if (license.kind === _types.TokenKind.internal) { return { preview: preview, internal: true, error: license.internalUsageId === _key.INTERNAL_USAGE_ID ? void 0 : "W0020" } } if (!(major && minor)) { return { preview: preview, error: "W0021" } } if (10 * major + minor > license.payload.maxVersionAllowed) { return { preview: preview, error: "W0020" } } return { preview: preview, error: void 0 } } catch { return { preview: preview, error: "W0021" } } } function validateLicense(licenseKey) { let versionStr = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : _version.fullVersion; if (validationPerformed) { return } validationPerformed = true; const version = (0, _version2.parseVersion)(versionStr); const versionsCompatible = (0, _version2.assertedVersionsCompatible)(version); const { internal: internal, error: error } = getLicenseCheckParams({ licenseKey: licenseKey, version: version }); if (!versionsCompatible && internal) { return } if (error && !internal) { const buyNowLink = (0, _config.default)().buyNowLink ?? BUY_NOW_LINK; const licensingDocLink = (0, _config.default)().licensingDocLink ?? LICENSING_DOC_LINK; (0, _trial_panel.showTrialPanel)(buyNowLink, licensingDocLink, _version.fullVersion) } const preview = isPreview(version.patch); if (error) { _errors.default.log(preview ? "W0022" : error); return } if (preview && !internal) { _errors.default.log("W0022") } } function peekValidationPerformed() { return validationPerformed } function setLicenseCheckSkipCondition() {} var _default = exports.default = { validateLicense: validateLicense };