Skip to content
Snippets Groups Projects
Commit 362eb91c authored by Hamza HRAMCHI's avatar Hamza HRAMCHI
Browse files

FEAT #20284 TIME 0:30 add conig parameters + fix css + add var langs

parent 2145416b
No related branches found
No related tags found
No related merge requests found
...@@ -671,6 +671,10 @@ ...@@ -671,6 +671,10 @@
"inputCardReaderUpdateCerts": "Une entrée de carte détectée, actualisation des certificats...", "inputCardReaderUpdateCerts": "Une entrée de carte détectée, actualisation des certificats...",
"outputCardReaderUpdateCerts": "Une sortie de carte détectée, actualisation des certificats...", "outputCardReaderUpdateCerts": "Une sortie de carte détectée, actualisation des certificats...",
"yousignOtp": "Yousign", "yousignOtp": "Yousign",
"fastOtp": "Fast" "fastOtp": "Fast",
"subscriberId": "Identifiant de l'abonné",
"certPath": "Lien vers le certificat",
"certPass": "Mot de passe du certificat",
"certType": "Type de certificat"
} }
} }
...@@ -30,15 +30,30 @@ ...@@ -30,15 +30,30 @@
</ion-item> </ion-item>
</ion-radio-group> </ion-radio-group>
</ion-list> </ion-list>
<ng-container *ngIf="connector.type === 'yousign'"> <ion-item>
<ion-label color="secondary" position="floating">{{'lang.apiUri' | translate}} *</ion-label>
<ion-input name="apiUri" [maxlength]="128" [(ngModel)]="connector.apiUri" required>
</ion-input>
</ion-item>
<ion-item>
<ion-label color="secondary" position="floating">{{(connector.type === 'yousing' ? 'lang.apiKey' : 'lang.subscriberId') | translate}} *</ion-label>
<ion-input name="apiKey" [maxlength]="128" [(ngModel)]="connector.apiKey" required>
</ion-input>
</ion-item>
<ng-container *ngIf="connector.type === 'fast'">
<ion-item>
<ion-label color="secondary" position="floating">{{'lang.certPath' | translate}} *</ion-label>
<ion-input name="certPath" [maxlength]="128" [(ngModel)]="connector.certPath" required>
</ion-input>
</ion-item>
<ion-item> <ion-item>
<ion-label color="secondary" position="floating">{{'lang.apiUri' | translate}} *</ion-label> <ion-label color="secondary" position="floating">{{'lang.certPass' | translate}} *</ion-label>
<ion-input name="apiUri" [maxlength]="128" [(ngModel)]="connector.apiUri" [required]="connector.type === 'yousign'"> <ion-input name="certPass" [maxlength]="128" [(ngModel)]="connector.certPass" required>
</ion-input> </ion-input>
</ion-item> </ion-item>
<ion-item> <ion-item>
<ion-label color="secondary" position="floating">{{'lang.apiKey' | translate}} *</ion-label> <ion-label color="secondary" position="floating">{{'lang.certType' | translate}} *</ion-label>
<ion-input name="apiKey" [maxlength]="128" [(ngModel)]="connector.apiKey" [required]="connector.type === 'yousign'"> <ion-input name="certType" [maxlength]="128" [(ngModel)]="connector.certType" required>
</ion-input> </ion-input>
</ion-item> </ion-item>
</ng-container> </ng-container>
......
...@@ -20,6 +20,9 @@ export interface Connector { ...@@ -20,6 +20,9 @@ export interface Connector {
label: string; label: string;
apiUri: string; apiUri: string;
apiKey: string; apiKey: string;
certPath?: string;
certPass?: string;
certType?: string;
securityModes: string[]; securityModes: string[];
message: any; message: any;
} }
...@@ -225,9 +228,10 @@ export class OtpComponent implements OnInit, OnDestroy { ...@@ -225,9 +228,10 @@ export class OtpComponent implements OnInit, OnDestroy {
error = true; error = true;
} }
if (!error) { if (!error) {
if (this.connector.type !== 'yousign') { if (this.connector.type === 'yousign') {
delete this.connector.apiKey; delete this.connector.certPass;
delete this.connector.apiUri; delete this.connector.certPath;
delete this.connector.certType;
} }
if (this.creationMode) { if (this.creationMode) {
this.createconnector(); this.createconnector();
......
...@@ -11,8 +11,9 @@ ...@@ -11,8 +11,9 @@
.chooseConnector { .chooseConnector {
display: grid; display: grid;
grid-template-columns: repeat(2, auto); grid-template-columns: repeat(2, auto);
justify-items: center;
justify-content: center;
grid-gap: 5px; grid-gap: 5px;
margin: 15px;
div { div {
flex: 1; flex: 1;
......
import { Injectable } from '@angular/core'; import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { catchError, tap } from 'rxjs/operators';
import { Observable, of, Subject } from 'rxjs';
import { NotificationService } from '../notification.service';
import { TranslateService } from '@ngx-translate/core';
@Injectable({ @Injectable({
providedIn: 'root' providedIn: 'root'
}) })
export class OtpFastService { export class OtpFastService {
otpFields: any = { otpFields: OtpFields = {
type: 'fast', type: 'fast',
firstname: null, firstname: null,
lastname: null, lastname: null,
...@@ -24,3 +20,16 @@ export class OtpFastService { ...@@ -24,3 +20,16 @@ export class OtpFastService {
modes: ['fast_otp'] modes: ['fast_otp']
}; };
} }
export interface OtpFields {
type: string;
firstname: string;
lastname: string;
email: string;
phone: string;
sourceId: number;
security: string;
securityModes: string[];
role: string;
modes: string[];
}
import { Injectable } from '@angular/core'; import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { catchError, tap } from 'rxjs/operators';
import { Observable, of, Subject } from 'rxjs';
import { NotificationService } from '../notification.service';
import { TranslateService } from '@ngx-translate/core';
@Injectable({ @Injectable({
providedIn: 'root' providedIn: 'root'
...@@ -11,7 +6,7 @@ import { TranslateService } from '@ngx-translate/core'; ...@@ -11,7 +6,7 @@ import { TranslateService } from '@ngx-translate/core';
export class OtpYousignService { export class OtpYousignService {
otpFields: any = { otpFields: OtpFields = {
type: 'yousign', type: 'yousign',
firstname: null, firstname: null,
lastname: null, lastname: null,
...@@ -24,3 +19,16 @@ export class OtpYousignService { ...@@ -24,3 +19,16 @@ export class OtpYousignService {
securityModes: [], securityModes: [],
}; };
} }
export interface OtpFields {
type: string;
firstname: string;
lastname: string;
email: string;
phone: string;
sourceId: number;
security: string;
securityModes: string[];
role: string;
modes: string[];
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment