diff --git a/assets/js/main.js b/assets/js/main.js index 0bd9b65b..9feba944 100644 --- a/assets/js/main.js +++ b/assets/js/main.js @@ -1,3 +1,5 @@ +let YUNOHOSTDOMAINS = [".noho.st",".ynh.fr",".nohost.me"] + $(document).ready(function() { if (window.location.pathname != "/install") { @@ -184,6 +186,25 @@ $(document).ready(function() { }; }; + function form_update_subscribe(){ + var yunohost = false; + for (let i in YUNOHOSTDOMAINS){ + if ($("#main_domain").val().endsWith(YUNOHOSTDOMAINS[i])){ + yunohost = true; + } + } + var body = $(".subscribe-password-div") + if (yunohost){ + body.show(); + $("input", body).addClass("validate"); + } else { + body.hide(); + $("#domain_password").val(""); + $("#domain_password_repeat").val(""); + $("input", body).removeClass("validate"); + } + } + function form_update_optional_section(name) { status_ = $("#enable_" + name)[0].checked; @@ -232,6 +253,14 @@ $(document).ready(function() { } return true; } + else if (id == "domain_password_repeat") + { + if (item.val() !== $("input[id='domain_password']").val()) + { + return "nomatch"; + } + return true; + } }; function form_validate_item(item) @@ -250,16 +279,22 @@ $(document).ready(function() { item.siblings(".invalid-feedback").hide(); item.siblings(".invalid-feedback."+result).css("display", ""); item.addClass("is-invalid"); + item.attr("aria-invalid","true"); + item.attr("aria-errormessage",item.attr('id')+"_err"+result); return false; } } item.addClass("is-valid"); + item.removeAttr("aria-invalid"); + item.removeAttr("aria-errormessage"); return true; } else { item.addClass("is-invalid"); + item.attr("aria-invalid","true"); + item.attr("aria-errormessage",item.attr('id')+"_errdefault"); return false; } }; @@ -290,6 +325,9 @@ $(document).ready(function() { $(".invalid-feedback").hide(); $(".invalid-feedback.default").css("display", ""); + $("#main_domain").on("change",form_update_subscribe) + form_update_subscribe() + cube_input = $("input[id='cubefile']"); cube_input.change(form_update_cube_file_input); if (cube_input.val()) diff --git a/doc/install1.png b/doc/install1.png index ccb6cd0c..a9a483a6 100644 Binary files a/doc/install1.png and b/doc/install1.png differ diff --git a/install_procedure.py b/install_procedure.py index 7112c9b0..c60ce2ef 100644 --- a/install_procedure.py +++ b/install_procedure.py @@ -31,12 +31,11 @@ def upgrade(install_params): @step def postinstall(install_params): + command = "yunohost tools postinstall --force-diskspace -d '{main_domain}' -p '{password}'".format(**install_params) + if install_params["use_dyndns_domain"] and len(install_params["domain_password"])>0: + command+=f" --subscribe {install_params['domain_password']}" - run_cmd( - "yunohost tools postinstall -d '{main_domain}' -p '{password}'".format( - **install_params - ) - ) + run_cmd(command) @step diff --git a/requirements.txt b/requirements.txt index 263024c5..138caf0d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -10,5 +10,5 @@ Jinja2==2.11.3 MarkupSafe==1.1.1 pytz==2020.1 requests==2.24.0 -urllib3==1.26.5 +urllib3==1.24 Werkzeug==1.0.1 diff --git a/templates/form.html b/templates/form.html index 30710ed1..ee63d375 100644 --- a/templates/form.html +++ b/templates/form.html @@ -3,25 +3,52 @@ {% block main %}