forked from eclipse-tractusx/digital-product-pass
-
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: added updated infrastructure related to the new provider
- Loading branch information
Mathias Brunkow Moser
committed
Jun 26, 2023
1 parent
af72e2e
commit c69ba57
Showing
22 changed files
with
2,023 additions
and
0 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,186 @@ | ||
#!/bin/bash | ||
################################################################################# | ||
# Catena-X - Product Passport Consumer Application | ||
# | ||
# Copyright (c) 2022, 2023 BASF SE, BMW AG, Henkel AG & Co. KGaA | ||
# | ||
# See the NOTICE file(s) distributed with this work for additional | ||
# information regarding copyright ownership. | ||
# | ||
# This program and the accompanying materials are made available under the | ||
# terms of the Apache License, Version 2.0 which is available at | ||
# https://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 govern in permissions and limitations | ||
# under the License. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
################################################################################# | ||
|
||
|
||
set -o errexit | ||
set -o errtrace | ||
set -o pipefail | ||
set -o nounset | ||
|
||
DIGITAL_TWIN_1='32aa72de-297a-4405-9148-13e12744028a' | ||
DIGITAL_TWIN_SUBMODEL_ID_1='699f1245-f57e-4d6b-acdb-ab763665554a' | ||
|
||
DIGITAL_TWIN_2='1f4a64f0-aba9-498a-917c-4936c24c50cd' | ||
DIGITAL_TWIN_SUBMODEL_ID_2='49a06ad2-64b7-46c8-9f3b-a718c462ca23' | ||
|
||
DIGITAL_TWIN_3='365e6fbe-bb34-11ec-8422-0242ac120002' | ||
DIGITAL_TWIN_SUBMODEL_ID_3='61125dc3-5e6f-4f4b-838d-447432b97918' | ||
|
||
DIGITAL_TWIN_4='1f0ef836-40b7-4f31-a9bd-cb6a8960779e' | ||
DIGITAL_TWIN_SUBMODEL_ID_4='26bf39c5-68a5-43a1-8db7-d33e116a6f61' | ||
|
||
SERVER_URL='<Introduce your provider EDC url here>' | ||
REGISTRY_URL='<Introduce the digital twin registry url here>' | ||
|
||
|
||
# put access token without 'Bearer ' prefix | ||
BEARER_TOKEN='' | ||
|
||
API_KEY='' | ||
ASSET_ID_1=${DIGITAL_TWIN_1}-${DIGITAL_TWIN_SUBMODEL_ID_1} | ||
ASSET_ID_2=${DIGITAL_TWIN_2}-${DIGITAL_TWIN_SUBMODEL_ID_2} | ||
ASSET_ID_3=${DIGITAL_TWIN_3}-${DIGITAL_TWIN_SUBMODEL_ID_3} | ||
ASSET_ID_4=${DIGITAL_TWIN_4}-${DIGITAL_TWIN_SUBMODEL_ID_4} | ||
|
||
|
||
echo '**************************Asset 1 **********************' | ||
echo | ||
# Create Submodel data | ||
echo "Create sample data for asset 1..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/payloads/X123456789012X12345678901234566.json" $SERVER_URL/provider_backend/data/${ASSET_ID_1} | ||
echo | ||
|
||
# Create a contract definition | ||
echo "Create contract definition for asset 1..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/contractdefinitions/X123456789012X12345678901234566.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/contractdefinitions/1 | ||
echo | ||
|
||
# Create a asset | ||
echo "Create asset 1..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/assets/X123456789012X12345678901234566.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/assets/${ASSET_ID_1} | ||
echo | ||
|
||
# Create a general policy | ||
echo "Create policy for asset 1..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/contractpolicies/X123456789012X12345678901234566.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/policydefinitions/ad8d2c57-cf32-409c-96a8-be59675b6ae5 | ||
echo | ||
|
||
# Create a digital twin and register inside CX registry | ||
# To authenticate against CX registry, one needs a valid bearer token which can be issued through postman given the clientId and clientSecret | ||
echo "Create a DT for asset 1 and register it devo CX registry..." | ||
|
||
curl -X DELETE -s --header 'Content-Type: application/json' --header "Authorization: Bearer ${BEARER_TOKEN//[$'\t\r\n ']}" --data "@resources/digitaltwins/X123456789012X12345678901234566.json" $REGISTRY_URL/${DIGITAL_TWIN_1} | ||
echo | ||
echo | ||
|
||
|
||
|
||
echo '**************************Asset 2 **********************' | ||
|
||
echo | ||
|
||
# Create a contract definition | ||
echo "Create contract definition for asset 2..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/contractdefinitions/NCR186850B.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/contractdefinitions/2 | ||
echo | ||
|
||
|
||
# Create Submodel data | ||
echo "Create sample data for asset 2..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/payloads/NCR186850B.json" $SERVER_URL/provider_backend/data/${ASSET_ID_2} | ||
echo | ||
|
||
# Create a asset | ||
echo "Create asset 2..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/assets/NCR186850B.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/assets/${ASSET_ID_2} | ||
echo | ||
|
||
# Create a general policy | ||
echo "Create policy for asset 2..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/contractpolicies/NCR186850B.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/policydefinitions/f873e234-112c-4598-893b-eda0671b7402 | ||
echo | ||
|
||
# Create a digital twin and register inside CX registry | ||
# To authenticate against CX registry, one needs a valid bearer token which can be issued through postman given the clientId and clientSecret | ||
echo "Create a DT for asset 2 and register it devo CX registry..." | ||
|
||
curl -X DELETE -s --header 'Content-Type: application/json' --header "Authorization: Bearer ${BEARER_TOKEN//[$'\t\r\n ']}" --data "@resources/digitaltwins/NCR186850B.json" $REGISTRY_URL/${DIGITAL_TWIN_2} | ||
echo | ||
echo | ||
|
||
|
||
|
||
echo '**************************Asset 3 **********************' | ||
# Create Submodel data | ||
echo "Create sample data for asset 3..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/payloads/IMR18650V1.json" $SERVER_URL/provider_backend/data/${ASSET_ID_3} | ||
echo | ||
|
||
|
||
# Create a contract definition | ||
echo "Create contract definition for asset 3..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/contractdefinitions/IMR18650V1.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/contractdefinitions/3 | ||
echo | ||
|
||
# Create a asset | ||
echo "Create asset 1..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/assets/IMR18650V1.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/assets/${ASSET_ID_3} | ||
echo | ||
|
||
# Create a general policy | ||
echo "Create policy for asset 3..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/contractpolicies/IMR18650V1.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/policydefinitions/4b480f48-79a0-4851-a56c-6ef71e19ebb3 | ||
echo | ||
|
||
|
||
# Create a digital twin and register inside CX registry | ||
# To authenticate against CX registry, one needs a valid bearer token which can be issued through postman given the clientId and clientSecret | ||
echo "Create a DT for asset 3 and register it devo CX registry..." | ||
|
||
curl -X DELETE -s --header 'Content-Type: application/json' --header "Authorization: Bearer ${BEARER_TOKEN//[$'\t\r\n ']}" --data "@resources/digitaltwins/IMR18650V1.json" $REGISTRY_URL/${DIGITAL_TWIN_3} | ||
echo | ||
|
||
|
||
echo '**************************Asset 4 **********************' | ||
# Create Submodel data | ||
echo "Create sample data for asset 4..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/payloads/Y792927456954B81677903848654570.json" $SERVER_URL/provider_backend/data/${ASSET_ID_4} | ||
echo | ||
|
||
|
||
# Create a contract definition | ||
echo "Create contract definition for asset 4..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/contractdefinitions/Y792927456954B81677903848654570.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/contractdefinitions/131 | ||
echo | ||
|
||
# Create a asset | ||
echo "Create asset 4..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/assets/Y792927456954B81677903848654570.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/assets/${ASSET_ID_4} | ||
echo | ||
|
||
# Create a general policy | ||
echo "Create policy for asset 4..." | ||
curl -X DELETE -H 'Content-Type: application/json' -s --data "@resources/contractpolicies/Y792927456954B81677903848654570.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/policydefinitions/0a216bb0-934d-4c93-8e92-ca3b4f862e33 | ||
echo | ||
|
||
|
||
|
||
# Create a digital twin and register inside CX registry | ||
# To authenticate against CX registry, one needs a valid bearer token which can be issued through postman given the clientId and clientSecret | ||
echo "Create a DT for asset 4 and register it devo CX registry..." | ||
|
||
curl -X POST -s --header 'Content-Type: application/json' --header "Authorization: Bearer ${BEARER_TOKEN//[$'\t\r\n ']}" --data "@resources/digitaltwins/Y792927456954B81677903848654570.json" $REGISTRY_URL/${DIGITAL_TWIN_4} | ||
echo | ||
|
||
echo 'Provider setup completed...' | ||
echo 'Done' |
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,182 @@ | ||
#!/bin/bash | ||
################################################################################# | ||
# Catena-X - Product Passport Consumer Application | ||
# | ||
# Copyright (c) 2022, 2023 BASF SE, BMW AG, Henkel AG & Co. KGaA | ||
# | ||
# See the NOTICE file(s) distributed with this work for additional | ||
# information regarding copyright ownership. | ||
# | ||
# This program and the accompanying materials are made available under the | ||
# terms of the Apache License, Version 2.0 which is available at | ||
# https://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 govern in permissions and limitations | ||
# under the License. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
################################################################################# | ||
|
||
|
||
set -o errexit | ||
set -o errtrace | ||
set -o pipefail | ||
set -o nounset | ||
|
||
DIGITAL_TWIN_1='32aa72de-297a-4405-9148-13e12744028a' | ||
DIGITAL_TWIN_SUBMODEL_ID_1='699f1245-f57e-4d6b-acdb-ab763665554a' | ||
|
||
DIGITAL_TWIN_2='1f4a64f0-aba9-498a-917c-4936c24c50cd' | ||
DIGITAL_TWIN_SUBMODEL_ID_2='49a06ad2-64b7-46c8-9f3b-a718c462ca23' | ||
|
||
DIGITAL_TWIN_3='365e6fbe-bb34-11ec-8422-0242ac120002' | ||
DIGITAL_TWIN_SUBMODEL_ID_3='61125dc3-5e6f-4f4b-838d-447432b97918' | ||
|
||
DIGITAL_TWIN_4='1f0ef836-40b7-4f31-a9bd-cb6a8960779e' | ||
DIGITAL_TWIN_SUBMODEL_ID_4='26bf39c5-68a5-43a1-8db7-d33e116a6f61' | ||
|
||
SERVER_URL='<Introduce your provider EDC url here>' | ||
REGISTRY_URL='<Introduce the digital twin registry url here>' | ||
|
||
|
||
# put access token without 'Bearer ' prefix | ||
BEARER_TOKEN='' | ||
|
||
API_KEY='' | ||
|
||
ASSET_ID_1=${DIGITAL_TWIN_1}-${DIGITAL_TWIN_SUBMODEL_ID_1} | ||
ASSET_ID_2=${DIGITAL_TWIN_2}-${DIGITAL_TWIN_SUBMODEL_ID_2} | ||
ASSET_ID_3=${DIGITAL_TWIN_3}-${DIGITAL_TWIN_SUBMODEL_ID_3} | ||
ASSET_ID_4=${DIGITAL_TWIN_4}-${DIGITAL_TWIN_SUBMODEL_ID_4} | ||
|
||
|
||
echo '**************************Asset 1 **********************' | ||
echo | ||
# Create Submodel data | ||
echo "Create sample data for asset 1..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/payloads/X123456789012X12345678901234566.json" $SERVER_URL/provider_backend/data/${ASSET_ID_1} | ||
echo | ||
|
||
# Create a asset | ||
echo "Create asset 1..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/assets/X123456789012X12345678901234566.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/assets | ||
echo | ||
|
||
# Create a general policy | ||
echo "Create policy for asset 1..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/contractpolicies/X123456789012X12345678901234566.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/policydefinitions | ||
echo | ||
|
||
# Create a contract definition | ||
echo "Create contract definition for asset 1..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/contractdefinitions/X123456789012X12345678901234566.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/contractdefinitions | ||
echo | ||
|
||
# Create a digital twin and register inside CX registry | ||
# To authenticate against CX registry, one needs a valid bearer token which can be issued through postman given the clientId and clientSecret | ||
echo "Create a DT for asset 1 and register it devo CX registry..." | ||
|
||
curl -X POST -s --header 'Content-Type: application/json' --header "Authorization: Bearer ${BEARER_TOKEN//[$'\t\r\n ']}" --data "@resources/digitaltwins/X123456789012X12345678901234566.json" $REGISTRY_URL | ||
echo | ||
echo | ||
|
||
|
||
|
||
echo '**************************Asset 2 **********************' | ||
|
||
echo | ||
# Create Submodel data | ||
echo "Create sample data for asset 2..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/payloads/NCR186850B.json" $SERVER_URL/provider_backend/data/${ASSET_ID_2} | ||
echo | ||
|
||
# Create a asset | ||
echo "Create asset 2..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/assets/NCR186850B.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/assets | ||
echo | ||
|
||
# Create a general policy | ||
echo "Create policy for asset 2..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/contractpolicies/NCR186850B.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/policydefinitions | ||
echo | ||
|
||
# Create a contract definition | ||
echo "Create contract definition for asset 2..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/contractdefinitions/NCR186850B.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/contractdefinitions | ||
echo | ||
|
||
|
||
# Create a digital twin and register inside CX registry | ||
# To authenticate against CX registry, one needs a valid bearer token which can be issued through postman given the clientId and clientSecret | ||
echo "Create a DT for asset 2 and register it devo CX registry..." | ||
|
||
curl -X POST -s --header 'Content-Type: application/json' --header "Authorization: Bearer ${BEARER_TOKEN//[$'\t\r\n ']}" --data "@resources/digitaltwins/NCR186850B.json" $REGISTRY_URL | ||
echo | ||
echo | ||
|
||
|
||
|
||
echo '**************************Asset 3 **********************' | ||
# Create Submodel data | ||
echo "Create sample data for asset 3..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/payloads/IMR18650V1.json" $SERVER_URL/provider_backend/data/${ASSET_ID_3} | ||
echo | ||
|
||
# Create a asset | ||
echo "Create asset 1..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/assets/IMR18650V1.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/assets | ||
echo | ||
|
||
# Create a general policy | ||
echo "Create policy for asset 3..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/contractpolicies/IMR18650V1.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/policydefinitions | ||
echo | ||
|
||
# Create a contract definition | ||
echo "Create contract definition for asset 3..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/contractdefinitions/IMR18650V1.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/contractdefinitions | ||
echo | ||
|
||
# Create a digital twin and register inside CX registry | ||
# To authenticate against CX registry, one needs a valid bearer token which can be issued through postman given the clientId and clientSecret | ||
echo "Create a DT for asset 3 and register it devo CX registry..." | ||
|
||
curl -X POST -s --header 'Content-Type: application/json' --header "Authorization: Bearer ${BEARER_TOKEN//[$'\t\r\n ']}" --data "@resources/digitaltwins/IMR18650V1.json" $REGISTRY_URL | ||
echo | ||
|
||
|
||
echo '**************************Asset 4 **********************' | ||
# Create Submodel data | ||
echo "Create sample data for asset 4..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/payloads/Y792927456954B81677903848654570.json" $SERVER_URL/provider_backend/data/${ASSET_ID_4} | ||
echo | ||
|
||
# Create a asset | ||
echo "Create asset 4..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/assets/Y792927456954B81677903848654570.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/assets | ||
echo | ||
|
||
# Create a general policy | ||
echo "Create policy for asset 4..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/contractpolicies/Y792927456954B81677903848654570.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/policydefinitions | ||
echo | ||
|
||
# Create a contract definition | ||
echo "Create contract definition for asset 4..." | ||
curl -X POST -H 'Content-Type: application/json' -s --data "@resources/contractdefinitions/Y792927456954B81677903848654570.json" --header 'X-Api-Key: '${API_KEY} $SERVER_URL/management/v2/contractdefinitions | ||
echo | ||
|
||
|
||
# Create a digital twin and register inside CX registry | ||
# To authenticate against CX registry, one needs a valid bearer token which can be issued through postman given the clientId and clientSecret | ||
echo "Create a DT for asset 4 and register it devo CX registry..." | ||
|
||
curl -X POST -s --header 'Content-Type: application/json' --header "Authorization: Bearer ${BEARER_TOKEN//[$'\t\r\n ']}" --data "@resources/digitaltwins/Y792927456954B81677903848654570.json" $REGISTRY_URL | ||
echo | ||
|
||
echo 'Provider setup completed...' | ||
echo 'Done' |
15 changes: 15 additions & 0 deletions
15
deployment/infrastructure/resources/assets/IMR18650V1.json
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,15 @@ | ||
{ | ||
"@context": {}, | ||
"asset": { | ||
"@type": "Asset", | ||
"@id": "365e6fbe-bb34-11ec-8422-0242ac120002-61125dc3-5e6f-4f4b-838d-447432b97918", | ||
"properties": { | ||
"description": "Battery Passport test data" | ||
} | ||
}, | ||
"dataAddress": { | ||
"@type": "DataAddress", | ||
"type": "HttpData", | ||
"baseUrl": "https://materialpass.dev.demo.catena-x.net/provider_backend/data/365e6fbe-bb34-11ec-8422-0242ac120002-61125dc3-5e6f-4f4b-838d-447432b97918" | ||
} | ||
} |
Oops, something went wrong.