From dc25584d0fe7863639ce8e494f48aedd723d95fb Mon Sep 17 00:00:00 2001 From: Neeraj Date: Thu, 11 Mar 2021 11:49:59 +0530 Subject: [PATCH 01/46] Adding feature to edit/delete/update isl bfd properties Resolves:#3920 --- .../org/openkilda/constants/IConstants.java | 11 +- .../controller/SwitchController.java | 65 +++++++++ .../openkilda/helper/RestClientManager.java | 26 ++++ .../service/SwitchIntegrationService.java | 84 +++++++++++ .../openkilda/log/constants/ActivityType.java | 4 +- .../org/openkilda/model/BfdProperties.java | 36 +++++ .../model/BfdPropertiesEndpoint.java | 39 ++++++ .../openkilda/model/LinkBfdProperties.java | 40 ++++++ .../org/openkilda/model/NetworkEndpoint.java | 37 +++++ .../org/openkilda/service/SwitchService.java | 15 ++ .../ui/src/app/common/constants/constants.ts | 7 + .../app/common/services/isl-detail.service.ts | 1 + .../app/common/services/isl-list.service.ts | 30 ++++ .../isl/isl-detail/isl-detail.component.html | 75 ++++++++++ .../isl/isl-detail/isl-detail.component.ts | 130 ++++++++++++++++-- 15 files changed, 584 insertions(+), 16 deletions(-) create mode 100644 src-gui/src/main/java/org/openkilda/model/BfdProperties.java create mode 100644 src-gui/src/main/java/org/openkilda/model/BfdPropertiesEndpoint.java create mode 100644 src-gui/src/main/java/org/openkilda/model/LinkBfdProperties.java create mode 100644 src-gui/src/main/java/org/openkilda/model/NetworkEndpoint.java diff --git a/src-gui/src/main/java/org/openkilda/constants/IConstants.java b/src-gui/src/main/java/org/openkilda/constants/IConstants.java index 08c8f290c07..625c655e736 100644 --- a/src-gui/src/main/java/org/openkilda/constants/IConstants.java +++ b/src-gui/src/main/java/org/openkilda/constants/IConstants.java @@ -173,6 +173,8 @@ private NorthBoundUrl() { public static final String GET_SWITCH_PORT_PROPERTY = VERSION_TWO + "/switches/{switch_id}" + "/ports/{port}/properties"; public static final String UPDATE_SWITCH_LOCATION = VERSION_TWO + "/switches/{switch_id}"; + public static final String GET_LINK_BFD_PROPERTIES = VERSION_TWO + + "/links/{src-switch}_{src-port}/{dst-switch}_{dst-port}/bfd"; } public final class OpenTsDbUrl { @@ -298,12 +300,16 @@ private Permission() { public static final String SW_SWITCH_METERS = "sw_switch_meters"; - public static final String SW_SWITCH_LOCATION_UPDATE = "sw_switch_location_update"; - public static final String SAML_SETTING = "saml_setting"; + public static final String SW_SWITCH_LOCATION_UPDATE = "sw_switch_location_update"; + public static final String TOPOLOGY_WORLD_MAP_VIEW = "topology_world_map_view"; + + public static final String ISL_UPDATE_BFD_PROPERTIES = "isl_update_bfd_properties"; + public static final String ISL_DELETE_BFD = "isl_delete_bfd"; + } public final class Settings { @@ -315,7 +321,6 @@ private Settings() { public static final String TOPOLOGY_SETTING = "topology_setting"; } - public interface SamlUrl { public static final String SAML = "/saml/"; diff --git a/src-gui/src/main/java/org/openkilda/controller/SwitchController.java b/src-gui/src/main/java/org/openkilda/controller/SwitchController.java index 31c1b172d35..91eea66a31b 100644 --- a/src-gui/src/main/java/org/openkilda/controller/SwitchController.java +++ b/src-gui/src/main/java/org/openkilda/controller/SwitchController.java @@ -23,8 +23,10 @@ import org.openkilda.integration.model.response.ConfiguredPort; import org.openkilda.log.ActivityLogger; import org.openkilda.log.constants.ActivityType; +import org.openkilda.model.BfdProperties; import org.openkilda.model.FlowInfo; import org.openkilda.model.IslLinkInfo; +import org.openkilda.model.LinkBfdProperties; import org.openkilda.model.LinkMaxBandwidth; import org.openkilda.model.LinkParametersDto; import org.openkilda.model.LinkProps; @@ -410,4 +412,67 @@ public class SwitchController { activityLogger.log(ActivityType.UPDATE_SWITCH_LOCATION, switchId); return serviceSwitch.updateSwitchLocation(switchId, switchLocation); } + + /** + * Gets the link BFD properties. + * + * @param srcSwitch the src switch + * @param srcPort the src port + * @param dstSwitch the dst switch + * @param dstPort the dst port + * @return the link Bfd properties + */ + @RequestMapping(value = "/links/bfd", method = RequestMethod.GET) + @ResponseStatus(HttpStatus.OK) + public @ResponseBody LinkBfdProperties readBfdProperties(@RequestParam(value = "src_switch", + required = false) final String srcSwitch, @RequestParam(value = "src_port", + required = false) final String srcPort, @RequestParam(value = "dst_switch", + required = false) final String dstSwitch, @RequestParam(value = "dst_port", + required = false) final String dstPort) { + return serviceSwitch.getLinkBfdProperties(srcSwitch, srcPort, dstSwitch, dstPort); + } + + /** + * Updates the link BFD properties. + * + * @param srcSwitch the src switch + * @param srcPort the src port + * @param dstSwitch the dst switch + * @param dstPort the dst port + * @return the link Bfd properties + */ + @RequestMapping(value = "/links/bfd", method = RequestMethod.PUT) + @ResponseStatus(HttpStatus.OK) + @Permissions(values = IConstants.Permission.ISL_UPDATE_BFD_PROPERTIES) + public @ResponseBody LinkBfdProperties updateBfdProperties(@RequestParam(value = "src_switch", + required = true) final String srcSwitch, @RequestParam(value = "src_port", + required = true) final String srcPort, @RequestParam(value = "dst_switch", + required = true) final String dstSwitch, @RequestParam(value = "dst_port", + required = true) final String dstPort, @RequestBody(required = true) BfdProperties properties) { + activityLogger.log(ActivityType.UPDATE_ISL_BFD_PROPERTIES, "Src_SW_" + srcSwitch + "\nSrc_PORT_" + + srcPort + "\nDst_SW_" + dstSwitch + "\nDst_PORT_" + + dstPort + "\nProperties_" + properties); + return serviceSwitch.updateLinkBfdProperties(srcSwitch, srcPort, dstSwitch, dstPort, properties); + } + + /** + * Delete link BFD. + * + * @param srcSwitch the src switch + * @param srcPort the src port + * @param dstSwitch the dst switch + * @param dstPort the dst port + */ + @RequestMapping(value = "/links/bfd", method = RequestMethod.DELETE) + @ResponseStatus(HttpStatus.OK) + @Permissions(values = IConstants.Permission.ISL_DELETE_BFD) + public @ResponseBody String deleteLinkBfd(@RequestParam(value = "src_switch", + required = true) final String srcSwitch, @RequestParam(value = "src_port", + required = true) final String srcPort, @RequestParam(value = "dst_switch", + required = true) final String dstSwitch, @RequestParam(value = "dst_port", + required = true) final String dstPort) { + activityLogger.log(ActivityType.DELETE_ISL_BFD, "Src_SW_" + srcSwitch + "\nSrc_PORT_" + + srcPort + "\nDst_SW_" + dstSwitch + "\nDst_PORT_" + dstPort); + return serviceSwitch.deleteLinkBfd(srcSwitch, srcPort, dstSwitch, dstPort); + } } diff --git a/src-gui/src/main/java/org/openkilda/helper/RestClientManager.java b/src-gui/src/main/java/org/openkilda/helper/RestClientManager.java index bc456d79b27..039a6e7c40c 100644 --- a/src-gui/src/main/java/org/openkilda/helper/RestClientManager.java +++ b/src-gui/src/main/java/org/openkilda/helper/RestClientManager.java @@ -393,4 +393,30 @@ public static boolean isValidResponse(final HttpResponse response) { } } } + + /** + * Checks if is delete link bfd valid response. + * + * @param response the response + * @return true, if is valid response + */ + public static boolean isDeleteBfdValidResponse(final HttpResponse response) { + LOGGER.debug("[isValidResponse] Response Code " + response.getStatusLine().getStatusCode()); + boolean isValid = response.getStatusLine().getStatusCode() >= HttpStatus.OK.value() + && response.getStatusLine().getStatusCode() < HttpStatus.MULTIPLE_CHOICES.value(); + if (isValid) { + return true; + } else { + try { + String content = IoUtil.toString(response.getEntity().getContent()); + LOGGER.warn("Found invalid Response. Status Code: " + response.getStatusLine().getStatusCode() + + ", content: " + content); + throw new InvalidResponseException(response.getStatusLine().getStatusCode(), content); + } catch (IOException exception) { + LOGGER.warn("Error occurred while vaildating response", exception); + throw new InvalidResponseException(HttpError.INTERNAL_ERROR.getCode(), + HttpError.INTERNAL_ERROR.getMessage()); + } + } + } } diff --git a/src-gui/src/main/java/org/openkilda/integration/service/SwitchIntegrationService.java b/src-gui/src/main/java/org/openkilda/integration/service/SwitchIntegrationService.java index 6a699ed12c4..ac80521a45a 100644 --- a/src-gui/src/main/java/org/openkilda/integration/service/SwitchIntegrationService.java +++ b/src-gui/src/main/java/org/openkilda/integration/service/SwitchIntegrationService.java @@ -30,8 +30,10 @@ import org.openkilda.integration.model.PortConfiguration; import org.openkilda.integration.model.response.ConfiguredPort; import org.openkilda.integration.model.response.IslLink; +import org.openkilda.model.BfdProperties; import org.openkilda.model.FlowInfo; import org.openkilda.model.IslLinkInfo; +import org.openkilda.model.LinkBfdProperties; import org.openkilda.model.LinkMaxBandwidth; import org.openkilda.model.LinkParametersDto; import org.openkilda.model.LinkProps; @@ -777,4 +779,86 @@ public SwitchInfo updateSwitchLocation(String switchId, SwitchLocation switchLoc } return null; } + + /** + * Gets the link Bfd properties. + * + * @param srcSwitch the src switch + * @param srcPort the src port + * @param dstSwitch the dst switch + * @param dstPort the dst port + * @return the link Bfd properties + */ + public LinkBfdProperties getLinkBfdProperties(String srcSwitch, String srcPort, String dstSwitch, String dstPort) { + try { + HttpResponse response = restClientManager.invoke( + applicationProperties.getNbBaseUrl() + IConstants.NorthBoundUrl.GET_LINK_BFD_PROPERTIES + .replace("{src-switch}", srcSwitch).replace("{src-port}", srcPort) + .replace("{dst-switch}", dstSwitch).replace("{dst-port}", dstPort), HttpMethod.GET, + "", "application/json", + applicationService.getAuthHeader()); + if (RestClientManager.isValidResponse(response)) { + return restClientManager.getResponse(response, LinkBfdProperties.class); + } + } catch (InvalidResponseException e) { + LOGGER.error("Error occurred while reading link bfd properties", e); + throw new InvalidResponseException(e.getCode(), e.getResponse()); + } + return null; + } + + /** + * Updates the link Bfd properties. + * + * @return the LinkBfdProperties + */ + public LinkBfdProperties updateLinkBfdProperties(String srcSwitch, String srcPort, String dstSwitch, + String dstPort, BfdProperties properties) { + try { + HttpResponse response = restClientManager.invoke( + applicationProperties.getNbBaseUrl() + IConstants.NorthBoundUrl.GET_LINK_BFD_PROPERTIES + .replace("{src-switch}", srcSwitch).replace("{src-port}", srcPort) + .replace("{dst-switch}", dstSwitch).replace("{dst-port}", dstPort), HttpMethod.PUT, + objectMapper.writeValueAsString(properties), "application/json", + applicationService.getAuthHeader()); + if (RestClientManager.isValidResponse(response)) { + return restClientManager.getResponse(response, LinkBfdProperties.class); + } + } catch (InvalidResponseException e) { + LOGGER.error("Error occurred while updating link bfd properties", e); + throw new InvalidResponseException(e.getCode(), e.getResponse()); + } catch (JsonProcessingException e) { + e.printStackTrace(); + } + return null; + } + + /** + * Deletes link bfd. + * @param srcSwitch the src switch + * @param srcPort the src port + * @param dstSwitch the dst switch + * @param dstPort the dst port + * + * @return LinkBfdProperties + */ + public String deleteLinkBfd(String srcSwitch, String srcPort, String dstSwitch, String dstPort) { + try { + HttpResponse response = restClientManager.invoke( + applicationProperties.getNbBaseUrl() + IConstants.NorthBoundUrl.GET_LINK_BFD_PROPERTIES + .replace("{src-switch}", srcSwitch).replace("{src-port}", srcPort) + .replace("{dst-switch}", dstSwitch).replace("{dst-port}", dstPort), HttpMethod.DELETE, + "", "application/json", + applicationService.getAuthHeader()); + if (RestClientManager.isDeleteBfdValidResponse(response)) { + return restClientManager.getResponse(response, String.class); + } + } catch (InvalidResponseException e) { + LOGGER.error("Error occured while deleting link bfd", e); + throw new InvalidResponseException(e.getCode(), e.getResponse()); + } catch (UnsupportedOperationException e) { + e.printStackTrace(); + } + return null; + } } diff --git a/src-gui/src/main/java/org/openkilda/log/constants/ActivityType.java b/src-gui/src/main/java/org/openkilda/log/constants/ActivityType.java index 9d9dd512970..e6f9788dbca 100644 --- a/src-gui/src/main/java/org/openkilda/log/constants/ActivityType.java +++ b/src-gui/src/main/java/org/openkilda/log/constants/ActivityType.java @@ -61,7 +61,9 @@ public enum ActivityType { DELETE_SWITCH(40L), UPDATE_ISL_BFD_FLAG(41L), UPDATE_SW_PORT_PROPERTIES(42L), - UPDATE_SWITCH_LOCATION(43L); + UPDATE_SWITCH_LOCATION(43L), + UPDATE_ISL_BFD_PROPERTIES(44L), + DELETE_ISL_BFD(45L); private Long id; private ActivityTypeEntity activityTypeEntity; diff --git a/src-gui/src/main/java/org/openkilda/model/BfdProperties.java b/src-gui/src/main/java/org/openkilda/model/BfdProperties.java new file mode 100644 index 00000000000..ef842b87abd --- /dev/null +++ b/src-gui/src/main/java/org/openkilda/model/BfdProperties.java @@ -0,0 +1,36 @@ +/* Copyright 2019 Telstra Open Source + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.openkilda.model; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; + +import lombok.Data; + +@JsonSerialize +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +@Data +public class BfdProperties { + + @JsonProperty("interval_ms") + private Long intervalMs; + + @JsonProperty("multiplier") + private Short multiplier; +} diff --git a/src-gui/src/main/java/org/openkilda/model/BfdPropertiesEndpoint.java b/src-gui/src/main/java/org/openkilda/model/BfdPropertiesEndpoint.java new file mode 100644 index 00000000000..55726b7cd98 --- /dev/null +++ b/src-gui/src/main/java/org/openkilda/model/BfdPropertiesEndpoint.java @@ -0,0 +1,39 @@ +/* Copyright 2019 Telstra Open Source + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.openkilda.model; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; + +import lombok.Data; + +@JsonSerialize +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +@Data +public class BfdPropertiesEndpoint { + + @JsonProperty("endpoint") + private NetworkEndpoint endpoint; + + @JsonProperty("properties") + private BfdProperties properties; + + @JsonProperty("status") + private String status; +} diff --git a/src-gui/src/main/java/org/openkilda/model/LinkBfdProperties.java b/src-gui/src/main/java/org/openkilda/model/LinkBfdProperties.java new file mode 100644 index 00000000000..a2539223081 --- /dev/null +++ b/src-gui/src/main/java/org/openkilda/model/LinkBfdProperties.java @@ -0,0 +1,40 @@ +/* Copyright 2019 Telstra Open Source + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.openkilda.model; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; + +import lombok.Data; + +@JsonSerialize +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +@Data +public class LinkBfdProperties { + + @JsonProperty("properties") + private BfdProperties properties; + + @JsonProperty("effective_source") + private BfdPropertiesEndpoint effectiveSource; + + @JsonProperty("effective_destination") + private BfdPropertiesEndpoint effectiveDestination; + +} diff --git a/src-gui/src/main/java/org/openkilda/model/NetworkEndpoint.java b/src-gui/src/main/java/org/openkilda/model/NetworkEndpoint.java new file mode 100644 index 00000000000..1c202cd0d1f --- /dev/null +++ b/src-gui/src/main/java/org/openkilda/model/NetworkEndpoint.java @@ -0,0 +1,37 @@ +/* Copyright 2019 Telstra Open Source + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.openkilda.model; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; + +import lombok.Data; + +@JsonSerialize +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +@Data +public class NetworkEndpoint { + + @JsonProperty("switch-id") + private String switchId; + + @JsonProperty("port-id") + private int port; + +} diff --git a/src-gui/src/main/java/org/openkilda/service/SwitchService.java b/src-gui/src/main/java/org/openkilda/service/SwitchService.java index 902a6552ca6..cd2c07f4f0a 100644 --- a/src-gui/src/main/java/org/openkilda/service/SwitchService.java +++ b/src-gui/src/main/java/org/openkilda/service/SwitchService.java @@ -28,8 +28,10 @@ import org.openkilda.integration.service.SwitchIntegrationService; import org.openkilda.integration.source.store.SwitchStoreService; import org.openkilda.integration.source.store.dto.InventorySwitch; +import org.openkilda.model.BfdProperties; import org.openkilda.model.FlowInfo; import org.openkilda.model.IslLinkInfo; +import org.openkilda.model.LinkBfdProperties; import org.openkilda.model.LinkMaxBandwidth; import org.openkilda.model.LinkParametersDto; import org.openkilda.model.LinkProps; @@ -597,4 +599,17 @@ public SwitchInfo updateSwitchLocation(String switchId, SwitchLocation switchLoc return switchIntegrationService.updateSwitchLocation(switchId, switchLocation); } + public LinkBfdProperties getLinkBfdProperties(String srcSwitch, String srcPort, String dstSwitch, String dstPort) { + return switchIntegrationService.getLinkBfdProperties(srcSwitch, srcPort, dstSwitch, dstPort); + } + + public LinkBfdProperties updateLinkBfdProperties(String srcSwitch, String srcPort, String dstSwitch, + String dstPort, BfdProperties properties) { + return switchIntegrationService.updateLinkBfdProperties(srcSwitch, srcPort, dstSwitch, dstPort, properties); + } + + public String deleteLinkBfd(String srcSwitch, String srcPort, String dstSwitch, String dstPort) { + return switchIntegrationService.deleteLinkBfd(srcSwitch, srcPort, dstSwitch, dstPort); + } + } diff --git a/src-gui/ui/src/app/common/constants/constants.ts b/src-gui/ui/src/app/common/constants/constants.ts index 0208fa1c8ae..ad1594677e3 100644 --- a/src-gui/ui/src/app/common/constants/constants.ts +++ b/src-gui/ui/src/app/common/constants/constants.ts @@ -144,5 +144,12 @@ export const MessageObj = { provider_deleted_success:"Provider deleted successfully", switch_updated_success:"Switch location updated successfully.", switch_updated_error:"Error in updating switch location.", + delete_bfd_properties:"Deleting BFD properties.", + updating_bfd_properties:'Updating BFD properties values.', + updating_bfd_properties_success:'BFD Properties updated successfully.', + updating_bfd_properties_error:"Error in updating BFD properties.", + BFD_properties_deleted:"BFD properties deleted successfully.", + error_BFD_properties_delete:"Error in deleting BFD properties.", + delete_isl_bfd_not_authorised:"You are not authorised to delete the ISL BFD Properties." } \ No newline at end of file diff --git a/src-gui/ui/src/app/common/services/isl-detail.service.ts b/src-gui/ui/src/app/common/services/isl-detail.service.ts index 1f426c83a8a..2670611360e 100644 --- a/src-gui/ui/src/app/common/services/isl-detail.service.ts +++ b/src-gui/ui/src/app/common/services/isl-detail.service.ts @@ -20,6 +20,7 @@ export class IslDetailService { getISLFlowsList(query? : any) : Observable{ return this.httpClient.get(`${environment.apiEndPoint}/switch/links/flows`,{params:query}); } + getIslLatencyfromGraph(src_switch,src_port,dst_switch,dst_port,from,to,frequency){ return this.httpClient.get( `${ diff --git a/src-gui/ui/src/app/common/services/isl-list.service.ts b/src-gui/ui/src/app/common/services/isl-list.service.ts index 2c99c1582b2..22cd1f4bb43 100644 --- a/src-gui/ui/src/app/common/services/isl-list.service.ts +++ b/src-gui/ui/src/app/common/services/isl-list.service.ts @@ -80,4 +80,34 @@ export class IslListService { const url = `${environment.apiEndPoint}/switch/link/props`; return this.httpClient.put(url,requestPayload); } + + getLinkBFDProperties(src_switch, src_port, dst_switch, dst_port){ + let date = new Date().getTime(); + return this.httpClient.get(`${environment.apiEndPoint}/switch/links/bfd?src_switch=${src_switch}&src_port=${src_port}&dst_switch=${dst_switch}&dst_port=${dst_port}&_=${date}`); + + } + updateLinkBFDProperties(data,src_switch, src_port, dst_switch, dst_port){ + const url = `${environment.apiEndPoint}/switch/links/bfd?src_switch=${src_switch}&src_port=${src_port}&dst_switch=${dst_switch}&dst_port=${dst_port}`; + return this.httpClient.put(url,data); + } + deleteLinkBFDProperties(data,successRes,errorRes){ + const url = `${environment.apiEndPoint}/switch/links/bfd?src_switch=${data.src_switch}&src_port=${data.src_port}&dst_switch=${data.dst_switch}&dst_port=${data.dst_port}`; + let token = this.cookieManager.get('XSRF-TOKEN') as string; + var xhr = new XMLHttpRequest(); + xhr.withCredentials = false; + xhr.addEventListener("readystatechange", function () { + if (this.readyState == 4 && this.status == 200) { + successRes(JSON.parse(this.responseText)); + }else if(this.readyState == 4 && this.status >= 300){ + errorRes(JSON.parse(this.responseText)); + } + }); + + xhr.open("DELETE", url); + xhr.setRequestHeader("Content-Type", "application/json"); + if (token !== null) { + xhr.setRequestHeader( "X-XSRF-TOKEN" , token); + } + xhr.send(); + } } diff --git a/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html b/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html index 73fbc8514c6..c8e3a46697d 100644 --- a/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html +++ b/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html @@ -33,6 +33,18 @@ {{src_switch_name }} +
+ +
+ {{bfdPropertyData.effective_source.properties['interval_ms']}} +
+
+
+ +
+ {{bfdPropertyData.effective_source.properties['multiplier']}} +
+
@@ -72,6 +84,18 @@ + +
+ +
+
+ +
+
+ + +
+
+ + +
+
+
+ Update + Cancel +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ {{bfdPropertyData.properties['interval_ms']}} +
+
+
+ +
+ {{bfdPropertyData.properties['multiplier']}} +
+
+
+
+
+ + +
+
LOGIN ATTEMPT SETTINGS
+
+
+
+
+
+ + + +
+   +   +   +
+
+
+
+
+
+
+ + +
+
USER ACCOUNT UNLOCK SETTINGS
+
+
+
+
+
+ + + +
+   +   +   +
+
+
+
+
+
+
\ No newline at end of file diff --git a/src-gui/ui/src/app/modules/settings/session/session.component.ts b/src-gui/ui/src/app/modules/settings/session/session.component.ts index d846feb7cfd..eca0477fbf7 100644 --- a/src-gui/ui/src/app/modules/settings/session/session.component.ts +++ b/src-gui/ui/src/app/modules/settings/session/session.component.ts @@ -16,11 +16,17 @@ import { MessageObj } from 'src/app/common/constants/constants'; export class SessionComponent implements OnInit, AfterViewInit, OnChanges,DoCheck { sessionForm: FormGroup; switchNameSourceForm:FormGroup; + userUnlockForm:FormGroup; + loginAttemptForm:FormGroup; switchNameSourceTypes:any; isEdit = false; isSwitchNameSourcEdit = false; + isloginAttemptEdit = false; + isUserUnlockEdit = false; initialVal = null; initialNameSource = null; + intialLoginAttemptValue = null; + initialUserUnlockValue = null; constructor( private formBuilder: FormBuilder, private commonService: CommonService, @@ -47,6 +53,15 @@ export class SessionComponent implements OnInit, AfterViewInit, OnChanges,DoChec switch_name_source: ["FILE_STORAGE"] }); this.switchNameSourceForm.disable(); + + this.loginAttemptForm = this.formBuilder.group({ + login_attempt: [""] + }); + this.loginAttemptForm.disable(); + this.userUnlockForm = this.formBuilder.group({ + user_unlock_time: [""] + }); + this.userUnlockForm.disable(); } @@ -59,6 +74,10 @@ export class SessionComponent implements OnInit, AfterViewInit, OnChanges,DoChec this.switchNameSourceTypes = responseList[1]; this.switchNameSourceForm.setValue({"switch_name_source":settings['SWITCH_NAME_STORAGE_TYPE'] || 'FILE_STORAGE'}); this.initialNameSource = settings['SWITCH_NAME_STORAGE_TYPE'] || 'FILE_STORAGE'; + this.intialLoginAttemptValue = settings['INVALID_LOGIN_ATTEMPT'] || 5; + this.loginAttemptForm.setValue({"login_attempt":settings['INVALID_LOGIN_ATTEMPT']}); + this.initialUserUnlockValue = settings['USER_ACCOUNT_UNLOCK_TIME'] || 60; + this.userUnlockForm.setValue({"user_unlock_time":settings['USER_ACCOUNT_UNLOCK_TIME']}); this.loaderService.hide(); },error=>{ var errorMsg = error && error.error && error.error['error-auxiliary-message'] ? error.error['error-auxiliary-message']:'Api response error'; @@ -165,4 +184,78 @@ export class SessionComponent implements OnInit, AfterViewInit, OnChanges,DoChec this.switchNameSourceForm.disable(); } + saveUserUnlockTimeSetting(){ + let unlock_time = this.userUnlockForm.controls['user_unlock_time'].value; + if(unlock_time == ''){ + return false; + } + const modalReff = this.modalService.open(ModalconfirmationComponent); + modalReff.componentInstance.title = "Confirmation"; + modalReff.componentInstance.content = 'Are you sure you want to save user unlock time settings ?'; + modalReff.result.then((response) => { + if(response && response == true){ + this.loaderService.show(MessageObj.saving_unlock_time_setting); + this.commonService.saveUserAccountUnlockTimeSettings(unlock_time).subscribe((response)=>{ + this.toastrService.success(MessageObj.user_unlock_time_setting_saved,'Success'); + this.loaderService.hide(); + this.initialUserUnlockValue = this.userUnlockForm.controls['user_unlock_time'].value; + this.isUserUnlockEdit = false; + this.userUnlockForm.disable(); + },error=>{ + var errorMsg = error && error.error && error.error['error-auxiliary-message'] ? error.error['error-auxiliary-message']:'Unable to save'; + this.toastrService.error(errorMsg,'Error'); + this.loaderService.hide(); + }); + } + }); + } + + editUserUnlockTimeSetting(){ + this.isUserUnlockEdit = true; + this.userUnlockForm.enable(); + } + + cancelUserUnlockTimeSetting(){ + this.userUnlockForm.setValue({"user_unlock_time":this.initialUserUnlockValue}); + this.isUserUnlockEdit = false; + this.userUnlockForm.disable(); + } + + + saveLoginAttemptSetting(){ + let login_attempt = this.loginAttemptForm.controls['login_attempt'].value; + if(login_attempt == ''){ + return false; + } + const modalReff = this.modalService.open(ModalconfirmationComponent); + modalReff.componentInstance.title = "Confirmation"; + modalReff.componentInstance.content = 'Are you sure you want to save user login attempt settings ?'; + modalReff.result.then((response) => { + if(response && response == true){ + this.loaderService.show(MessageObj.saving_login_attempt_setting); + this.commonService.saveInvalidLoginAttemptSettings(login_attempt).subscribe((response)=>{ + this.toastrService.success(MessageObj.user_login_attempt_setting_saved,'Success'); + this.loaderService.hide(); + this.intialLoginAttemptValue = this.loginAttemptForm.controls['login_attempt'].value; + this.isloginAttemptEdit = false; + this.loginAttemptForm.disable(); + },error=>{ + var errorMsg = error && error.error && error.error['error-auxiliary-message'] ? error.error['error-auxiliary-message']:'Unable to save'; + this.toastrService.error(errorMsg,'Error'); + this.loaderService.hide(); + }); + } + }); + } + + editLoginAttemptSetting(){ + this.isloginAttemptEdit = true; + this.loginAttemptForm.enable(); + } + + cancelLoginAttemptSetting(){ + this.loginAttemptForm.setValue({"login_attempt":this.intialLoginAttemptValue}); + this.isloginAttemptEdit = false; + this.loginAttemptForm.disable(); + } } From 6c255585b78941a5f32e372ea210d8c8d71389af Mon Sep 17 00:00:00 2001 From: Neeraj Date: Tue, 23 Mar 2021 15:18:42 +0530 Subject: [PATCH 03/46] -adding db script file --- .../main/resources/db/import-script_31.sql | 14 ++++++ .../isl/isl-detail/isl-detail.component.html | 48 ++++++++++--------- 2 files changed, 39 insertions(+), 23 deletions(-) create mode 100644 src-gui/src/main/resources/db/import-script_31.sql diff --git a/src-gui/src/main/resources/db/import-script_31.sql b/src-gui/src/main/resources/db/import-script_31.sql new file mode 100644 index 00000000000..63d8754fd1a --- /dev/null +++ b/src-gui/src/main/resources/db/import-script_31.sql @@ -0,0 +1,14 @@ +INSERT INTO "VERSION" (Version_ID, Version_Number, Version_Deployment_Date) +VALUES (31, 31, CURRENT_TIMESTAMP); + +INSERT INTO "ACTIVITY_TYPE" (activity_type_id, activity_name) VALUES + (44, 'UPDATE_ISL_BFD_PROPERTIES'), + (45, 'DELETE_ISL_BFD'); + +INSERT INTO "KILDA_PERMISSION" (PERMISSION_ID, PERMISSION, IS_EDITABLE, IS_ADMIN_PERMISSION, STATUS_ID, CREATED_BY, CREATED_DATE, UPDATED_BY, UPDATED_DATE,DESCRIPTION) VALUES + (360, 'isl_update_bfd_properties', false, false, 1, 1, CURRENT_TIMESTAMP, 1, CURRENT_TIMESTAMP, 'Permission to update isl bfd properties'), + (361, 'isl_delete_bfd', false, false, 1, 1, CURRENT_TIMESTAMP, 1, CURRENT_TIMESTAMP, 'Permission to delete isl bfd'); + +INSERT INTO "ROLE_PERMISSION" (ROLE_ID,PERMISSION_ID) VALUES + (2, 360), + (2, 361); \ No newline at end of file diff --git a/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html b/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html index c8e3a46697d..9a0dfae065d 100644 --- a/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html +++ b/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html @@ -224,30 +224,32 @@ -
- -
-
- -
-
- - -
-
- - -
-
-
- Update - Cancel -
- -
-
+
+
+ +
+
+ +
+
+ + +
+
+ + +
+
+
+ Update + Cancel +
+ +
+
-
+
+
\ No newline at end of file From e32a01897886d23d3ff5708bdaded219bedc662a Mon Sep 17 00:00:00 2001 From: Swati Sharma Date: Wed, 14 Apr 2021 12:00:30 +0530 Subject: [PATCH 12/46] updated documentation in code --- src-gui/src/main/java/org/openkilda/constants/Status.java | 2 +- .../src/main/java/org/openkilda/controller/LoginController.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src-gui/src/main/java/org/openkilda/constants/Status.java b/src-gui/src/main/java/org/openkilda/constants/Status.java index dc0cf5a82d2..232f04a978c 100644 --- a/src-gui/src/main/java/org/openkilda/constants/Status.java +++ b/src-gui/src/main/java/org/openkilda/constants/Status.java @@ -1,4 +1,4 @@ -/* Copyright 2019 Telstra Open Source +/* Copyright 2018 Telstra Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src-gui/src/main/java/org/openkilda/controller/LoginController.java b/src-gui/src/main/java/org/openkilda/controller/LoginController.java index e63bd553609..12f93fdfcef 100644 --- a/src-gui/src/main/java/org/openkilda/controller/LoginController.java +++ b/src-gui/src/main/java/org/openkilda/controller/LoginController.java @@ -1,4 +1,4 @@ -/* Copyright 2019 Telstra Open Source +/* Copyright 2018 Telstra Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. From c3d93a4993da1601d8480bce354571f6211916a6 Mon Sep 17 00:00:00 2001 From: Swati Sharma Date: Wed, 14 Apr 2021 12:15:40 +0530 Subject: [PATCH 13/46] updated documentation in code --- src-gui/src/main/java/org/openkilda/model/BfdProperties.java | 2 +- .../main/java/org/openkilda/model/BfdPropertiesEndpoint.java | 2 +- .../src/main/java/org/openkilda/model/LinkBfdProperties.java | 2 +- src-gui/src/main/java/org/openkilda/model/NetworkEndpoint.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src-gui/src/main/java/org/openkilda/model/BfdProperties.java b/src-gui/src/main/java/org/openkilda/model/BfdProperties.java index ef842b87abd..6eb96380f90 100644 --- a/src-gui/src/main/java/org/openkilda/model/BfdProperties.java +++ b/src-gui/src/main/java/org/openkilda/model/BfdProperties.java @@ -1,4 +1,4 @@ -/* Copyright 2019 Telstra Open Source +/* Copyright 2021 Telstra Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src-gui/src/main/java/org/openkilda/model/BfdPropertiesEndpoint.java b/src-gui/src/main/java/org/openkilda/model/BfdPropertiesEndpoint.java index 55726b7cd98..c2ea3272dbc 100644 --- a/src-gui/src/main/java/org/openkilda/model/BfdPropertiesEndpoint.java +++ b/src-gui/src/main/java/org/openkilda/model/BfdPropertiesEndpoint.java @@ -1,4 +1,4 @@ -/* Copyright 2019 Telstra Open Source +/* Copyright 2021 Telstra Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src-gui/src/main/java/org/openkilda/model/LinkBfdProperties.java b/src-gui/src/main/java/org/openkilda/model/LinkBfdProperties.java index a2539223081..70fcaeb3dd1 100644 --- a/src-gui/src/main/java/org/openkilda/model/LinkBfdProperties.java +++ b/src-gui/src/main/java/org/openkilda/model/LinkBfdProperties.java @@ -1,4 +1,4 @@ -/* Copyright 2019 Telstra Open Source +/* Copyright 2021 Telstra Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/src-gui/src/main/java/org/openkilda/model/NetworkEndpoint.java b/src-gui/src/main/java/org/openkilda/model/NetworkEndpoint.java index 1c202cd0d1f..1273233fdfd 100644 --- a/src-gui/src/main/java/org/openkilda/model/NetworkEndpoint.java +++ b/src-gui/src/main/java/org/openkilda/model/NetworkEndpoint.java @@ -1,4 +1,4 @@ -/* Copyright 2019 Telstra Open Source +/* Copyright 2021 Telstra Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. From 1036ff8bfd4c5c906d11924327bc6aa866ff77ba Mon Sep 17 00:00:00 2001 From: Swati Sharma Date: Wed, 14 Apr 2021 13:50:39 +0530 Subject: [PATCH 14/46] removed unwanted block from build.gradle --- src-gui/build.gradle | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src-gui/build.gradle b/src-gui/build.gradle index b22e01915a8..64705b34cdc 100644 --- a/src-gui/build.gradle +++ b/src-gui/build.gradle @@ -70,12 +70,7 @@ dependencies { group = 'org.openkilda' description = 'OpenKilda-GUI' - -java { - toolchain { - languageVersion = JavaLanguageVersion.of(8) - } -} +sourceCompatibility = '1.8' tasks.withType(JavaCompile) { options.encoding = 'UTF-8' From c7eeae1c8b2940cd8104ed650f96284885be06fb Mon Sep 17 00:00:00 2001 From: Neeraj Date: Thu, 11 Mar 2021 11:49:59 +0530 Subject: [PATCH 15/46] Adding feature to edit/delete/update isl bfd properties Resolves:#3920 --- .../org/openkilda/constants/IConstants.java | 10 +- .../controller/SwitchController.java | 65 +++++++++ .../openkilda/helper/RestClientManager.java | 26 ++++ .../service/SwitchIntegrationService.java | 84 +++++++++++ .../openkilda/log/constants/ActivityType.java | 4 +- .../org/openkilda/model/BfdProperties.java | 36 +++++ .../model/BfdPropertiesEndpoint.java | 39 ++++++ .../openkilda/model/LinkBfdProperties.java | 40 ++++++ .../org/openkilda/model/NetworkEndpoint.java | 37 +++++ .../org/openkilda/service/SwitchService.java | 15 ++ .../ui/src/app/common/constants/constants.ts | 7 + .../app/common/services/isl-detail.service.ts | 1 + .../app/common/services/isl-list.service.ts | 30 ++++ .../isl/isl-detail/isl-detail.component.html | 75 ++++++++++ .../isl/isl-detail/isl-detail.component.ts | 130 ++++++++++++++++-- 15 files changed, 584 insertions(+), 15 deletions(-) create mode 100644 src-gui/src/main/java/org/openkilda/model/BfdProperties.java create mode 100644 src-gui/src/main/java/org/openkilda/model/BfdPropertiesEndpoint.java create mode 100644 src-gui/src/main/java/org/openkilda/model/LinkBfdProperties.java create mode 100644 src-gui/src/main/java/org/openkilda/model/NetworkEndpoint.java diff --git a/src-gui/src/main/java/org/openkilda/constants/IConstants.java b/src-gui/src/main/java/org/openkilda/constants/IConstants.java index 2b69b69bb7d..c7c7fbfd908 100644 --- a/src-gui/src/main/java/org/openkilda/constants/IConstants.java +++ b/src-gui/src/main/java/org/openkilda/constants/IConstants.java @@ -174,6 +174,8 @@ private NorthBoundUrl() { public static final String GET_SWITCH_PORT_PROPERTY = VERSION_TWO + "/switches/{switch_id}" + "/ports/{port}/properties"; public static final String UPDATE_SWITCH_LOCATION = VERSION_TWO + "/switches/{switch_id}"; + public static final String GET_LINK_BFD_PROPERTIES = VERSION_TWO + + "/links/{src-switch}_{src-port}/{dst-switch}_{dst-port}/bfd"; } public final class OpenTsDbUrl { @@ -299,11 +301,15 @@ private Permission() { public static final String SW_SWITCH_METERS = "sw_switch_meters"; - public static final String SW_SWITCH_LOCATION_UPDATE = "sw_switch_location_update"; - public static final String SAML_SETTING = "saml_setting"; + public static final String SW_SWITCH_LOCATION_UPDATE = "sw_switch_location_update"; + public static final String TOPOLOGY_WORLD_MAP_VIEW = "topology_world_map_view"; + + public static final String ISL_UPDATE_BFD_PROPERTIES = "isl_update_bfd_properties"; + + public static final String ISL_DELETE_BFD = "isl_delete_bfd"; } public final class Settings { diff --git a/src-gui/src/main/java/org/openkilda/controller/SwitchController.java b/src-gui/src/main/java/org/openkilda/controller/SwitchController.java index 31c1b172d35..91eea66a31b 100644 --- a/src-gui/src/main/java/org/openkilda/controller/SwitchController.java +++ b/src-gui/src/main/java/org/openkilda/controller/SwitchController.java @@ -23,8 +23,10 @@ import org.openkilda.integration.model.response.ConfiguredPort; import org.openkilda.log.ActivityLogger; import org.openkilda.log.constants.ActivityType; +import org.openkilda.model.BfdProperties; import org.openkilda.model.FlowInfo; import org.openkilda.model.IslLinkInfo; +import org.openkilda.model.LinkBfdProperties; import org.openkilda.model.LinkMaxBandwidth; import org.openkilda.model.LinkParametersDto; import org.openkilda.model.LinkProps; @@ -410,4 +412,67 @@ public class SwitchController { activityLogger.log(ActivityType.UPDATE_SWITCH_LOCATION, switchId); return serviceSwitch.updateSwitchLocation(switchId, switchLocation); } + + /** + * Gets the link BFD properties. + * + * @param srcSwitch the src switch + * @param srcPort the src port + * @param dstSwitch the dst switch + * @param dstPort the dst port + * @return the link Bfd properties + */ + @RequestMapping(value = "/links/bfd", method = RequestMethod.GET) + @ResponseStatus(HttpStatus.OK) + public @ResponseBody LinkBfdProperties readBfdProperties(@RequestParam(value = "src_switch", + required = false) final String srcSwitch, @RequestParam(value = "src_port", + required = false) final String srcPort, @RequestParam(value = "dst_switch", + required = false) final String dstSwitch, @RequestParam(value = "dst_port", + required = false) final String dstPort) { + return serviceSwitch.getLinkBfdProperties(srcSwitch, srcPort, dstSwitch, dstPort); + } + + /** + * Updates the link BFD properties. + * + * @param srcSwitch the src switch + * @param srcPort the src port + * @param dstSwitch the dst switch + * @param dstPort the dst port + * @return the link Bfd properties + */ + @RequestMapping(value = "/links/bfd", method = RequestMethod.PUT) + @ResponseStatus(HttpStatus.OK) + @Permissions(values = IConstants.Permission.ISL_UPDATE_BFD_PROPERTIES) + public @ResponseBody LinkBfdProperties updateBfdProperties(@RequestParam(value = "src_switch", + required = true) final String srcSwitch, @RequestParam(value = "src_port", + required = true) final String srcPort, @RequestParam(value = "dst_switch", + required = true) final String dstSwitch, @RequestParam(value = "dst_port", + required = true) final String dstPort, @RequestBody(required = true) BfdProperties properties) { + activityLogger.log(ActivityType.UPDATE_ISL_BFD_PROPERTIES, "Src_SW_" + srcSwitch + "\nSrc_PORT_" + + srcPort + "\nDst_SW_" + dstSwitch + "\nDst_PORT_" + + dstPort + "\nProperties_" + properties); + return serviceSwitch.updateLinkBfdProperties(srcSwitch, srcPort, dstSwitch, dstPort, properties); + } + + /** + * Delete link BFD. + * + * @param srcSwitch the src switch + * @param srcPort the src port + * @param dstSwitch the dst switch + * @param dstPort the dst port + */ + @RequestMapping(value = "/links/bfd", method = RequestMethod.DELETE) + @ResponseStatus(HttpStatus.OK) + @Permissions(values = IConstants.Permission.ISL_DELETE_BFD) + public @ResponseBody String deleteLinkBfd(@RequestParam(value = "src_switch", + required = true) final String srcSwitch, @RequestParam(value = "src_port", + required = true) final String srcPort, @RequestParam(value = "dst_switch", + required = true) final String dstSwitch, @RequestParam(value = "dst_port", + required = true) final String dstPort) { + activityLogger.log(ActivityType.DELETE_ISL_BFD, "Src_SW_" + srcSwitch + "\nSrc_PORT_" + + srcPort + "\nDst_SW_" + dstSwitch + "\nDst_PORT_" + dstPort); + return serviceSwitch.deleteLinkBfd(srcSwitch, srcPort, dstSwitch, dstPort); + } } diff --git a/src-gui/src/main/java/org/openkilda/helper/RestClientManager.java b/src-gui/src/main/java/org/openkilda/helper/RestClientManager.java index bc456d79b27..039a6e7c40c 100644 --- a/src-gui/src/main/java/org/openkilda/helper/RestClientManager.java +++ b/src-gui/src/main/java/org/openkilda/helper/RestClientManager.java @@ -393,4 +393,30 @@ public static boolean isValidResponse(final HttpResponse response) { } } } + + /** + * Checks if is delete link bfd valid response. + * + * @param response the response + * @return true, if is valid response + */ + public static boolean isDeleteBfdValidResponse(final HttpResponse response) { + LOGGER.debug("[isValidResponse] Response Code " + response.getStatusLine().getStatusCode()); + boolean isValid = response.getStatusLine().getStatusCode() >= HttpStatus.OK.value() + && response.getStatusLine().getStatusCode() < HttpStatus.MULTIPLE_CHOICES.value(); + if (isValid) { + return true; + } else { + try { + String content = IoUtil.toString(response.getEntity().getContent()); + LOGGER.warn("Found invalid Response. Status Code: " + response.getStatusLine().getStatusCode() + + ", content: " + content); + throw new InvalidResponseException(response.getStatusLine().getStatusCode(), content); + } catch (IOException exception) { + LOGGER.warn("Error occurred while vaildating response", exception); + throw new InvalidResponseException(HttpError.INTERNAL_ERROR.getCode(), + HttpError.INTERNAL_ERROR.getMessage()); + } + } + } } diff --git a/src-gui/src/main/java/org/openkilda/integration/service/SwitchIntegrationService.java b/src-gui/src/main/java/org/openkilda/integration/service/SwitchIntegrationService.java index 6a699ed12c4..ac80521a45a 100644 --- a/src-gui/src/main/java/org/openkilda/integration/service/SwitchIntegrationService.java +++ b/src-gui/src/main/java/org/openkilda/integration/service/SwitchIntegrationService.java @@ -30,8 +30,10 @@ import org.openkilda.integration.model.PortConfiguration; import org.openkilda.integration.model.response.ConfiguredPort; import org.openkilda.integration.model.response.IslLink; +import org.openkilda.model.BfdProperties; import org.openkilda.model.FlowInfo; import org.openkilda.model.IslLinkInfo; +import org.openkilda.model.LinkBfdProperties; import org.openkilda.model.LinkMaxBandwidth; import org.openkilda.model.LinkParametersDto; import org.openkilda.model.LinkProps; @@ -777,4 +779,86 @@ public SwitchInfo updateSwitchLocation(String switchId, SwitchLocation switchLoc } return null; } + + /** + * Gets the link Bfd properties. + * + * @param srcSwitch the src switch + * @param srcPort the src port + * @param dstSwitch the dst switch + * @param dstPort the dst port + * @return the link Bfd properties + */ + public LinkBfdProperties getLinkBfdProperties(String srcSwitch, String srcPort, String dstSwitch, String dstPort) { + try { + HttpResponse response = restClientManager.invoke( + applicationProperties.getNbBaseUrl() + IConstants.NorthBoundUrl.GET_LINK_BFD_PROPERTIES + .replace("{src-switch}", srcSwitch).replace("{src-port}", srcPort) + .replace("{dst-switch}", dstSwitch).replace("{dst-port}", dstPort), HttpMethod.GET, + "", "application/json", + applicationService.getAuthHeader()); + if (RestClientManager.isValidResponse(response)) { + return restClientManager.getResponse(response, LinkBfdProperties.class); + } + } catch (InvalidResponseException e) { + LOGGER.error("Error occurred while reading link bfd properties", e); + throw new InvalidResponseException(e.getCode(), e.getResponse()); + } + return null; + } + + /** + * Updates the link Bfd properties. + * + * @return the LinkBfdProperties + */ + public LinkBfdProperties updateLinkBfdProperties(String srcSwitch, String srcPort, String dstSwitch, + String dstPort, BfdProperties properties) { + try { + HttpResponse response = restClientManager.invoke( + applicationProperties.getNbBaseUrl() + IConstants.NorthBoundUrl.GET_LINK_BFD_PROPERTIES + .replace("{src-switch}", srcSwitch).replace("{src-port}", srcPort) + .replace("{dst-switch}", dstSwitch).replace("{dst-port}", dstPort), HttpMethod.PUT, + objectMapper.writeValueAsString(properties), "application/json", + applicationService.getAuthHeader()); + if (RestClientManager.isValidResponse(response)) { + return restClientManager.getResponse(response, LinkBfdProperties.class); + } + } catch (InvalidResponseException e) { + LOGGER.error("Error occurred while updating link bfd properties", e); + throw new InvalidResponseException(e.getCode(), e.getResponse()); + } catch (JsonProcessingException e) { + e.printStackTrace(); + } + return null; + } + + /** + * Deletes link bfd. + * @param srcSwitch the src switch + * @param srcPort the src port + * @param dstSwitch the dst switch + * @param dstPort the dst port + * + * @return LinkBfdProperties + */ + public String deleteLinkBfd(String srcSwitch, String srcPort, String dstSwitch, String dstPort) { + try { + HttpResponse response = restClientManager.invoke( + applicationProperties.getNbBaseUrl() + IConstants.NorthBoundUrl.GET_LINK_BFD_PROPERTIES + .replace("{src-switch}", srcSwitch).replace("{src-port}", srcPort) + .replace("{dst-switch}", dstSwitch).replace("{dst-port}", dstPort), HttpMethod.DELETE, + "", "application/json", + applicationService.getAuthHeader()); + if (RestClientManager.isDeleteBfdValidResponse(response)) { + return restClientManager.getResponse(response, String.class); + } + } catch (InvalidResponseException e) { + LOGGER.error("Error occured while deleting link bfd", e); + throw new InvalidResponseException(e.getCode(), e.getResponse()); + } catch (UnsupportedOperationException e) { + e.printStackTrace(); + } + return null; + } } diff --git a/src-gui/src/main/java/org/openkilda/log/constants/ActivityType.java b/src-gui/src/main/java/org/openkilda/log/constants/ActivityType.java index 9d9dd512970..e6f9788dbca 100644 --- a/src-gui/src/main/java/org/openkilda/log/constants/ActivityType.java +++ b/src-gui/src/main/java/org/openkilda/log/constants/ActivityType.java @@ -61,7 +61,9 @@ public enum ActivityType { DELETE_SWITCH(40L), UPDATE_ISL_BFD_FLAG(41L), UPDATE_SW_PORT_PROPERTIES(42L), - UPDATE_SWITCH_LOCATION(43L); + UPDATE_SWITCH_LOCATION(43L), + UPDATE_ISL_BFD_PROPERTIES(44L), + DELETE_ISL_BFD(45L); private Long id; private ActivityTypeEntity activityTypeEntity; diff --git a/src-gui/src/main/java/org/openkilda/model/BfdProperties.java b/src-gui/src/main/java/org/openkilda/model/BfdProperties.java new file mode 100644 index 00000000000..ef842b87abd --- /dev/null +++ b/src-gui/src/main/java/org/openkilda/model/BfdProperties.java @@ -0,0 +1,36 @@ +/* Copyright 2019 Telstra Open Source + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.openkilda.model; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; + +import lombok.Data; + +@JsonSerialize +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +@Data +public class BfdProperties { + + @JsonProperty("interval_ms") + private Long intervalMs; + + @JsonProperty("multiplier") + private Short multiplier; +} diff --git a/src-gui/src/main/java/org/openkilda/model/BfdPropertiesEndpoint.java b/src-gui/src/main/java/org/openkilda/model/BfdPropertiesEndpoint.java new file mode 100644 index 00000000000..55726b7cd98 --- /dev/null +++ b/src-gui/src/main/java/org/openkilda/model/BfdPropertiesEndpoint.java @@ -0,0 +1,39 @@ +/* Copyright 2019 Telstra Open Source + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.openkilda.model; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; + +import lombok.Data; + +@JsonSerialize +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +@Data +public class BfdPropertiesEndpoint { + + @JsonProperty("endpoint") + private NetworkEndpoint endpoint; + + @JsonProperty("properties") + private BfdProperties properties; + + @JsonProperty("status") + private String status; +} diff --git a/src-gui/src/main/java/org/openkilda/model/LinkBfdProperties.java b/src-gui/src/main/java/org/openkilda/model/LinkBfdProperties.java new file mode 100644 index 00000000000..a2539223081 --- /dev/null +++ b/src-gui/src/main/java/org/openkilda/model/LinkBfdProperties.java @@ -0,0 +1,40 @@ +/* Copyright 2019 Telstra Open Source + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.openkilda.model; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; + +import lombok.Data; + +@JsonSerialize +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +@Data +public class LinkBfdProperties { + + @JsonProperty("properties") + private BfdProperties properties; + + @JsonProperty("effective_source") + private BfdPropertiesEndpoint effectiveSource; + + @JsonProperty("effective_destination") + private BfdPropertiesEndpoint effectiveDestination; + +} diff --git a/src-gui/src/main/java/org/openkilda/model/NetworkEndpoint.java b/src-gui/src/main/java/org/openkilda/model/NetworkEndpoint.java new file mode 100644 index 00000000000..1c202cd0d1f --- /dev/null +++ b/src-gui/src/main/java/org/openkilda/model/NetworkEndpoint.java @@ -0,0 +1,37 @@ +/* Copyright 2019 Telstra Open Source + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.openkilda.model; + +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; + +import lombok.Data; + +@JsonSerialize +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +@Data +public class NetworkEndpoint { + + @JsonProperty("switch-id") + private String switchId; + + @JsonProperty("port-id") + private int port; + +} diff --git a/src-gui/src/main/java/org/openkilda/service/SwitchService.java b/src-gui/src/main/java/org/openkilda/service/SwitchService.java index 902a6552ca6..cd2c07f4f0a 100644 --- a/src-gui/src/main/java/org/openkilda/service/SwitchService.java +++ b/src-gui/src/main/java/org/openkilda/service/SwitchService.java @@ -28,8 +28,10 @@ import org.openkilda.integration.service.SwitchIntegrationService; import org.openkilda.integration.source.store.SwitchStoreService; import org.openkilda.integration.source.store.dto.InventorySwitch; +import org.openkilda.model.BfdProperties; import org.openkilda.model.FlowInfo; import org.openkilda.model.IslLinkInfo; +import org.openkilda.model.LinkBfdProperties; import org.openkilda.model.LinkMaxBandwidth; import org.openkilda.model.LinkParametersDto; import org.openkilda.model.LinkProps; @@ -597,4 +599,17 @@ public SwitchInfo updateSwitchLocation(String switchId, SwitchLocation switchLoc return switchIntegrationService.updateSwitchLocation(switchId, switchLocation); } + public LinkBfdProperties getLinkBfdProperties(String srcSwitch, String srcPort, String dstSwitch, String dstPort) { + return switchIntegrationService.getLinkBfdProperties(srcSwitch, srcPort, dstSwitch, dstPort); + } + + public LinkBfdProperties updateLinkBfdProperties(String srcSwitch, String srcPort, String dstSwitch, + String dstPort, BfdProperties properties) { + return switchIntegrationService.updateLinkBfdProperties(srcSwitch, srcPort, dstSwitch, dstPort, properties); + } + + public String deleteLinkBfd(String srcSwitch, String srcPort, String dstSwitch, String dstPort) { + return switchIntegrationService.deleteLinkBfd(srcSwitch, srcPort, dstSwitch, dstPort); + } + } diff --git a/src-gui/ui/src/app/common/constants/constants.ts b/src-gui/ui/src/app/common/constants/constants.ts index 0208fa1c8ae..ad1594677e3 100644 --- a/src-gui/ui/src/app/common/constants/constants.ts +++ b/src-gui/ui/src/app/common/constants/constants.ts @@ -144,5 +144,12 @@ export const MessageObj = { provider_deleted_success:"Provider deleted successfully", switch_updated_success:"Switch location updated successfully.", switch_updated_error:"Error in updating switch location.", + delete_bfd_properties:"Deleting BFD properties.", + updating_bfd_properties:'Updating BFD properties values.', + updating_bfd_properties_success:'BFD Properties updated successfully.', + updating_bfd_properties_error:"Error in updating BFD properties.", + BFD_properties_deleted:"BFD properties deleted successfully.", + error_BFD_properties_delete:"Error in deleting BFD properties.", + delete_isl_bfd_not_authorised:"You are not authorised to delete the ISL BFD Properties." } \ No newline at end of file diff --git a/src-gui/ui/src/app/common/services/isl-detail.service.ts b/src-gui/ui/src/app/common/services/isl-detail.service.ts index 1f426c83a8a..2670611360e 100644 --- a/src-gui/ui/src/app/common/services/isl-detail.service.ts +++ b/src-gui/ui/src/app/common/services/isl-detail.service.ts @@ -20,6 +20,7 @@ export class IslDetailService { getISLFlowsList(query? : any) : Observable{ return this.httpClient.get(`${environment.apiEndPoint}/switch/links/flows`,{params:query}); } + getIslLatencyfromGraph(src_switch,src_port,dst_switch,dst_port,from,to,frequency){ return this.httpClient.get( `${ diff --git a/src-gui/ui/src/app/common/services/isl-list.service.ts b/src-gui/ui/src/app/common/services/isl-list.service.ts index 2c99c1582b2..22cd1f4bb43 100644 --- a/src-gui/ui/src/app/common/services/isl-list.service.ts +++ b/src-gui/ui/src/app/common/services/isl-list.service.ts @@ -80,4 +80,34 @@ export class IslListService { const url = `${environment.apiEndPoint}/switch/link/props`; return this.httpClient.put(url,requestPayload); } + + getLinkBFDProperties(src_switch, src_port, dst_switch, dst_port){ + let date = new Date().getTime(); + return this.httpClient.get(`${environment.apiEndPoint}/switch/links/bfd?src_switch=${src_switch}&src_port=${src_port}&dst_switch=${dst_switch}&dst_port=${dst_port}&_=${date}`); + + } + updateLinkBFDProperties(data,src_switch, src_port, dst_switch, dst_port){ + const url = `${environment.apiEndPoint}/switch/links/bfd?src_switch=${src_switch}&src_port=${src_port}&dst_switch=${dst_switch}&dst_port=${dst_port}`; + return this.httpClient.put(url,data); + } + deleteLinkBFDProperties(data,successRes,errorRes){ + const url = `${environment.apiEndPoint}/switch/links/bfd?src_switch=${data.src_switch}&src_port=${data.src_port}&dst_switch=${data.dst_switch}&dst_port=${data.dst_port}`; + let token = this.cookieManager.get('XSRF-TOKEN') as string; + var xhr = new XMLHttpRequest(); + xhr.withCredentials = false; + xhr.addEventListener("readystatechange", function () { + if (this.readyState == 4 && this.status == 200) { + successRes(JSON.parse(this.responseText)); + }else if(this.readyState == 4 && this.status >= 300){ + errorRes(JSON.parse(this.responseText)); + } + }); + + xhr.open("DELETE", url); + xhr.setRequestHeader("Content-Type", "application/json"); + if (token !== null) { + xhr.setRequestHeader( "X-XSRF-TOKEN" , token); + } + xhr.send(); + } } diff --git a/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html b/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html index 73fbc8514c6..c8e3a46697d 100644 --- a/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html +++ b/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html @@ -33,6 +33,18 @@ {{src_switch_name }} +
+ +
+ {{bfdPropertyData.effective_source.properties['interval_ms']}} +
+
+
+ +
+ {{bfdPropertyData.effective_source.properties['multiplier']}} +
+
@@ -72,6 +84,18 @@ + +
+ +
+
+ +
+
+ + +
+
+ + +
+
+
+ Update + Cancel +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ {{bfdPropertyData.properties['interval_ms']}} +
+
+
+ +
+ {{bfdPropertyData.properties['multiplier']}} +
+
+
+
+
-
- -
-
- -
-
- - -
-
- - -
-
-
- Update - Cancel -
- -
-
+
+
+ +
+
+ +
+
+ + +
+
+ + +
+
+
+ Update + Cancel +
+ +
+
-
+
+
+ + +
+
LOGIN ATTEMPT SETTINGS
+
+
+
+
+
+ + + +
+   +   +   +
+
+
+
+
+
+
+ + +
+
USER ACCOUNT UNLOCK SETTINGS
+
+
+
+
+
+ + + +
+   +   +   +
+
+
+
+
+
+
\ No newline at end of file diff --git a/src-gui/ui/src/app/modules/settings/session/session.component.ts b/src-gui/ui/src/app/modules/settings/session/session.component.ts index d846feb7cfd..eca0477fbf7 100644 --- a/src-gui/ui/src/app/modules/settings/session/session.component.ts +++ b/src-gui/ui/src/app/modules/settings/session/session.component.ts @@ -16,11 +16,17 @@ import { MessageObj } from 'src/app/common/constants/constants'; export class SessionComponent implements OnInit, AfterViewInit, OnChanges,DoCheck { sessionForm: FormGroup; switchNameSourceForm:FormGroup; + userUnlockForm:FormGroup; + loginAttemptForm:FormGroup; switchNameSourceTypes:any; isEdit = false; isSwitchNameSourcEdit = false; + isloginAttemptEdit = false; + isUserUnlockEdit = false; initialVal = null; initialNameSource = null; + intialLoginAttemptValue = null; + initialUserUnlockValue = null; constructor( private formBuilder: FormBuilder, private commonService: CommonService, @@ -47,6 +53,15 @@ export class SessionComponent implements OnInit, AfterViewInit, OnChanges,DoChec switch_name_source: ["FILE_STORAGE"] }); this.switchNameSourceForm.disable(); + + this.loginAttemptForm = this.formBuilder.group({ + login_attempt: [""] + }); + this.loginAttemptForm.disable(); + this.userUnlockForm = this.formBuilder.group({ + user_unlock_time: [""] + }); + this.userUnlockForm.disable(); } @@ -59,6 +74,10 @@ export class SessionComponent implements OnInit, AfterViewInit, OnChanges,DoChec this.switchNameSourceTypes = responseList[1]; this.switchNameSourceForm.setValue({"switch_name_source":settings['SWITCH_NAME_STORAGE_TYPE'] || 'FILE_STORAGE'}); this.initialNameSource = settings['SWITCH_NAME_STORAGE_TYPE'] || 'FILE_STORAGE'; + this.intialLoginAttemptValue = settings['INVALID_LOGIN_ATTEMPT'] || 5; + this.loginAttemptForm.setValue({"login_attempt":settings['INVALID_LOGIN_ATTEMPT']}); + this.initialUserUnlockValue = settings['USER_ACCOUNT_UNLOCK_TIME'] || 60; + this.userUnlockForm.setValue({"user_unlock_time":settings['USER_ACCOUNT_UNLOCK_TIME']}); this.loaderService.hide(); },error=>{ var errorMsg = error && error.error && error.error['error-auxiliary-message'] ? error.error['error-auxiliary-message']:'Api response error'; @@ -165,4 +184,78 @@ export class SessionComponent implements OnInit, AfterViewInit, OnChanges,DoChec this.switchNameSourceForm.disable(); } + saveUserUnlockTimeSetting(){ + let unlock_time = this.userUnlockForm.controls['user_unlock_time'].value; + if(unlock_time == ''){ + return false; + } + const modalReff = this.modalService.open(ModalconfirmationComponent); + modalReff.componentInstance.title = "Confirmation"; + modalReff.componentInstance.content = 'Are you sure you want to save user unlock time settings ?'; + modalReff.result.then((response) => { + if(response && response == true){ + this.loaderService.show(MessageObj.saving_unlock_time_setting); + this.commonService.saveUserAccountUnlockTimeSettings(unlock_time).subscribe((response)=>{ + this.toastrService.success(MessageObj.user_unlock_time_setting_saved,'Success'); + this.loaderService.hide(); + this.initialUserUnlockValue = this.userUnlockForm.controls['user_unlock_time'].value; + this.isUserUnlockEdit = false; + this.userUnlockForm.disable(); + },error=>{ + var errorMsg = error && error.error && error.error['error-auxiliary-message'] ? error.error['error-auxiliary-message']:'Unable to save'; + this.toastrService.error(errorMsg,'Error'); + this.loaderService.hide(); + }); + } + }); + } + + editUserUnlockTimeSetting(){ + this.isUserUnlockEdit = true; + this.userUnlockForm.enable(); + } + + cancelUserUnlockTimeSetting(){ + this.userUnlockForm.setValue({"user_unlock_time":this.initialUserUnlockValue}); + this.isUserUnlockEdit = false; + this.userUnlockForm.disable(); + } + + + saveLoginAttemptSetting(){ + let login_attempt = this.loginAttemptForm.controls['login_attempt'].value; + if(login_attempt == ''){ + return false; + } + const modalReff = this.modalService.open(ModalconfirmationComponent); + modalReff.componentInstance.title = "Confirmation"; + modalReff.componentInstance.content = 'Are you sure you want to save user login attempt settings ?'; + modalReff.result.then((response) => { + if(response && response == true){ + this.loaderService.show(MessageObj.saving_login_attempt_setting); + this.commonService.saveInvalidLoginAttemptSettings(login_attempt).subscribe((response)=>{ + this.toastrService.success(MessageObj.user_login_attempt_setting_saved,'Success'); + this.loaderService.hide(); + this.intialLoginAttemptValue = this.loginAttemptForm.controls['login_attempt'].value; + this.isloginAttemptEdit = false; + this.loginAttemptForm.disable(); + },error=>{ + var errorMsg = error && error.error && error.error['error-auxiliary-message'] ? error.error['error-auxiliary-message']:'Unable to save'; + this.toastrService.error(errorMsg,'Error'); + this.loaderService.hide(); + }); + } + }); + } + + editLoginAttemptSetting(){ + this.isloginAttemptEdit = true; + this.loginAttemptForm.enable(); + } + + cancelLoginAttemptSetting(){ + this.loginAttemptForm.setValue({"login_attempt":this.intialLoginAttemptValue}); + this.isloginAttemptEdit = false; + this.loginAttemptForm.disable(); + } } From c480f648a032ffcc2362cf7b0b0a0184ea2f79fc Mon Sep 17 00:00:00 2001 From: Neeraj Date: Wed, 24 Mar 2021 18:54:11 +0530 Subject: [PATCH 18/46] - adding feature to unblock user --- .../ui/src/app/common/constants/constants.ts | 2 ++ .../src/app/common/services/user.service.ts | 5 +++++ .../users/user-list/user-list.component.html | 1 + .../users/user-list/user-list.component.ts | 21 +++++++++++++++++++ 4 files changed, 29 insertions(+) diff --git a/src-gui/ui/src/app/common/constants/constants.ts b/src-gui/ui/src/app/common/constants/constants.ts index c3e12d59467..9052db6e862 100644 --- a/src-gui/ui/src/app/common/constants/constants.ts +++ b/src-gui/ui/src/app/common/constants/constants.ts @@ -128,6 +128,8 @@ export const MessageObj = { user_deleted:"User removed successfully!", updating_user_status:"Updating user status", user_status_updated:"User status changed successfully!", + unblok_user:"Unblocking user", + user_unblocked:"User account is unblokced successfully", resetting_password:"Resetting Password", reset_pwd_mail_sent:"Reset password email sent successfully!", resetting_pwd_by_admin:"Resetting password by admin", diff --git a/src-gui/ui/src/app/common/services/user.service.ts b/src-gui/ui/src/app/common/services/user.service.ts index 08eb9617a5e..69734e663af 100644 --- a/src-gui/ui/src/app/common/services/user.service.ts +++ b/src-gui/ui/src/app/common/services/user.service.ts @@ -99,4 +99,9 @@ const httpOptions = { return this.http.patch(`${this.configUrl}/user/settings`,payload); } + unblockUser(Id){ + const url = `${this.configUrl}/user/unlock/account/${Id}`; + return this.http.put(url,{}); + } + } \ No newline at end of file diff --git a/src-gui/ui/src/app/modules/usermanagement/users/user-list/user-list.component.html b/src-gui/ui/src/app/modules/usermanagement/users/user-list/user-list.component.html index 1e03ecef1a5..e693e172032 100644 --- a/src-gui/ui/src/app/modules/usermanagement/users/user-list/user-list.component.html +++ b/src-gui/ui/src/app/modules/usermanagement/users/user-list/user-list.component.html @@ -35,6 +35,7 @@ + diff --git a/src-gui/ui/src/app/modules/usermanagement/users/user-list/user-list.component.ts b/src-gui/ui/src/app/modules/usermanagement/users/user-list/user-list.component.ts index 17af78ef9a3..784dc0b4511 100644 --- a/src-gui/ui/src/app/modules/usermanagement/users/user-list/user-list.component.ts +++ b/src-gui/ui/src/app/modules/usermanagement/users/user-list/user-list.component.ts @@ -210,6 +210,27 @@ export class UserListComponent implements OnDestroy, OnInit, AfterViewInit{ }); } + /* + Method: unblockUser + Description: Unblock a user if blocked by failed login attempts + */ + unblockUser(id){ + const modalRef = this.modalService.open(ModalconfirmationComponent); + modalRef.componentInstance.title = "Confirmation"; + modalRef.componentInstance.content = 'Are you sure you want to unblock this user ?'; + + modalRef.result.then((response) => { + if(response && response == true){ + this.loaderService.show(MessageObj.unblok_user); + this.userService.unblockUser(id).subscribe(user => { + this.toastr.success(MessageObj.user_unblocked,'Success') + this.getUsers(); + + }); + } + }); + } + /* Method: resetpassword Description: Reset the user password and send an email with updated imformation. From cfddd8f77efb4d08303c5481cbd12dbe92b8120e Mon Sep 17 00:00:00 2001 From: Neeraj Date: Thu, 25 Mar 2021 10:53:19 +0530 Subject: [PATCH 19/46] -adding permission to unblock user --- .../usermanagement/users/user-list/user-list.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-gui/ui/src/app/modules/usermanagement/users/user-list/user-list.component.html b/src-gui/ui/src/app/modules/usermanagement/users/user-list/user-list.component.html index e693e172032..7614a06db89 100644 --- a/src-gui/ui/src/app/modules/usermanagement/users/user-list/user-list.component.html +++ b/src-gui/ui/src/app/modules/usermanagement/users/user-list/user-list.component.html @@ -35,7 +35,7 @@ - + From f4a3b2ee6987871e79d806154c45736b9182b681 Mon Sep 17 00:00:00 2001 From: Neeraj Date: Thu, 8 Apr 2021 16:04:39 +0530 Subject: [PATCH 20/46] - implemented some design changes in setting screen --- .../settings/session/session.component.html | 98 ++++++++++--------- 1 file changed, 52 insertions(+), 46 deletions(-) diff --git a/src-gui/ui/src/app/modules/settings/session/session.component.html b/src-gui/ui/src/app/modules/settings/session/session.component.html index 76522857d86..a6bda8cdc2c 100644 --- a/src-gui/ui/src/app/modules/settings/session/session.component.html +++ b/src-gui/ui/src/app/modules/settings/session/session.component.html @@ -1,7 +1,30 @@
-
-
SESSION SETTINGS
+ +
+
SWITCH NAME SETTINGS
+
+
+
+
+
+ + +
+   +   +   +
+
+
+
+
+
+
+
+
USER SETTINGS
@@ -18,39 +41,8 @@
SESSION SETTINGS
-
-
-
- -
-
SWITCH NAME SETTINGS
-
-
-
-
-
- - -
-   -   -   -
-
-
-
-
-
-
- - -
-
LOGIN ATTEMPT SETTINGS
-
-
-
+ +
@@ -64,19 +56,11 @@
LOGIN ATTEMPT SETTINGS
-
-
-
- - -
-
USER ACCOUNT UNLOCK SETTINGS
-
-
-
+ +
- +
@@ -87,8 +71,30 @@
USER ACCOUNT UNLOCK SETTINGS
+ +
+
+
+ + + +
\ No newline at end of file From 578a5f0afaea68af194de2cb6fcd87b8f803ffa9 Mon Sep 17 00:00:00 2001 From: Neeraj Date: Mon, 12 Apr 2021 13:08:50 +0530 Subject: [PATCH 21/46] -adding functionality to email notification to user if account blocked --- .../CustomAuthenticationProvider.java | 24 + .../org/usermanagement/util/MailUtils.java | 17 +- src-gui/src/main/resources/mail.properties | 1 + .../webapp/ui/templates/mail/accountBlock.vm | 444 ++++++++++++++++++ 4 files changed, 485 insertions(+), 1 deletion(-) create mode 100644 src-gui/src/main/webapp/ui/templates/mail/accountBlock.vm diff --git a/src-gui/src/main/java/org/openkilda/security/CustomAuthenticationProvider.java b/src-gui/src/main/java/org/openkilda/security/CustomAuthenticationProvider.java index f12ccc0583d..cdadca16401 100644 --- a/src-gui/src/main/java/org/openkilda/security/CustomAuthenticationProvider.java +++ b/src-gui/src/main/java/org/openkilda/security/CustomAuthenticationProvider.java @@ -22,6 +22,8 @@ import org.openkilda.exception.TwoFaKeyNotSetException; import org.openkilda.service.ApplicationSettingService; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.authentication.BadCredentialsException; import org.springframework.security.authentication.LockedException; @@ -30,18 +32,31 @@ import org.springframework.security.core.Authentication; import org.usermanagement.dao.entity.UserEntity; import org.usermanagement.dao.repository.UserRepository; +import org.usermanagement.service.MailService; +import org.usermanagement.service.TemplateService; +import org.usermanagement.util.MailUtils; import java.sql.Timestamp; import java.util.Calendar; import java.util.Date; +import java.util.HashMap; +import java.util.Map; public class CustomAuthenticationProvider extends DaoAuthenticationProvider { + private static final Logger LOGGER = LoggerFactory.getLogger(CustomAuthenticationProvider.class); + + @Autowired + private MailUtils mailUtils; + @Autowired private UserRepository userRepository; @Autowired private ApplicationSettingService applicationSettingService; + + @Autowired + private MailService mailService; /* * (non-Javadoc) @@ -126,6 +141,15 @@ private void updateInvalidLoginAttempts(UserEntity entity, String value, String entity.setFailedLoginTime(new Timestamp(System.currentTimeMillis())); entity.setStatusEntity(Status.getStatusByCode(Status.LOCK.getCode()).getStatusEntity()); userRepository.save(entity); +// try { + Map map = new HashMap(); + map.put("name", entity.getName()); + map.put("time", accUnlockTime); + mailService.send(entity.getEmail(), mailUtils.getSubjectAccountBlock(), + TemplateService.Template.ACCOUNT_BLOCK, map); +// } catch (Exception e) { +// LOGGER.warn("User account block email failed for username:'" + entity.getUsername()); +// } throw new LockedException("User account is locked for " + Integer.valueOf(accUnlockTime) + " minute(s)"); } diff --git a/src-gui/src/main/java/org/usermanagement/util/MailUtils.java b/src-gui/src/main/java/org/usermanagement/util/MailUtils.java index 9c0ae0fbe9e..fbcfa579264 100644 --- a/src-gui/src/main/java/org/usermanagement/util/MailUtils.java +++ b/src-gui/src/main/java/org/usermanagement/util/MailUtils.java @@ -39,8 +39,23 @@ public class MailUtils { @Value("${subject.change.password}") private String subjectChangePassword; + @Value("${subject.account.block}") + private String subjectAccountBlock; - public String getSubjectAccountUsername() { + + public String getSubjectAccountBlock() { + return subjectAccountBlock; + } + + + + public void setSubjectAccountBlock(String subjectAccountBlock) { + this.subjectAccountBlock = subjectAccountBlock; + } + + + + public String getSubjectAccountUsername() { return subjectAccountUsername; } diff --git a/src-gui/src/main/resources/mail.properties b/src-gui/src/main/resources/mail.properties index 01786f574c1..c6e34188942 100644 --- a/src-gui/src/main/resources/mail.properties +++ b/src-gui/src/main/resources/mail.properties @@ -3,3 +3,4 @@ subject.account.password=Account password subject.reset.password=Reset Password subject.reset.twofa=Reset 2FA subject.change.password=Change Password +subject.account.block=Account Blocked diff --git a/src-gui/src/main/webapp/ui/templates/mail/accountBlock.vm b/src-gui/src/main/webapp/ui/templates/mail/accountBlock.vm new file mode 100644 index 00000000000..6a2987a8286 --- /dev/null +++ b/src-gui/src/main/webapp/ui/templates/mail/accountBlock.vm @@ -0,0 +1,444 @@ + + + + + Set up a new password for [Product Name] + + + + + + + + + + + + + + \ No newline at end of file From dba973c720cd1dc3bec98d0e711052c6f51d3f62 Mon Sep 17 00:00:00 2001 From: Neeraj Date: Mon, 12 Apr 2021 13:43:07 +0530 Subject: [PATCH 22/46] adding missing code --- .../main/java/org/usermanagement/service/TemplateService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-gui/src/main/java/org/usermanagement/service/TemplateService.java b/src-gui/src/main/java/org/usermanagement/service/TemplateService.java index de6615f5f76..31526d86134 100644 --- a/src-gui/src/main/java/org/usermanagement/service/TemplateService.java +++ b/src-gui/src/main/java/org/usermanagement/service/TemplateService.java @@ -35,6 +35,6 @@ public interface TemplateService { * Enum of templates. */ enum Template { - RESET_ACCOUNT_PASSWORD, ACCOUNT_USERNAME, ACCOUNT_PASSWORD, RESET_2FA, CHANGE_PASSWORD; + RESET_ACCOUNT_PASSWORD, ACCOUNT_USERNAME, ACCOUNT_PASSWORD, RESET_2FA, CHANGE_PASSWORD, ACCOUNT_BLOCK; } } From 4ec45809782a98d89d6776b89ff045f18534888b Mon Sep 17 00:00:00 2001 From: Neeraj Date: Mon, 12 Apr 2021 14:16:06 +0530 Subject: [PATCH 23/46] fixed checkstyle issues --- .../security/CustomAuthenticationProvider.java | 18 +++++++++--------- .../org/usermanagement/util/MailUtils.java | 14 +++++++------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src-gui/src/main/java/org/openkilda/security/CustomAuthenticationProvider.java b/src-gui/src/main/java/org/openkilda/security/CustomAuthenticationProvider.java index cdadca16401..6e8daac73f5 100644 --- a/src-gui/src/main/java/org/openkilda/security/CustomAuthenticationProvider.java +++ b/src-gui/src/main/java/org/openkilda/security/CustomAuthenticationProvider.java @@ -141,15 +141,15 @@ private void updateInvalidLoginAttempts(UserEntity entity, String value, String entity.setFailedLoginTime(new Timestamp(System.currentTimeMillis())); entity.setStatusEntity(Status.getStatusByCode(Status.LOCK.getCode()).getStatusEntity()); userRepository.save(entity); -// try { - Map map = new HashMap(); - map.put("name", entity.getName()); - map.put("time", accUnlockTime); - mailService.send(entity.getEmail(), mailUtils.getSubjectAccountBlock(), - TemplateService.Template.ACCOUNT_BLOCK, map); -// } catch (Exception e) { -// LOGGER.warn("User account block email failed for username:'" + entity.getUsername()); -// } + try { + Map map = new HashMap(); + map.put("name", entity.getName()); + map.put("time", accUnlockTime); + mailService.send(entity.getEmail(), mailUtils.getSubjectAccountBlock(), + TemplateService.Template.ACCOUNT_BLOCK, map); + } catch (Exception e) { + LOGGER.warn("User account block email failed for username:'" + entity.getUsername()); + } throw new LockedException("User account is locked for " + Integer.valueOf(accUnlockTime) + " minute(s)"); } diff --git a/src-gui/src/main/java/org/usermanagement/util/MailUtils.java b/src-gui/src/main/java/org/usermanagement/util/MailUtils.java index fbcfa579264..976a0f47f70 100644 --- a/src-gui/src/main/java/org/usermanagement/util/MailUtils.java +++ b/src-gui/src/main/java/org/usermanagement/util/MailUtils.java @@ -44,18 +44,18 @@ public class MailUtils { public String getSubjectAccountBlock() { - return subjectAccountBlock; - } - + return subjectAccountBlock; + } + - public void setSubjectAccountBlock(String subjectAccountBlock) { - this.subjectAccountBlock = subjectAccountBlock; - } + public void setSubjectAccountBlock(String subjectAccountBlock) { + this.subjectAccountBlock = subjectAccountBlock; + } - public String getSubjectAccountUsername() { + public String getSubjectAccountUsername() { return subjectAccountUsername; } From 61d9cc06230c5951b3c757c3b0836101e7882f01 Mon Sep 17 00:00:00 2001 From: Neeraj Date: Tue, 13 Apr 2021 14:06:50 +0530 Subject: [PATCH 24/46] -adding missing code for email --- .../java/org/openkilda/controller/LoginController.java | 10 +++++++--- .../service/impl/VelocityTemplateService.java | 1 + 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/src-gui/src/main/java/org/openkilda/controller/LoginController.java b/src-gui/src/main/java/org/openkilda/controller/LoginController.java index 0ae4ea176cd..e63bd553609 100644 --- a/src-gui/src/main/java/org/openkilda/controller/LoginController.java +++ b/src-gui/src/main/java/org/openkilda/controller/LoginController.java @@ -1,4 +1,4 @@ -/* Copyright 2018 Telstra Open Source +/* Copyright 2019 Telstra Open Source * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -28,6 +28,7 @@ import org.springframework.beans.factory.annotation.Value; import org.springframework.security.authentication.AuthenticationManager; import org.springframework.security.authentication.BadCredentialsException; +import org.springframework.security.authentication.LockedException; import org.springframework.security.authentication.UsernamePasswordAuthenticationToken; import org.springframework.security.core.Authentication; import org.springframework.security.core.context.SecurityContextHolder; @@ -120,7 +121,7 @@ public ModelAndView authenticate(@RequestParam("username") String username, SecurityContextHolder.getContext().setAuthentication(authenticate); userService.updateLoginDetail(username); } else { - error = "Invalid email or password"; + error = "Login failed; Invalid email or password."; LOGGER.warn("Authentication failure for user: '" + username + "'"); modelAndView.setViewName(IConstants.View.REDIRECT_LOGIN); } @@ -155,7 +156,10 @@ public ModelAndView authenticate(@RequestParam("username") String username, } } catch (BadCredentialsException e) { LOGGER.warn("Authentication failure", e); - error = "Invalid email or password"; + error = "Login failed; Invalid email or password."; + modelAndView.setViewName(IConstants.View.REDIRECT_LOGIN); + } catch (LockedException e) { + error = e.getMessage(); modelAndView.setViewName(IConstants.View.REDIRECT_LOGIN); } catch (Exception e) { LOGGER.warn("Authentication failure", e); diff --git a/src-gui/src/main/java/org/usermanagement/service/impl/VelocityTemplateService.java b/src-gui/src/main/java/org/usermanagement/service/impl/VelocityTemplateService.java index f75c3fd7665..d0a040d53fd 100644 --- a/src-gui/src/main/java/org/usermanagement/service/impl/VelocityTemplateService.java +++ b/src-gui/src/main/java/org/usermanagement/service/impl/VelocityTemplateService.java @@ -51,6 +51,7 @@ private void init() { templates.put(Template.ACCOUNT_PASSWORD, "ui/templates/mail/accountPassword.vm"); templates.put(Template.RESET_2FA, "ui/templates/mail/reset2fa.vm"); templates.put(Template.CHANGE_PASSWORD, "ui/templates/mail/changePassword.vm"); + templates.put(Template.ACCOUNT_BLOCK, "ui/templates/mail/accountBlock.vm"); } From 193b6c5d8c49a9cb28743f1f432e9ba4c58f1f5d Mon Sep 17 00:00:00 2001 From: Neeraj Date: Tue, 13 Apr 2021 17:35:25 +0530 Subject: [PATCH 25/46] removed commented code --- .../settings/session/session.component.html | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/src-gui/ui/src/app/modules/settings/session/session.component.html b/src-gui/ui/src/app/modules/settings/session/session.component.html index a6bda8cdc2c..f8ee1b853a2 100644 --- a/src-gui/ui/src/app/modules/settings/session/session.component.html +++ b/src-gui/ui/src/app/modules/settings/session/session.component.html @@ -75,26 +75,6 @@
USER SETTINGS
- - - \ No newline at end of file From aed481f2e0d7b7f6799ac6776818eebc76bce38d Mon Sep 17 00:00:00 2001 From: Neeraj Kumar Date: Mon, 6 Dec 2021 14:32:28 +0530 Subject: [PATCH 26/46] check style fixes --- src-gui/src/main/java/org/openkilda/constants/IConstants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-gui/src/main/java/org/openkilda/constants/IConstants.java b/src-gui/src/main/java/org/openkilda/constants/IConstants.java index c7c7fbfd908..1446860b912 100644 --- a/src-gui/src/main/java/org/openkilda/constants/IConstants.java +++ b/src-gui/src/main/java/org/openkilda/constants/IConstants.java @@ -306,7 +306,7 @@ private Permission() { public static final String SW_SWITCH_LOCATION_UPDATE = "sw_switch_location_update"; public static final String TOPOLOGY_WORLD_MAP_VIEW = "topology_world_map_view"; - + public static final String ISL_UPDATE_BFD_PROPERTIES = "isl_update_bfd_properties"; public static final String ISL_DELETE_BFD = "isl_delete_bfd"; From 7f7ac8a0520bf38502902fe3499e9d2d603eb8c6 Mon Sep 17 00:00:00 2001 From: Swati Sharma Date: Wed, 8 Dec 2021 15:54:17 +0530 Subject: [PATCH 27/46] resolved checkstyle errors --- src-gui/src/main/java/org/openkilda/constants/IConstants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-gui/src/main/java/org/openkilda/constants/IConstants.java b/src-gui/src/main/java/org/openkilda/constants/IConstants.java index 1446860b912..2eeb2d1f1cd 100644 --- a/src-gui/src/main/java/org/openkilda/constants/IConstants.java +++ b/src-gui/src/main/java/org/openkilda/constants/IConstants.java @@ -306,7 +306,7 @@ private Permission() { public static final String SW_SWITCH_LOCATION_UPDATE = "sw_switch_location_update"; public static final String TOPOLOGY_WORLD_MAP_VIEW = "topology_world_map_view"; - + public static final String ISL_UPDATE_BFD_PROPERTIES = "isl_update_bfd_properties"; public static final String ISL_DELETE_BFD = "isl_delete_bfd"; From 5299f03f90434ef017ffcc4b1be962a69c6e692a Mon Sep 17 00:00:00 2001 From: Neeraj Kumar Date: Thu, 23 Dec 2021 10:56:03 +0530 Subject: [PATCH 28/46] fixed issue in updating the bfd properties --- .../app/modules/isl/isl-detail/isl-detail.component.html | 4 ++-- .../app/modules/isl/isl-detail/isl-detail.component.ts | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html b/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html index 9a0dfae065d..bcf385fa0cc 100644 --- a/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html +++ b/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html @@ -233,11 +233,11 @@
- +
- +
diff --git a/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.ts b/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.ts index 47ed2ebff30..93b4c104fbd 100644 --- a/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.ts +++ b/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.ts @@ -93,6 +93,7 @@ import { FlowsService } from 'src/app/common/services/flows.service'; targetSwitch:"" } + @Output() hideToValue: EventEmitter = new EventEmitter(); newMessageDetail(){ @@ -218,10 +219,10 @@ import { FlowsService } from 'src/app/common/services/flows.service'; this.islListService.getLinkBFDProperties(this.src_switch, this.src_port, this.dst_switch, this.dst_port).subscribe((data : any) =>{ if(data!= null){ - this.bfdPropertyData = data; + this.bfdPropertyData = data; this.bfdPropForm = this.formBuiler.group({ - interval_ms: [this.bfdPropertyData.interval_ms, Validators.min(0)], - multiplier:[this.bfdPropertyData.multiplier,Validators.min(0)] + interval_ms: [this.bfdPropertyData.properties['interval_ms'], Validators.min(0)], + multiplier: [this.bfdPropertyData.properties['multiplier'],Validators.min(0)] }); } else{ @@ -1006,6 +1007,7 @@ get f() { let multiplier = this.bfdPropForm.value.multiplier; var data = {interval_ms:interval_ms,multiplier:multiplier}; this.islListService.updateLinkBFDProperties(data,this.src_switch, this.src_port, this.dst_switch, this.dst_port).subscribe((response: any) => { + this.bfdPropertyData = response; this.loaderService.hide(); this.toastr.success(MessageObj.updating_bfd_properties_success,'Success'); this.isBFDEdit = false; From f8417b1c91a609aac008567d49d1731c2494ce06 Mon Sep 17 00:00:00 2001 From: Swati Sharma Date: Fri, 24 Dec 2021 16:29:57 +0530 Subject: [PATCH 29/46] updates sql script for isl bfd properties --- src-gui/src/main/resources/db/import-script_31.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src-gui/src/main/resources/db/import-script_31.sql b/src-gui/src/main/resources/db/import-script_31.sql index 63d8754fd1a..181e4cd85c5 100644 --- a/src-gui/src/main/resources/db/import-script_31.sql +++ b/src-gui/src/main/resources/db/import-script_31.sql @@ -1,14 +1,14 @@ -INSERT INTO "VERSION" (Version_ID, Version_Number, Version_Deployment_Date) +INSERT INTO VERSION_ENTITY (Version_ID, Version_Number, Version_Deployment_Date) VALUES (31, 31, CURRENT_TIMESTAMP); -INSERT INTO "ACTIVITY_TYPE" (activity_type_id, activity_name) VALUES +INSERT INTO ACTIVITY_TYPE (activity_type_id, activity_name) VALUES (44, 'UPDATE_ISL_BFD_PROPERTIES'), (45, 'DELETE_ISL_BFD'); -INSERT INTO "KILDA_PERMISSION" (PERMISSION_ID, PERMISSION, IS_EDITABLE, IS_ADMIN_PERMISSION, STATUS_ID, CREATED_BY, CREATED_DATE, UPDATED_BY, UPDATED_DATE,DESCRIPTION) VALUES +INSERT INTO KILDA_PERMISSION (PERMISSION_ID, PERMISSION, IS_EDITABLE, IS_ADMIN_PERMISSION, STATUS_ID, CREATED_BY, CREATED_DATE, UPDATED_BY, UPDATED_DATE,DESCRIPTION) VALUES (360, 'isl_update_bfd_properties', false, false, 1, 1, CURRENT_TIMESTAMP, 1, CURRENT_TIMESTAMP, 'Permission to update isl bfd properties'), (361, 'isl_delete_bfd', false, false, 1, 1, CURRENT_TIMESTAMP, 1, CURRENT_TIMESTAMP, 'Permission to delete isl bfd'); -INSERT INTO "ROLE_PERMISSION" (ROLE_ID,PERMISSION_ID) VALUES +INSERT INTO ROLE_PERMISSION (ROLE_ID,PERMISSION_ID) VALUES (2, 360), (2, 361); \ No newline at end of file From d28eb39fe398d250d1547bd69ce6929c3dcf914b Mon Sep 17 00:00:00 2001 From: Swati Sharma Date: Mon, 27 Dec 2021 17:13:06 +0530 Subject: [PATCH 30/46] updates brute force defence error message and resets login attempts count on successful login --- .../org/openkilda/controller/LoginController.java | 2 +- .../security/CustomAuthenticationProvider.java | 12 +++++++++--- .../org/usermanagement/service/UserService.java | 2 ++ src-gui/src/main/resources/db/import-script_32.sql | 14 +++++++------- 4 files changed, 19 insertions(+), 11 deletions(-) diff --git a/src-gui/src/main/java/org/openkilda/controller/LoginController.java b/src-gui/src/main/java/org/openkilda/controller/LoginController.java index e63bd553609..b6afe583413 100644 --- a/src-gui/src/main/java/org/openkilda/controller/LoginController.java +++ b/src-gui/src/main/java/org/openkilda/controller/LoginController.java @@ -156,7 +156,7 @@ public ModelAndView authenticate(@RequestParam("username") String username, } } catch (BadCredentialsException e) { LOGGER.warn("Authentication failure", e); - error = "Login failed; Invalid email or password."; + error = e.getMessage(); modelAndView.setViewName(IConstants.View.REDIRECT_LOGIN); } catch (LockedException e) { error = e.getMessage(); diff --git a/src-gui/src/main/java/org/openkilda/security/CustomAuthenticationProvider.java b/src-gui/src/main/java/org/openkilda/security/CustomAuthenticationProvider.java index 6e8daac73f5..80fd747d5e4 100644 --- a/src-gui/src/main/java/org/openkilda/security/CustomAuthenticationProvider.java +++ b/src-gui/src/main/java/org/openkilda/security/CustomAuthenticationProvider.java @@ -100,10 +100,13 @@ public Authentication authenticate(final Authentication auth) } return new UsernamePasswordAuthenticationToken(user, result.getCredentials(), result.getAuthorities()); } catch (BadCredentialsException e) { + String error = null; if (user.getUserId() != 1) { - updateInvalidLoginAttempts(user, loginCount, unlockTime); + error = updateInvalidLoginAttempts(user, loginCount, unlockTime); + } else { + error = "Login Failed.Invalid email or password."; } - throw new BadCredentialsException(e.getMessage()); + throw new BadCredentialsException(error); } } @@ -132,7 +135,7 @@ private void checkUserLoginAttempts(UserEntity user, String value, String accUnl } } - private void updateInvalidLoginAttempts(UserEntity entity, String value, String accUnlockTime) { + private String updateInvalidLoginAttempts(UserEntity entity, String value, String accUnlockTime) { Integer loginCount = entity.getFailedLoginCount(); if (loginCount != null) { if (loginCount + 1 >= Integer.valueOf(value)) { @@ -157,7 +160,10 @@ private void updateInvalidLoginAttempts(UserEntity entity, String value, String } else { entity.setFailedLoginCount(1); } + int attempts = Integer.valueOf(value) - entity.getFailedLoginCount(); + String error = "Invalid email or password.You are left with " + attempts + " more attempts."; userRepository.save(entity); + return error; } /* diff --git a/src-gui/src/main/java/org/usermanagement/service/UserService.java b/src-gui/src/main/java/org/usermanagement/service/UserService.java index 4d23cc94d27..1e650906474 100644 --- a/src-gui/src/main/java/org/usermanagement/service/UserService.java +++ b/src-gui/src/main/java/org/usermanagement/service/UserService.java @@ -271,6 +271,8 @@ public void updateLoginDetail(final String userName) { throw new RequestValidationException(messageUtil.getAttributeInvalid("username", userName + "")); } userEntity.setLoginTime(Calendar.getInstance().getTime()); + userEntity.setFailedLoginCount(null); + userEntity.setUnlockTime(null); if (userEntity.getIs2FaEnabled()) { userEntity.setIs2FaConfigured(true); } diff --git a/src-gui/src/main/resources/db/import-script_32.sql b/src-gui/src/main/resources/db/import-script_32.sql index 1f98856453a..95a8f9f9cf3 100644 --- a/src-gui/src/main/resources/db/import-script_32.sql +++ b/src-gui/src/main/resources/db/import-script_32.sql @@ -1,21 +1,21 @@ -INSERT INTO "VERSION" (Version_ID, Version_Number, Version_Deployment_Date) +INSERT INTO VERSION_ENTITY (Version_ID, Version_Number, Version_Deployment_Date) VALUES (32, 32, CURRENT_TIMESTAMP); -INSERT INTO "KILDA_PERMISSION" (PERMISSION_ID, PERMISSION, IS_EDITABLE, IS_ADMIN_PERMISSION, STATUS_ID, CREATED_BY, CREATED_DATE, UPDATED_BY, UPDATED_DATE,DESCRIPTION) VALUES +INSERT INTO KILDA_PERMISSION (PERMISSION_ID, PERMISSION, IS_EDITABLE, IS_ADMIN_PERMISSION, STATUS_ID, CREATED_BY, CREATED_DATE, UPDATED_BY, UPDATED_DATE,DESCRIPTION) VALUES (362, 'um_user_account_unlock', false, false, 1, 1, CURRENT_TIMESTAMP, 1, CURRENT_TIMESTAMP, 'Permission to unlock user account'); -INSERT INTO "ROLE_PERMISSION" (ROLE_ID,PERMISSION_ID) VALUES +INSERT INTO ROLE_PERMISSION (ROLE_ID,PERMISSION_ID) VALUES (2, 362); -INSERT INTO "ACTIVITY_TYPE" (activity_type_id, activity_name) VALUES +INSERT INTO ACTIVITY_TYPE (activity_type_id, activity_name) VALUES (46, 'CONFIG_INVALID_LOGIN_ATTEMPT_COUNT'), (47, 'CONFIG_USER_ACCOUNT_UNLOCK_TIME'), (48, 'UNLOCK_USER_ACCOUNT'); -INSERT INTO "APPLICATION_SETTING" (id, setting_type, setting_value) VALUES (3, 'invalid_login_attempt', '5'); -INSERT INTO "APPLICATION_SETTING" (id, setting_type, setting_value) VALUES (4, 'user_account_unlock_time', '60'); +INSERT INTO APPLICATION_SETTING (id, setting_type, setting_value) VALUES (3, 'invalid_login_attempt', '5'); +INSERT INTO APPLICATION_SETTING (id, setting_type, setting_value) VALUES (4, 'user_account_unlock_time', '60'); -INSERT INTO "KILDA_STATUS" (status_id, STATUS_CODE, STATUS) VALUES +INSERT INTO KILDA_STATUS (status_id, STATUS_CODE, STATUS) VALUES (3, 'LCK', 'Lock'); From 1fbda931676940b7fc1b93e6312de588dec6e715 Mon Sep 17 00:00:00 2001 From: Sergii Iakovenko Date: Wed, 22 Dec 2021 22:36:58 +0200 Subject: [PATCH 31/46] Upgrade Gradle to 7.3.3 and other plugins to the recent versions. --- README.md | 4 +- src-gui/build.gradle | 27 +- .../gradle/wrapper/gradle-wrapper.properties | 2 +- .../base-storm-topology/build.gradle | 26 +- src-java/build.gradle | 44 +-- src-java/checkstyle/checkstyle.xml | 32 ++- .../build.gradle | 6 +- .../build.gradle | 6 +- .../flowhs-storm-topology/build.gradle | 6 +- .../build.gradle | 6 +- src-java/gradle/wrapper/gradle-wrapper.jar | Bin 59203 -> 59536 bytes .../gradle/wrapper/gradle-wrapper.properties | 2 +- src-java/gradlew | 257 +++++++++++------- .../grpc-speaker/grpc-service/build.gradle | 4 +- .../isllatency-storm-topology/build.gradle | 6 +- .../nbworker-storm-topology/build.gradle | 6 +- .../network-storm-topology/build.gradle | 6 +- .../northbound/build.gradle | 7 +- .../opentsdb-storm-topology/build.gradle | 6 +- .../ping-storm-topology/build.gradle | 6 +- .../portstate-storm-topology/build.gradle | 6 +- .../projectfloodlight/floodlight/build.gradle | 8 +- .../projectfloodlight/openflowj/build.gradle | 6 +- .../reroute-storm-topology/build.gradle | 6 +- .../server42-control-server-stub/build.gradle | 2 +- .../server42-control-storm-stub/build.gradle | 2 +- .../build.gradle | 6 +- .../server42/server42-control/build.gradle | 2 +- src-java/server42/server42-stats/build.gradle | 2 +- .../stats-storm-topology/build.gradle | 6 +- .../swmanager-storm-topology/build.gradle | 6 +- .../testing/functional-tests/build.gradle | 12 +- .../testing/performance-tests/build.gradle | 2 +- src-java/testing/test-library/build.gradle | 2 +- 34 files changed, 296 insertions(+), 231 deletions(-) diff --git a/README.md b/README.md index 4e8cb59955c..44d5bcd20ab 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ Note that the build process will install additional packages. It is recommended ### Prerequisites The followings are required for building Kilda controller: - - Gradle 6.7+ + - Gradle 7.0+ - Maven 3.3.9+ - JDK8 - Python 3.6+ @@ -44,7 +44,7 @@ sudo pip3 install docker-compose You can either install Gradle, or use Gradle wrapper: - Option 1 - Use Gradle wrapper. The Kilda repository contains an instance of Gradle Wrapper which can be used straight from here without further installation. - - Option 2 - Install Gradle (ensure that you have gradle 6.7 or later) - https://gradle.org/install/ + - Option 2 - Install Gradle (ensure that you have gradle 7.0 or later) - https://gradle.org/install/ #### Docker diff --git a/src-gui/build.gradle b/src-gui/build.gradle index 3f18d66926d..f31b79b1d2f 100644 --- a/src-gui/build.gradle +++ b/src-gui/build.gradle @@ -1,7 +1,3 @@ -/* - * This file was generated by the Gradle 'init' task. - */ - plugins { id 'java' id 'jacoco' @@ -11,14 +7,10 @@ plugins { } repositories { - jcenter() + mavenCentral() maven { url = uri('https://repo.spring.io/libs-milestone') } - - maven { - url = uri('http://repo.maven.apache.org/maven2') - } } dependencies { @@ -60,13 +52,13 @@ dependencies { testImplementation 'org.mockito:mockito-all:2.0.2-beta' testImplementation 'org.junit.jupiter:junit-jupiter-api:5.0.0-M4' testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.0.0-M4' - + compileOnly 'org.projectlombok:lombok:1.18.10' testCompileOnly 'org.projectlombok:lombok:1.18.10' annotationProcessor 'org.projectlombok:lombok:1.18.10' testAnnotationProcessor 'org.projectlombok:lombok:1.18.10' - - compile group: 'org.eclipse.jdt.core.compiler', name: 'ecj', version: '4.5.1' + + implementation group: 'org.eclipse.jdt.core.compiler', name: 'ecj', version: '4.5.1' } group = 'org.openkilda' @@ -78,14 +70,14 @@ tasks.withType(JavaCompile) { } jacoco { - toolVersion = '0.8.5' + toolVersion = '0.8.7' } jacocoTestReport { reports { - xml.enabled true - csv.enabled false - html.enabled true + xml.required = true + csv.required = false + html.required = true } } @@ -114,9 +106,10 @@ checkstyle { } } +/*TODO: not compatible with Gradle 7+, need another way [checkstyleMain, checkstyleTest].each { task -> task.logging.setLevel(LogLevel.LIFECYCLE) -} +}*/ jar { manifest { diff --git a/src-gui/gradle/wrapper/gradle-wrapper.properties b/src-gui/gradle/wrapper/gradle-wrapper.properties index da9702f9e70..2e6e5897b52 100644 --- a/src-gui/gradle/wrapper/gradle-wrapper.properties +++ b/src-gui/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.8-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/src-java/base-topology/base-storm-topology/build.gradle b/src-java/base-topology/base-storm-topology/build.gradle index d0ade8af6c4..da3b66eb805 100644 --- a/src-java/base-topology/base-storm-topology/build.gradle +++ b/src-java/base-topology/base-storm-topology/build.gradle @@ -1,6 +1,12 @@ buildscript { + repositories { + maven { url 'https://jitpack.io' } + } dependencies { - classpath 'org.anarres.jarjar:jarjar-gradle:1.0.1' + // Not compatible with Gradle 7. See https://github.com/shevek/jarjar/issues/22 + //classpath 'org.anarres.jarjar:jarjar-gradle:1.0.1' + // So build the plugin from the source at the version which supports Gradle 7. + classpath 'com.github.shevek.jarjar:jarjar-gradle:9a7eca72f9' } } @@ -40,11 +46,11 @@ dependencies { from 'org.apache.storm:flux-core:1.2.1' // Remove bundled libraries as they conflict with other dependencies. - classDelete "org.apache.commons.**" - classDelete "org.apache.http.**" - classDelete "org.apache.storm.flux.wrappers.**" - classDelete "org.apache.thrift.**" - classDelete "org.yaml.**" + classDelete 'org.apache.commons.**' + classDelete 'org.apache.http.**' + classDelete 'org.apache.storm.flux.wrappers.**' + classDelete 'org.apache.thrift.**' + classDelete 'org.yaml.**' } api('org.squirrelframework:squirrel-foundation') { @@ -65,7 +71,7 @@ dependencies { api 'org.hibernate.validator:hibernate-validator' runtimeOnly 'org.glassfish:javax.el' - implementation 'org.aspectj:aspectjrt' + api 'org.aspectj:aspectjrt' implementation 'org.mapstruct:mapstruct' implementation 'org.mapstruct:mapstruct-processor' annotationProcessor 'org.mapstruct:mapstruct-processor' @@ -100,7 +106,7 @@ dependencies { } sourceSets { - release { + releaseResources { resources { srcDir 'src/release/resources' } @@ -121,7 +127,7 @@ task testJar(type: Jar) { task releaseJar(type: Jar) { dependsOn processResources classifier 'release' - from sourceSets.release.output + from sourceSets.releaseResources.output } artifacts { @@ -130,5 +136,5 @@ artifacts { } buildAndCopyArtifacts { - from("${project.buildDir}/resources/release/topology.properties") { into "${project.name}/resources" } + from("${project.buildDir}/resources/releaseResources/topology.properties") { into "${project.name}/resources" } } diff --git a/src-java/build.gradle b/src-java/build.gradle index e233ed42e88..8338c786688 100644 --- a/src-java/build.gradle +++ b/src-java/build.gradle @@ -5,10 +5,10 @@ import java.text.DateFormat import java.util.jar.JarFile plugins { - id 'org.sonarqube' version '3.1.1' - id 'org.ajoberstar.grgit' version '4.0.2' apply false - id 'com.github.johnrengelman.shadow' version '6.1.0' apply false - id 'io.freefair.aspectj.post-compile-weaving' version '5.3.0' apply false + id 'org.sonarqube' version '3.3' + id 'org.ajoberstar.grgit' version '4.1.1' apply false + id 'com.github.johnrengelman.shadow' version '7.1.1' apply false + id 'io.freefair.aspectj.post-compile-weaving' version '6.3.0' apply false } allprojects { @@ -33,7 +33,7 @@ subprojects { repositories { mavenCentral() - maven { url "https://clojars.org/repo" } + maven { url 'https://clojars.org/repo' } } dependencies { @@ -178,7 +178,7 @@ subprojects { } checkstyle { - toolVersion '8.41' + toolVersion '9.2' configDirectory = rootProject.file('checkstyle') configProperties = [ 'checkstyle.suppression.file': project.file('src/checkstyle/checkstyle-suppressions.xml'), @@ -194,25 +194,26 @@ subprojects { } dependencies { - checkstyle 'com.puppycrawl.tools:checkstyle:8.41' + checkstyle 'com.puppycrawl.tools:checkstyle:9.2' } } + /*TODO: not compatible with Gradle 7+, need another way [checkstyleMain, checkstyleTest].each { task -> task.logging.setLevel(LogLevel.LIFECYCLE) - } + }*/ jacoco { - toolVersion = '0.8.6' + toolVersion = '0.8.7' } jacocoTestReport { dependsOn test reports { - xml.enabled true - csv.enabled false - html.enabled true + xml.required = true + csv.required = false + html.required = true } } @@ -239,22 +240,25 @@ subprojects { doFirst { Map classes = new HashMap<>() getIncludedDependencies().each { jar -> - JarFile jf = new JarFile(jar) - jf.entries().each { file -> - // TODO: it's good to reuse shadowJar plugin's patterns - if (file.name.endsWith('.class') && file.name != 'module-info.class') { - if (classes.containsKey(file.name)) { - throw new GradleException("shadowJar failure: ${file.name} conflicts in jars:${classes.get(file.name)} and ${jar}") + if(jar.isFile()) { + JarFile jf = new JarFile(jar) + jf.entries().each { file -> + // TODO: it's good to reuse shadowJar plugin's patterns + if (file.name.endsWith('.class') && file.name != 'module-info.class') { + if (classes.containsKey(file.name)) { + throw new GradleException("shadowJar failure: ${file.name} conflicts in jars:${classes.get(file.name)} and ${jar}") + } + classes.put(file.name, jar) } - classes.put(file.name, jar) } + jf.close() } - jf.close() } } } } +//TODO: the task handles Floodlight build only, should we rename the task? task buildAndCopyArtifacts(type: Copy) { onlyIf { project.hasProperty('destPath') diff --git a/src-java/checkstyle/checkstyle.xml b/src-java/checkstyle/checkstyle.xml index 127de3a77a1..15f53c5f467 100644 --- a/src-java/checkstyle/checkstyle.xml +++ b/src-java/checkstyle/checkstyle.xml @@ -1,7 +1,7 @@ + "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" + "https://checkstyle.org/dtds/configuration_1_3.dtd"> - + - + @@ -144,13 +144,13 @@ - + - + @@ -253,6 +253,7 @@ PARAMETER_DEF, VARIABLE_DEF, METHOD_DEF, PATTERN_VARIABLE_DEF, RECORD_DEF, RECORD_COMPONENT_DEF"/> + @@ -269,7 +270,8 @@ + value="COMMA, SEMI, POST_INC, POST_DEC, DOT, + LABELED_STAT, METHOD_REF"/> @@ -284,12 +286,14 @@ + LT, MINUS, MOD, NOT_EQUAL, PLUS, QUESTION, SL, SR, STAR, METHOD_REF, + TYPE_EXTENSION_AND "/> + value="CLASS_DEF, INTERFACE_DEF, ENUM_DEF, METHOD_DEF, CTOR_DEF, + RECORD_DEF, COMPACT_CTOR_DEF"/> @@ -304,13 +308,14 @@ value="^@return the *|^This method returns |^A [{]@code [a-zA-Z0-9]+[}]( is a )"/> + - + + 4 zYYc!v@NU%|U;_sM`2z(4BAilWijmR>4U^KdN)D8%@2KLcqkTDW%^3U(Wg>{qkAF z&RcYr;D1I5aD(N-PnqoEeBN~JyXiT(+@b`4Pv`;KmkBXYN48@0;iXuq6!ytn`vGp$ z6X4DQHMx^WlOek^bde&~cvEO@K$oJ}i`T`N;M|lX0mhmEH zuRpo!rS~#&rg}ajBdma$$}+vEhz?JAFUW|iZEcL%amAg_pzqul-B7Itq6Y_BGmOCC zX*Bw3rFz3R)DXpCVBkI!SoOHtYstv*e-May|+?b80ZRh$MZ$FerlC`)ZKt} zTd0Arf9N2dimjs>mg5&@sfTPsRXKXI;0L~&t+GH zkB<>wxI9D+k5VHHcB7Rku{Z>i3$&hgd9Mt_hS_GaGg0#2EHzyV=j=u5xSyV~F0*qs zW{k9}lFZ?H%@4hII_!bzao!S(J^^ZZVmG_;^qXkpJb7OyR*sPL>))Jx{K4xtO2xTr@St!@CJ=y3q2wY5F`77Tqwz8!&Q{f7Dp zifvzVV1!Dj*dxG%BsQyRP6${X+Tc$+XOG zzvq5xcC#&-iXlp$)L=9t{oD~bT~v^ZxQG;FRz|HcZj|^L#_(VNG)k{=_6|6Bs-tRNCn-XuaZ^*^hpZ@qwi`m|BxcF6IWc?_bhtK_cDZRTw#*bZ2`1@1HcB`mLUmo_>@2R&nj7&CiH zF&laHkG~7#U>c}rn#H)q^|sk+lc!?6wg0xy`VPn!{4P=u@cs%-V{VisOxVqAR{XX+ zw}R;{Ux@6A_QPka=48|tph^^ZFjSHS1BV3xfrbY84^=?&gX=bmz(7C({=*oy|BEp+ zYgj;<`j)GzINJA>{HeSHC)bvp6ucoE`c+6#2KzY9)TClmtEB1^^Mk)(mXWYvup02e%Ghm9qyjz#fO3bNGBX} zFiB>dvc1+If!>I10;qZk`?6pEd*(?bI&G*3YLt;MWw&!?=Mf7%^Op?qnyXWur- zwX|S^P>jF?{m9c&mmK-epCRg#WB+-VDe!2d2~YVoi%7_q(dyC{(}zB${!ElKB2D}P z7QNFM!*O^?FrPMGZ}wQ0TrQAVqZy!weLhu_Zq&`rlD39r*9&2sJHE(JT0EY5<}~x@ z1>P0!L2IFDqAB!($H9s2fI`&J_c+5QT|b#%99HA3@zUWOuYh(~7q7!Pf_U3u!ij5R zjFzeZta^~RvAmd_TY+RU@e}wQaB_PNZI26zmtzT4iGJg9U(Wrgrl>J%Z3MKHOWV(? zj>~Ph$<~8Q_sI+)$DOP^9FE6WhO09EZJ?1W|KidtEjzBX3RCLUwmj9qH1CM=^}MaK z59kGxRRfH(n|0*lkE?`Rpn6d^u5J6wPfi0WF(rucTv(I;`aW)3;nY=J=igkjsn?ED ztH&ji>}TW8)o!Jg@9Z}=i2-;o4#xUksQHu}XT~yRny|kg-$Pqeq!^78xAz2mYP9+4 z9gwAoti2ICvUWxE&RZ~}E)#M8*zy1iwz zHqN%q;u+f6Ti|SzILm0s-)=4)>eb5o-0K zbMW8ecB4p^6OuIX@u`f{>Yn~m9PINEl#+t*jqalwxIx=TeGB9(b6jA}9VOHnE$9sC zH`;epyH!k-3kNk2XWXW!K`L_G!%xOqk0ljPCMjK&VweAxEaZ==cT#;!7)X&C|X{dY^IY(e4D#!tx^vV3NZqK~--JW~wtXJ8X19adXim?PdN(|@o(OdgH3AiHts~?#QkolO?*=U_buYC&tQ3sc(O5HGHN~=6wB@dgIAVT$ z_OJWJ^&*40Pw&%y^t8-Wn4@l9gOl`uU z{Uda_uk9!Iix?KBu9CYwW9Rs=yt_lE11A+k$+)pkY5pXpocxIEJe|pTxwFgB%Kpr&tH;PzgOQ&m|(#Otm?@H^r`v)9yiR8v&Uy>d#TNdRfyN4Jk;`g zp+jr5@L2A7TS4=G-#O<`A9o;{En5!I8lVUG?!PMsv~{E_yP%QqqTxxG%8%KxZ{uwS zOT+EA5`*moN8wwV`Z=wp<3?~f#frmID^K?t7YL`G^(X43gWbo!6(q*u%HxWh$$^2EOq`Hj zp=-fS#Av+s9r-M)wGIggQ)b<@-BR`R8l1G@2+KODmn<_$Tzb7k35?e8;!V0G>`(!~ zY~qZz!6*&|TupOcnvsQYPbcMiJ!J{RyfezB^;fceBk znpA1XS)~KcC%0^_;ihibczSxwBuy;^ksH7lwfq7*GU;TLt*WmUEVQxt{ zKSfJf;lk$0XO8~48Xn2dnh8tMC9WHu`%DZj&a`2!tNB`5%;Md zBs|#T0Ktf?vkWQ)Y+q!At1qgL`C|nbzvgc(+28Q|4N6Geq)Il%+I5c@t02{9^=QJ?=h2BTe`~BEu=_u3xX2&?^zwcQWL+)7dI>JK0g8_`W1n~ zMaEP97X>Ok#=G*nkPmY`VoP8_{~+Rp7DtdSyWxI~?TZHxJ&=6KffcO2Qx1?j7=LZA z?GQt`oD9QpXw+s7`t+eeLO$cpQpl9(6h3_l9a6OUpbwBasCeCw^UB6we!&h9Ik@1zvJ`j4i=tvG9X8o34+N|y(ay~ho$f=l z514~mP>Z>#6+UxM<6@4z*|hFJ?KnkQBs_9{H(-v!_#Vm6Z4(xV5WgWMd3mB9A(>@XE292#k(HdI7P zJkQ2)`bQXTKlr}{VrhSF5rK9TsjtGs0Rs&nUMcH@$ZX_`Hh$Uje*)(Wd&oLW($hZQ z_tPt`{O@f8hZ<}?aQc6~|9iHt>=!%We3=F9yIfiqhXqp=QUVa!@UY@IF5^dr5H8$R zIh{=%S{$BHG+>~a=vQ={!B9B=<-ID=nyjfA0V8->gN{jRL>Qc4Rc<86;~aY+R!~Vs zV7MI~gVzGIY`B*Tt@rZk#Lg}H8sL39OE31wr_Bm%mn}8n773R&N)8B;l+-eOD@N$l zh&~Wz`m1qavVdxwtZLACS(U{rAa0;}KzPq9r76xL?c{&GaG5hX_NK!?)iq`t7q*F# zFoKI{h{*8lb>&sOeHXoAiqm*vV6?C~5U%tXR8^XQ9Y|(XQvcz*>a?%HQ(Vy<2UhNf zVmGeOO#v159KV@1g`m%gJ)XGPLa`a|?9HSzSSX{j;)xg>G(Ncc7+C>AyAWYa(k}5B3mtzg4tsA=C^Wfezb1&LlyrBE1~kNfeiubLls{C)!<%#m@f}v^o+7<VZ6!FZ;JeiAG@5vw7Li{flC8q1%jD_WP2ApBI{fQ}kN zhvhmdZ0bb5(qK@VS5-)G+@GK(tuF6eJuuV5>)Odgmt?i_`tB69DWpC~e8gqh!>jr_ zL1~L0xw@CbMSTmQflpRyjif*Y*O-IVQ_OFhUw-zhPrXXW>6X}+73IoMsu2?uuK3lT>;W#38#qG5tDl66A7Y{mYh=jK8Se!+f=N7%nv zYSHr6a~Nxd`jqov9VgII{%EpC_jFCEc>>SND0;}*Ja8Kv;G)MK7?T~h((c&FEBcQq zvUU1hW2^TX(dDCeU@~a1LF-(+#lz3997A@pipD53&Dr@III2tlw>=!iGabjXzbyUJ z4Hi~M1KCT-5!NR#I%!2Q*A>mqI{dpmUa_mW)%SDs{Iw1LG}0y=wbj@0ba-`q=0!`5 zr(9q1p{#;Rv2CY!L#uTbs(UHVR5+hB@m*zEf4jNu3(Kj$WwW|v?YL*F_0x)GtQC~! zzrnZRmBmwt+i@uXnk05>uR5&1Ddsx1*WwMrIbPD3yU*2By`71pk@gt{|H0D<#B7&8 z2dVmXp*;B)SWY)U1VSNs4ds!yBAj;P=xtatUx^7_gC5tHsF#vvdV;NmKwmNa1GNWZ zi_Jn-B4GnJ%xcYWD5h$*z^haku#_Irh818x^KB)3-;ufjf)D0TE#6>|zFf@~pU;Rs zNw+}c9S+6aPzxkEA6R%s*xhJ37wmgc)-{Zd1&mD5QT}4BQvczWr-Xim>(P^)52`@R z9+Z}44203T5}`AM_G^Snp<_KKc!OrA(5h7{MT^$ZeDsSr(R@^kI?O;}QF)OU zQ9-`t^ys=6DzgLcWt0U{Q(FBs22=r zKD%fLQ^5ZF24c-Z)J{xv?x$&4VhO^mswyb4QTIofCvzq+27*WlYm;h@;Bq%i;{hZA zM97mHI6pP}XFo|^pRTuWQzQs3B-8kY@ajLV!Fb?OYAO3jFv*W-_;AXd;G!CbpZt04iW`Ie^_+cQZGY_Zd@P<*J9EdRsc>c=edf$K|;voXRJ zk*aC@@=MKwR120(%I_HX`3pJ+8GMeO>%30t?~uXT0O-Tu-S{JA;zHoSyXs?Z;fy58 zi>sFtI7hoxNAdOt#3#AWFDW)4EPr4kDYq^`s%JkuO7^efX+u#-qZ56aoRM!tC^P6O zP(cFuBnQGjhX(^LJ(^rVe4-_Vk*3PkBCj!?SsULdmVr0cGJM^=?8b0^DuOFq>0*yA zk1g|C7n%pMS0A8@Aintd$fvRbH?SNdRaFrfoAJ=NoX)G5Gr}3-$^IGF+eI&t{I-GT zp=1fj)2|*ur1Td)+s&w%p#E6tDXX3YYOC{HGHLiCvv?!%%3DO$B$>A}aC;8D0Ef#b z{7NNqC8j+%1n95zq8|hFY`afAB4E)w_&7?oqG0IPJZv)lr{MT}>9p?}Y`=n+^CZ6E zKkjIXPub5!82(B-O2xQojW^P(#Q*;ETpEr^+Wa=qDJ9_k=Wm@fZB6?b(u?LUzX(}+ zE6OyapdG$HC& z&;oa*ALoyIxVvB2cm_N&h&{3ZTuU|aBrJlGOLtZc3KDx)<{ z27@)~GtQF@%6B@w3emrGe?Cv_{iC@a#YO8~OyGRIvp@%RRKC?fclXMP*6GzBFO z5U4QK?~>AR>?KF@I;|(rx(rKxdT9-k-anYS+#S#e1SzKPslK!Z&r8iomPsWG#>`Ld zJ<#+8GFHE!^wsXt(s=CGfVz5K+FHYP5T0E*?0A-z*lNBf)${Y`>Gwc@?j5{Q|6;Bl zkHG1%r$r&O!N^><8AEL+=y(P$7E6hd=>BZ4ZZ9ukJ2*~HR4KGvUR~MUOe$d>E5UK3 z*~O2LK4AnED}4t1Fs$JgvPa*O+WeCji_cn1@Tv7XQ6l@($F1K%{E$!naeX)`bfCG> z8iD<%_M6aeD?a-(Qqu61&fzQqC(E8ksa%CulMnPvR35d{<`VsmaHyzF+B zF6a@1$CT0xGVjofcct4SyxA40uQ`b#9kI)& z?B67-12X-$v#Im4CVUGZHXvPWwuspJ610ITG*A4xMoRVXJl5xbk;OL(;}=+$9?H`b z>u2~yd~gFZ*V}-Q0K6E@p}mtsri&%Zep?ZrPJmv`Qo1>94Lo||Yl)nqwHXEbe)!g( zo`w|LU@H14VvmBjjkl~=(?b{w^G$~q_G(HL`>|aQR%}A64mv0xGHa`S8!*Wb*eB}` zZh)&rkjLK!Rqar)UH)fM<&h&@v*YyOr!Xk2OOMV%$S2mCRdJxKO1RL7xP_Assw)bb z9$sQ30bapFfYTS`i1PihJZYA#0AWNmp>x(;C!?}kZG7Aq?zp!B+gGyJ^FrXQ0E<>2 zCjqZ(wDs-$#pVYP3NGA=en<@_uz!FjFvn1&w1_Igvqs_sL>ExMbcGx4X5f%`Wrri@ z{&vDs)V!rd=pS?G(ricfwPSg(w<8P_6=Qj`qBC7_XNE}1_5>+GBjpURPmvTNE7)~r)Y>ZZecMS7Ro2` z0}nC_GYo3O7j|Wux?6-LFZs%1IV0H`f`l9or-8y0=5VGzjPqO2cd$RRHJIY06Cnh- ztg@Pn1OeY=W`1Mv3`Ti6!@QIT{qcC*&vptnX4Pt1O|dWv8u2s|(CkV`)vBjAC_U5` zCw1f&c4o;LbBSp0=*q z3Y^horBAnR)u=3t?!}e}14%K>^562K!)Vy6r~v({5{t#iRh8WIL|U9H6H97qX09xp zjb0IJ^9Lqxop<-P*VA0By@In*5dq8Pr3bTPu|ArID*4tWM7w+mjit0PgmwLV4&2PW z3MnIzbdR`3tPqtUICEuAH^MR$K_u8~-U2=N1)R=l>zhygus44>6V^6nJFbW-`^)f} zI&h$FK)Mo*x?2`0npTD~jRd}5G~-h8=wL#Y-G+a^C?d>OzsVl7BFAaM==(H zR;ARWa^C3J)`p~_&FRsxt|@e+M&!84`eq)@aO9yBj8iifJv0xVW4F&N-(#E=k`AwJ z3EFXWcpsRlB%l_0Vdu`0G(11F7( zsl~*@XP{jS@?M#ec~%Pr~h z2`M*lIQaolzWN&;hkR2*<=!ORL(>YUMxOzj(60rQfr#wTrkLO!t{h~qg% zv$R}0IqVIg1v|YRu9w7RN&Uh7z$ijV=3U_M(sa`ZF=SIg$uY|=NdC-@%HtkUSEqJv zg|c}mKTCM=Z8YmsFQu7k{VrXtL^!Cts-eb@*v0B3M#3A7JE*)MeW1cfFqz~^S6OXFOIP&iL;Vpy z4dWKsw_1Wn%Y;eW1YOfeP_r1s4*p1C(iDG_hrr~-I%kA>ErxnMWRYu{IcG{sAW;*t z9T|i4bI*g)FXPpKM@~!@a7LDVVGqF}C@mePD$ai|I>73B+9!Ks7W$pw;$W1B%-rb; zJ*-q&ljb=&41dJ^*A0)7>Wa@khGZ;q1fL(2qW=|38j43mTl_;`PEEw07VKY%71l6p z@F|jp88XEnm1p~<5c*cVXvKlj0{THF=n3sU7g>Ki&(ErR;!KSmfH=?49R5(|c_*xw z4$jhCJ1gWT6-g5EV)Ahg?Nw=}`iCyQ6@0DqUb%AZEM^C#?B-@Hmw?LhJ^^VU>&phJ zlB!n5&>I>@sndh~v$2I2Ue23F?0!0}+9H~jg7E`?CS_ERu75^jSwm%!FTAegT`6s7 z^$|%sj2?8wtPQR>@D3sA0-M-g-vL@47YCnxdvd|1mPymvk!j5W1jHnVB&F-0R5e-vs`@u8a5GKdv`LF7uCfKncI4+??Z4iG@AxuX7 z6+@nP^TZ5HX#*z(!y+-KJ3+Ku0M90BTY{SC^{ z&y2#RZPjfX_PE<<>XwGp;g4&wcXsQ0T&XTi(^f+}4qSFH1%^GYi+!rJo~t#ChTeAX zmR0w(iODzQOL+b&{1OqTh*psAb;wT*drr^LKdN?c?HJ*gJl+%kEH&48&S{s28P=%p z7*?(xFW_RYxJxxILS!kdLIJYu@p#mnQ(?moGD1)AxQd66X6b*KN?o&e`u9#N4wu8% z^Gw#G!@|>c740RXziOR=tdbkqf(v~wS_N^CS^1hN-N4{Dww1lvSWcBTX*&9}Cz|s@ z*{O@jZ4RVHq19(HC9xSBZI0M)E;daza+Q*zayrX~N5H4xJ33BD4gn5Ka^Hj{995z4 zzm#Eo?ntC$q1a?)dD$qaC_M{NW!5R!vVZ(XQqS67xR3KP?rA1^+s3M$60WRTVHeTH z6BJO$_jVx0EGPXy}XK_&x597 zt(o6ArN8vZX0?~(lFGHRtHP{gO0y^$iU6Xt2e&v&ugLxfsl;GD)nf~3R^ACqSFLQ< zV7`cXgry((wDMJB55a6D4J;13$z6pupC{-F+wpToW%k1qKjUS^$Mo zN3@}T!ZdpiV7rkNvqP3KbpEn|9aB;@V;gMS1iSb@ zwyD7!5mfj)q+4jE1dq3H`sEKgrVqk|y8{_vmn8bMOi873!rmnu5S=1=-DFx+Oj)Hi zx?~ToiJqOrvSou?RVALltvMADodC7BOg7pOyc4m&6yd(qIuV5?dYUpYzpTe!BuWKi zpTg(JHBYzO&X1e{5o|ZVU-X5e?<}mh=|eMY{ldm>V3NsOGwyxO2h)l#)rH@BI*TN; z`yW26bMSp=k6C4Ja{xB}s`dNp zE+41IwEwo>7*PA|7v-F#jLN>h#a`Er9_86!fwPl{6yWR|fh?c%qc44uP~Ocm2V*(* zICMpS*&aJjxutxKC0Tm8+FBz;3;R^=ajXQUB*nTN*Lb;mruQHUE<&=I7pZ@F-O*VMkJbI#FOrBM8`QEL5Uy=q5e2 z_BwVH%c0^uIWO0*_qD;0jlPoA@sI7BPwOr-mrp7y`|EF)j;$GYdOtEPFRAKyUuUZS z(N4)*6R*ux8s@pMdC*TP?Hx`Zh{{Ser;clg&}CXriXZCr2A!wIoh;j=_eq3_%n7V} za?{KhXg2cXPpKHc90t6=`>s@QF-DNcTJRvLTS)E2FTb+og(wTV7?$kI?QZYgVBn)& zdpJf@tZ{j>B;<MVHiPl_U&KlqBT)$ic+M0uUQWK|N1 zCMl~@o|}!!7yyT%7p#G4?T^Azxt=D(KP{tyx^lD_(q&|zNFgO%!i%7T`>mUuU^FeR zHP&uClWgXm6iXgI8*DEA!O&X#X(zdrNctF{T#pyax16EZ5Lt5Z=RtAja!x+0Z31U8 zjfaky?W)wzd+66$L>o`n;DISQNs09g{GAv%8q2k>2n8q)O^M}=5r#^WR^=se#WSCt zQ`7E1w4qdChz4r@v6hgR?nsaE7pg2B6~+i5 zcTTbBQ2ghUbC-PV(@xvIR(a>Kh?{%YAsMV#4gt1nxBF?$FZ2~nFLKMS!aK=(`WllA zHS<_7ugqKw!#0aUtQwd#A$8|kPN3Af?Tkn)dHF?_?r#X68Wj;|$aw)Wj2Dkw{6)*^ zZfy!TWwh=%g~ECDCy1s8tTgWCi}F1BvTJ9p3H6IFq&zn#3FjZoecA_L_bxGWgeQup zAAs~1IPCnI@H>g|6Lp^Bk)mjrA3_qD4(D(65}l=2RzF-8@h>|Aq!2K-qxt(Q9w7c^ z;gtx`I+=gKOl;h=#fzSgw-V*YT~2_nnSz|!9hIxFb{~dKB!{H zSi??dnmr@%(1w^Be=*Jz5bZeofEKKN&@@uHUMFr-DHS!pb1I&;x9*${bmg6=2I4Zt zHb5LSvojY7ubCNGhp)=95jQ00sMAC{IZdAFsN!lAVQDeiec^HAu=8);2AKqNTT!&E zo+FAR`!A1#T6w@0A+o%&*yzkvxsrqbrfVTG+@z8l4+mRi@j<&)U9n6L>uZoezW>qS zA4YfO;_9dQSyEYpkWnsk0IY}Nr2m(ql@KuQjLgY-@g z4=$uai6^)A5+~^TvLdvhgfd+y?@+tRE^AJabamheJFnpA#O*5_B%s=t8<;?I;qJ}j z&g-9?hbwWEez-!GIhqpB>nFvyi{>Yv>dPU=)qXnr;3v-cd`l}BV?6!v{|cHDOx@IG z;TSiQQ(8=vlH^rCEaZ@Yw}?4#a_Qvx=}BJuxACxm(E7tP4hki^jU@8A zUS|4tTLd)gr@T|F$1eQXPY%fXb7u}(>&9gsd3It^B{W#6F2_g40cgo1^)@-xO&R5X z>qKon+Nvp!4v?-rGQu#M_J2v+3e+?N-WbgPQWf`ZL{Xd9KO^s{uIHTJ6~@d=mc7i z+##ya1p+ZHELmi%3C>g5V#yZt*jMv( zc{m*Y;7v*sjVZ-3mBuaT{$g+^sbs8Rp7BU%Ypi+c%JxtC4O}|9pkF-p-}F{Z7-+45 zDaJQx&CNR)8x~0Yf&M|-1rw%KW3ScjWmKH%J1fBxUp(;F%E+w!U470e_3%+U_q7~P zJm9VSWmZ->K`NfswW(|~fGdMQ!K2z%k-XS?Bh`zrjZDyBMu74Fb4q^A=j6+Vg@{Wc zPRd5Vy*-RS4p1OE-&8f^Fo}^yDj$rb+^>``iDy%t)^pHSV=En5B5~*|32#VkH6S%9 zxgIbsG+|{-$v7mhOww#v-ejaS>u(9KV9_*X!AY#N*LXIxor9hDv%aie@+??X6@Et=xz>6ev9U>6Pn$g4^!}w2Z%Kpqpp+M%mk~?GE-jL&0xLC zy(`*|&gm#mLeoRU8IU?Ujsv=;ab*URmsCl+r?%xcS1BVF*rP}XRR%MO_C!a9J^fOe>U;Y&3aj3 zX`3?i12*^W_|D@VEYR;h&b^s#Kd;JMNbZ#*x8*ZXm(jgw3!jyeHo14Zq!@_Q`V;Dv zKik~!-&%xx`F|l^z2A92aCt4x*I|_oMH9oeqsQgQDgI0j2p!W@BOtCTK8Jp#txi}7 z9kz);EX-2~XmxF5kyAa@n_$YYP^Hd4UPQ>O0-U^-pw1*n{*kdX`Jhz6{!W=V8a$0S z9mYboj#o)!d$gs6vf8I$OVOdZu7L5%)Vo0NhN`SwrQFhP3y4iXe2uV@(G{N{yjNG( zKvcN{k@pXkxyB~9ucR(uPSZ7{~sC=lQtz&V(^A^HppuN!@B4 zS>B=kb14>M-sR>{`teApuHlca6YXs6&sRvRV;9G!XI08CHS~M$=%T~g5Xt~$exVk` zWP^*0h{W%`>K{BktGr@+?ZP}2t0&smjKEVw@3=!rSjw5$gzlx`{dEajg$A58m|Okx zG8@BTPODSk@iqLbS*6>FdVqk}KKHuAHb0UJNnPm!(XO{zg--&@#!niF4T!dGVdNif z3_&r^3+rfQuV^8}2U?bkI5Ng*;&G>(O4&M<86GNxZK{IgKNbRfpg>+32I>(h`T&uv zUN{PRP&onFj$tn1+Yh|0AF330en{b~R+#i9^QIbl9fBv>pN|k&IL2W~j7xbkPyTL^ z*TFONZUS2f33w3)fdzr?)Yg;(s|||=aWZV(nkDaACGSxNCF>XLJSZ=W@?$*` z#sUftY&KqTV+l@2AP5$P-k^N`Bme-xcWPS|5O~arUq~%(z8z87JFB|llS&h>a>Som zC34(_uDViE!H2jI3<@d+F)LYhY)hoW6)i=9u~lM*WH?hI(yA$X#ip}yYld3RAv#1+sBt<)V_9c4(SN9Fn#$}_F}A-}P>N+8io}I3mh!}> z*~*N}ZF4Zergb;`R_g49>ZtTCaEsCHiFb(V{9c@X0`YV2O^@c6~LXg2AE zhA=a~!ALnP6aO9XOC^X15(1T)3!1lNXBEVj5s*G|Wm4YBPV`EOhU&)tTI9-KoLI-U zFI@adu6{w$dvT(zu*#aW*4F=i=!7`P!?hZy(9iL;Z^De3?AW`-gYTPALhrZ*K2|3_ zfz;6xQN9?|;#_U=4t^uS2VkQ8$|?Ub5CgKOj#Ni5j|(zX>x#K(h7LgDP-QHwok~-I zOu9rn%y97qrtKdG=ep)4MKF=TY9^n6CugQ3#G2yx;{))hvlxZGE~rzZ$qEHy-8?pU#G;bwufgSN6?*BeA!7N3RZEh{xS>>-G1!C(e1^ zzd#;39~PE_wFX3Tv;zo>5cc=md{Q}(Rb?37{;YPtAUGZo7j*yHfGH|TOVR#4ACaM2 z;1R0hO(Gl}+0gm9Bo}e@lW)J2OU4nukOTVKshHy7u)tLH^9@QI-jAnDBp(|J8&{fKu=_97$v&F67Z zq+QsJ=gUx3_h_%=+q47msQ*Ub=gMzoSa@S2>`Y9Cj*@Op4plTc!jDhu51nSGI z^sfZ(4=yzlR}kP2rcHRzAY9@T7f`z>fdCU0zibx^gVg&fMkcl)-0bRyWe12bT0}<@ z^h(RgGqS|1y#M;mER;8!CVmX!j=rfNa6>#_^j{^C+SxGhbSJ_a0O|ae!ZxiQCN2qA zKs_Z#Zy|9BOw6x{0*APNm$6tYVG2F$K~JNZ!6>}gJ_NLRYhcIsxY1z~)mt#Yl0pvC zO8#Nod;iow5{B*rUn(0WnN_~~M4|guwfkT(xv;z)olmj=f=aH#Y|#f_*d1H!o( z!EXNxKxth9w1oRr0+1laQceWfgi8z`YS#uzg#s9-QlTT7y2O^^M1PZx z3YS7iegfp6Cs0-ixlG93(JW4wuE7)mfihw}G~Uue{Xb+#F!BkDWs#*cHX^%(We}3% zT%^;m&Juw{hLp^6eyM}J({luCL_$7iRFA6^8B!v|B9P{$42F>|M`4Z_yA{kK()WcM zu#xAZWG%QtiANfX?@+QQOtbU;Avr*_>Yu0C2>=u}zhH9VLp6M>fS&yp*-7}yo8ZWB z{h>ce@HgV?^HgwRThCYnHt{Py0MS=Ja{nIj5%z;0S@?nGQ`z`*EVs&WWNwbzlk`(t zxDSc)$dD+4G6N(p?K>iEKXIk>GlGKTH{08WvrehnHhh%tgpp&8db4*FLN zETA@<$V=I7S^_KxvYv$Em4S{gO>(J#(Wf;Y%(NeECoG3n+o;d~Bjme-4dldKukd`S zRVAnKxOGjWc;L#OL{*BDEA8T=zL8^`J=2N)d&E#?OMUqk&9j_`GX*A9?V-G zdA5QQ#(_Eb^+wDkDiZ6RXL`fck|rVy%)BVv;dvY#`msZ}{x5fmd! zInmWSxvRgXbJ{unxAi*7=Lt&7_e0B#8M5a=Ad0yX#0rvMacnKnXgh>4iiRq<&wit93n!&p zeq~-o37qf)L{KJo3!{l9l9AQb;&>)^-QO4RhG>j`rBlJ09~cbfNMR_~pJD1$UzcGp zOEGTzz01j$=-kLC+O$r8B|VzBotz}sj(rUGOa7PDYwX~9Tum^sW^xjjoncxSz;kqz z$Pz$Ze|sBCTjk7oM&`b5g2mFtuTx>xl{dj*U$L%y-xeQL~|i>KzdUHeep-Yd@}p&L*ig< zgg__3l9T=nbM3bw0Sq&Z2*FA)P~sx0h634BXz0AxV69cED7QGTbK3?P?MENkiy-mV zZ1xV5ry3zIpy>xmThBL0Q!g+Wz@#?6fYvzmEczs(rcujrfCN=^!iWQ6$EM zaCnRThqt~gI-&6v@KZ78unqgv9j6-%TOxpbV`tK{KaoBbhc}$h+rK)5h|bT6wY*t6st-4$e99+Egb#3ip+ERbve08G@Ref&hP)qB&?>B94?eq5i3k;dOuU#!y-@+&5>~!FZik=z4&4|YHy=~!F254 zQAOTZr26}Nc7jzgJ;V~+9ry#?7Z0o*;|Q)k+@a^87lC}}1C)S))f5tk+lMNqw>vh( z`A9E~5m#b9!ZDBltf7QIuMh+VheCoD7nCFhuzThlhA?|8NCt3w?oWW|NDin&&eDU6 zwH`aY=))lpWG?{fda=-auXYp1WIPu&3 zwK|t(Qiqvc@<;1_W#ALDJ}bR;3&v4$9rP)eAg`-~iCte`O^MY+SaP!w%~+{{1tMo` zbp?T%ENs|mHP)Lsxno=nWL&qizR+!Ib=9i%4=B@(Umf$|7!WVxkD%hfRjvxV`Co<; zG*g4QG_>;RE{3V_DOblu$GYm&!+}%>G*yO{-|V9GYG|bH2JIU2iO}ZvY>}Fl%1!OE zZFsirH^$G>BDIy`8;R?lZl|uu@qWj2T5}((RG``6*05AWsVVa2Iu>!F5U>~7_Tlv{ zt=Dpgm~0QVa5mxta+fUt)I0gToeEm9eJX{yYZ~3sLR&nCuyuFWuiDIVJ+-lwViO(E zH+@Rg$&GLueMR$*K8kOl>+aF84Hss5p+dZ8hbW$=bWNIk0paB!qEK$xIm5{*^ad&( zgtA&gb&6FwaaR2G&+L+Pp>t^LrG*-B&Hv;-s(h0QTuYWdnUObu8LRSZoAVd7SJ;%$ zh%V?58mD~3G2X<$H7I)@x?lmbeeSY7X~QiE`dfQ5&K^FB#9e!6!@d9vrSt!);@ZQZ zO#84N5yH$kjm9X4iY#f+U`FKhg=x*FiDoUeu1O5LcC2w&$~5hKB9ZnH+8BpbTGh5T zi_nfmyQY$vQh%ildbR7T;7TKPxSs#vhKR|uup`qi1PufMa(tNCjRbllakshQgn1)a8OO-j8W&aBc_#q1hKDF5-X$h`!CeT z+c#Ial~fDsGAenv7~f@!icm(~)a3OKi((=^zcOb^qH$#DVciGXslUwTd$gt{7)&#a`&Lp ze%AnL0#U?lAl8vUkv$n>bxH*`qOujO0HZkPWZnE0;}0DSEu1O!hg-d9#{&#B1Dm)L zvN%r^hdEt1vR<4zwshg*0_BNrDWjo65be1&_82SW8#iKWs7>TCjUT;-K~*NxpG2P% zovXUo@S|fMGudVSRQrP}J3-Wxq;4xIxJJC|Y#TQBr>pwfy*%=`EUNE*dr-Y?9y9xK zmh1zS@z{^|UL}v**LNYY!?1qIRPTvr!gNXzE{%=-`oKclPrfMKwn` zUwPeIvLcxkIV>(SZ-SeBo-yw~{p!<&_}eELG?wxp zee-V59%@BtB+Z&Xs=O(@P$}v_qy1m=+`!~r^aT> zY+l?+6(L-=P%m4ScfAYR8;f9dyVw)@(;v{|nO#lAPI1xDHXMYt~-BGiP&9y2OQsYdh7-Q1(vL<$u6W0nxVn-qh=nwuRk}{d!uACozccRGx6~xZQ;=#JCE?OuA@;4 zadp$sm}jfgW4?La(pb!3f0B=HUI{5A4b$2rsB|ZGb?3@CTA{|zBf07pYpQ$NM({C6Srv6%_{rVkCndT=1nS}qyEf}Wjtg$e{ng7Wgz$7itYy0sWW_$qld);iUm85GBH)fk3b=2|5mvflm?~inoVo zDH_%e;y`DzoNj|NgZ`U%a9(N*=~8!qqy0Etkxo#`r!!{|(NyT0;5= z8nVZ6AiM+SjMG8J@6c4_f-KXd_}{My?Se1GWP|@wROFpD^5_lu?I%CBzpwi(`x~xh B8dv}T delta 17845 zcmV)CK*GO}(F4QI1F(Jx4W$DjNjn4p0N4ir06~)x5+0MO2`GQvQyWzj|J`gh3(E#l zNGO!HfVMRRN~%`0q^)g%XlN*vP!O#;m*h5VyX@j-1N|HN;8S1vqEAj=eCdn`)tUB9 zXZjcT^`bL6qvL}gvXj%9vrOD+x!Gc_0{$Zg+6lTXG$bmoEBV z*%y^c-mV0~Rjzv%e6eVI)yl>h;TMG)Ft8lqpR`>&IL&`>KDi5l$AavcVh9g;CF0tY zw_S0eIzKD?Nj~e4raA8wxiiImTRzv6;b6|LFmw)!E4=CiJ4I%&axSey4zE-MIh@*! z*P;K2Mx{xVYPLeagKA}Hj=N=1VrWU`ukuBnc14iBG?B}Uj>?=2UMk4|42=()8KOnc zrJzAxxaEIfjw(CKV6F$35u=1qyf(%cY8fXaS9iS?yetY{mQ#Xyat*7sSoM9fJlZqq zyasQ3>D>6p^`ck^Y|kYYZB*G})uAbQ#7)Jeb~glGz@2rPu}zBWDzo5K$tP<|meKV% z{Swf^eq6NBioF)v&~9NLIxHMTKe6gJ@QQ^A6fA!n#u1C&n`aG7TDXKM1Jly-DwTB` z+6?=Y)}hj;C#r5>&x;MCM4U13nuXVK*}@yRY~W3X%>U>*CB2C^K6_OZsXD!nG2RSX zQg*0)$G3%Es$otA@p_1N!hIPT(iSE=8OPZG+t)oFyD~{nevj0gZen$p>U<7}uRE`t5Mk1f4M0K*5 zbn@3IG5I2mk;8K>*RZ zPV6iL006)S001s%0eYj)9hu1 z9o)iQT9(v*sAuZ|ot){RrZ0Qw4{E0A+!Yx_M~#Pj&OPUM&i$RU=Uxu}e*6Sr2ror= z&?lmvFCO$)BY+^+21E>ENWe`I0{02H<-lz&?})gIVFyMWxX0B|0b?S6?qghp3lDgz z2?0|ALJU=7s-~Lb3>9AA5`#UYCl!Xeh^i@bxs5f&SdiD!WN}CIgq&WI4VCW;M!UJL zX2};d^sVj5oVl)OrkapV-C&SrG)*x=X*ru!2s04TjZ`pY$jP)4+%)7&MlpiZ`lgoF zo_p>^4qGz^(Y*uB10dY2kcIbt=$FIdYNqk;~47wf@)6|nJp z1cocL3zDR9N2Pxkw)dpi&_rvMW&Dh0@T*_}(1JFSc0S~Ph2Sr=vy)u*=TY$i_IHSo zR+&dtWFNxHE*!miRJ%o5@~GK^G~4$LzEYR-(B-b(L*3jyTq}M3d0g6sdx!X3-m&O% zK5g`P179KHJKXpIAAX`A2MFUA;`nXx^b?mboVbQgigIHTU8FI>`q53AjWaD&aowtj z{XyIX>c)*nLO~-WZG~>I)4S1d2q@&?nwL)CVSWqWi&m1&#K1!gt`g%O4s$u^->Dwq ziKc&0O9KQ7000OG0000%03-m(e&Y`S09YWC4iYDSty&3q8^?8ij|8zxaCt!zCFq1@ z9TX4Hl68`nY>}cQNW4Ullqp$~SHO~l1!CdFLKK}ij_t^a?I?C^CvlvnZkwiVn>dl2 z2$V(JN{`5`-8ShF_ek6HNRPBlPuIPYu>TAeAV5O2)35r3*_k(Q-h1+h5pb(Zu%oJ__pBsW0n5ILw`!&QR&YV`g0Fe z(qDM!FX_7;`U3rxX#QHT{f%h;)Eursw=*#qvV)~y%^Uo^% zi-%sMe^uz;#Pe;@{JUu05zT*i=u7mU9{MkT`ft(vPdQZoK&2mg=tnf8FsaNQ+QcPg zB>vP8Rd6Z0JoH5_Q`zldg;hx4azQCq*rRZThqlqTRMzn1O3_rQTrHk8LQ<{5UYN~` zM6*~lOGHyAnx&#yCK{i@%N1Us@=6cw=UQxpSE;<(LnnES%6^q^QhBYQ-VCSmIu8wh z@_LmwcFDfAhIn>`%h7L{)iGBzu`Md4dj-m3C8mA9+BL*<>q z#$7^ttIBOE-=^|zmG`K8yUKT{yjLu2SGYsreN0*~9yhFxn4U};Nv1XXj1fH*v-g=3 z@tCPc`YdzQGLp%zXwo*o$m9j-+~nSWls#s|?PyrHO%SUGdk**X9_=|b)Y%^j_V$3S z>mL2A-V)Q}qb(uZipEFVm?}HWc+%G6_K+S+87g-&RkRQ8-{0APDil115eG|&>WQhU zufO*|e`hFks^cJJmx_qNx{ltSp3aT|XgD5-VxGGXb7gkiOG$w^qMVBDjR8%!Sbh72niHRDV* ziFy8LE+*$j?t^6aZP9qt-ow;hzkmhvy*Hn-X^6?yVMbtNbyqZQ^rXg58`gk+I%Wv} zn_)dRq+3xjc8D%}EQ%nnTF7L7m}o9&*^jf`_qvUhVKY7w9Zgxr-0YHWFRd3$l_6UX zpXt^U&TiC*qZWx#pOG6k?3Tg)pra*fw(O6_45>lUBN1U5Qmc>^DHt)5b~Ntjsw!NI z1n4{$HWFeIi)*qvgK^ui;(81VQc1(wJ8C#tjR>Dkjf{xYC^_B^#qrdCc)uZxtgua6 zk98UGQF|;;k`c+0_z)tQ&9DwLB~&12@D1!*mTz_!3Mp=cg;B7Oq4cKN>5v&dW7q@H zal=g6Ipe`siZN4NZiBrkJCU*x216gmbV(FymgHuG@%%|8sgD?gR&0*{y4n=pukZnd z4=Nl~_>jVfbIehu)pG)WvuUpLR}~OKlW|)=S738Wh^a&L+Vx~KJU25o6%G7+Cy5mB zgmYsgkBC|@K4Jm_PwPoz`_|5QSk}^p`XV`649#jr4Lh^Q>Ne~#6Cqxn$7dNMF=%Va z%z9Ef6QmfoXAlQ3)PF8#3Y% zadcE<1`fd1&Q9fMZZnyI;&L;YPuy#TQ8b>AnXr*SGY&xUb>2678A+Y z8K%HOdgq_4LRFu_M>Ou|kj4W%sPPaV)#zDzN~25klE!!PFz_>5wCxglj7WZI13U5| zEq_YLKPH;v8sEhyG`dV_jozR);a6dBvkauhC;1dk%mr+J*Z6MMH9jqxFk@)&h{mHl zrf^i_d-#mTF=6-T8Rk?(1+rPGgl$9=j%#dkf@x6>czSc`jk7$f!9SrV{do%m!t8{? z_iAi$Qe&GDR#Nz^#uJ>-_?(E$ns)(3)X3cYY)?gFvU+N>nnCoBSmwB2<4L|xH19+4 z`$u#*Gt%mRw=*&|em}h_Y`Pzno?k^8e*hEwfM`A_yz-#vJtUfkGb=s>-!6cHfR$Mz z`*A8jVcz7T{n8M>ZTb_sl{EZ9Ctau4naX7TX?&g^VLE?wZ+}m)=YW4ODRy*lV4%-0 zG1XrPs($mVVfpnqoSihnIFkLdxG9um&n-U|`47l{bnr(|8dmglO7H~yeK7-wDwZXq zaHT($Qy2=MMuj@lir(iyxI1HnMlaJwpX86je}e=2n|Esb6hB?SmtDH3 z2qH6o`33b{;M{mDa5@@~1or8+Zcio*97pi1Jkx6v5MXCaYsb~Ynq)eWpKnF{n)FXZ z?Xd;o7ESu&rtMFr5(yJ(B7V>&0gnDdL*4MZH&eO+r*t!TR98ssbMRaw`7;`SLI8mT z=)hSAt~F=mz;JbDI6g~J%w!;QI(X14AnOu;uve^4wyaP3>(?jSLp+LQ7uU(iib%IyB(d&g@+hg;78M>h7yAeq$ALRoHGkKXA+E z$Sk-hd$Fs2nL4w9p@O*Y$c;U)W#d~)&8Js;i^Dp^* z0*7*zEGj~VehF4sRqSGny*K_CxeF=T^8;^lb}HF125G{kMRV?+hYktZWfNA^Mp7y8 zK~Q?ycf%rr+wgLaHQ|_<6z^eTG7izr@99SG9Q{$PCjJabSz`6L_QJJe7{LzTc$P&pwTy<&3RRUlSHmK;?}=QAhQaDW3#VWcNAH3 zeBPRTDf3?3mfdI$&WOg(nr9Gyzg`&u^o!f2rKJ57D_>p z6|?Vg?h(@(*X=o071{g^le>*>qSbVam`o}sAK8>b|11%e&;%`~b2OP7--q%0^2YDS z`2M`{2QYr1VC)sIW9WOu8<~7Q>^$*Og{KF+kI;wFegvaIDkB%3*%PWtWKSq7l`1YcDxQQ2@nv{J!xWV?G+w6C zhUUxUYVf%(Q(40_xrZB@rbxL=Dj3RV^{*yHd>4n-TOoHVRnazDOxxkS9kiZyN}IN3 zB^5N=* zRSTO+rA<{*P8-$GZdyUNOB=MzddG$*@q>mM;pUIiQ_z)hbE#Ze-IS)9G}Rt$5PSB{ zZZ;#h9nS7Rf1ecW&n(Gpu9}{vXQZ-f`UHIvD?cTbF`YvH*{rgE(zE22pLAQfhg-`U zuh612EpByB(~{w7svCylrBk%5$LCIyuhrGi=yOfca`=8ltKxHcSNfDRt@62QH^R_0 z&eQL6rRk>Dvf6rjMQv5ZXzg}S`HqV69hJT^pPHtdhqsrPJWs|IT9>BvpQa@*(FX6v zG}TYjreQCnH(slMt5{NgUf)qsS1F&Bb(M>$X}tWI&yt2I&-rJbqveuj?5J$`Dyfa2 z)m6Mq0XH@K)Y2v8X=-_4=4niodT&Y7W?$KLQhjA<+R}WTdYjX9>kD+SRS^oOY1{A= zZTId-(@wF^UEWso($wZtrs%e7t<}YaC_;#@`r0LUzKY&|qPJz*y~RHG`E6bypP5AX zN!p0^AUu8uDR>xM-ALFzBxXM~Q3z=}fHWCIG>0&I6x2Iu7&U)49j7qeMI&?qb$=4I zdMmhAJrO%@0f%YW! z^gLByEGSk+R0v4*d4w*N$Ju6z#j%HBI}6y$2en=-@S3=6+yZX94m&1j@s- z7T6|#0$c~dYq9IkA!P)AGkp~S$zYJ1SXZ#RM0|E~Q0PSm?DsT4N3f^)b#h(u9%_V5 zX*&EIX|gD~P!vtx?ra71pl%v)F!W~X2hcE!h8cu@6uKURdmo1-7icN4)ej4H1N~-C zjXgOK+mi#aJv4;`DZ%QUbVVZclkx;9`2kgbAhL^d{@etnm+5N8pB#fyH)bxtZGCAv z(%t0kPgBS{Q2HtjrfI0B$$M0c?{r~2T=zeXo7V&&aprCzww=i*}Atu7g^(*ivauMz~kkB%Vt{Wydlz%%2c26%>0PAbZO zVHx%tK(uzDl#ZZK`cW8TD2)eD77wB@gum{B2bO_jnqGl~01EF_^jx4Uqu1yfA~*&g zXJ`-N?D-n~5_QNF_5+Un-4&l$1b zVlHFqtluoN85b^C{A==lp#hS9J(npJ#6P4aY41r) zzCmv~c77X5L}H%sj>5t&@0heUDy;S1gSOS>JtH1v-k5l}z2h~i3^4NF6&iMb;ZYVE zMw*0%-9GdbpF1?HHim|4+)Zed=Fk<2Uz~GKc^P(Ig@x0&XuX0<-K(gA*KkN&lY2Xu zG054Q8wbK~$jE32#Ba*Id2vkqmfV{U$Nx9vJ;jeI`X+j1kh7hB8$CBTe@ANmT^tI8 z%U>zrTKuECin-M|B*gy(SPd`(_xvxjUL?s137KOyH>U{z01cBcFFt=Fp%d+BK4U;9 zQG_W5i)JASNpK)Q0wQpL<+Ml#cei41kCHe&P9?>p+KJN>I~`I^vK1h`IKB7k^xi`f z$H_mtr_+@M>C5+_xt%v}{#WO{86J83;VS@Ei3JLtp<*+hsY1oGzo z0?$?OJO$79;{|@aP!fO6t9TJ!?8i&|c&UPWRMbkwT3nEeFH`Yyyh6b%Rm^nBuTt@9 z+$&-4lf!G|@LCo3<8=yN@5dYbc%uq|Hz|0tiiLQKiUoM9g14zyECKGv0}3AWv2WJ zUAXGUhvkNk`0-H%ACsRSmy4fJ@kxBD3ZKSj6g(n1KPw?g{v19phcBr3BEF>J%lL|d zud3LNuL;cR*xS+;X+N^Br+x2{&hDMhb-$6_fKU(Pt0FQUXgNrZvzsVCnsFqv?#L z4-FYsQ-?D>;LdjHu_TT1CHN~aGkmDjWJkJg4G^!+V_APd%_48tErDv6BW5;ji^UDD zRu5Sw7wwplk`w{OGEKWJM&61c-AWn!SeUP8G#+beH4_Ov*)NUV?eGw&GHNDI6G(1Y zTfCv?T*@{QyK|!Q09wbk5koPD>=@(cA<~i4pSO?f(^5sSbdhUc+K$DW#_7^d7i%At z?KBg#vm$?P4h%?T=XymU;w*AsO_tJr)`+HUll+Uk_zx6vNw>G3jT){w3ck+Z=>7f0 zZVkM*!k^Z_E@_pZK6uH#|vzoL{-j1VFlUHP&5~q?j=UvJJNQG ztQdiCF$8_EaN_Pu8+afN6n8?m5UeR_p_6Log$5V(n9^W)-_vS~Ws`RJhQNPb1$C?| zd9D_ePe*`aI9AZ~Ltbg)DZ;JUo@-tu*O7CJ=T)ZI1&tn%#cisS85EaSvpS~c#CN9B z#Bx$vw|E@gm{;cJOuDi3F1#fxWZ9+5JCqVRCz5o`EDW890NUfNCuBn)3!&vFQE{E$L`Cf7FMSSX%ppLH+Z}#=p zSow$)$z3IL7frW#M>Z4|^9T!=Z8}B0h*MrWXXiVschEA=$a|yX9T~o!=%C?T+l^Cc zJx&MB$me(a*@lLLWZ=>PhKs!}#!ICa0! zq%jNgnF$>zrBZ3z%)Y*yOqHbKzEe_P=@<5$u^!~9G2OAzi#}oP&UL9JljG!zf{JIK z++G*8j)K=$#57N)hj_gSA8golO7xZP|KM?elUq)qLS)i(?&lk{oGMJh{^*FgklBY@Xfl<_Q zXP~(}ST6V01$~VfOmD6j!Hi}lsE}GQikW1YmBH)`f_+)KI!t#~B7=V;{F*`umxy#2Wt8(EbQ~ks9wZS(KV5#5Tn3Ia90r{}fI%pfbqBAG zhZ)E7)ZzqA672%@izC5sBpo>dCcpXi$VNFztSQnmI&u`@zQ#bqFd9d&ls?RomgbSh z9a2rjfNiKl2bR!$Y1B*?3Ko@s^L5lQN|i6ZtiZL|w5oq%{Fb@@E*2%%j=bcma{K~9 z*g1%nEZ;0g;S84ZZ$+Rfurh;Nhq0;{t~(EIRt}D@(Jb7fbe+_@H=t&)I)gPCtj*xI z9S>k?WEAWBmJZ|gs}#{3*pR`-`!HJ)1Dkx8vAM6Tv1bHZhH=MLI;iC#Y!$c|$*R>h zjP{ETat(izXB{@tTOAC4nWNhh1_%7AVaf!kVI5D=Jf5I1!?}stbx_Yv23hLf$iUTb z-)WrTtd2X+;vBW_q*Z6}B!10fs=2FA=3gy*dljsE43!G*3Uw(Is>(-a*5E!T4}b-Y zfvOC)-HYjNfcpi`=kG%(X3XcP?;p&=pz+F^6LKqRom~pA}O* zitR+Np{QZ(D2~p_Jh-k|dL!LPmexLM?tEqI^qRDq9Mg z5XBftj3z}dFir4oScbB&{m5>s{v&U=&_trq#7i&yQN}Z~OIu0}G)>RU*`4<}@7bB% zKYxGx0#L#u199YKSWZwV$nZd>D>{mDTs4qDNyi$4QT6z~D_%Bgf?>3L#NTtvX;?2D zS3IT*2i$Snp4fjDzR#<)A``4|dA(}wv^=L?rB!;kiotwU_gma`w+@AUtkSyhwp{M} z!e`jbUR3AG4XvnBVcyIZht6Vi~?pCC!$XF2 z*V~)DBVm8H7$*OZQJYl3482hadhsI2NCz~_NINtpC?|KI6H3`SG@1d%PsDdw{u}hq zN;OU~F7L1jT&KAitilb&Fl3X12zfSuFm;X)xQWOHL&7d)Q5wgn{78QJ6k5J;is+XP zCPO8_rlGMJB-kuQ*_=Yo1TswG4xnZd&eTjc8=-$6J^8TAa~kEnRQ@Zp-_W&B(4r@F zA==}0vBzsF1mB~743XqBmL9=0RSkGn$cvHf*hyc{<2{@hW+jKjbC|y%CNupHY_NC% zivz^btBLP-cDyV8j>u)=loBs>HoI5ME)xg)oK-Q0wAy|8WD$fm>K{-`0|W{H00;;G z000j`0OWQ8aHA9e04^;603eeQIvtaXMG=2tcr1y8Fl-J;AS+=<0%DU8Bp3oEEDhA^ zOY)M8%o5+cF$rC?trfMcty*f)R;^v=f~}||Xe!#;T3eTDZELN&-50xk+J1heP5AQ>h5O#S_uO;O@;~REd*_G$x$hVeE#bchX)otXQy|S5(oB)2a2%Sc(iDHm z=d>V|a!BLp9^#)o7^EQ2kg=K4%nI^sK2w@-kmvB+ARXYdq?xC2age6)e4$^UaY=wn zgLD^{X0A+{ySY+&7RpldwpC6=E zSPq?y(rl8ZN%(A*sapd4PU+dIakIwT0=zxIJEUW0kZSo|(zFEWdETY*ZjIk9uNMUA ze11=mHu8lUUlgRx!hItf0dAF#HfdIB+#aOuY--#QN9Ry zbx|XkG?PrBb@l6Owl{9Oa9w{x^R}%GwcEEfY;L-6OU8|9RXvu`-ECS`jcO1x1MP{P zcr;Bw##*Dod9K@pEx9z9G~MiNi>8v1OU-}vk*HbI)@CM? zn~b=jWUF%HP=CS+VCP>GiAU_UOz$aq3%%Z2laq^Gx`WAEmuNScCN)OlW>YHGYFgV2 z42lO5ZANs5VMXLS-RZTvBJkWy*OeV#L;7HwWg51*E|RpFR=H}h(|N+79g)tIW!RBK ze08bg^hlygY$C2`%N>7bDm`UZ(5M~DTanh3d~dg+OcNdUanr8azO?})g}EfnUB;5- zE1FX=ru?X=zAk4_6@__o1fE+ml1r&u^f1Kb24Jf-)zKla%-dbd>UZ1 zrj3!RR!Jg`ZnllKJ)4Yfg)@z>(fFepeOcp=F-^VHv?3jSxfa}-NB~*qkJ5Uq(yn+( z<8)qbZh{C!xnO@-XC~XMNVnr-Z+paowv!$H7>`ypMwA(X4(knx7z{UcWWe-wXM!d? zYT}xaVy|7T@yCbNOoy)$D=E%hUNTm(lPZqL)?$v+-~^-1P8m@Jm2t^L%4#!JK#Vtg zyUjM+Y*!$);1<)0MUqL00L0*EZcsE&usAK-?|{l|-)b7|PBKl}?TM6~#j9F+eZq25_L&oSl}DOMv^-tacpDI)l*Ws3u+~jO@;t(T)P=HCEZ#s_5q=m zOsVY!QsOJn)&+Ge6Tm)Ww_Bd@0PY(78ZJ)7_eP-cnXYk`>j9q`x2?Xc6O@55wF+6R zUPdIX!2{VGA;FSivN@+;GNZ7H2(pTDnAOKqF*ARg+C54vZ@Ve`i?%nDDvQRh?m&`1 zq46gH)wV=;UrwfCT3F(m!Q5qYpa!#f6qr0wF=5b9rk%HF(ITc!*R3wIFaCcftGwPt z(kzx{$*>g5L<;u}HzS4XD%ml zmdStbJcY@pn`!fUmkzJ8N>*8Y+DOO^r}1f4ix-`?x|khoRvF%jiA)8)P{?$8j2_qN zcl3Lm9-s$xdYN9)>3j6BPFK)Jbovl|Sf_p((CHe!4hx@F)hd&&*Xb&{TBj>%pT;-n z{3+hA^QZYnjXxtF2XwxPZ`S#J8h>5qLwtwM-{5abbEnRS z`9_`Zq8FJiI#0syE_V_3M&trw$P=ezkHosV$8&I5c0(*-9KBE5DJOC-Xv zw}1bq~AD0_Xerm`%ryiG9_$S z5G|btfiAUNdV09SO2l9v+e#(H6HYOdQs=^ z@xwZQU)~;p1L*~ciC}9ao{nQ-@B>rpUzKBxv=cUusOP5Trs3QnvHxGh9e>s7AM{V1|HfYe z3QwH;nHHR49fYzuGc3W3l5xrDAI392SFXx>lWE3V9Ds9il3PyZaN5>oC3>9W-^7vC z3~KZ-@iD?tIkhg+6t{m;RGk2%>@I0&kf)o$+-^ls0(YABNbM(=l#ad@nKp_j=b~Xs ziR;xu_+)lxy6|+af!@}gO2H_x)p;nZ-tYxW5Omq=l`GzMp*GTLr>vZN1?e}^C$t*Z zvzEdIc2|HA2RFN_4#EkzMqKnbbw!?!?%B@M0^^5Z;K?x-%lg?Z>}wMV8zEqHZ$cr~Y#Wv>9+)KMUZatUqbRU8 z8t9qrek(H^C0Tuzq|cP2$WL7tzj+Dj5y^2SF1D154CnsB$xbz`$wV||n-cG%rsT$p z+3RHdadK(3-noj(2L#8c5lODg)V8pv(GEnNb@F>dEHQr>!qge@L>#qg)RAUtiOYqF ziiV_ETExwD)bQ<))?-9$)E(FiRBYyC@}issHS!j9n)~I1tarxnQ2LfjdIJ)*jp{0E z&1oTd%!Qbw$W58s!6ms>F z=p0!~_Mv~8jyaicOS*t(ntw`5uFi0Bc4*mH8kSkk$>!f0;FM zX_t14I55!ZVsg0O$D2iuEDb7(J>5|NKW^Z~kzm@dax z9(|As$U7^}LF%#`6r&UPB*6`!Rf74h~*C=ami6xUxYCwiJxdr$+`z zKSC4A%8!s%R&j*2si(OEc*fy!q)?%=TjDZJ2}O zxT6o>jlKXz_7_Y$N})}IG`*#KfMzs#R(SI#)3*ZEzCv%_tu(VTZ5J| zw2$5kK)xTa>xGFgS0?X(NecjzFVKG%VVn?neu=&eQ+DJ1APlY1E?Q1s!Kk=yf7Uho z>8mg_!U{cKqpvI3ucSkC2V`!d^XMDk;>GG~>6>&X_z75-kv0UjevS5ORHV^e8r{tr z-9z*y&0eq3k-&c_AKw~<`8dtjsP0XgFv6AnG?0eo5P14T{xW#b*Hn2gEnt5-KvN1z zy!TUSi>IRbD3u+h@;fn7fy{F&hAKx7dG4i!c?5_GnvYV|_d&F16p;)pzEjB{zL-zr z(0&AZUkQ!(A>ghC5U-)t7(EXb-3)tNgb=z`>8m8n+N?vtl-1i&*ftMbE~0zsKG^I$ zSbh+rUiucsb!Ax@yB}j>yGeiKIZk1Xj!i#K^I*LZW_bWQIA-}FmJ~^}>p=K$bX9F{}z{s^KWc~OK(zl_X57aB^J9v}yQ5h#BE$+C)WOglV)nd0WWtaF{7`_Ur`my>4*NleQG#xae4fIo(b zW(&|g*#YHZNvDtE|6}yHvu(hDekJ-t*f!2RK;FZHRMb*l@Qwkh*~CqQRNLaepXypX z1?%ATf_nHIu3z6gK<7Dmd;{`0a!|toT0ck|TL$U;7Wr-*piO@R)KrbUz8SXO0vr1K z>76arfrqImq!ny+VkH!4?x*IR$d6*;ZA}Mhro(mzUa?agrFZpHi*)P~4~4N;XoIvH z9N%4VK|j4mV2DRQUD!_-9fmfA2(YVYyL#S$B;vqu7fnTbAFMqH``wS7^B5=|1O&fL z)qq(oV6_u4x(I(**#mD}MnAy(C&B4a1n6V%$&=vrIDq^F_KhE5Uw8_@{V`_#M0vCu zaNUXB=n0HT@D+ppDXi8-vp{tj)?7+k>1j}VvEKRgQ~DWva}8*pp`W8~KRo*kJ*&X} zP!~2fxQr@dM*q0dI|)Fux=pZWBk==RI7i{^BQf`kWlD2%|@R9!JA7& zLbM$uJ12y}_62$|T|{)@OJZtzfpL^t@1nMTYHutrF#D+^?~CN~9`YQ@#&&@c_Zf)( zbC~y8!2LO8jHwQXv>G~1q?c68ipT*%dY&c{8wd_!Y#~tMJ7yk!F8| zt?m_CLVw6cU@@p(#h4cY&Qsfz2Xp3w^4Cg%m03Tmq~9n%hyoMH^KY7{(QkRyn_!YB zzZa!Tgr~5$MAG$x)Fs71#6j}Kvcv3=9VUX8CH< zbP3|fY8f#$K*<5JQ7whM(v=GN2k26Xsh)#0!HKS(koLgAp-;)8z0w&_Z=nG4v6n8u z&Tm0Fi){4_!Y5Kp?!zv$FKfUifQ{%c82uYfrvE{%ejUd72aNYmI*0z3-a-EYr+bB->oH3#t(AY3 zV{Z=(SJr;D#0(`u*dc*~9T7D8Pudw894%!>c4wU&V1m<~0InidR6fbi?yPl(z+sKa zdF*kS>_4^1UO>y4T%Ar>epSr5&vp`$KdY7B(F%P0@VyHk@1fJ=6X0=aGjD-)BrOJD zW}IU@hg~^2r>a1fQvjTtvL*mKJ7q;pfP*U2=URL`VB_Y_JojbZ+MS=vaVN0C6L_MV zG1#5=35-E`KsD%r>-Q_ndvJ2tOYcMMP9f*t0iJ`(Z`^+YP)h>@lR(@Wvrt-`0tHG+ zuP2R@@mx=T@fPoQ1s`e^1I0H*kQPBGDky@!ZQG@8jY-+2ihreG5q$6i{3vmDTg0j$ zzRb*-nKN@{_wD`V6+i*YS)?$XfrA-sW?js?SYU8#vXxxQCc|*K!EbpWfu)3~jwq6_@KC0m;3A%jH^18_a0;ksC2DEwa@2{9@{ z9@T??<4QwR69zk{UvcHHX;`ICOwrF;@U;etd@YE)4MzI1WCsadP=`%^B>xPS-{`=~ zZ+2im8meb#4p~XIL9}ZOBg7D8R=PC8V}ObDcxEEK(4yGKcyCQWUe{9jCs+@k!_y|I z%s{W(&>P4w@hjQ>PQL$zY+=&aDU6cWr#hG)BVCyfP)h>@3IG5I2mk;8K>)Ppba*!h z005B=001VF5fT=Y4_ytCUk`sv8hJckqSy&Gc2Jx^WJ$J~08N{il-M$fz_ML$)Cpil z(nOv_nlZB^c4s&&O3h=OLiCz&(|f0 zxWU_-JZy>hxP*gvR>CLnNeQ1~g;6{g#-}AbkIzWR;j=8=6!AHpKQCbjFYxf9h%bov zVi;eNa1>t-<14KERUW>^KwoF+8zNo`Y*WiQwq}3m0_2RYtL9Wmu`JaRaQMQ)`Si^6+VbM`!rH~T?DX2=(n4nT zf`G`(Rpq*pDk*v~wMYPZ@vMNZDMPnxMYmU!lA{Xfo?n=Ibb4y3eyY1@Dut4|Y^ml& zqs$r}jAo=B(Ml>ogeEjyv(E`=kBzPf2uv9TQtO$~bamD#=Tv`lNy(K|w$J2O6jS51 zzZtOCHDWz7W0=L1XDW5WR5mtLGc~W+>*vX5{e~U@rE~?7e>vKU-v8bj;F4#abtcV(3ZtwXo9ia93HiETyQXwW4a-0){;$OU*l` zW^bjkyZTJ6_DL^0}`*)#EZ|2nvKRzMLH9-~@Z6$v#t8Dm%(qpP+DgzNe6d)1q zBqhyF$jJTyYFvl_=a>#I8jhJ)d6SBNPg#xg2^kZ3NX8kQ74ah(Y5Z8mlXyzTD&}Q8 ziY(pj-N-V2f>&hZQJ`Di%wp2fN(I%F@l)3M8GcSdNy+#HuO{$I8NXubRlFkL)cY@b z#`v{}-^hRXEq*8B_cG=%PZvI$eo(|8Wc(2o8L#0_GX9L$1@yV>%7mGk)QTD1R*OvS z4OW;ym1)%k9Bfem0tOqq3yyAUWp&q|LsN!RDnxa|j;>R|Mm2rIv7=tej5GFaa+`#| z;7u9Z_^XV+vD@2hF8Xe63+Qd`oig6S9jX(*DbjzPb*K-H7c^7E-(~!R6E%TrgW;RvG;WS{Ziv*W*a*`9Bb;$Er3?MyF~5GcXv`k>U)n}lwv$Sp+H@IKA5$mKk0g*4Ln{!tfvITeY zzr%8JJ5BdcEYsR9eGzJ4B&$}4FMmbRU6{8{_w7Kl77@PNe7|Bc#c?5(C5&Z=kJ#(oM90D4`rh2S!|^L!P#e#1hkD5@~-- z`63GV0~*rOZSqw7k^#-Y$Q4z3Oa2SPRURqEahB1B^h{7~+p03SwzqL9QU#$3-X zdYtQ?-K5xDAdfomEd6(yPtZ!yY_<35bMedeq`z2JWorljz5-f9<^93HM-$#+acw%9r!JOM%O<|BR`W& zd-%j_?b^q7Kl6{q^N{cg2u;11rFB5EP+oqG9&pHD#_Mo@aNMj;LUvsl&nK(ca(hT( zzFc2oHC6WQv8g7jo+3ZSwK+9G$cvfRnql)?g=XeQ3+LTh3)79nhEle8OqS3T$qn(> z(=5Bg?EWq-ldEywgzXW965%H(9^ik*rH(8dNdkbcS9|ow&_r`X~R^R?B+(oTiMzzlx8KnHqUi z8Rh-)VAnS-CO+3}yxqm8)X+N+uzieFVm-F#syP#M1p5&$wX3MJ8 z+R@grZ*5G^Uh4I@VT=>C4RJNc^~3mx$kS1F{L?3)BzdduD2MZKdu#jNno&f2&d{?` zW(>$oktzY@GO{|Ln~Bt^A4)(%?l-&(Dm!iL#$K_xOyhwAf=K2<+Bom zw7|hl6E5}B$d%n0sfZvfQRy9Fyz2~ z83#=#LaHnf1th^k*p|ux8!!8pfHE!)x*%=_hAddl)P%4h4%&8!5-W#xqqb}c=H(i|wqcIS&oDQ{ zhI7N-$f$ra3=RjPmMh?-IEkJYQ<}R9Z!}wmp$#~Uc%u1oh#TP}wF*kJJmQX2#27kL z_dz(yKufo<=m71bZfLp^Ll#t3(IHkrgMcvx@~om%Ib(h(<$Da7urTI`x|%`wD--sN zJEEa>4DGSEG?0ulkosfj8IMNN4)B=ZtvGG{|4Fp=Xhg!wPNgYzS>{Bp%%Qa+624X@ X49Luk)baa85H9$5YCsTPT`SVRWMtMW diff --git a/src-java/gradle/wrapper/gradle-wrapper.properties b/src-java/gradle/wrapper/gradle-wrapper.properties index 549d84424d0..2e6e5897b52 100644 --- a/src-java/gradle/wrapper/gradle-wrapper.properties +++ b/src-java/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/src-java/gradlew b/src-java/gradlew index 4f906e0c811..1b6c787337f 100755 --- a/src-java/gradlew +++ b/src-java/gradlew @@ -1,7 +1,7 @@ -#!/usr/bin/env sh +#!/bin/sh # -# Copyright 2015 the original author or authors. +# Copyright © 2015-2021 the original authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -17,67 +17,101 @@ # ############################################################################## -## -## Gradle start up script for UN*X -## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# ############################################################################## # Attempt to set APP_HOME + # Resolve links: $0 may be a link -PRG="$0" -# Need this for relative symlinks. -while [ -h "$PRG" ] ; do - ls=`ls -ld "$PRG"` - link=`expr "$ls" : '.*-> \(.*\)$'` - if expr "$link" : '/.*' > /dev/null; then - PRG="$link" - else - PRG=`dirname "$PRG"`"/$link" - fi +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac done -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >/dev/null -APP_HOME="`pwd -P`" -cd "$SAVED" >/dev/null + +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit APP_NAME="Gradle" -APP_BASE_NAME=`basename "$0"` +APP_BASE_NAME=${0##*/} # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' # Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD="maximum" +MAX_FD=maximum warn () { echo "$*" -} +} >&2 die () { echo echo "$*" echo exit 1 -} +} >&2 # OS specific support (must be 'true' or 'false'). cygwin=false msys=false darwin=false nonstop=false -case "`uname`" in - CYGWIN* ) - cygwin=true - ;; - Darwin* ) - darwin=true - ;; - MINGW* ) - msys=true - ;; - NONSTOP* ) - nonstop=true - ;; +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; esac CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar @@ -87,9 +121,9 @@ CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar if [ -n "$JAVA_HOME" ] ; then if [ -x "$JAVA_HOME/jre/sh/java" ] ; then # IBM's JDK on AIX uses strange locations for the executables - JAVACMD="$JAVA_HOME/jre/sh/java" + JAVACMD=$JAVA_HOME/jre/sh/java else - JAVACMD="$JAVA_HOME/bin/java" + JAVACMD=$JAVA_HOME/bin/java fi if [ ! -x "$JAVACMD" ] ; then die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME @@ -98,7 +132,7 @@ Please set the JAVA_HOME variable in your environment to match the location of your Java installation." fi else - JAVACMD="java" + JAVACMD=java which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the @@ -106,80 +140,95 @@ location of your Java installation." fi # Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then - MAX_FD_LIMIT=`ulimit -H -n` - if [ $? -eq 0 ] ; then - if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then - MAX_FD="$MAX_FD_LIMIT" - fi - ulimit -n $MAX_FD - if [ $? -ne 0 ] ; then - warn "Could not set maximum file descriptor limit: $MAX_FD" - fi - else - warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" - fi +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac fi -# For Darwin, add options to specify how the application appears in the dock -if $darwin; then - GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" -fi +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. # For Cygwin or MSYS, switch paths to Windows format before running java -if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then - APP_HOME=`cygpath --path --mixed "$APP_HOME"` - CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` - - JAVACMD=`cygpath --unix "$JAVACMD"` - - # We build the pattern for arguments to be converted via cygpath - ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` - SEP="" - for dir in $ROOTDIRSRAW ; do - ROOTDIRS="$ROOTDIRS$SEP$dir" - SEP="|" - done - OURCYGPATTERN="(^($ROOTDIRS))" - # Add a user-defined pattern to the cygpath arguments - if [ "$GRADLE_CYGPATTERN" != "" ] ; then - OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" - fi +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + # Now convert the arguments - kludge to limit ourselves to /bin/sh - i=0 - for arg in "$@" ; do - CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` - CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option - - if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition - eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` - else - eval `echo args$i`="\"$arg\"" + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) fi - i=`expr $i + 1` + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg done - case $i in - 0) set -- ;; - 1) set -- "$args0" ;; - 2) set -- "$args0" "$args1" ;; - 3) set -- "$args0" "$args1" "$args2" ;; - 4) set -- "$args0" "$args1" "$args2" "$args3" ;; - 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; - 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; - 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; - 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; - 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; - esac fi -# Escape application args -save () { - for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done - echo " " -} -APP_ARGS=`save "$@"` +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# -# Collect all arguments for the java command, following the shell quoting and substitution rules -eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' exec "$JAVACMD" "$@" diff --git a/src-java/grpc-speaker/grpc-service/build.gradle b/src-java/grpc-speaker/grpc-service/build.gradle index 827ef870384..39d32f2b15c 100644 --- a/src-java/grpc-speaker/grpc-service/build.gradle +++ b/src-java/grpc-speaker/grpc-service/build.gradle @@ -4,7 +4,7 @@ plugins { configurations { // This conflicts with spring-boot-starter-log4j2 - compile.exclude module: 'spring-boot-starter-logging' + implementation.exclude module: 'spring-boot-starter-logging' } description = 'GRPC service' @@ -73,7 +73,7 @@ dependencies { compileJava { options.compilerArgs = [ - "-Amapstruct.defaultComponentModel=spring" + '-Amapstruct.defaultComponentModel=spring' ] } diff --git a/src-java/isllatency-topology/isllatency-storm-topology/build.gradle b/src-java/isllatency-topology/isllatency-storm-topology/build.gradle index 46438e4aef3..580742c0166 100644 --- a/src-java/isllatency-topology/isllatency-storm-topology/build.gradle +++ b/src-java/isllatency-topology/isllatency-storm-topology/build.gradle @@ -9,13 +9,13 @@ compileJava.ajc.options.compilerArgs += '-verbose' description = 'Isl Latency Storm Topology' dependencies { implementation project(':base-storm-topology') - runtimeClasspath project(path: ':base-storm-topology', configuration: 'releaseArtifacts') + runtimeOnly project(path: ':base-storm-topology', configuration: 'releaseArtifacts') testImplementation project(path: ':base-storm-topology', configuration: 'testArtifacts') implementation project(':isllatency-messaging') implementation project(':network-messaging') implementation project(':floodlight-api') - runtimeClasspath project(':kilda-persistence-orientdb') - runtimeClasspath project(':kilda-persistence-hibernate') + runtimeOnly project(':kilda-persistence-orientdb') + runtimeOnly project(':kilda-persistence-hibernate') aspect project(':kilda-persistence-api') testImplementation project(path: ':kilda-persistence-api', configuration: 'testArtifacts') testImplementation project(path: ':kilda-persistence-tinkerpop', configuration: 'testArtifacts') diff --git a/src-java/nbworker-topology/nbworker-storm-topology/build.gradle b/src-java/nbworker-topology/nbworker-storm-topology/build.gradle index e5469828d76..af2963cebfc 100644 --- a/src-java/nbworker-topology/nbworker-storm-topology/build.gradle +++ b/src-java/nbworker-topology/nbworker-storm-topology/build.gradle @@ -16,13 +16,13 @@ dependencies { implementation project(':base-storm-topology') implementation project(':blue-green') aspect project(':base-storm-topology') - runtimeClasspath project(path: ':base-storm-topology', configuration: 'releaseArtifacts') + runtimeOnly project(path: ':base-storm-topology', configuration: 'releaseArtifacts') testImplementation project(path: ':base-storm-topology', configuration: 'testArtifacts') implementation project(':kilda-pce') implementation project(':kilda-reporting') implementation project(':floodlight-api') - runtimeClasspath project(':kilda-persistence-orientdb') - runtimeClasspath project(':kilda-persistence-hibernate') + runtimeOnly project(':kilda-persistence-orientdb') + runtimeOnly project(':kilda-persistence-hibernate') testImplementation project(path: ':kilda-persistence-api', configuration: 'testArtifacts') testImplementation project(path: ':kilda-persistence-tinkerpop', configuration: 'testArtifacts') diff --git a/src-java/network-topology/network-storm-topology/build.gradle b/src-java/network-topology/network-storm-topology/build.gradle index 4f5bc17ba6b..014ff6d25b3 100644 --- a/src-java/network-topology/network-storm-topology/build.gradle +++ b/src-java/network-topology/network-storm-topology/build.gradle @@ -12,7 +12,7 @@ dependencies { implementation project(':network-messaging') implementation project(':swmanager-messaging') implementation project(':base-storm-topology') - runtimeClasspath project(path: ':base-storm-topology', configuration: 'releaseArtifacts') + runtimeOnly project(path: ':base-storm-topology', configuration: 'releaseArtifacts') testImplementation project(path: ':base-storm-topology', configuration: 'testArtifacts') implementation project(':kilda-reporting') implementation project(':nbworker-messaging') @@ -21,8 +21,8 @@ dependencies { implementation project(':ping-messaging') implementation project(':floodlight-api') implementation project(':grpc-api') - runtimeClasspath project(':kilda-persistence-orientdb') - runtimeClasspath project(':kilda-persistence-hibernate') + runtimeOnly project(':kilda-persistence-orientdb') + runtimeOnly project(':kilda-persistence-hibernate') aspect project(':kilda-persistence-api') testImplementation project(path: ':kilda-persistence-tinkerpop', configuration: 'testArtifacts') testImplementation project(':kilda-utils:stubs') diff --git a/src-java/northbound-service/northbound/build.gradle b/src-java/northbound-service/northbound/build.gradle index 8b12deef0be..adbae5bc850 100644 --- a/src-java/northbound-service/northbound/build.gradle +++ b/src-java/northbound-service/northbound/build.gradle @@ -3,7 +3,8 @@ plugins { } configurations { - compile.exclude module: 'spring-boot-starter-logging' + // This conflicts with spring-boot-starter-log4j2 + implementation.exclude module: 'spring-boot-starter-logging' } description = 'Northbound Service' @@ -19,8 +20,8 @@ dependencies { implementation project(':floodlight-api') implementation project(':kilda-persistence-api') implementation project(':blue-green') - runtimeClasspath project(':kilda-persistence-orientdb') - runtimeClasspath project(':kilda-persistence-hibernate') + runtimeOnly project(':kilda-persistence-orientdb') + runtimeOnly project(':kilda-persistence-hibernate') implementation project(':kilda-configuration') testImplementation project(':kilda-utils:stubs') diff --git a/src-java/opentsdb-topology/opentsdb-storm-topology/build.gradle b/src-java/opentsdb-topology/opentsdb-storm-topology/build.gradle index 12313ad09fb..cceb406927b 100644 --- a/src-java/opentsdb-topology/opentsdb-storm-topology/build.gradle +++ b/src-java/opentsdb-topology/opentsdb-storm-topology/build.gradle @@ -9,14 +9,14 @@ compileJava.ajc.options.compilerArgs += '-verbose' description = 'OpenTSDB Storm Topology' dependencies { implementation project(':base-storm-topology') - runtimeClasspath project(path: ':base-storm-topology', configuration: 'releaseArtifacts') + runtimeOnly project(path: ':base-storm-topology', configuration: 'releaseArtifacts') testImplementation project(path: ':base-storm-topology', configuration: 'testArtifacts') implementation project(':kilda-reporting') testImplementation project(path: ':kilda-persistence-tinkerpop', configuration: 'testArtifacts') implementation project(':blue-green') - runtimeClasspath 'org.yaml:snakeyaml:1.15' - runtimeClasspath 'commons-logging:commons-logging:1.2' + runtimeOnly 'org.yaml:snakeyaml:1.15' + runtimeOnly 'commons-logging:commons-logging:1.2' implementation('org.apache.storm:storm-opentsdb:1.2.1') { exclude group: 'org.apache.httpcomponents', module: 'httpclient' // This conflicts with jcl-over-slf4j diff --git a/src-java/ping-topology/ping-storm-topology/build.gradle b/src-java/ping-topology/ping-storm-topology/build.gradle index 2486841b96c..bad181cc754 100644 --- a/src-java/ping-topology/ping-storm-topology/build.gradle +++ b/src-java/ping-topology/ping-storm-topology/build.gradle @@ -10,13 +10,13 @@ description = 'Ping Storm Topology' dependencies { implementation project(':ping-messaging') implementation project(':base-storm-topology') - runtimeClasspath project(path: ':base-storm-topology', configuration: 'releaseArtifacts') + runtimeOnly project(path: ':base-storm-topology', configuration: 'releaseArtifacts') testImplementation project(path: ':base-storm-topology', configuration: 'testArtifacts') implementation project(':kilda-reporting') implementation project(':floodlight-api') implementation project(':blue-green') - runtimeClasspath project(':kilda-persistence-orientdb') - runtimeClasspath project(':kilda-persistence-hibernate') + runtimeOnly project(':kilda-persistence-orientdb') + runtimeOnly project(':kilda-persistence-hibernate') aspect project(':kilda-persistence-api') compileOnly('org.apache.storm:storm-core') diff --git a/src-java/portstate-topology/portstate-storm-topology/build.gradle b/src-java/portstate-topology/portstate-storm-topology/build.gradle index 44d26b91dcc..8f726ad2000 100644 --- a/src-java/portstate-topology/portstate-storm-topology/build.gradle +++ b/src-java/portstate-topology/portstate-storm-topology/build.gradle @@ -9,14 +9,14 @@ compileJava.ajc.options.compilerArgs += '-verbose' description = 'Port State Storm Topology' dependencies { implementation project(':base-storm-topology') - runtimeClasspath project(path: ':base-storm-topology', configuration: 'releaseArtifacts') + runtimeOnly project(path: ':base-storm-topology', configuration: 'releaseArtifacts') implementation project(':kilda-reporting') implementation project(':network-messaging') implementation project(':nbworker-messaging') implementation project(':floodlight-api') implementation project(':blue-green') - runtimeClasspath project(':kilda-persistence-orientdb') - runtimeClasspath project(':kilda-persistence-hibernate') + runtimeOnly project(':kilda-persistence-orientdb') + runtimeOnly project(':kilda-persistence-hibernate') compileOnly('org.apache.storm:storm-core') diff --git a/src-java/projectfloodlight/floodlight/build.gradle b/src-java/projectfloodlight/floodlight/build.gradle index 4dcd26bc872..9ae86c7c3ef 100644 --- a/src-java/projectfloodlight/floodlight/build.gradle +++ b/src-java/projectfloodlight/floodlight/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java-base' - id 'org.ajoberstar.grgit' version '4.0.2' apply false + id 'org.ajoberstar.grgit' version '4.1.1' apply false } group = 'org.projectfloodlight' @@ -43,12 +43,12 @@ task cloneFloodlightRepo { grgit.checkout(branch: versionTag) grgit.close() } catch (Exception e) { - logger.warn("Failed to fetch floodlight from git: {}", e.getMessage()) + logger.warn('Failed to fetch floodlight from git: {}', e.getMessage()) } } else { def repoUri = 'https://github.com/kilda/floodlight.git' - if (project.hasProperty("floodlightGitRepo")) { - repoUri = project.property("floodlightGitRepo") + if (project.hasProperty('floodlightGitRepo')) { + repoUri = project.property('floodlightGitRepo') } def grgit = Grgit.clone(dir: repo.absolutePath, uri: repoUri, refToCheckout: versionTag) grgit.close() diff --git a/src-java/projectfloodlight/openflowj/build.gradle b/src-java/projectfloodlight/openflowj/build.gradle index e062bf243b0..39dd089aa5f 100644 --- a/src-java/projectfloodlight/openflowj/build.gradle +++ b/src-java/projectfloodlight/openflowj/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java-base' - id 'org.ajoberstar.grgit' version '4.0.2' apply false + id 'org.ajoberstar.grgit' version '4.1.1' apply false } group = 'org.projectfloodlight' @@ -42,8 +42,8 @@ task cloneLoxigenRepo { } } else { def repoUri = 'https://github.com/kilda/loxigen.git' - if (project.hasProperty("loxigenGitRepo")) { - repoUri = project.property("loxigenGitRepo") + if (project.hasProperty('loxigenGitRepo')) { + repoUri = project.property('loxigenGitRepo') } def grgit = Grgit.clone(dir: repo.absolutePath, uri: repoUri, refToCheckout: 'STABLE') grgit.close() diff --git a/src-java/reroute-topology/reroute-storm-topology/build.gradle b/src-java/reroute-topology/reroute-storm-topology/build.gradle index 7fc0d6bcdda..18c5fffd44f 100644 --- a/src-java/reroute-topology/reroute-storm-topology/build.gradle +++ b/src-java/reroute-topology/reroute-storm-topology/build.gradle @@ -13,11 +13,11 @@ dependencies { implementation project(':base-storm-topology') implementation project(':blue-green') aspect project(':base-storm-topology') - runtimeClasspath project(path: ':base-storm-topology', configuration: 'releaseArtifacts') + runtimeOnly project(path: ':base-storm-topology', configuration: 'releaseArtifacts') testImplementation project(path: ':base-storm-topology', configuration: 'testArtifacts') implementation project(':kilda-reporting') - runtimeClasspath project(':kilda-persistence-orientdb') - runtimeClasspath project(':kilda-persistence-hibernate') + runtimeOnly project(':kilda-persistence-orientdb') + runtimeOnly project(':kilda-persistence-hibernate') compileOnly('org.apache.storm:storm-core') diff --git a/src-java/server42/server42-control-server-stub/build.gradle b/src-java/server42/server42-control-server-stub/build.gradle index de86d5638d4..929bb048684 100644 --- a/src-java/server42/server42-control-server-stub/build.gradle +++ b/src-java/server42/server42-control-server-stub/build.gradle @@ -4,7 +4,7 @@ plugins { configurations { // This conflicts with spring-boot-starter-log4j2 - compile.exclude module: 'spring-boot-starter-logging' + implementation.exclude module: 'spring-boot-starter-logging' } dependencies { diff --git a/src-java/server42/server42-control-storm-stub/build.gradle b/src-java/server42/server42-control-storm-stub/build.gradle index 5575d221450..815390f8476 100644 --- a/src-java/server42/server42-control-storm-stub/build.gradle +++ b/src-java/server42/server42-control-storm-stub/build.gradle @@ -4,7 +4,7 @@ plugins { configurations { // This conflicts with spring-boot-starter-log4j2 - compile.exclude module: 'spring-boot-starter-logging' + implementation.exclude module: 'spring-boot-starter-logging' } description = 'server42-control-storm-stub' diff --git a/src-java/server42/server42-control-storm-topology/build.gradle b/src-java/server42/server42-control-storm-topology/build.gradle index ea37c5a6c29..5ebbb1b5cbd 100644 --- a/src-java/server42/server42-control-storm-topology/build.gradle +++ b/src-java/server42/server42-control-storm-topology/build.gradle @@ -10,14 +10,14 @@ description = 'Server42 Control Storm Topology' dependencies { implementation project(':network-messaging') implementation project(':base-storm-topology') - runtimeClasspath project(path: ':base-storm-topology', configuration: 'releaseArtifacts') + runtimeOnly project(path: ':base-storm-topology', configuration: 'releaseArtifacts') testImplementation project(path: ':base-storm-topology', configuration: 'testArtifacts') implementation project(':nbworker-messaging') implementation project(':server42-control-messaging') implementation project(':server42-messaging') - runtimeClasspath project(':kilda-persistence-orientdb') - runtimeClasspath project(':kilda-persistence-hibernate') + runtimeOnly project(':kilda-persistence-orientdb') + runtimeOnly project(':kilda-persistence-hibernate') aspect project(':kilda-persistence-api') testImplementation project(path: ':kilda-persistence-tinkerpop', configuration: 'testArtifacts') diff --git a/src-java/server42/server42-control/build.gradle b/src-java/server42/server42-control/build.gradle index c942a23c471..75e218be9bf 100644 --- a/src-java/server42/server42-control/build.gradle +++ b/src-java/server42/server42-control/build.gradle @@ -4,7 +4,7 @@ plugins { configurations { // This conflicts with spring-boot-starter-log4j2 - compile.exclude module: 'spring-boot-starter-logging' + implementation.exclude module: 'spring-boot-starter-logging' } description = 'server42-control' diff --git a/src-java/server42/server42-stats/build.gradle b/src-java/server42/server42-stats/build.gradle index 4bcc752e6a6..d19ee85a135 100644 --- a/src-java/server42/server42-stats/build.gradle +++ b/src-java/server42/server42-stats/build.gradle @@ -4,7 +4,7 @@ plugins { configurations { // This conflicts with spring-boot-starter-log4j2 - compile.exclude module: 'spring-boot-starter-logging' + implementation.exclude module: 'spring-boot-starter-logging' } description = 'server42-stats' diff --git a/src-java/stats-topology/stats-storm-topology/build.gradle b/src-java/stats-topology/stats-storm-topology/build.gradle index 88efb9f5db6..08ac74df2b6 100644 --- a/src-java/stats-topology/stats-storm-topology/build.gradle +++ b/src-java/stats-topology/stats-storm-topology/build.gradle @@ -10,14 +10,14 @@ description = 'Stats Storm Topology' dependencies { implementation project(':stats-messaging') implementation project(':base-storm-topology') - runtimeClasspath project(path: ':base-storm-topology', configuration: 'releaseArtifacts') + runtimeOnly project(path: ':base-storm-topology', configuration: 'releaseArtifacts') testImplementation project(path: ':base-storm-topology', configuration: 'testArtifacts') implementation project(':kilda-reporting') implementation project(':floodlight-api') implementation project(':grpc-api') implementation project(':blue-green') - runtimeClasspath project(':kilda-persistence-orientdb') - runtimeClasspath project(':kilda-persistence-hibernate') + runtimeOnly project(':kilda-persistence-orientdb') + runtimeOnly project(':kilda-persistence-hibernate') aspect project(':kilda-persistence-api') testImplementation project(path: ':kilda-persistence-tinkerpop', configuration: 'testArtifacts') diff --git a/src-java/swmanager-topology/swmanager-storm-topology/build.gradle b/src-java/swmanager-topology/swmanager-storm-topology/build.gradle index cbaba6b453c..205e7024795 100644 --- a/src-java/swmanager-topology/swmanager-storm-topology/build.gradle +++ b/src-java/swmanager-topology/swmanager-storm-topology/build.gradle @@ -12,13 +12,13 @@ dependencies { implementation project(':swmanager-messaging') implementation project(':grpc-api') aspect project(':base-storm-topology') - runtimeClasspath project(path: ':base-storm-topology', configuration: 'releaseArtifacts') + runtimeOnly project(path: ':base-storm-topology', configuration: 'releaseArtifacts') testImplementation project(path: ':base-storm-topology', configuration: 'testArtifacts') implementation project(':flowhs-messaging') implementation project(':floodlight-api') implementation project(':kilda-reporting') - runtimeClasspath project(':kilda-persistence-orientdb') - runtimeClasspath project(':kilda-persistence-hibernate') + runtimeOnly project(':kilda-persistence-orientdb') + runtimeOnly project(':kilda-persistence-hibernate') implementation project(':blue-green') compileOnly('org.apache.storm:storm-core') diff --git a/src-java/testing/functional-tests/build.gradle b/src-java/testing/functional-tests/build.gradle index a1d617b9b78..f57f96aea8b 100644 --- a/src-java/testing/functional-tests/build.gradle +++ b/src-java/testing/functional-tests/build.gradle @@ -1,7 +1,7 @@ plugins { id 'groovy' - id 'com.adarshr.test-logger' version '3.0.0' - id "org.gradle.test-retry" version "1.2.1" + id 'com.adarshr.test-logger' version '3.1.0' + id 'org.gradle.test-retry' version '1.3.1' } description = 'Functional-Tests' @@ -64,7 +64,7 @@ task functionalTest(type: Test, dependsOn: 'compileGroovy') { } Properties properties = new Properties() - File propertiesFile = file("kilda.properties.example") + File propertiesFile = file('kilda.properties.example') propertiesFile.withInputStream { properties.load(it) } @@ -91,11 +91,11 @@ tasks.withType(Test) { //if there is a failed/unstable test, create log file for further processing in Jenkins pipeline def unstableLog = new File("${project.buildDir}/test-results/unstable.log").tap { it.parentFile.mkdirs() - it.write "false" + it.write 'false' } afterTest { desc, result -> - if ("FAILURE" == result.resultType as String) { - unstableLog.write "true" + if ('FAILURE' == result.resultType as String) { + unstableLog.write 'true' } } retry { //test-retry plugin config diff --git a/src-java/testing/performance-tests/build.gradle b/src-java/testing/performance-tests/build.gradle index 88edcff4eca..f8575ecdd42 100644 --- a/src-java/testing/performance-tests/build.gradle +++ b/src-java/testing/performance-tests/build.gradle @@ -43,7 +43,7 @@ task performanceTest(type: Test, dependsOn: 'compileGroovy') { include '**/performancetests/**' systemProperty 'tags', System.getProperty('tags') Properties properties = new Properties() - File propertiesFile = file("kilda.properties.example") + File propertiesFile = file('kilda.properties.example') propertiesFile.withInputStream { properties.load(it) } diff --git a/src-java/testing/test-library/build.gradle b/src-java/testing/test-library/build.gradle index 197949d59b3..2bcf5698f00 100644 --- a/src-java/testing/test-library/build.gradle +++ b/src-java/testing/test-library/build.gradle @@ -5,7 +5,7 @@ plugins { description = 'Test-Library' dependencies { implementation(platform('org.springframework:spring-framework-bom:5.2.13.RELEASE')) - compile 'org.springframework.boot:spring-boot-autoconfigure:2.2.13.RELEASE' + implementation 'org.springframework.boot:spring-boot-autoconfigure:2.2.13.RELEASE' api project(':base-messaging') api project(':flowhs-messaging') From 9ff146b9bff9ef4e32128aba98d02ddc06a4a8ca Mon Sep 17 00:00:00 2001 From: Neeraj Kumar Date: Tue, 28 Dec 2021 17:52:16 +0530 Subject: [PATCH 32/46] design changes in bfd properties update --- .../isl/isl-detail/isl-detail.component.css | 7 + .../isl/isl-detail/isl-detail.component.html | 660 ++++++++++-------- 2 files changed, 377 insertions(+), 290 deletions(-) diff --git a/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.css b/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.css index a8379f2c385..db34f70dfb1 100644 --- a/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.css +++ b/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.css @@ -66,4 +66,11 @@ i.icon { .isl_details_div .col-form-label { line-height: 1; +} + +.update_isl_cost{ +padding-left: 0px; +} +.isl_delete_dropdown .dropdown-menu{ + min-width: 120px; } \ No newline at end of file diff --git a/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html b/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html index bcf385fa0cc..0fcc6c9c225 100644 --- a/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html +++ b/src-gui/ui/src/app/modules/isl/isl-detail/isl-detail.component.html @@ -2,7 +2,7 @@
-
+

@@ -11,13 +11,14 @@

-
- {{src_switch}} -
+
+ {{src_switch}} +
- +
- +
+ +
+ +
+ + +
+
+
@@ -62,14 +77,15 @@
- -
- {{dst_switch }} -
+ +
+ {{dst_switch }} +
- +
-
- {{dst_switch_name}} -
+
+ {{dst_switch_name}} +
-
+
{{bfdPropertyData.effective_destination.properties['interval_ms']}}
-
- {{bfdPropertyData.effective_destination.properties['multiplier']}} +
+ {{bfdPropertyData.effective_destination.properties['multiplier']}}
@@ -101,123 +117,138 @@