]> git.proxmox.com Git - mirror_acme.sh.git/blame - dnsapi/dns_pleskxml.sh
Merge branch 'acmesh-official:dev' into dev
[mirror_acme.sh.git] / dnsapi / dns_pleskxml.sh
CommitLineData
bc291141 1#!/usr/bin/env sh
2
3## Name: dns_pleskxml.sh
4## Created by Stilez.
d795fac3 5## Also uses some code from PR#1832 by @romanlum (https://github.com/acmesh-official/acme.sh/pull/1832/files)
bc291141 6
05ced9fb 7## This DNS-01 method uses the Plesk XML API described at:
bc291141 8## https://docs.plesk.com/en-US/12.5/api-rpc/about-xml-api.28709
9## and more specifically: https://docs.plesk.com/en-US/12.5/api-rpc/reference.28784
10
11## Note: a DNS ID with host = empty string is OK for this API, see
12## https://docs.plesk.com/en-US/obsidian/api-rpc/about-xml-api/reference/managing-dns/managing-dns-records/adding-dns-record.34798
13## For example, to add a TXT record to DNS alias domain "acme-alias.com" would be a valid Plesk action.
14## So this API module can handle such a request, if needed.
15
16## For ACME v2 purposes, new TXT records are appended when added, and removing one TXT record will not affect any other TXT records.
17
05ced9fb 18## The user credentials (username+password) and URL/URI for the Plesk XML API must be set by the user
19## before this module is called (case sensitive):
bc291141 20##
21## ```
22## export pleskxml_uri="https://address-of-my-plesk-server.net:8443/enterprise/control/agent.php"
23## (or probably something similar)
24## export pleskxml_user="my plesk username"
25## export pleskxml_pass="my plesk password"
26## ```
27
28## Ok, let's issue a cert now:
29## ```
30## acme.sh --issue --dns dns_pleskxml -d example.com -d www.example.com
31## ```
32##
33## The `pleskxml_uri`, `pleskxml_user` and `pleskxml_pass` will be saved in `~/.acme.sh/account.conf` and reused when needed.
34
35#################### INTERNAL VARIABLES + NEWLINE + API TEMPLATES ##################################
36
37pleskxml_init_checks_done=0
38
39# Variable containing bare newline - not a style issue
40# shellcheck disable=SC1004
41NEWLINE='\
42'
43
a6b58bc8 44pleskxml_tplt_get_domains="<packet><webspace><get><filter/><dataset><gen_info/></dataset></get></webspace></packet>"
bc291141 45# Get a list of domains that PLESK can manage, so we can check root domain + host for acme.sh
46# Also used to test credentials and URI.
47# No params.
48
49pleskxml_tplt_get_dns_records="<packet><dns><get_rec><filter><site-id>%s</site-id></filter></get_rec></dns></packet>"
50# Get all DNS records for a Plesk domain ID.
51# PARAM = Plesk domain id to query
52
53pleskxml_tplt_add_txt_record="<packet><dns><add_rec><site-id>%s</site-id><type>TXT</type><host>%s</host><value>%s</value></add_rec></dns></packet>"
54# Add a TXT record to a domain.
55# PARAMS = (1) Plesk internal domain ID, (2) "hostname" for the new record, eg '_acme_challenge', (3) TXT record value
56
57pleskxml_tplt_rmv_dns_record="<packet><dns><del_rec><filter><id>%s</id></filter></del_rec></dns></packet>"
58# Delete a specific TXT record from a domain.
59# PARAM = the Plesk internal ID for the DNS record to be deleted
60
61#################### Public functions ##################################
62
63#Usage: dns_pleskxml_add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
64dns_pleskxml_add() {
65 fulldomain=$1
66 txtvalue=$2
67
68 _info "Entering dns_pleskxml_add() to add TXT record '$txtvalue' to domain '$fulldomain'..."
69
70 # Get credentials if not already checked, and confirm we can log in to Plesk XML API
71 if ! _credential_check; then
72 return 1
73 fi
74
75 # Get root and subdomain details, and Plesk domain ID
76 if ! _pleskxml_get_root_domain "$fulldomain"; then
77 return 1
78 fi
79
80 _debug 'Credentials OK, and domain identified. Calling Plesk XML API to add TXT record'
81
82 # printf using template in a variable - not a style issue
83 # shellcheck disable=SC2059
84 request="$(printf "$pleskxml_tplt_add_txt_record" "$root_domain_id" "$sub_domain_name" "$txtvalue")"
85 if ! _call_api "$request"; then
86 return 1
87 fi
88
89 # OK, we should have added a TXT record. Let's check and return success if so.
90 # All that should be left in the result, is one section, containing <result><status>ok</status><id>NEW_DNS_RECORD_ID</id></result>
91
92 results="$(_api_response_split "$pleskxml_prettyprint_result" 'result' '<status>')"
93
896778ce 94 if ! _value "$results" | grep '<status>ok</status>' | grep '<id>[0-9]\{1,\}</id>' >/dev/null; then
bc291141 95 # Error - doesn't contain expected string. Something's wrong.
96 _err 'Error when calling Plesk XML API.'
97 _err 'The result did not contain the expected <id>XXXXX</id> section, or contained other values as well.'
98 _err 'This is unexpected: something has gone wrong.'
51cfd996 99 _err 'The full response was:'
6d0e4bed 100 _err "$pleskxml_prettyprint_result"
bc291141 101 return 1
102 fi
103
cbacc779 104 recid="$(_value "$results" | grep '<id>[0-9]\{1,\}</id>' | sed 's/^.*<id>\([0-9]\{1,\}\)<\/id>.*$/\1/')"
bc291141 105
106 _info "Success. TXT record appears to be correctly added (Plesk record ID=$recid). Exiting dns_pleskxml_add()."
107
108 return 0
109}
110
111#Usage: dns_pleskxml_rm _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
112dns_pleskxml_rm() {
113 fulldomain=$1
114 txtvalue=$2
115
116 _info "Entering dns_pleskxml_rm() to remove TXT record '$txtvalue' from domain '$fulldomain'..."
117
118 # Get credentials if not already checked, and confirm we can log in to Plesk XML API
119 if ! _credential_check; then
120 return 1
121 fi
122
123 # Get root and subdomain details, and Plesk domain ID
124 if ! _pleskxml_get_root_domain "$fulldomain"; then
125 return 1
126 fi
127
128 _debug 'Credentials OK, and domain identified. Calling Plesk XML API to get list of TXT records and their IDs'
129
130 # printf using template in a variable - not a style issue
131 # shellcheck disable=SC2059
132 request="$(printf "$pleskxml_tplt_get_dns_records" "$root_domain_id")"
133 if ! _call_api "$request"; then
134 return 1
135 fi
136
137 # Reduce output to one line per DNS record, filtered for TXT records with a record ID only (which they should all have)
6d0e4bed 138 # Also strip out spaces between tags, redundant <data> and </data> group tags and any <self-closing/> tags
19c43451 139 reclist="$(
140 _api_response_split "$pleskxml_prettyprint_result" 'result' '<status>ok</status>' |
141 sed 's# \{1,\}<\([a-zA-Z]\)#<\1#g;s#</\{0,1\}data>##g;s#<[a-z][^/<>]*/>##g' |
142 grep "<site-id>${root_domain_id}</site-id>" |
143 grep '<id>[0-9]\{1,\}</id>' |
144 grep '<type>TXT</type>'
bc291141 145 )"
146
147 if [ -z "$reclist" ]; then
bc7e02b4 148 _err "No TXT records found for root domain $fulldomain (Plesk domain ID ${root_domain_id}). Exiting."
bc291141 149 return 1
150 fi
151
bc7e02b4 152 _debug "Got list of DNS TXT records for root Plesk domain ID ${root_domain_id} of root domain $fulldomain:"
6d0e4bed 153 _debug "$reclist"
bc291141 154
bc7e02b4 155 # Extracting the id of the TXT record for the full domain (NOT case-sensitive) and corresponding value
b41d40da 156 recid="$(
bc7e02b4 157 _value "$reclist" |
158 grep -i "<host>${fulldomain}.</host>" |
159 grep "<value>${txtvalue}</value>" |
19c43451 160 sed 's/^.*<id>\([0-9]\{1,\}\)<\/id>.*$/\1/'
bc291141 161 )"
162
ca098164 163 _debug "Got id from line: $recid"
b41d40da 164
896778ce 165 if ! _value "$recid" | grep '^[0-9]\{1,\}$' >/dev/null; then
bc7e02b4 166 _err "DNS records for root domain '${fulldomain}.' (Plesk ID ${root_domain_id}) + host '${sub_domain_name}' do not contain the TXT record '${txtvalue}'"
bc291141 167 _err "Cannot delete TXT record. Exiting."
168 return 1
169 fi
170
171 _debug "Found Plesk record ID for target text string '${txtvalue}': ID=${recid}"
172 _debug 'Calling Plesk XML API to remove TXT record'
173
174 # printf using template in a variable - not a style issue
175 # shellcheck disable=SC2059
176 request="$(printf "$pleskxml_tplt_rmv_dns_record" "$recid")"
177 if ! _call_api "$request"; then
178 return 1
179 fi
180
181 # OK, we should have removed a TXT record. Let's check and return success if so.
182 # All that should be left in the result, is one section, containing <result><status>ok</status><id>PLESK_DELETED_DNS_RECORD_ID</id></result>
183
184 results="$(_api_response_split "$pleskxml_prettyprint_result" 'result' '<status>')"
185
896778ce 186 if ! _value "$results" | grep '<status>ok</status>' | grep '<id>[0-9]\{1,\}</id>' >/dev/null; then
bc291141 187 # Error - doesn't contain expected string. Something's wrong.
188 _err 'Error when calling Plesk XML API.'
189 _err 'The result did not contain the expected <id>XXXXX</id> section, or contained other values as well.'
190 _err 'This is unexpected: something has gone wrong.'
6d0e4bed 191 _err 'The full response was:'
192 _err "$pleskxml_prettyprint_result"
bc291141 193 return 1
194 fi
195
196 _info "Success. TXT record appears to be correctly removed. Exiting dns_pleskxml_rm()."
197 return 0
198}
199
d7affad0 200#################### Private functions below (utility functions) ##################################
bc291141 201
202# Outputs value of a variable without additional newlines etc
203_value() {
204 printf '%s' "$1"
205}
206
207# Outputs value of a variable (FQDN) and cuts it at 2 specified '.' delimiters, returning the text in between
208# $1, $2 = where to cut
209# $3 = FQDN
210_valuecut() {
211 printf '%s' "$3" | cut -d . -f "${1}-${2}"
212}
213
43011f3b 214# Counts '.' present in a domain name or other string
d7affad0 215# $1 = domain name
216_countdots() {
43011f3b 217 _value "$1" | tr -dc '.' | wc -c | sed 's/ //g'
d7affad0 218}
219
bc291141 220# Cleans up an API response, splits it "one line per item in the response" and greps for a string that in the context, identifies "useful" lines
221# $1 - result string from API
a8d670fc 222# $2 - plain text tag to resplit on (usually "result" or "domain"). NOT REGEX
2d1a776d 223# $3 - basic regex to recognise useful return lines
224# note: $3 matches via basic NOT extended regex (BRE), as extended regex capabilities not needed at the moment.
a8d670fc 225# Last line could change to <sed -n '/.../p'> instead, with suitable escaping of ['"/$],
2d1a776d 226# if future Plesk XML API changes ever require extended regex
bc291141 227_api_response_split() {
19c43451 228 printf '%s' "$1" |
229 sed 's/^ +//;s/ +$//' |
230 tr -d '\n\r' |
231 sed "s/<\/\{0,1\}$2>/${NEWLINE}/g" |
232 grep "$3"
bc291141 233}
234
d7affad0 235#################### Private functions below (DNS functions) ##################################
236
bc291141 237# Calls Plesk XML API, and checks results for obvious issues
238_call_api() {
239 request="$1"
240 errtext=''
241
6d0e4bed 242 _debug 'Entered _call_api(). Calling Plesk XML API with request:'
243 _debug "'$request'"
bc291141 244
245 export _H1="HTTP_AUTH_LOGIN: $pleskxml_user"
246 export _H2="HTTP_AUTH_PASSWD: $pleskxml_pass"
247 export _H3="content-Type: text/xml"
248 export _H4="HTTP_PRETTY_PRINT: true"
249 pleskxml_prettyprint_result="$(_post "${request}" "$pleskxml_uri" "" "POST")"
250 pleskxml_retcode="$?"
6d0e4bed 251 _debug 'The responses from the Plesk XML server were:'
252 _debug "retcode=$pleskxml_retcode. Literal response:"
253 _debug "'$pleskxml_prettyprint_result'"
bc291141 254
255 # Detect any <status> that isn't "ok". None of the used calls should fail if the API is working correctly.
256 # Also detect if there simply aren't any status lines (null result?) and report that, as well.
ba3e088b 257 # Remove <data></data> structure from result string, since it might contain <status> values that are related to the status of the domain and not to the API request
bc291141 258
ba3e088b 259 statuslines_count_total="$(echo "$pleskxml_prettyprint_result" | sed '/<data>/,/<\/data>/d' | grep -c '^ *<status>[^<]*</status> *$')"
260 statuslines_count_okay="$(echo "$pleskxml_prettyprint_result" | sed '/<data>/,/<\/data>/d' | grep -c '^ *<status>ok</status> *$')"
261 _debug "statuslines_count_total=$statuslines_count_total."
262 _debug "statuslines_count_okay=$statuslines_count_okay."
bc291141 263
896778ce 264 if [ -z "$statuslines_count_total" ]; then
bc291141 265
266 # We have no status lines at all. Results are empty
267 errtext='The Plesk XML API unexpectedly returned an empty set of results for this call.'
268
896778ce 269 elif [ "$statuslines_count_okay" -ne "$statuslines_count_total" ]; then
270
271 # We have some status lines that aren't "ok". Any available details are in API response fields "status" "errcode" and "errtext"
19c43451 272 # Workaround for basic regex:
896778ce 273 # - filter output to keep only lines like this: "SPACES<TAG>text</TAG>SPACES" (shouldn't be necessary with prettyprint but guarantees subsequent code is ok)
274 # - then edit the 3 "useful" error tokens individually and remove closing tags on all lines
275 # - then filter again to remove all lines not edited (which will be the lines not starting A-Z)
19c43451 276 errtext="$(
277 _value "$pleskxml_prettyprint_result" |
278 grep '^ *<[a-z]\{1,\}>[^<]*<\/[a-z]\{1,\}> *$' |
279 sed 's/^ *<status>/Status: /;s/^ *<errcode>/Error code: /;s/^ *<errtext>/Error text: /;s/<\/.*$//' |
280 grep '^[A-Z]'
896778ce 281 )"
282
bc291141 283 fi
284
285 if [ "$pleskxml_retcode" -ne 0 ] || [ "$errtext" != "" ]; then
d7affad0 286 # Call failed, for reasons either in the retcode or the response text...
287
288 if [ "$pleskxml_retcode" -eq 0 ]; then
289 _err "The POST request was successfully sent to the Plesk server."
290 else
896778ce 291 _err "The return code for the POST request was $pleskxml_retcode (non-zero = failure in submitting request to server)."
d7affad0 292 fi
293
bc291141 294 if [ "$errtext" != "" ]; then
6d0e4bed 295 _err 'The error responses received from the Plesk server were:'
296 _err "$errtext"
bc291141 297 else
298 _err "No additional error messages were received back from the Plesk server"
299 fi
d7affad0 300
301 _err "The Plesk XML API call failed."
bc291141 302 return 1
d7affad0 303
bc291141 304 fi
305
306 _debug "Leaving _call_api(). Successful call."
307
308 return 0
309}
310
311# Startup checks (credentials, URI)
312_credential_check() {
313 _debug "Checking Plesk XML API login credentials and URI..."
314
315 if [ "$pleskxml_init_checks_done" -eq 1 ]; then
316 _debug "Initial checks already done, no need to repeat. Skipped."
317 return 0
318 fi
319
320 pleskxml_user="${pleskxml_user:-$(_readaccountconf_mutable pleskxml_user)}"
321 pleskxml_pass="${pleskxml_pass:-$(_readaccountconf_mutable pleskxml_pass)}"
322 pleskxml_uri="${pleskxml_uri:-$(_readaccountconf_mutable pleskxml_uri)}"
323
bc291141 324 if [ -z "$pleskxml_user" ] || [ -z "$pleskxml_pass" ] || [ -z "$pleskxml_uri" ]; then
325 pleskxml_user=""
326 pleskxml_pass=""
327 pleskxml_uri=""
328 _err "You didn't specify one or more of the Plesk XML API username, password, or URI."
329 _err "Please create these and try again."
3441bd0e 330 _err "Instructions are in the 'dns_pleskxml' plugin source code or in the acme.sh documentation."
bc291141 331 return 1
332 fi
333
334 # Test the API is usable, by trying to read the list of managed domains...
335 _call_api "$pleskxml_tplt_get_domains"
336 if [ "$pleskxml_retcode" -ne 0 ]; then
6d0e4bed 337 _err 'Failed to access Plesk XML API.'
bc291141 338 _err "Please check your login credentials and Plesk URI, and that the URI is reachable, and try again."
339 return 1
340 fi
341
342 _saveaccountconf_mutable pleskxml_uri "$pleskxml_uri"
343 _saveaccountconf_mutable pleskxml_user "$pleskxml_user"
344 _saveaccountconf_mutable pleskxml_pass "$pleskxml_pass"
345
346 _debug "Test login to Plesk XML API successful. Login credentials and URI successfully saved to the acme.sh configuration file for future use."
347
348 pleskxml_init_checks_done=1
349
350 return 0
351}
352
353# For a FQDN, identify the root domain managed by Plesk, its domain ID in Plesk, and the host if any.
354
355# IMPORTANT NOTE: a result with host = empty string is OK for this API, see
356# https://docs.plesk.com/en-US/obsidian/api-rpc/about-xml-api/reference/managing-dns/managing-dns-records/adding-dns-record.34798
357# See notes at top of this file
358
359_pleskxml_get_root_domain() {
d7affad0 360 original_full_domain_name="$1"
cbacc779 361
362 _debug "Identifying DNS root domain for '$original_full_domain_name' that is managed by the Plesk account."
bc291141 363
364 # test if the domain as provided is valid for splitting.
365
05247dc4 366 if [ "$(_countdots "$original_full_domain_name")" -eq 0 ]; then
bc291141 367 _err "Invalid domain. The ACME domain must contain at least two parts (aa.bb) to identify a domain and tld for the TXT record."
368 return 1
369 fi
370
371 _debug "Querying Plesk server for list of managed domains..."
372
373 _call_api "$pleskxml_tplt_get_domains"
374 if [ "$pleskxml_retcode" -ne 0 ]; then
375 return 1
376 fi
377
378 # Generate a crude list of domains known to this Plesk account.
379 # We convert <ascii-name> tags to <name> so it'll flag on a hit with either <name> or <ascii-name> fields,
380 # for non-Western character sets.
381 # Output will be one line per known domain, containing 2 <name> tages and a single <id> tag
382 # We don't actually need to check for type, name, *and* id, but it guarantees only usable lines are returned.
383
a6b58bc8 384 output="$(_api_response_split "$pleskxml_prettyprint_result" 'result' '<status>ok</status>' | sed 's/<ascii-name>/<name>/g;s/<\/ascii-name>/<\/name>/g' | grep '<name>' | grep '<id>')"
bc291141 385
6d0e4bed 386 _debug 'Domains managed by Plesk server are (ignore the hacked output):'
387 _debug "$output"
bc291141 388
389 # loop and test if domain, or any parent domain, is managed by Plesk
390 # Loop until we don't have any '.' in the string we're testing as a candidate Plesk-managed domain
391
cbacc779 392 root_domain_name="$original_full_domain_name"
393
d7affad0 394 while true; do
bc291141 395
396 _debug "Checking if '$root_domain_name' is managed by the Plesk server..."
397
a8d670fc 398 root_domain_id="$(_value "$output" | grep "<name>$root_domain_name</name>" | _head_n 1 | sed 's/^.*<id>\([0-9]\{1,\}\)<\/id>.*$/\1/')"
bc291141 399
400 if [ -n "$root_domain_id" ]; then
401 # Found a match
402 # SEE IMPORTANT NOTE ABOVE - THIS FUNCTION CAN RETURN HOST='', AND THAT'S OK FOR PLESK XML API WHICH ALLOWS IT.
403 # SO WE HANDLE IT AND DON'T PREVENT IT
a8d670fc 404 sub_domain_name="$(_value "$original_full_domain_name" | sed "s/\.\{0,1\}${root_domain_name}"'$//')"
d7affad0 405 _info "Success. Matched host '$original_full_domain_name' to: DOMAIN '${root_domain_name}' (Plesk ID '${root_domain_id}'), HOST '${sub_domain_name}'. Returning."
bc291141 406 return 0
407 fi
408
409 # No match, try next parent up (if any)...
410
bc291141 411 root_domain_name="$(_valuecut 2 1000 "$root_domain_name")"
bc291141 412
38854bd8 413 if [ "$(_countdots "$root_domain_name")" -eq 0 ]; then
d7affad0 414 _debug "No match, and next parent would be a TLD..."
415 _err "Cannot find '$original_full_domain_name' or any parent domain of it, in Plesk."
416 _err "Are you sure that this domain is managed by this Plesk server?"
417 return 1
418 fi
bc291141 419
d7affad0 420 _debug "No match, trying next parent up..."
bc291141 421
d7affad0 422 done
bc291141 423}