-
Notifications
You must be signed in to change notification settings - Fork 8.3k
/
ml_client_license.ts
52 lines (44 loc) · 1.4 KB
/
ml_client_license.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0; you may not use this file except in compliance with the Elastic License
* 2.0.
*/
import { MlLicense } from '../../../common/license';
import { showExpiredLicenseWarning } from './expired_warning';
export class MlClientLicense extends MlLicense {
fullLicenseResolver() {
if (this.isMlEnabled() === false || this.isMinimumLicense() === false) {
// ML is not enabled or the license isn't at least basic
return redirectToKibana();
}
if (this.isFullLicense() === false) {
// ML is enabled, but only with a basic or gold license
return redirectToBasic();
}
// ML is enabled
if (this.hasLicenseExpired()) {
showExpiredLicenseWarning();
}
return Promise.resolve();
}
basicLicenseResolver() {
if (this.isMlEnabled() === false || this.isMinimumLicense() === false) {
// ML is not enabled or the license isn't at least basic
return redirectToKibana();
}
// ML is enabled
if (this.hasLicenseExpired()) {
showExpiredLicenseWarning();
}
return Promise.resolve();
}
}
function redirectToKibana() {
window.location.href = '/';
return Promise.reject();
}
function redirectToBasic() {
window.location.href = '#/datavisualizer';
return Promise.reject();
}