retour en arrière
Cadoles/Jenkins/pipeline/head This commit looks good Details

This commit is contained in:
vfebvre 2022-06-07 11:22:21 +02:00
parent a31b64b5b6
commit 63af3c7121
1 changed files with 148 additions and 161 deletions

View File

@ -1,36 +1,25 @@
import groovy.json.JsonOutput
def call() {
pipeline {
parameters {
string(
name: 'pulpHost',
description: 'Nom de domaine pour le serveur Pulp',
defaultValue: ''
)
}
def getResourceHREF(
def getResourceHREF(
String credentials,
String resourceEndpoint,
String resourceName,
// String pulpHost
) {
def response = httpRequest authentication: credentials, url: "https://${params.pulpHost}/pulp/api/v3/${resourceEndpoint}", httpMode: 'GET', ignoreSslErrors: true, validResponseCodes: "200"
String pulpHost = 'pulp.cadoles.com'
) {
def response = httpRequest authentication: credentials, url: "https://${pulpHost}/pulp/api/v3/${resourceEndpoint}", httpMode: 'GET', ignoreSslErrors: true, validResponseCodes: "200"
def jsonResponse = readJSON text: response.content
def resource = jsonResponse.results.find { it -> it.name == resourceName}
if (resource) {
return resource.pulp_href
}
return null
}
}
def waitForTaskCompletion(
def waitForTaskCompletion(
String credentials,
String taskHREF,
String pulpHost
) {
String pulpHost = 'pulp.cadoles.com'
) {
def status = ''
def created_resources = []
while (status != 'completed') {
@ -45,13 +34,13 @@ def call() {
sleep(10)
}
throw new Exception("Task failed:" + jsonResponse.error.description)
}
}
def exportPackages(
def exportPackages(
String credentials,
List packages = [],
String pulpHost
) {
String pulpHost = 'pulp.cadoles.com'
) {
def exportTasks = []
packages.each {
def response = httpRequest authentication: credentials, url: "https://${pulpHost}/pulp/api/v3/content/deb/packages/", httpMode: 'POST', ignoreSslErrors: true, multipartName: "file", timeout: 900, uploadFile: "${it}", validResponseCodes: "202"
@ -59,12 +48,12 @@ def call() {
exportTasks << jsonResponse['task']
}
return exportTasks
}
}
def createRepository(
def createRepository(
String credentials,
String name,
String pulpHost
String pulpHost = 'pulp.cadoles.com'
) {
def repositoryName = ["name": name]
def postBody = JsonOutput.toJson(repositoryName)
@ -72,8 +61,8 @@ def call() {
def jsonResponse = readJSON text: response.content
return jsonResponse.pulp_href
}
def getRepositoryHREF(
}
def getRepositoryHREF(
String credentials,
String repository = 'Cadoles4MSE unstable'
) {
@ -83,27 +72,27 @@ def call() {
} else {
return createRepository(credentials, repository)
}
}
}
def addToRepository(
def addToRepository(
String credentials,
List packagesHREF,
String repositoryHREF,
String pulpHost
) {
String pulpHost = 'pulp.cadoles.com'
) {
def packagesHREFURL = ["add_content_units": packagesHREF.collect { "https://$pulpHost$it" }]
def postBody = JsonOutput.toJson(packagesHREFURL)
def response = httpRequest authentication: credentials, url: "https://${pulpHost}${repositoryHREF}modify/", httpMode: 'POST', requestBody: postBody, contentType: 'APPLICATION_JSON', ignoreSslErrors: true, validResponseCodes: "202"
def jsonResponse = readJSON text: response.content
return waitForTaskCompletion(credentials, jsonResponse.task)
}
}
def publishRepository(
def publishRepository(
String credentials,
String repositoryHREF,
String signing_service = null,
String pulpHost
) {
String pulpHost = 'pulp.cadoles.com'
) {
def postContent = ["repository": repositoryHREF, "simple": true]
if (signing_service) {
def signingServiceHREF = getResourceHREF(credentials, 'signing-services/', signing_service)
@ -115,16 +104,16 @@ def call() {
def response = httpRequest authentication: credentials, url: "https://${pulpHost}/pulp/api/v3/publications/deb/apt/", httpMode: 'POST', requestBody: postBody, contentType: 'APPLICATION_JSON', ignoreSslErrors: true, validResponseCodes: "202"
def jsonResponse = readJSON text: response.content
return waitForTaskCompletion(credentials, jsonResponse.task)
}
}
def distributePublication(
def distributePublication(
String credentials,
String publicationHREF,
String distributionName,
String basePath,
String contentGuard = null,
String pulpHost
) {
String pulpHost = 'pulp.cadoles.com'
) {
def httpMode = ''
def url = ''
def distributionHREF = getResourceHREF(credentials, 'distributions/deb/apt/', distributionName)
@ -151,17 +140,15 @@ def call() {
} else {
return waitForTaskCompletion(credentials, jsonResponse.task)
}
}
}
def getDistributionURL(
def getDistributionURL(
String credentials,
String resourceHREF,
String pulpHost
) {
String pulpHost = 'pulp.cadoles.com'
) {
def response = httpRequest authentication: credentials, url: "https://${pulpHost}${resourceHREF}", httpMode: 'GET', ignoreSslErrors: true, validResponseCodes: "200"
def jsonResponse = readJSON text: response.content
println(jsonResponse)
return jsonResponse.base_url
}
}
}