From 30f1436bca5c6ff6feab82090186da30dd91b425 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gr=C3=A9goire=20KUBLER?= <gregoire.kubler@proton.me>
Date: Fri, 22 Mar 2024 13:58:56 +0100
Subject: [PATCH] chore : factorized API URL

---
 .gitlab/ci/build.gitlab-ci.yml | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/.gitlab/ci/build.gitlab-ci.yml b/.gitlab/ci/build.gitlab-ci.yml
index b1034238..454a7f2e 100644
--- a/.gitlab/ci/build.gitlab-ci.yml
+++ b/.gitlab/ci/build.gitlab-ci.yml
@@ -11,6 +11,7 @@ build:ubuntu_cpp:
     # aidge_core
     - DEPENDENCY_NAME="aidge_core"
     - DEPENDENCY_JOB="build:ubuntu_cpp"
+    - API_URL="https://gitlab.eclipse.org/api/v4"
     # - !reference [.download_dependency, script]
     - apt-get -qq install -y jq
     # Check if a branch with the same name exist on the dependency repository
@@ -47,20 +48,22 @@ build:ubuntu_cpp:
     - echo "${CI_PROJECT_NAMESPACE_ID}"
     - >
       if [[ ! $PULL_FROM_FORK ]]; then # nominal case : we are in the official project
-        DEPENDENCY_ID=$(curl "https://gitlab.eclipse.org/api/v4/groups/${CI_PROJECT_NAMESPACE_ID}/projects?search=${DEPENDENCY_NAME}" | jq -r '.[0].id')
+        DEPENDENCY_ID=$(curl "${API_URL}/groups/${CI_PROJECT_NAMESPACE_ID}/projects?search=${DEPENDENCY_NAME}" | jq -r '.[0].id')
       else # case for fork
         echo "Retrieving build_artifacts from user' forked project."
-        DEPENDENCY_ID=$(curl --header "PRIVATE_TOKEN: $CI_JOB_TOKEN" "https://gitlab.eclipse.org/api/v4/users/${CI_PROJECT_NAMESPACE_ID}/projects?search=${DEPENDENCY_NAME}" | jq -r '.[0].id')
+        USER=$(curl --header "PRIVATE_TOKEN: $CI_JOB_TOKEN" "${API_URL}/users" | jq .)
+        USER_ID=$(curl --header "PRIVATE_TOKEN: $CI_JOB_TOKEN" "${API_URL}/users" | jq -r '.[0].id')
+        DEPENDENCY_ID=$(curl --header "PRIVATE_TOKEN: $CI_JOB_TOKEN" "${API_URL}/users/${CI_PROJECT_NAMESPACE_ID}/projects?search=${DEPENDENCY_NAME}" | jq -r '.[0].id')
       fi
 
     # Retrieve latest successful $DEPENDENCY_JOB  $BRANCH_TO_PULL
-    - PIPELINES=$(curl -s --header "PRIVATE_TOKEN:$CI_JOB_TOKEN" "https://gitlab.eclipse.org/api/v4/projects/$DEPENDENCY_ID/pipelines?ref=${BRANCH_TO_PULL}&order_by=updated_at&sort=desc")
+    - PIPELINES=$(curl -s --header "PRIVATE_TOKEN:$CI_JOB_TOKEN" "${API_URL}/projects/$DEPENDENCY_ID/pipelines?ref=${BRANCH_TO_PULL}&order_by=updated_at&sort=desc")
     - JOB_ID=-1
     # handle case where there is no branch with the same name
     - >
       for i in $(seq 0 $(jq length <<< "$PIPELINES")); do
         PIPELINE_ID=$(jq --argjson idx $i '.[$idx].id' <<< $PIPELINES)
-        JOBS=$(curl -s --header "PRIVATE_TOKEN: $CI_JOB_TOKEN" "https://gitlab.eclipse.org/api/v4/projects/$DEPENDENCY_ID/pipelines/$PIPELINE_ID/jobs" | jq --arg job_name "$DEPENDENCY_JOB" 'map(select((.name == $job_name) and (.status == "success")))')
+        JOBS=$(curl -s --header "PRIVATE_TOKEN: $CI_JOB_TOKEN" "${API_URL}/projects/$DEPENDENCY_ID/pipelines/$PIPELINE_ID/jobs" | jq --arg job_name "$DEPENDENCY_JOB" 'map(select((.name == $job_name) and (.status == "success")))')
         if [[ $(jq '. | length' <<< $JOBS) > 0 ]]; then
           JOB_ID=$(jq '.[0].id' <<< $JOBS)
           break
@@ -74,8 +77,8 @@ build:ubuntu_cpp:
       fi
     - set +x
 
-    - echo "curling from \"https://gitlab.eclipse.org/api/v4/projects/$DEPENDENCY_ID/jobs/$JOB_ID/artifacts\""
-    - curl --location --output build_artifacts.zip --header "PRIVATE_TOKEN:$CI_JOB_TOKEN" "https://gitlab.eclipse.org/api/v4/projects/$DEPENDENCY_ID/jobs/$JOB_ID/artifacts" 
+    - echo "curling from \"${API_URL}/projects/$DEPENDENCY_ID/jobs/$JOB_ID/artifacts\""
+    - curl --location --output build_artifacts.zip --header "PRIVATE_TOKEN:$CI_JOB_TOKEN" "${API_URL}/projects/$DEPENDENCY_ID/jobs/$JOB_ID/artifacts" 
 
     - unzip -q -o build_artifacts.zip -d .
     - rm -rf build_cpp
-- 
GitLab