mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-5860 Updated copyright date in about modal * PLT-5860 Updated copyright notice in JSX files * PLT-5860 Updated copyright notice in go files * Fixed misc copyright dates * Fixed component snapshots
40 lines
1.3 KiB
JavaScript
40 lines
1.3 KiB
JavaScript
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import LocalizationStore from 'stores/localization_store.jsx';
|
|
|
|
const LICENSE_EXPIRY_NOTIFICATION = 1000 * 60 * 60 * 24 * 60; // 60 days
|
|
const LICENSE_GRACE_PERIOD = 1000 * 60 * 60 * 24 * 15; // 15 days
|
|
|
|
export function isLicenseExpiring() {
|
|
if (window.mm_license.IsLicensed !== 'true') {
|
|
return false;
|
|
}
|
|
|
|
const timeDiff = parseInt(global.window.mm_license.ExpiresAt, 10) - Date.now();
|
|
return timeDiff <= LICENSE_EXPIRY_NOTIFICATION;
|
|
}
|
|
|
|
export function isLicenseExpired() {
|
|
if (window.mm_license.IsLicensed !== 'true') {
|
|
return false;
|
|
}
|
|
|
|
const timeDiff = parseInt(global.window.mm_license.ExpiresAt, 10) - Date.now();
|
|
return timeDiff < 0;
|
|
}
|
|
|
|
export function isLicensePastGracePeriod() {
|
|
if (window.mm_license.IsLicensed !== 'true') {
|
|
return false;
|
|
}
|
|
|
|
const timeDiff = Date.now() - parseInt(global.window.mm_license.ExpiresAt, 10);
|
|
return timeDiff > LICENSE_GRACE_PERIOD;
|
|
}
|
|
|
|
export function displayExpiryDate() {
|
|
const date = new Date(parseInt(global.window.mm_license.ExpiresAt, 10));
|
|
return date.toLocaleString(LocalizationStore.getLocale(), {year: 'numeric', month: 'long', day: 'numeric'});
|
|
}
|