@mui/x-license-pro
Version:
MUI X License verification
59 lines (58 loc) • 2.78 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import * as React from 'react';
import { verifyLicense } from '../verifyLicense/verifyLicense';
import { LicenseInfo } from '../utils/licenseInfo';
import { showExpiredAnnualGraceLicenseKeyError, showExpiredAnnualLicenseKeyError, showInvalidLicenseKeyError, showMissingLicenseKeyError, showLicenseKeyPlanMismatchError, showExpiredPackageVersionError } from '../utils/licenseErrorMessageUtils';
import { LICENSE_STATUS } from '../utils/licenseStatus';
import LicenseInfoContext from '../Unstable_LicenseInfoProvider/LicenseInfoContext';
export var sharedLicenseStatuses = {};
export function useLicenseVerifier(packageName, releaseInfo) {
var _React$useContext = React.useContext(LicenseInfoContext),
contextKey = _React$useContext.key;
return React.useMemo(function () {
var licenseKey = contextKey != null ? contextKey : LicenseInfo.getLicenseKey();
// Cache the response to not trigger the error twice.
if (sharedLicenseStatuses[packageName] && sharedLicenseStatuses[packageName].key === licenseKey) {
return sharedLicenseStatuses[packageName].licenseVerifier;
}
var acceptedScopes = packageName.includes('premium') ? ['premium'] : ['pro', 'premium'];
var plan = packageName.includes('premium') ? 'Premium' : 'Pro';
var licenseStatus = verifyLicense({
releaseInfo: releaseInfo,
licenseKey: licenseKey,
acceptedScopes: acceptedScopes
});
sharedLicenseStatuses[packageName] = {
key: licenseKey,
licenseVerifier: licenseStatus
};
var fullPackageName = "@mui/".concat(packageName);
if (licenseStatus.status === LICENSE_STATUS.Valid) {
// Skip
} else if (licenseStatus.status === LICENSE_STATUS.Invalid) {
showInvalidLicenseKeyError();
} else if (licenseStatus.status === LICENSE_STATUS.OutOfScope) {
showLicenseKeyPlanMismatchError();
} else if (licenseStatus.status === LICENSE_STATUS.NotFound) {
showMissingLicenseKeyError({
plan: plan,
packageName: fullPackageName
});
} else if (licenseStatus.status === LICENSE_STATUS.ExpiredAnnualGrace) {
showExpiredAnnualGraceLicenseKeyError(_extends({
plan: plan
}, licenseStatus.meta));
} else if (licenseStatus.status === LICENSE_STATUS.ExpiredAnnual) {
showExpiredAnnualLicenseKeyError(_extends({
plan: plan
}, licenseStatus.meta));
} else if (licenseStatus.status === LICENSE_STATUS.ExpiredVersion) {
showExpiredPackageVersionError({
packageName: fullPackageName
});
} else if (process.env.NODE_ENV !== 'production') {
throw new Error('missing status handler');
}
return licenseStatus;
}, [packageName, releaseInfo, contextKey]);
}