Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit 32c8b361 authored by Joze RIHTARSIC's avatar Joze RIHTARSIC
Browse files

UI: fix smpIdDomainPattern and subDomainPattern regular expressions validation

parent 3e4d6c99
No related branches found
No related tags found
No related merge requests found
......@@ -18,8 +18,9 @@ export class DomainDetailsDialogComponent {
static readonly NEW_MODE = 'New Domain';
static readonly EDIT_MODE = 'Domain Edit';
readonly subDomainPattern = '^(?![0-9]+$)(?!.*-$)(?!-)[a-zA-Z0-9-]{1,63}$';
readonly smpIdDomainPattern = '^(?![0-9]+$)(?!.*-$)(?!-)[a-zA-Z0-9-]{0,63}$';
readonly dnsDomainPattern = '^([a-zA-Z]([a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?){0,63}$';
readonly subDomainPattern = this.dnsDomainPattern;
readonly smpIdDomainPattern = this.dnsDomainPattern;
// is part of domain
readonly domainCodePattern = '^[a-zA-Z0-9]{1,63}$';
......@@ -28,7 +29,7 @@ export class DomainDetailsDialogComponent {
current: DomainRo & { confirmation?: string };
domainForm: FormGroup;
domain;
selectedSMLCert: CertificateRo =null;
selectedSMLCert: CertificateRo = null;
notInList(list: string[], exception: string) {
......@@ -96,7 +97,7 @@ export class DomainDetailsDialogComponent {
if (this.current.smlClientKeyAlias) {
this.selectedSMLCert = this.lookups.cachedCertificateList.find(crt => crt.alias === this.current.smlClientKeyAlias);
this.domainForm.controls['smlClientKeyCertificate'].setValue(this.selectedSMLCert );
this.domainForm.controls['smlClientKeyCertificate'].setValue(this.selectedSMLCert);
}
this.responsive.observe(Breakpoints.Small)
......@@ -113,14 +114,14 @@ export class DomainDetailsDialogComponent {
this.checkValidity(this.domainForm)
// check if empty domain already exists
if(this.current.status === SearchTableEntityStatus.NEW
&& !this.domainForm.value['smlSubdomain'] ){
if (this.current.status === SearchTableEntityStatus.NEW
&& !this.domainForm.value['smlSubdomain']) {
var domainWithNullSML = this.lookups.cachedDomainList.filter(function(dmn) {
var domainWithNullSML = this.lookups.cachedDomainList.filter(function (dmn) {
return !dmn.smlSubdomain;
})[0];
if(!domainWithNullSML) {
if (!domainWithNullSML) {
this.dialogRef.close(true);
} else {
this.domainForm.controls['smlSubdomain'].setErrors({'blankDomainError': true});
......
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