-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: import crawler from edc-ce and cleanup
- Loading branch information
1 parent
610683c
commit fa511b3
Showing
106 changed files
with
1,094 additions
and
622 deletions.
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,75 @@ | ||
name: "Build EDC Connector Image" | ||
description: "Builds and deploys the React frontend to AWS S3" | ||
inputs: | ||
registry-url: | ||
required: true | ||
description: "Docker Registry" | ||
registry-user: | ||
required: true | ||
description: "Docker Registry Login Username" | ||
registry-password: | ||
required: true | ||
description: "Docker Registry Login Password" | ||
image-base-name: | ||
required: true | ||
description: "Docker Image Base Name (Company)" | ||
image-name: | ||
required: true | ||
description: "Docker Image Name (Artifact Name)" | ||
connector-name: | ||
required: true | ||
description: "EDC Connector Name in launchers/connectors/{connector-name}" | ||
title: | ||
required: true | ||
description: "Docker Image Title" | ||
description: | ||
required: true | ||
description: "Docker Image Description" | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: "Docker: Log in to the Container registry" | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ inputs.registry-url }} | ||
username: ${{ inputs.registry-user }} | ||
password: ${{ inputs.registry-password }} | ||
- name: "Docker: Store last commit info and build date" | ||
id: last-commit-information | ||
shell: bash | ||
run: | | ||
echo "LAST_COMMIT_INFO<<EOF" >> $GITHUB_ENV | ||
export LAST_COMMIT_INFO=$(git log -1) | ||
echo "$LAST_COMMIT_INFO" >> $GITHUB_ENV | ||
echo "EOF" >> $GITHUB_ENV | ||
echo "BUILD_DATE=$(date --utc +%FT%TZ)" >> $GITHUB_ENV | ||
- name: "Docker: Extract metadata (tags, labels)" | ||
id: meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: ${{ inputs.registry-url }}/${{ inputs.image-base-name }}/${{ inputs.image-name }} | ||
labels: | | ||
org.opencontainers.image.title=${{ inputs.title }} | ||
org.opencontainers.image.description=${{ inputs.description }} | ||
tags: | | ||
type=schedule | ||
type=semver,pattern={{version}} | ||
type=semver,pattern={{major}}.{{minor}} | ||
type=semver,pattern={{major}} | ||
type=ref,event=branch | ||
type=ref,event=pr | ||
type=sha | ||
type=raw,value=latest,enable={{is_default_branch}} | ||
type=raw,value=release,enable=${{ startsWith(github.ref, 'refs/tags/') }} | ||
- name: "Docker: Build and Push" | ||
uses: docker/build-push-action@v5 | ||
with: | ||
file: authority-portal-backend/catalog-crawler/Dockerfile | ||
context: . | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} | ||
build-args: | | ||
CONNECTOR_NAME=${{ inputs.connector-name }} | ||
"EDC_LAST_COMMIT_INFO_ARG=${{ env.LAST_COMMIT_INFO }}" | ||
EDC_BUILD_DATE_ARG=${{ env.BUILD_DATE }} |
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
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
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
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
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
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
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
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,41 @@ | ||
<!-- PROJECT LOGO --> | ||
<br /> | ||
<div align="center"> | ||
<a href="https://github.com/sovity/authority-portal"> | ||
<img src="https://raw.githubusercontent.com/sovity/edc-ui/main/src/assets/images/sovity_logo.svg" alt="Logo" width="300"> | ||
</a> | ||
|
||
<h3 align="center">EDC-Connector Extension:<br />Catalog Crawler</h3> | ||
|
||
<p align="center"> | ||
<a href="https://github.com/sovity/authority-portal/issues/new?assignees=&labels=kind%2Fbug&projects=&template=bug_report.yaml">Report Bug</a> | ||
· | ||
<a href="https://github.com/sovity/edc-ce/issues/new?template=feature_request.md">Request Feature</a> | ||
</p> | ||
</div> | ||
|
||
## About this Extension | ||
|
||
The Catalog Crawler is an additional deployment unit needed to determine the online status of registered connectors and populate the Data Catalog: | ||
|
||
- It is a modified EDC connector with the task to crawl the other connectors' public data offers. | ||
- It periodically checks the Authority Portal's connector list for its environment. | ||
- It crawls the given connectors in regular intervals. | ||
- It writes the data offers and connector statuses into the Authority Portal DB. | ||
- Each environment configured in the Authority Portal requires its own Catalog Crawler with credentials for that environment's DAPS. | ||
|
||
## Why does this component exist? | ||
|
||
The Authority Portal uses a non-EDC stack and thus it cannot read the catalogs of participating connectors directly. | ||
|
||
## Deployment | ||
|
||
Please see the [Productive Deployment Guide](../../docs/deployment-guide/goals/production/README.md) for more information. | ||
|
||
## License | ||
|
||
Apache License 2.0 - see [LICENSE](../../LICENSE) | ||
|
||
## Contact | ||
|
||
sovity GmbH - contact@sovity.de |
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
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
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
Oops, something went wrong.