mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
Merge remove_account_option branch
This commit is contained in:
commit
dd42d52ff9
@ -71,11 +71,11 @@ is_valid_revoke_cert(DomainOrFile) ->
|
|||||||
%% Get Certificate
|
%% Get Certificate
|
||||||
%%
|
%%
|
||||||
|
|
||||||
-spec get_certificates(domains_opt(), account_opt()) -> string() | {'error', _}.
|
-spec get_certificates(domains_opt()) -> string() | {'error', _}.
|
||||||
get_certificates(Domains, NewAccountOpt) ->
|
get_certificates(Domains) ->
|
||||||
try
|
try
|
||||||
CAUrl = get_config_ca_url(),
|
CAUrl = get_config_ca_url(),
|
||||||
get_certificates0(CAUrl, Domains, NewAccountOpt)
|
get_certificates0(CAUrl, Domains)
|
||||||
catch
|
catch
|
||||||
throw:Throw ->
|
throw:Throw ->
|
||||||
Throw;
|
Throw;
|
||||||
@ -84,19 +84,23 @@ get_certificates(Domains, NewAccountOpt) ->
|
|||||||
{error, get_certificates}
|
{error, get_certificates}
|
||||||
end.
|
end.
|
||||||
|
|
||||||
-spec get_certificates0(url(), domains_opt(), account_opt()) -> string().
|
-spec get_certificates0(url(), domains_opt()) -> string().
|
||||||
get_certificates0(CAUrl, Domains, "old-account") ->
|
get_certificates0(CAUrl, Domains) ->
|
||||||
%% Get the current account
|
%% Check if an account exists or create another one
|
||||||
{ok, _AccId, PrivateKey} = ensure_account_exists(),
|
{ok, _AccId, PrivateKey} = retrieve_or_create_account(CAUrl),
|
||||||
|
|
||||||
get_certificates1(CAUrl, Domains, PrivateKey);
|
|
||||||
|
|
||||||
get_certificates0(CAUrl, Domains, "new-account") ->
|
|
||||||
%% Create a new account and save it to disk
|
|
||||||
{ok, _Id, PrivateKey} = create_save_new_account(CAUrl),
|
|
||||||
|
|
||||||
get_certificates1(CAUrl, Domains, PrivateKey).
|
get_certificates1(CAUrl, Domains, PrivateKey).
|
||||||
|
|
||||||
|
|
||||||
|
retrieve_or_create_account(CAUrl) ->
|
||||||
|
case read_account_persistent() of
|
||||||
|
none ->
|
||||||
|
create_save_new_account(CAUrl);
|
||||||
|
{ok, AccId, PrivateKey} ->
|
||||||
|
{ok, AccId, PrivateKey}
|
||||||
|
end.
|
||||||
|
|
||||||
|
|
||||||
-spec get_certificates1(url(), domains_opt(), jose_jwk:key()) -> string().
|
-spec get_certificates1(url(), domains_opt(), jose_jwk:key()) -> string().
|
||||||
get_certificates1(CAUrl, "all", PrivateKey) ->
|
get_certificates1(CAUrl, "all", PrivateKey) ->
|
||||||
Hosts = get_config_hosts(),
|
Hosts = get_config_hosts(),
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
%% Migration jabberd1.4
|
%% Migration jabberd1.4
|
||||||
import_file/1, import_dir/1,
|
import_file/1, import_dir/1,
|
||||||
%% Acme
|
%% Acme
|
||||||
get_certificate/2,
|
get_certificate/1,
|
||||||
renew_certificate/0,
|
renew_certificate/0,
|
||||||
list_certificates/1,
|
list_certificates/1,
|
||||||
revoke_certificate/1,
|
revoke_certificate/1,
|
||||||
@ -248,13 +248,11 @@ get_commands_spec() ->
|
|||||||
args = [{file, string}],
|
args = [{file, string}],
|
||||||
result = {res, restuple}},
|
result = {res, restuple}},
|
||||||
#ejabberd_commands{name = get_certificate, tags = [acme],
|
#ejabberd_commands{name = get_certificate, tags = [acme],
|
||||||
desc = "Gets a certificate for all or the specified domains {all|domain1;domain2;...}. Can be used with {old-account|new-account}.",
|
desc = "Gets a certificate for all or the specified domains {all|domain1;domain2;...}.",
|
||||||
module = ?MODULE, function = get_certificate,
|
module = ?MODULE, function = get_certificate,
|
||||||
args_desc = ["Domains for which to acquire a certificate",
|
args_desc = ["Domains for which to acquire a certificate"],
|
||||||
"Whether to create a new account or use the existing one"],
|
args_example = ["all | www.example.com;www.example1.net"],
|
||||||
args_example = ["all | www.example.com;www.example1.net",
|
args = [{domains, string}],
|
||||||
"old-account | new-account"],
|
|
||||||
args = [{domains, string}, {option, string}],
|
|
||||||
result = {certificates, string}},
|
result = {certificates, string}},
|
||||||
#ejabberd_commands{name = renew_certificate, tags = [acme],
|
#ejabberd_commands{name = renew_certificate, tags = [acme],
|
||||||
desc = "Renews all certificates that are close to expiring",
|
desc = "Renews all certificates that are close to expiring",
|
||||||
@ -577,15 +575,10 @@ import_dir(Path) ->
|
|||||||
%%% Acme
|
%%% Acme
|
||||||
%%%
|
%%%
|
||||||
|
|
||||||
get_certificate(Domains, UseNewAccount) ->
|
get_certificate(Domains) ->
|
||||||
case ejabberd_acme:is_valid_domain_opt(Domains) of
|
case ejabberd_acme:is_valid_domain_opt(Domains) of
|
||||||
true ->
|
true ->
|
||||||
case ejabberd_acme:is_valid_account_opt(UseNewAccount) of
|
ejabberd_acme:get_certificates(Domains);
|
||||||
true ->
|
|
||||||
ejabberd_acme:get_certificates(Domains, UseNewAccount);
|
|
||||||
false ->
|
|
||||||
io_lib:format("Invalid account option: ~p", [UseNewAccount])
|
|
||||||
end;
|
|
||||||
false ->
|
false ->
|
||||||
String = io_lib:format("Invalid domains: ~p", [Domains])
|
String = io_lib:format("Invalid domains: ~p", [Domains])
|
||||||
end.
|
end.
|
||||||
|
Loading…
Reference in New Issue
Block a user