ho trovato un modo per accedere al credentials store in Jenkins:Credenziali Jenkins Conservare Accesso tramite Groovy
def getPassword = { username ->
def creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials(
com.cloudbees.plugins.credentials.common.StandardUsernamePasswordCredentials.class,
jenkins.model.Jenkins.instance
)
def c = creds.findResult { it.username == username ? it : null }
if (c) {
println "found credential ${c.id} for username ${c.username}"
def credentials_store = jenkins.model.Jenkins.instance.getExtensionList(
'com.cloudbees.plugins.credentials.SystemCredentialsProvider'
)[0].getStore()
println "result: " + credentials_store
} else {
println "could not find credential for ${username}"
}
}
getPassword("XYZ")
Ma ora vorrei ottenere la password per l'utente appropriato, che non posso fare ...
ho sempre trovato metodo sconosciuto ecc se provo ad accedere passord ecc
Il motivo per fare questo è quello di utilizzare questo utente/password per chiamare git ed estrarre informazioni dal repository ..
.210Ho sempre trovato qualcosa di simile:
result: com.cl[email protected]1639eab2
Aggiornamento
Dopo aver sperimentato di più (e il suggerimento di Jeanne Boyarsky) con esso ho scoperto che stavo pensando a compilcated. Di seguito mi dà già la password per l'utente:
def getUserPassword = { username ->
def creds = com.cloudbees.plugins.credentials.CredentialsProvider.lookupCredentials(
com.cloudbees.plugins.credentials.common.StandardUsernamePasswordCredentials.class,
jenkins.model.Jenkins.instance
)
def c = creds.findResult { it.username == username ? it : null }
if (c) {
return c.password
} else {
println "could not find credential for ${username}"
}
}
Inoltre, utilizzando il seguente frammento è possibile iterare su tutta credenziali negozio:
def credentials_store = jenkins.model.Jenkins.instance.getExtensionList(
'com.cloudbees.plugins.credentials.SystemCredentialsProvider'
)
println "credentials_store: ${credentials_store}"
println " Description: ${credentials_store.description}"
println " Target: ${credentials_store.target}"
credentials_store.each { println "credentials_store.each: ${it}" }
credentials_store[0].credentials.each { it ->
println "credentials: -> ${it}"
if (it instanceof com.cloudbees.plugins.credentials.impl.UsernamePasswordCredentialsImpl) {
println "XXX: username: ${it.username} password: ${it.password} description: ${it.description}"
}
}
E si otterrà un output simile a questo:
[(master)]:
credentials_store: [[email protected]22be]
Description: [The descriptions...]
Target: [[email protected]22be]
credentials_store.each: [email protected]22be
credentials: -> com.cloud[email protected]38357ca1
credentials: -> com.cloud[email protected]47cf7703
credentials: -> com.clo[email protected]739abac5
XXX: username: User1 password: Password description: The description of the user.
credentials: -> com.clo[email protected]884a53e6
XXX: username: User2 password: Password1 description: The description of the user1.
Result: [com.cloud[email protected]38357ca1, com.cloud[email protected]47cf7703, com.clo[email protected]739abac5, com.clo[email protected]884a53e6]
Quindi utilizzando lo appropriate class in the instanceof
clause è possibile selezionare ciò che è necessario.
La tua idea mi ha aiutato a pensare nella giusta direzione. Grazie. – khmarbaise
Bello! Quindi anche il mio era troppo complicato! Mi piace il tuo approccio che hai modificato nel post iniziale. Una volta che la mia ha risposto, ho smesso di cercare altri modi. –