ssi-security-commons 0.19.0 → 0.19.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/alert/alert.component.mjs +28 -0
- package/esm2022/lib/services/auth-interceptor.service.mjs +165 -0
- package/esm2022/lib/services/crypto.service.mjs +41 -0
- package/esm2022/lib/services/jwt.service.mjs +43 -0
- package/esm2022/lib/services/messages.service.mjs +248 -0
- package/esm2022/lib/services/session.service.mjs +438 -0
- package/esm2022/lib/services/user-event.service.mjs +31 -0
- package/esm2022/lib/services/web-authn.service.mjs +249 -0
- package/esm2022/lib/shared/constants.mjs +5 -0
- package/esm2022/lib/ssi-security-commons.component.mjs +13 -0
- package/esm2022/lib/ssi-security-commons.module.mjs +63 -0
- package/esm2022/lib/ssi-security-commons.service.mjs +13 -0
- package/esm2022/lib/user.model.mjs +2 -0
- package/esm2022/public-api.mjs +16 -0
- package/esm2022/ssi-security-commons.mjs +5 -0
- package/fesm2022/ssi-security-commons.mjs +91 -52
- package/fesm2022/ssi-security-commons.mjs.map +1 -1
- package/lib/services/jwt.service.d.ts +1 -0
- package/lib/services/session.service.d.ts +1 -0
- package/package.json +3 -1
|
@@ -16,10 +16,10 @@ import { BehaviorSubject, throwError, map as map$1 } from 'rxjs';
|
|
|
16
16
|
import * as i2$2 from '@angular/router';
|
|
17
17
|
|
|
18
18
|
class SsiSecurityCommonsService {
|
|
19
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
20
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
19
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: SsiSecurityCommonsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
20
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: SsiSecurityCommonsService, providedIn: 'root' }); }
|
|
21
21
|
}
|
|
22
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
22
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: SsiSecurityCommonsService, decorators: [{
|
|
23
23
|
type: Injectable,
|
|
24
24
|
args: [{
|
|
25
25
|
providedIn: 'root'
|
|
@@ -27,11 +27,11 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.6", ngImpor
|
|
|
27
27
|
}] });
|
|
28
28
|
|
|
29
29
|
class SsiSecurityCommonsComponent {
|
|
30
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
31
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
30
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: SsiSecurityCommonsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
31
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.3", type: SsiSecurityCommonsComponent, selector: "lib-ssi-security-commons", ngImport: i0, template: ` <p>ssi-security-commons works!</p>
|
|
32
32
|
`, isInline: true }); }
|
|
33
33
|
}
|
|
34
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
34
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: SsiSecurityCommonsComponent, decorators: [{
|
|
35
35
|
type: Component,
|
|
36
36
|
args: [{ selector: 'lib-ssi-security-commons', template: ` <p>ssi-security-commons works!</p>
|
|
37
37
|
`, standalone: false }]
|
|
@@ -68,12 +68,12 @@ class CryptoService {
|
|
|
68
68
|
const key = CryptoJS.lib.WordArray.create(hash.words.slice(0, 16 / 4));
|
|
69
69
|
return CryptoJS.AES.decrypt(text, key, this.configuration).toString(CryptoJS.enc.Utf8);
|
|
70
70
|
}
|
|
71
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
72
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
71
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: CryptoService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
72
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: CryptoService }); }
|
|
73
73
|
}
|
|
74
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
74
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: CryptoService, decorators: [{
|
|
75
75
|
type: Injectable
|
|
76
|
-
}], ctorParameters: ()
|
|
76
|
+
}], ctorParameters: function () { return []; } });
|
|
77
77
|
|
|
78
78
|
class AlertComponent {
|
|
79
79
|
constructor(dialogRef, data) {
|
|
@@ -86,16 +86,16 @@ class AlertComponent {
|
|
|
86
86
|
onCancel() {
|
|
87
87
|
this.dialogRef.close(null);
|
|
88
88
|
}
|
|
89
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
90
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
89
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: AlertComponent, deps: [{ token: i1.MatDialogRef }, { token: MAT_DIALOG_DATA }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
90
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.0.3", type: AlertComponent, selector: "lib-app-alert", ngImport: i0, template: "<div class=\"sec-alert-icon\" *ngIf=\"data.icon==='warn'\">\n <svg width=\"48\" height=\"49\" viewBox=\"0 0 48 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M24 13.5C24.69 13.5 25.25 14.06 25.25 14.75V27.25C25.25 27.5815 25.1183 27.8995 24.8839 28.1339C24.6495 28.3683 24.3315 28.5 24 28.5C23.6685 28.5 23.3505 28.3683 23.1161 28.1339C22.8817 27.8995 22.75 27.5815 22.75 27.25V14.75C22.75 14.06 23.31 13.5 24 13.5ZM24 34.5C24.5304 34.5 25.0391 34.2893 25.4142 33.9142C25.7893 33.5391 26 33.0304 26 32.5C26 31.9696 25.7893 31.4609 25.4142 31.0858C25.0391 30.7107 24.5304 30.5 24 30.5C23.4696 30.5 22.9609 30.7107 22.5858 31.0858C22.2107 31.4609 22 31.9696 22 32.5C22 33.0304 22.2107 33.5391 22.5858 33.9142C22.9609 34.2893 23.4696 34.5 24 34.5ZM4 24.5C4 13.454 12.954 4.5 24 4.5C35.046 4.5 44 13.454 44 24.5C44 35.546 35.046 44.5 24 44.5C12.954 44.5 4 35.546 4 24.5ZM24 7C14.335 7 6.5 14.835 6.5 24.5C6.5 34.165 14.335 42 24 42C33.665 42 41.5 34.165 41.5 24.5C41.5 14.835 33.665 7 24 7Z\" fill=\"#FF4021\"/>\n </svg>\n</div>\n<h1 mat-dialog-title class=\"sec-alert-title\">{{data.title?data.title:'Alert'}}</h1>\n<div mat-dialog-content class=\"alert-min-width sec-alert-content\">\n <div>\n {{data.message}}\n </div>\n</div>\n<div class=\"sec-alert-actions\"> \n <button mat-flat-button color=\"primary\" class=\"sec-alert-ok\" (click)=\"onConfirm()\">{{data.okText ? data.okText : 'OK'}}</button>\n <button mat-flat-button class=\"sec-alert-cancel\" (click)=\"onCancel()\" *ngIf=\"data.cancelText\">{{data.cancelText ? data.cancelText : 'Cancel'}}</button>\n</div>\n", styles: [".sec-alert-icon{padding-top:32px;text-align:center}.sec-alert-title,.sec-alert-content{text-align:center}.sec-alert-actions{display:flex;flex-direction:column;justify-content:center;gap:8px;padding:8px 24px 24px}\n"], dependencies: [{ kind: "directive", type: i1.MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { kind: "directive", type: i1.MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
|
|
91
91
|
}
|
|
92
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
92
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: AlertComponent, decorators: [{
|
|
93
93
|
type: Component,
|
|
94
94
|
args: [{ selector: 'lib-app-alert', standalone: false, template: "<div class=\"sec-alert-icon\" *ngIf=\"data.icon==='warn'\">\n <svg width=\"48\" height=\"49\" viewBox=\"0 0 48 49\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M24 13.5C24.69 13.5 25.25 14.06 25.25 14.75V27.25C25.25 27.5815 25.1183 27.8995 24.8839 28.1339C24.6495 28.3683 24.3315 28.5 24 28.5C23.6685 28.5 23.3505 28.3683 23.1161 28.1339C22.8817 27.8995 22.75 27.5815 22.75 27.25V14.75C22.75 14.06 23.31 13.5 24 13.5ZM24 34.5C24.5304 34.5 25.0391 34.2893 25.4142 33.9142C25.7893 33.5391 26 33.0304 26 32.5C26 31.9696 25.7893 31.4609 25.4142 31.0858C25.0391 30.7107 24.5304 30.5 24 30.5C23.4696 30.5 22.9609 30.7107 22.5858 31.0858C22.2107 31.4609 22 31.9696 22 32.5C22 33.0304 22.2107 33.5391 22.5858 33.9142C22.9609 34.2893 23.4696 34.5 24 34.5ZM4 24.5C4 13.454 12.954 4.5 24 4.5C35.046 4.5 44 13.454 44 24.5C44 35.546 35.046 44.5 24 44.5C12.954 44.5 4 35.546 4 24.5ZM24 7C14.335 7 6.5 14.835 6.5 24.5C6.5 34.165 14.335 42 24 42C33.665 42 41.5 34.165 41.5 24.5C41.5 14.835 33.665 7 24 7Z\" fill=\"#FF4021\"/>\n </svg>\n</div>\n<h1 mat-dialog-title class=\"sec-alert-title\">{{data.title?data.title:'Alert'}}</h1>\n<div mat-dialog-content class=\"alert-min-width sec-alert-content\">\n <div>\n {{data.message}}\n </div>\n</div>\n<div class=\"sec-alert-actions\"> \n <button mat-flat-button color=\"primary\" class=\"sec-alert-ok\" (click)=\"onConfirm()\">{{data.okText ? data.okText : 'OK'}}</button>\n <button mat-flat-button class=\"sec-alert-cancel\" (click)=\"onCancel()\" *ngIf=\"data.cancelText\">{{data.cancelText ? data.cancelText : 'Cancel'}}</button>\n</div>\n", styles: [".sec-alert-icon{padding-top:32px;text-align:center}.sec-alert-title,.sec-alert-content{text-align:center}.sec-alert-actions{display:flex;flex-direction:column;justify-content:center;gap:8px;padding:8px 24px 24px}\n"] }]
|
|
95
|
-
}], ctorParameters: ()
|
|
95
|
+
}], ctorParameters: function () { return [{ type: i1.MatDialogRef }, { type: undefined, decorators: [{
|
|
96
96
|
type: Inject,
|
|
97
97
|
args: [MAT_DIALOG_DATA]
|
|
98
|
-
}] }] });
|
|
98
|
+
}] }]; } });
|
|
99
99
|
|
|
100
100
|
const TOKEN = 'TOKEN';
|
|
101
101
|
const REFRESH_TOKEN = 'REFRESH_TOKEN';
|
|
@@ -104,7 +104,7 @@ const LANG = 'LANG';
|
|
|
104
104
|
|
|
105
105
|
/* eslint-disable */
|
|
106
106
|
class JwtService {
|
|
107
|
-
|
|
107
|
+
decodeTokenOld(token) {
|
|
108
108
|
const _decodeToken = (token) => {
|
|
109
109
|
try {
|
|
110
110
|
return JSON.parse(atob(token));
|
|
@@ -122,10 +122,24 @@ class JwtService {
|
|
|
122
122
|
return acc;
|
|
123
123
|
}, Object.create(null));
|
|
124
124
|
}
|
|
125
|
-
|
|
126
|
-
|
|
125
|
+
decodeToken(token) {
|
|
126
|
+
const payload = token.split('.')[1];
|
|
127
|
+
// Add padding if needed
|
|
128
|
+
const base64 = payload.replace(/-/g, '+').replace(/_/g, '/');
|
|
129
|
+
const padded = base64.padEnd(base64.length + (4 - base64.length % 4) % 4, '=');
|
|
130
|
+
// Decode Base64 to binary string
|
|
131
|
+
const binary = atob(padded);
|
|
132
|
+
// Convert binary string to UTF-8 correctly
|
|
133
|
+
const utf8String = decodeURIComponent(Array.from(binary)
|
|
134
|
+
.map(c => '%' + c.charCodeAt(0).toString(16).padStart(2, '0'))
|
|
135
|
+
.join(''));
|
|
136
|
+
// Parse JSON payload
|
|
137
|
+
return JSON.parse(utf8String);
|
|
138
|
+
}
|
|
139
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: JwtService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
140
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: JwtService }); }
|
|
127
141
|
}
|
|
128
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: JwtService, decorators: [{
|
|
129
143
|
type: Injectable
|
|
130
144
|
}] });
|
|
131
145
|
|
|
@@ -524,15 +538,40 @@ class SessionService {
|
|
|
524
538
|
const dec = decodeURIComponent(code);
|
|
525
539
|
return this.cryptoService.decrypt(dec);
|
|
526
540
|
}
|
|
527
|
-
|
|
528
|
-
|
|
541
|
+
refreshSession() {
|
|
542
|
+
const promise = new Promise((resolve, reject) => {
|
|
543
|
+
const refreshToken = this.getRefreshToken();
|
|
544
|
+
if (refreshToken) {
|
|
545
|
+
const decoded = this.jwtService.decodeToken(refreshToken);
|
|
546
|
+
this.getNewTokenClient(refreshToken, decoded.azp).subscribe({
|
|
547
|
+
next: (res) => {
|
|
548
|
+
console.log(res);
|
|
549
|
+
this.setToken(res.access_token);
|
|
550
|
+
this.setRefreshToken(res.refresh_token);
|
|
551
|
+
this.saveCredentials(res.access_token, res.refresh_token);
|
|
552
|
+
resolve('OK');
|
|
553
|
+
},
|
|
554
|
+
error: (err) => {
|
|
555
|
+
console.error(err);
|
|
556
|
+
reject(err);
|
|
557
|
+
}
|
|
558
|
+
});
|
|
559
|
+
}
|
|
560
|
+
else {
|
|
561
|
+
reject('NOK');
|
|
562
|
+
}
|
|
563
|
+
});
|
|
564
|
+
return promise;
|
|
565
|
+
}
|
|
566
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: SessionService, deps: [{ token: i1$1.HttpClient }, { token: 'environment' }, { token: CryptoService }, { token: JwtService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
567
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: SessionService }); }
|
|
529
568
|
}
|
|
530
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
569
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: SessionService, decorators: [{
|
|
531
570
|
type: Injectable
|
|
532
|
-
}], ctorParameters: ()
|
|
571
|
+
}], ctorParameters: function () { return [{ type: i1$1.HttpClient }, { type: undefined, decorators: [{
|
|
533
572
|
type: Inject,
|
|
534
573
|
args: ['environment']
|
|
535
|
-
}] }, { type: CryptoService }, { type: JwtService }] });
|
|
574
|
+
}] }, { type: CryptoService }, { type: JwtService }]; } });
|
|
536
575
|
|
|
537
576
|
class MessagesService {
|
|
538
577
|
constructor(auth,
|
|
@@ -765,15 +804,15 @@ class MessagesService {
|
|
|
765
804
|
}
|
|
766
805
|
});
|
|
767
806
|
}
|
|
768
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
769
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
807
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: MessagesService, deps: [{ token: SessionService }, { token: i2$1.MatSnackBar }, { token: i1.MatDialog }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
808
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: MessagesService }); }
|
|
770
809
|
}
|
|
771
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
810
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: MessagesService, decorators: [{
|
|
772
811
|
type: Injectable
|
|
773
|
-
}], ctorParameters: ()
|
|
812
|
+
}], ctorParameters: function () { return [{ type: SessionService }, { type: i2$1.MatSnackBar }, { type: i1.MatDialog }, { type: undefined, decorators: [{
|
|
774
813
|
type: Inject,
|
|
775
814
|
args: ['environment']
|
|
776
|
-
}] }] });
|
|
815
|
+
}] }]; } });
|
|
777
816
|
|
|
778
817
|
class UserEventService {
|
|
779
818
|
constructor(http, environment) {
|
|
@@ -792,15 +831,15 @@ class UserEventService {
|
|
|
792
831
|
return this.http.post(this.endPoint + '/security/user/event', param)
|
|
793
832
|
.pipe(map((res) => res));
|
|
794
833
|
}
|
|
795
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
796
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
834
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: UserEventService, deps: [{ token: i1$1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
835
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: UserEventService }); }
|
|
797
836
|
}
|
|
798
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
837
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: UserEventService, decorators: [{
|
|
799
838
|
type: Injectable
|
|
800
|
-
}], ctorParameters: ()
|
|
839
|
+
}], ctorParameters: function () { return [{ type: i1$1.HttpClient }, { type: undefined, decorators: [{
|
|
801
840
|
type: Inject,
|
|
802
841
|
args: ['environment']
|
|
803
|
-
}] }] });
|
|
842
|
+
}] }]; } });
|
|
804
843
|
|
|
805
844
|
class SsiSecurityCommonsModule {
|
|
806
845
|
static forRoot(environment) {
|
|
@@ -809,13 +848,13 @@ class SsiSecurityCommonsModule {
|
|
|
809
848
|
providers: [{ provide: 'environment', useValue: environment }]
|
|
810
849
|
};
|
|
811
850
|
}
|
|
812
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
813
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
851
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: SsiSecurityCommonsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
852
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.0.3", ngImport: i0, type: SsiSecurityCommonsModule, declarations: [SsiSecurityCommonsComponent,
|
|
814
853
|
AlertComponent], imports: [MatSnackBarModule,
|
|
815
854
|
MatDialogModule,
|
|
816
855
|
MatButtonModule,
|
|
817
856
|
CommonModule], exports: [SsiSecurityCommonsComponent] }); }
|
|
818
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
857
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: SsiSecurityCommonsModule, providers: [
|
|
819
858
|
MessagesService,
|
|
820
859
|
SessionService,
|
|
821
860
|
CryptoService,
|
|
@@ -826,7 +865,7 @@ class SsiSecurityCommonsModule {
|
|
|
826
865
|
MatButtonModule,
|
|
827
866
|
CommonModule] }); }
|
|
828
867
|
}
|
|
829
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
868
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: SsiSecurityCommonsModule, decorators: [{
|
|
830
869
|
type: NgModule,
|
|
831
870
|
args: [{
|
|
832
871
|
declarations: [
|
|
@@ -897,15 +936,15 @@ class AuthInterceptor {
|
|
|
897
936
|
}
|
|
898
937
|
return next.handle(request);
|
|
899
938
|
}
|
|
900
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
901
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
939
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: AuthInterceptor, deps: [{ token: CryptoService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
940
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: AuthInterceptor }); }
|
|
902
941
|
}
|
|
903
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
942
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: AuthInterceptor, decorators: [{
|
|
904
943
|
type: Injectable
|
|
905
|
-
}], ctorParameters: ()
|
|
944
|
+
}], ctorParameters: function () { return [{ type: CryptoService }, { type: undefined, decorators: [{
|
|
906
945
|
type: Inject,
|
|
907
946
|
args: ['environment']
|
|
908
|
-
}] }] });
|
|
947
|
+
}] }]; } });
|
|
909
948
|
class ResponseInterceptor {
|
|
910
949
|
constructor(injector, router, cryptoService, jwtService, sessionService) {
|
|
911
950
|
this.injector = injector;
|
|
@@ -999,12 +1038,12 @@ class ResponseInterceptor {
|
|
|
999
1038
|
console.error(err);
|
|
1000
1039
|
});
|
|
1001
1040
|
}
|
|
1002
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1003
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1041
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: ResponseInterceptor, deps: [{ token: i0.Injector }, { token: i2$2.Router }, { token: CryptoService }, { token: JwtService }, { token: SessionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1042
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: ResponseInterceptor }); }
|
|
1004
1043
|
}
|
|
1005
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1044
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: ResponseInterceptor, decorators: [{
|
|
1006
1045
|
type: Injectable
|
|
1007
|
-
}], ctorParameters: ()
|
|
1046
|
+
}], ctorParameters: function () { return [{ type: i0.Injector }, { type: i2$2.Router }, { type: CryptoService }, { type: JwtService }, { type: SessionService }]; } });
|
|
1008
1047
|
|
|
1009
1048
|
/* eslint-disable max-lines-per-function */
|
|
1010
1049
|
/* eslint-disable prefer-const */
|
|
@@ -1236,18 +1275,18 @@ class WebAuthnService {
|
|
|
1236
1275
|
}
|
|
1237
1276
|
return msg;
|
|
1238
1277
|
}
|
|
1239
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1240
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
|
1278
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: WebAuthnService, deps: [{ token: SessionService }, { token: i1$1.HttpClient }, { token: i2$1.MatSnackBar }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1279
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: WebAuthnService, providedIn: 'root' }); }
|
|
1241
1280
|
}
|
|
1242
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1281
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.0.3", ngImport: i0, type: WebAuthnService, decorators: [{
|
|
1243
1282
|
type: Injectable,
|
|
1244
1283
|
args: [{
|
|
1245
1284
|
providedIn: 'root'
|
|
1246
1285
|
}]
|
|
1247
|
-
}], ctorParameters: ()
|
|
1286
|
+
}], ctorParameters: function () { return [{ type: SessionService }, { type: i1$1.HttpClient }, { type: i2$1.MatSnackBar }, { type: undefined, decorators: [{
|
|
1248
1287
|
type: Inject,
|
|
1249
1288
|
args: ['environment']
|
|
1250
|
-
}] }] });
|
|
1289
|
+
}] }]; } });
|
|
1251
1290
|
|
|
1252
1291
|
/*
|
|
1253
1292
|
* Public API Surface of ssi-security-commons
|