-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
22 changed files
with
2,691 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
frontend |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,156 @@ | ||
<!-- | ||
Copyright (c) 2023 Contributors to the Eclipse Foundation | ||
This program and the accompanying materials are made | ||
available under the terms of the Eclipse Public License 2.0 | ||
which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
SPDX-License-Identifier: EPL-2.0 | ||
--> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-parent</artifactId> | ||
<version>3.1.5</version> | ||
</parent> | ||
|
||
<groupId>com.eclipse.hawkbit</groupId> | ||
<artifactId>hawkbit-simple-ui</artifactId> | ||
|
||
<name>hawkBit :: Runtime :: Simple UI</name> | ||
<version>0.4.0-SNAPSHOT</version> | ||
<packaging>jar</packaging> | ||
|
||
<properties> | ||
<java.version>17</java.version> | ||
<vaadin.version>24.2.2</vaadin.version> | ||
<spring-cloud-starter-openfeign.version>4.0.4</spring-cloud-starter-openfeign.version> | ||
</properties> | ||
|
||
<repositories> | ||
<repository> | ||
<id>Vaadin Repo</id> | ||
<url>https://maven.vaadin.com/vaadin-addons</url> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
|
||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.vaadin</groupId> | ||
<artifactId>vaadin-bom</artifactId> | ||
<version>${vaadin.version}</version> | ||
<type>pom</type> | ||
<scope>import</scope> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.eclipse.hawkbit</groupId> | ||
<artifactId>hawkbit-mgmt-api</artifactId> | ||
<version>0.4.0-SNAPSHOT</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>com.vaadin</groupId> | ||
<artifactId>vaadin-core</artifactId> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>com.vaadin</groupId> | ||
<artifactId>vaadin-dev</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.vaadin</groupId> | ||
<artifactId>vaadin-spring-boot-starter</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-security</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.cloud</groupId> | ||
<artifactId>spring-cloud-starter-openfeign</artifactId> | ||
<version>${spring-cloud-starter-openfeign.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.github.openfeign</groupId> | ||
<artifactId>feign-hc5</artifactId> | ||
<version>13.0</version> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-validation</artifactId> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<defaultGoal>spring-boot:run</defaultGoal> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>com.vaadin</groupId> | ||
<artifactId>vaadin-maven-plugin</artifactId> | ||
<version>${vaadin.version}</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>build-frontend</goal> | ||
</goals> | ||
<phase>compile</phase> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
|
||
<!-- TODO - to check license - remove after the parent become a hawkBit pom --> | ||
<plugin> | ||
<groupId>com.mycila</groupId> | ||
<artifactId>license-maven-plugin</artifactId> | ||
<version>2.11</version> | ||
<configuration> | ||
<header>licenses/LICENSE_HEADER_TEMPLATE.txt</header> | ||
<excludes> | ||
<exclude>**/banner.txt</exclude> | ||
<exclude>**/README.md</exclude> | ||
<exclude>**/frontend/**</exclude> | ||
</excludes> | ||
<mapping> | ||
<scss>JAVADOC_STYLE</scss> | ||
</mapping> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<!-- TODO - to specify license - remove after the parent become a hawkBit pom --> | ||
<licenses> | ||
<license> | ||
<name>EPL-2.0</name> | ||
<url>https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt</url> | ||
<comments>Eclipse Public License - Version 2.0</comments> | ||
</license> | ||
</licenses> | ||
</project> |
122 changes: 122 additions & 0 deletions
122
hawkbit-runtime/hawkbit-simple-ui/src/main/java/com/eclipse/hawkbit/ui/HawkbitClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
/** | ||
* Copyright (c) 2023 Contributors to the Eclipse Foundation | ||
* | ||
* This program and the accompanying materials are made | ||
* available under the terms of the Eclipse Public License 2.0 | ||
* which is available at https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
*/ | ||
package com.eclipse.hawkbit.ui; | ||
|
||
import com.eclipse.hawkbit.ui.view.util.Utils; | ||
import com.vaadin.flow.component.UI; | ||
import feign.Client; | ||
import feign.Contract; | ||
import feign.Feign; | ||
import feign.FeignException; | ||
import feign.RequestInterceptor; | ||
import feign.Response; | ||
import feign.codec.Decoder; | ||
import feign.codec.Encoder; | ||
import feign.codec.ErrorDecoder; | ||
import lombok.Getter; | ||
import org.eclipse.hawkbit.mgmt.rest.api.MgmtDistributionSetRestApi; | ||
import org.eclipse.hawkbit.mgmt.rest.api.MgmtDistributionSetTagRestApi; | ||
import org.eclipse.hawkbit.mgmt.rest.api.MgmtDistributionSetTypeRestApi; | ||
import org.eclipse.hawkbit.mgmt.rest.api.MgmtRolloutRestApi; | ||
import org.eclipse.hawkbit.mgmt.rest.api.MgmtSoftwareModuleRestApi; | ||
import org.eclipse.hawkbit.mgmt.rest.api.MgmtSoftwareModuleTypeRestApi; | ||
import org.eclipse.hawkbit.mgmt.rest.api.MgmtTargetFilterQueryRestApi; | ||
import org.eclipse.hawkbit.mgmt.rest.api.MgmtTargetRestApi; | ||
import org.eclipse.hawkbit.mgmt.rest.api.MgmtTargetTagRestApi; | ||
import org.eclipse.hawkbit.mgmt.rest.api.MgmtTargetTypeRestApi; | ||
import org.springframework.http.ResponseEntity; | ||
import org.springframework.security.core.Authentication; | ||
import org.springframework.security.core.context.SecurityContextHolder; | ||
|
||
import java.util.Base64; | ||
import java.util.Objects; | ||
import java.util.function.Supplier; | ||
|
||
import static feign.Util.ISO_8859_1; | ||
|
||
@Getter | ||
public class HawkbitClient { | ||
|
||
private static final RequestInterceptor AUTHORIZATION = requestTemplate -> { | ||
final Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); | ||
requestTemplate.header("Authorization", "Basic " + Base64.getEncoder().encodeToString( | ||
(Objects.requireNonNull(authentication.getPrincipal(), "User is null!") + ":" + Objects.requireNonNull( | ||
authentication.getCredentials(), "Password is not available!")).getBytes(ISO_8859_1))); | ||
}; | ||
|
||
private final String hawkbitUrl; | ||
private final MgmtSoftwareModuleRestApi softwareModuleRestApi; | ||
private final MgmtSoftwareModuleTypeRestApi softwareModuleTypeRestApi; | ||
private final MgmtDistributionSetRestApi distributionSetRestApi; | ||
private final MgmtDistributionSetTypeRestApi distributionSetTypeRestApi; | ||
private final MgmtDistributionSetTagRestApi distributionSetTagRestApi; | ||
private final MgmtTargetRestApi targetRestApi; | ||
private final MgmtTargetTypeRestApi targetTypeRestApi; | ||
private final MgmtTargetTagRestApi targetTagRestApi; | ||
private final MgmtTargetFilterQueryRestApi targetFilterQueryRestApi; | ||
private final MgmtRolloutRestApi rolloutRestApi; | ||
|
||
HawkbitClient(final String hawkbitUrl, | ||
final Client client, final Encoder encoder, final Decoder decoder, final Contract contract) { | ||
this.hawkbitUrl = hawkbitUrl; | ||
|
||
softwareModuleRestApi = service(MgmtSoftwareModuleRestApi .class, client, encoder, decoder, contract); | ||
softwareModuleTypeRestApi = service(MgmtSoftwareModuleTypeRestApi.class, client, encoder, decoder, contract); | ||
distributionSetRestApi = service(MgmtDistributionSetRestApi.class, client, encoder, decoder, contract); | ||
distributionSetTypeRestApi = service(MgmtDistributionSetTypeRestApi.class, client, encoder, decoder, contract); | ||
distributionSetTagRestApi = service(MgmtDistributionSetTagRestApi.class, client, encoder, decoder, contract); | ||
targetRestApi = service(MgmtTargetRestApi.class, client, encoder, decoder, contract); | ||
targetTypeRestApi = service(MgmtTargetTypeRestApi.class, client, encoder, decoder, contract); | ||
targetTagRestApi = service(MgmtTargetTagRestApi.class, client, encoder, decoder, contract); | ||
targetFilterQueryRestApi = service(MgmtTargetFilterQueryRestApi.class, client, encoder, decoder, contract); | ||
rolloutRestApi = service(MgmtRolloutRestApi.class, client, encoder, decoder, contract); | ||
} | ||
|
||
boolean hasSoftwareModulesRead() { | ||
return hasRead(() -> softwareModuleRestApi.getSoftwareModule(-1L)); | ||
} | ||
|
||
boolean hasRolloutRead() { | ||
return hasRead(() -> rolloutRestApi.getRollout(-1L)); | ||
} | ||
|
||
boolean hasDistributionSetRead() { | ||
return hasRead(() -> distributionSetRestApi.getDistributionSet(-1L)); | ||
} | ||
|
||
boolean hasTargetRead() { | ||
return hasRead(() -> targetRestApi.getTarget("_#ETE$ER")); | ||
} | ||
|
||
private boolean hasRead(final Supplier<ResponseEntity<?>> doCall) { | ||
try { | ||
final int statusCode = doCall.get().getStatusCode().value(); | ||
return statusCode != 401 && statusCode != 403; | ||
} catch (final FeignException e) { | ||
return !(e instanceof FeignException.Unauthorized) && !(e instanceof FeignException.Forbidden); | ||
} | ||
} | ||
|
||
private static final ErrorDecoder DEFAULT_ERROR_DECODER = new ErrorDecoder.Default(); | ||
private <T> T service(final Class<T> serviceType, | ||
final Client client, final Encoder encoder, final Decoder decoder, final Contract contract) { | ||
return Feign.builder().client(client) | ||
.encoder(encoder) | ||
.decoder(decoder) | ||
.errorDecoder((methodKey, response) -> { | ||
final Exception e = DEFAULT_ERROR_DECODER.decode(methodKey, response); | ||
Utils.errorNotification(e); | ||
return e; | ||
}) | ||
.contract(contract) | ||
.requestInterceptor(AUTHORIZATION) | ||
.target(serviceType, hawkbitUrl); | ||
} | ||
} |
Oops, something went wrong.