/* ; Project: Open Vehicle Monitor System ; Date: 14th March 2017 ; ; Changes: ; 1.0 Initial release ; ; (C) 2018 Michael Balzer ; ; Permission is hereby granted, free of charge, to any person obtaining a copy ; of this software and associated documentation files (the "Software"), to deal ; in the Software without restriction, including without limitation the rights ; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ; copies of the Software, and to permit persons to whom the Software is ; furnished to do so, subject to the following conditions: ; ; The above copyright notice and this permission notice shall be included in ; all copies or substantial portions of the Software. ; ; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ; THE SOFTWARE. */ #include "ovms_log.h" static const char *TAG = "webserver"; #include #include #include #include #include #include "ovms_webserver.h" #include "ovms_config.h" #include "ovms_metrics.h" #include "metrics_standard.h" #include "vehicle.h" #include "ovms_boot.h" #include "ovms_housekeeping.h" #include "ovms_peripherals.h" #ifdef CONFIG_OVMS_COMP_OTA #include "ovms_ota.h" #endif #if defined(CONFIG_OVMS_COMP_SERVER) && defined(CONFIG_OVMS_COMP_SERVER_V2) #include "ovms_server_v2.h" #endif #define _attr(text) (c.encode_html(text).c_str()) #define _html(text) (c.encode_html(text).c_str()) #ifdef WEBSRV_HAVE_SETUPWIZARD /** * HandleCfgInit: /cfg/init: setup wizard dispatcher */ void OvmsWebServer::HandleCfgInit(PageEntry_t& p, PageContext_t& c) { std::string step = MyConfig.GetParamValue("module", "init"); if (step.empty()) step = "1"; ESP_LOGI(TAG, "CfgInit enter %s", step.c_str()); c.head(200); if (c.method == "POST") { if (c.getvar("action") == "abort") { ESP_LOGI(TAG, "CfgInit abort"); CfgInitSetStep("done"); c.alert("info", "

Setup wizard aborted.

" "

Use the configuration menu to do a manual setup. Check the user guide for instructions.

"); OutputHome(p, c); c.done(); return; } else if (c.getvar("action") == "skip") { char sc = step[0]; if (sc == '5') step = "done"; else step = sc+1; ESP_LOGI(TAG, "CfgInit skip to %s", step.c_str()); CfgInitSetStep(step); c.method = "GET"; } } // todo… use function pointers, esp. if we need 'back' option if (startsWith(step, "1")) { if (!(step = MyWebServer.CfgInit1(p, c, step)).empty()) { ESP_LOGI(TAG, "CfgInit next: %s", step.c_str()); c.method = "GET"; } } if (startsWith(step, "2")) { if (!(step = MyWebServer.CfgInit2(p, c, step)).empty()) { ESP_LOGI(TAG, "CfgInit next: %s", step.c_str()); c.method = "GET"; } } if (startsWith(step, "3")) { if (!(step = MyWebServer.CfgInit3(p, c, step)).empty()) { ESP_LOGI(TAG, "CfgInit next: %s", step.c_str()); c.method = "GET"; } } if (startsWith(step, "4")) { if (!(step = MyWebServer.CfgInit4(p, c, step)).empty()) { ESP_LOGI(TAG, "CfgInit next: %s", step.c_str()); c.method = "GET"; } } if (startsWith(step, "5")) { if (!(step = MyWebServer.CfgInit5(p, c, step)).empty()) { ESP_LOGI(TAG, "CfgInit next: %s", step.c_str()); c.method = "GET"; } } if (step == "done") { c.alert("success", "

Setup wizard completed.

" "

Your OVMS module is now ready to use. Please have a look at the menus for more options.

"); OutputHome(p, c); } c.done(); } /** * CfgInit state process */ void OvmsWebServer::CfgInitStartup() { std::string step = MyConfig.GetParamValue("module", "init"); if (!step.empty() && step != "done") { if (MyBoot.GetEarlyCrashCount() > 0) { // early crash: restore default access ESP_LOGE(TAG, "CfgInit: early crash detected at step %s", step.c_str()); CfgInitSetStep("restore", 1); } else { ESP_LOGI(TAG, "CfgInit: continue at step %s after reboot", step.c_str()); m_init_timeout = 5; } } } std::string OvmsWebServer::CfgInitSetStep(std::string step, int timeout /*=0*/) { ESP_LOGI(TAG, "CfgInitSetStep: step %s timeout %d", step.c_str(), timeout); MyConfig.SetParamValue("module", "init", step); MyWebServer.m_init_timeout = timeout; return step; } void OvmsWebServer::CfgInitTicker() { if (m_init_timeout == 0) return; std::string step = MyConfig.GetParamValue("module", "init"); if (step.empty() || step == "done") { m_init_timeout = 0; return; } if (m_init_timeout % 5 == 0) ESP_LOGI(TAG, "CfgInitTicker: step %s timeout in %d seconds", step.c_str(), m_init_timeout); if (--m_init_timeout != 0) return; ESP_LOGI(TAG, "CfgInitTicker: step %s timeout", step.c_str()); if (step == "1.test.start") { // reconfigure wifi AP: std::string ap_ssid = MyConfig.GetParamValue("vehicle", "id"); std::string ap_pass = MyConfig.GetParamValue("wifi.ap", ap_ssid); if (ap_ssid.empty() || ap_pass.length() < 8) { ESP_LOGE(TAG, "CfgInitTicker: step 1: wifi AP config invalid"); CfgInitSetStep("restore", 1); } else { ESP_LOGI(TAG, "CfgInitTicker: step 1: starting wifi AP '%s'", ap_ssid.c_str()); MyPeripherals->m_esp32wifi->StartAccessPointMode(ap_ssid, ap_pass); CfgInitSetStep("1.test.connect", 300); } } else if (step == "1.test.connect") { // timeout waiting for user: ESP_LOGE(TAG, "CfgInitTicker: step 1: timeout waiting for user at new AP"); CfgInitSetStep("restore", 1); } else if (step == "restore") { // revert to factory default AP & password: ESP_LOGE(TAG, "CfgInitTicker: restoring default access, AP 'OVMS'/'OVMSinit'"); MyConfig.DeleteInstance("password", "module"); MyConfig.DeleteInstance("auto", "wifi.mode"); MyConfig.DeleteInstance("auto", "wifi.ssid.ap"); MyConfig.DeleteInstance("auto", "wifi.ssid.client"); MyConfig.DeleteInstance("wifi.ap", "OVMS"); MyConfig.DeleteInstance("network", "dns"); std::string ssid = MyConfig.GetParamValue("vehicle", "id"); MyConfig.DeleteInstance("wifi.ap", ssid); MyPeripherals->m_esp32wifi->StartAccessPointMode("OVMS", "OVMSinit"); CfgInitSetStep("1.fail"); } else if (step == "2.test.start") { // reconfigure wifi to APCLIENT: std::string ap_ssid = MyConfig.GetParamValue("vehicle", "id"); std::string ap_pass = MyConfig.GetParamValue("wifi.ap", ap_ssid); if (ap_ssid.empty() || ap_pass.length() < 8) { ESP_LOGE(TAG, "CfgInitTicker: step 2: wifi AP config invalid, return to step 1"); CfgInitSetStep("restore", 1); return; } std::string cl_ssid = MyConfig.GetParamValue("auto", "wifi.ssid.client"); std::string cl_pass = MyConfig.GetParamValue("wifi.ssid", cl_ssid); if (cl_ssid.empty() || cl_pass.empty()) { ESP_LOGE(TAG, "CfgInitTicker: step 2: wifi client config invalid"); MyConfig.DeleteInstance("auto", "wifi.mode"); MyConfig.DeleteInstance("auto", "wifi.ssid.client"); MyConfig.DeleteInstance("network", "dns"); CfgInitSetStep("2.fail.connect"); } else { ESP_LOGI(TAG, "CfgInitTicker: step 2: starting wifi APCLIENT '%s' / '%s'", ap_ssid.c_str(), cl_ssid.c_str()); MyPeripherals->m_esp32wifi->StartAccessPointClientMode(ap_ssid, ap_pass, cl_ssid, cl_pass); CfgInitSetStep("2.test.connect", 20); } } else if (step == "2.test.connect") { // test wifi client connection: std::string ssid = MyConfig.GetParamValue("auto", "wifi.ssid.client"); if (!MyNetManager.m_connected_wifi || MyPeripherals->m_esp32wifi->GetSSID() != ssid) { ESP_LOGI(TAG, "CfgInitTicker: step 2: wifi connection to '%s' failed, reverting to AP mode", ssid.c_str()); MyConfig.DeleteInstance("auto", "wifi.mode"); MyConfig.DeleteInstance("auto", "wifi.ssid.client"); MyConfig.DeleteInstance("network", "dns"); std::string ap_ssid = MyConfig.GetParamValue("vehicle", "id"); std::string ap_pass = MyConfig.GetParamValue("wifi.ap", ap_ssid); MyPeripherals->m_esp32wifi->StartAccessPointMode(ap_ssid, ap_pass); CfgInitSetStep("2.fail.connect"); } #ifdef CONFIG_OVMS_COMP_OTA else { ota_info info; MyOTA.GetStatus(info, true); if (info.version_server.empty()) { ESP_LOGI(TAG, "CfgInitTicker: step 2: server connection failed"); CfgInitSetStep("2.fail.server"); } else { ESP_LOGI(TAG, "CfgInitTicker: step 2: success, proceeding to step 3"); CfgInitSetStep("3"); } } #endif } else if (step == "4.test.start") { std::string vehicletype = MyConfig.GetParamValue("auto", "vehicle.type"); std::string server = MyConfig.GetParamValue("server.v2", "server"); if (StdMetrics.ms_v_type->AsString() != vehicletype) { // stage 1: configure vehicle type: ESP_LOGI(TAG, "CfgInitTicker: step 4: setting vehicle type '%s'", vehicletype.c_str()); MyVehicleFactory.SetVehicle(vehicletype.c_str()); if (!MyVehicleFactory.ActiveVehicle()) { ESP_LOGE(TAG, "CfgInitTicker: step 4: cannot set vehicle type '%s'", vehicletype.c_str()); MyConfig.DeleteInstance("auto", "vehicle.type"); CfgInitSetStep("4.fail.vehicle"); return; } CfgInitSetStep("4.test.start", 3); // stage 2 after 3 seconds } #if defined(CONFIG_OVMS_COMP_SERVER) && defined(CONFIG_OVMS_COMP_SERVER_V2) else { // stage 2: start/stop V2 server: if (MyOvmsServerV2) { ESP_LOGI(TAG, "CfgInitTicker: step 4: stop server v2"); delete MyOvmsServerV2; MyOvmsServerV2 = NULL; } if (!server.empty()) { ESP_LOGI(TAG, "CfgInitTicker: step 4: start server v2 for host '%s'", server.c_str()); MyOvmsServerV2 = new OvmsServerV2("oscv2"); } CfgInitSetStep("4.test.connect"); } #endif } #ifdef CONFIG_OVMS_COMP_CELLULAR else if (step == "5.test.start") { if (!MyPeripherals || !MyPeripherals->m_cellular_modem) { ESP_LOGE(TAG, "CfgInitTicker: step 5: cellular modem not available"); CfgInitSetStep("done"); } if (MyPeripherals->m_cellular_modem->GetPowerMode() != On) { ESP_LOGI(TAG, "CfgInitTicker: step 5: cellular modem power on"); MyPeripherals->m_cellular_modem->SetPowerMode(On); } else { ESP_LOGI(TAG, "CfgInitTicker: step 5: cellular modem enter state NetStart"); MyPeripherals->m_cellular_modem->SendSetState1(modem::NetStart); } } #endif } /** * CfgInit1: Secure module * - enter AP SSID & password * - set AP network, restart AP * - if user doesn't come back within 5 minutes: revert AP net to OVMS/OVMSinit * - else: configure autostart, module password & vehicle auth */ std::string OvmsWebServer::CfgInit1(PageEntry_t& p, PageContext_t& c, std::string step) { std::string error; std::string moduleid, newpass1, newpass2; if (c.method == "POST") { // check input: moduleid = c.getvar("moduleid"); newpass1 = c.getvar("newpass1"); newpass2 = c.getvar("newpass2"); if (moduleid.empty()) error += "
  • The module ID must not be empty
  • "; if (moduleid.find_first_not_of("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-") != std::string::npos) error += "
  • Module ID may only contain ASCII letters, digits and '-'
  • "; if (newpass1.length() < 8) error += "
  • New password must have at least 8 characters
  • "; if (newpass2 != newpass1) error += "
  • Passwords do not match
  • "; if (error == "") { // OK, start test: ESP_LOGI(TAG, "CfgInit1: starting test: AP '%s'", moduleid.c_str()); MyConfig.SetParamValue("vehicle", "id", moduleid); MyConfig.SetParamValue("password", "module", newpass1); MyConfig.SetParamValue("wifi.ap", moduleid, newpass1); MyConfig.SetParamValue("auto", "wifi.mode", "ap"); MyConfig.SetParamValue("auto", "wifi.ssid.ap", moduleid); step = CfgInitSetStep("1.test.start", 5); } else { // output error, return to form: error = "

    Error!

      " + error + "
    "; c.alert("danger", error.c_str()); step = CfgInitSetStep("1"); } } else { moduleid = MyConfig.GetParamValue("vehicle", "id"); if (step == "1.test.connect") { if (MyPeripherals->m_esp32wifi->GetAPSSID() == moduleid) { // OK, user connected to new AP: proceed to step 2 ESP_LOGI(TAG, "CfgInit1: AP test succeeded"); CfgInitSetStep("2"); return "2"; } step = CfgInitSetStep("1.fail"); } } // display: if (startsWith(step, "1.test")) { c.printf( "
    " "

    What happens now?

    " "

    The OVMS Wifi access point now gets reconfigured to the new module ID and password," " so you will now lose connection to the module and need to reconnect using the new ID and password.

    " "

    Open your Wifi configuration now and connect to the new Wifi network %s," " then reload this page.

    " "

    Reload page

    " "

    If you can't reconnect, don't panic.

    " "

    The module will revert to the factory default configuration if you don't reconnect within 5 minutes.

    " "

    Alternatively, you may simply unplug the module and start again.

    " "
    " , moduleid.c_str()); return ""; } if (step == "1.fail") { ESP_LOGI(TAG, "CfgInit1: AP test failed"); if (MyBoot.GetEarlyCrashCount() > 0) { c.alert("warning", "

    Crash reboot detected!

    " "

    Sorry, this really should not happen.

    " "

    Please check if the problem persists, if so note your configuration inputs" " and ask for support on the OpenVehicles forum.

    " "

    You can also try a different confiuration, as the problem is most probably" " related to your specific setup.

    "); } else { c.alert("warning", "

    Something went wrong.

    " "

    You did not connect to the new access point. Please check your ID and password and try again.

    "); } } // Wizard status: c.alert("info", "

    Quick setup wizard

    " "
      " "
    1. Secure module access
    2. " "
    3. Connect module to internet (via Wifi)
    4. " "
    5. Update to latest firmware version
    6. " "
    7. Configure vehicle type and server
    8. " "
    9. Configure cellular modem (if equipped)
    10. " "
    "); // create some random passwords: std::ostringstream pwsugg; srand48(StdMetrics.ms_m_monotonic->AsInt() * StdMetrics.ms_m_freeram->AsInt()); pwsugg << "

    Inspiration:"; for (int i=0; i<5; i++) pwsugg << " " << c.encode_html(pwgen(12)) << ""; pwsugg << "

    "; // generate form: c.panel_start("primary", "Step 1/5: Secure Module"); c.print( "

    Your module may currently be accessed by anyone in Wifi range using the default" " password, so we first should do something about that.

    " "

    This setup step will change both the Wifi access point and the module admin" " password, so the module is secured for both local and remote access.

    "); c.form_start(p.uri); c.input_text("Module ID", "moduleid", moduleid.c_str(), "Use ASCII letters, digits and '-'", "

    Enter a unique personal module/vehicle ID, e.g. your nickname or vehicle license plate number.

    " "

    If already registered at an OVMS server, use the vehicle ID as registered.

    " "

    The ID will be used for the Wifi access point, check if it is free to use within your Wifi range.

    ", "autocomplete=\"section-module username\""); c.input_password("Module password", "newpass1", "", "Enter a password, min. 8 characters", pwsugg.str().c_str(), "autocomplete=\"section-module new-password\""); c.input_password("Repeat password", "newpass2", "", "Repeat password to verify entry", NULL, "autocomplete=\"section-module new-password\""); c.print( "
    " "
    " " " " " " " "
    " "
    "); c.form_end(); c.panel_end(); c.alert("info", "

    What will happen next?

    " "

    The OVMS Wifi access point will be reconfigured to the new module ID and password," " so you will lose connection to the module and need to reconnect using the new ID and password.

    " "

    If you can't reconnect, don't panic.

    " "

    The module will revert to the old configuration if you don't reconnect within 5 minutes.

    " "

    Alternatively, you may simply unplug the module and start again.

    "); return ""; } /** * CfgInit2: Connect to Wifi network * - TODO: show list of SSIDs from scan * - Select/input SSID & password * - Test connection */ std::string OvmsWebServer::CfgInit2(PageEntry_t& p, PageContext_t& c, std::string step) { std::string error; std::string ssid, pass, dns; if (c.method == "POST") { // check input: ssid = c.getvar("ssid"); pass = c.getvar("pass"); if (pass.empty()) pass = MyConfig.GetParamValue("wifi.ssid", ssid); dns = c.getvar("dns"); if (ssid.empty()) error += "
  • The Wifi network ID must not be empty
  • "; if (pass.empty()) error += "
  • The Wifi network password must not be empty
  • "; if (error == "") { // OK, start test: MyConfig.SetParamValue("wifi.ssid", ssid, pass); MyConfig.SetParamValue("auto", "wifi.mode", "apclient"); MyConfig.SetParamValue("auto", "wifi.ssid.client", ssid); MyConfig.SetParamValue("network", "dns", dns); c.alert("success", "

    OK.

    "); step = CfgInitSetStep("2.test.start", 5); } else { // output error, return to form: error = "

    Error!

      " + error + "
    "; c.alert("danger", error.c_str()); step = CfgInitSetStep("2"); } } else { ssid = MyConfig.GetParamValue("auto", "wifi.ssid.client"); pass = MyConfig.GetParamValue("wifi.ssid", ssid); dns = MyConfig.GetParamValue("network", "dns"); } // display: if (startsWith(step, "2.test")) { c.printf( "
    " "

    What happens now?

    " "

    The OVMS now tries to connect to the Wifi network %s, if successful" " then tries to contact the OpenVehicles server to check the internet access.

    " "

    Please be patient, this can take up to 2 minutes.

    " "

    Note: the OVMS Wifi access point will continue serving network %s, but you" " may lose connection to the module and need to reconnect manually.

    " "

    Have an eye on your Wifi association to see if/when you need to reconnect manually.

    " "
    " , ssid.c_str() , MyConfig.GetParamValue("auto", "wifi.ssid.ap").c_str()); OutputReconnect(p, c, "Testing internet connection…"); return ""; } if (step == "2.fail.connect") { c.printf( "
    " "

    Wifi connection failed!

    " "

    The module could not connect to the Wifi network %s.

    " "

    Please check SSID & password, then try again.

    " "
    " , ssid.c_str()); } else if (step == "2.fail.server") { c.printf( "
    " "

    Server access failed!

    " "

    The module could not retrieve the latest version info from the OpenVehicles" " server using Wifi network %s.

    " "

    This may be due to a network or a temporary server problem.

    " "

    Please check the network and try again.

    " "
    " , ssid.c_str()); } // Wizard status: c.alert("info", "

    Quick setup wizard

    " "
      " "
    1. Secure module access
    2. " "
    3. Connect module to internet (via Wifi)
    4. " "
    5. Update to latest firmware version
    6. " "
    7. Configure vehicle type and server
    8. " "
    9. Configure cellular modem (if equipped)
    10. " "
    "); // generate form: c.panel_start("primary", "Step 2/5: Connect to Internet"); c.print( "

    Your module now needs an internet connection to download the latest firmware" " version from the OpenVehicles server.

    "); c.form_start(p.uri); c.printf( "
    \n" "\n" "
    \n" "
    \n" "\n" "
    \n" "\n" "
    \n" "
    \n" "\n" "

    Please enter or select a Wifi network that provides access to the internet.

    \n" "

    Note: you may later configure the OVMS to select among multiple Wifi networks.

    \n" "
    \n" "
    \n" "
    \n" , ssid.c_str()); /* c.input_text("Wifi network SSID", "ssid", ssid.c_str(), "Enter Wifi SSID", "

    Please enter a Wifi network that provides access to the internet.

    " "

    Note: you may later configure the OVMS to select among multiple Wifi networks.

    ", "autocomplete=\"section-wifi-client username\""); */ c.input_password("Wifi network password", "pass", "", (pass.empty()) ? "Enter Wifi password" : "Empty = no change (retry)", NULL, "autocomplete=\"section-wifi-client current-password\""); c.input_radio_start("DNS server", "dns"); c.input_radio_option("dns", "Use default DNS of the Wifi network", "" , dns == ""); c.input_radio_option("dns", "Use Google public DNS (8.8.8.8 8.8.4.4)", "8.8.8.8 8.8.4.4" , dns == "8.8.8.8 8.8.4.4"); c.input_radio_option("dns", "Use Cloudflare public DNS (1.1.1.1)", "1.1.1.1" , dns == "1.1.1.1"); c.input_radio_end( "

    If the server connection fails with your default DNS, try one of the other options.

    "); c.print( "
    " "
    " " " " " " " "
    " "
    "); c.form_end(); c.panel_end(); c.print( "\n" ""); c.printf( "
    " "

    What will happen next?

    " "

    The OVMS will try to connect to the Wifi network and then try to" " contact the OpenVehicles server to check the internet access.

    " "

    The OVMS access point will continue serving network %s, but you may" " temporarily lose connection to the network and need to reconnect manually.

    " "

    If you can't reconnect, don't panic.

    " "

    The module will revert to the old configuration if you don't reconnect within 5 minutes.

    " "

    Alternatively, you may simply unplug the module and start again.

    " "
    " , MyConfig.GetParamValue("auto", "wifi.ssid.ap").c_str()); return ""; } /** * CfgInit3: Update firmware */ std::string OvmsWebServer::CfgInit3(PageEntry_t& p, PageContext_t& c, std::string step) { #ifdef CONFIG_OVMS_COMP_OTA std::string error; std::string action; std::string server; ota_info info; if (c.method == "POST") { action = c.getvar("action"); if (action == "reboot") { // reboot, then proceed to step 4: CfgInitSetStep("4"); OutputReboot(p, c); return ""; } else if (action == "change") { step = CfgInitSetStep("3"); } else { // set server, start update: server = c.getvar("server"); if (!server.empty()) MyConfig.SetParamValue("ota", "server", server); step = CfgInitSetStep("3.update"); } } if (server.empty()) server = MyConfig.GetParamValue("ota", "server"); if (server.empty()) server = "https://ovms-ota.bit-cloud.de"; MyOTA.GetStatus(info, true); // check if update has been successful: if (step == "3.update") { if (!info.version_server.empty() && !info.update_available) { ESP_LOGI(TAG, "CfgInit3: firmware up to date, proceeding to step 4"); c.alert("success", "

    Firmware up to date.

    "); return CfgInitSetStep("4"); } } // output: if (info.version_server.empty()) { c.printf( "
    " "

    Update server currently unavailable!

    " "

    Retrieving the firmware version from server %s failed.

    " "

    Please select another server or try again later.

    " "
    " , server.c_str()); // back to input: step = CfgInitSetStep("3"); } if (step == "3.update") { // Flash & reboot: c.print( "
    " "
    " "
    " "
    " "

    Flashing…

    " "
    " "
    " "
    " "

    What happens now?

    " "

    The module now downloads and installs the latest firmware version from the update server.

    " "

    This will normally take about 30-60 seconds, depending on your internet speed.

    " "

    When finished (\"flash was successful\"), click \"Reboot now\" to restart the module" " using the new firmware.

    " "

    After reboot and relogin, the setup will automatically continue.

    " "

    Don't panic if something goes wrong and the module gets stuck in the update.

    " "

    You can simply unplug and restart the module, it will show the update form again so you can choose to" " retry, try another server or skip the update.

    " "
    " "
    "
                "
    " "
    " "" "" "
    " "
    " "
    " "
    " ""); return ""; } // Wizard status: c.alert("info", "

    Quick setup wizard

    " "
      " "
    1. Secure module access
    2. " "
    3. Connect module to internet (via Wifi)
    4. " "
    5. Update to latest firmware version
    6. " "
    7. Configure vehicle type and server
    8. " "
    9. Configure cellular modem (if equipped)
    10. " "
    "); // form: c.panel_start("primary", "Step 3/5: Update Firmware"); c.form_start(p.uri); c.input_radio_start("Update server", "server"); c.input_radio_option("server", "Europe, Germany (ovms-ota.bit-cloud.de)", "https://ovms-ota.bit-cloud.de" , server == "https://ovms-ota.bit-cloud.de"); c.input_radio_option("server", "Asia-Pacific (openvehicles.com)", "https://ovms-ota.bit-cloud.de" , server == "https://ovms-ota.bit-cloud.de"); c.input_radio_option("server", "Europe (dexters-web.de)", "https://ovms.dexters-web.de/firmware/ota", server == "https://ovms.dexters-web.de/firmware/ota"); c.input_radio_end(); c.print( "
    " "
    " " " " " " " "
    " "
    "); c.form_end(); c.panel_end(); c.alert("info", "

    What will happen next?

    " "

    The module will check the update server for a new firmware version, and automatically download" " and install it if an update is available.

    " "

    Don't panic if something goes wrong and the module gets stuck in the update.

    " "

    You can simply unplug and restart the module, it will show this form again so you can choose to" " retry or try another server.

    "); return ""; #else ESP_LOGI(TAG, "CfgInit3: OTA disabled, proceeding to step 4"); c.alert("danger", "

    Firmware cannot be updated, OTA is disabled.

    "); return CfgInitSetStep("4"); #endif } /** * CfgInit4: vehicle & server * - TODO: server account auto create API (should only need an email address) */ std::string OvmsWebServer::CfgInit4(PageEntry_t& p, PageContext_t& c, std::string step) { std::string error, info; std::string vehicletype, units_distance, units_temp, units_pressure; std::string server, vehicleid, password; if (c.method == "POST") { if (startsWith(step, "4.test")) { // action from test dialog: if (c.getvar("action") == "keep") { if (!MyConfig.GetParamValue("server.v2", "server").empty()) MyConfig.SetParamValueBool("auto", "server.v2", true); return CfgInitSetStep("5"); } else if (c.getvar("action") == "change") { step = CfgInitSetStep("4"); c.method = "GET"; } } else { // process form input: vehicletype = c.getvar("vehicletype"); units_distance = c.getvar("units_distance"); units_temp = c.getvar("units_temp"); units_pressure = c.getvar("units_pressure"); server = c.getvar("server"); vehicleid = c.getvar("vehicleid"); password = c.getvar("password"); if (password.empty()) password = MyConfig.GetParamValue("password", "module"); if (vehicleid.length() == 0) error += "
  • Vehicle ID must not be empty
  • "; if (vehicleid.find_first_not_of("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-") != std::string::npos) error += "
  • Vehicle ID may only contain ASCII letters, digits and '-'
  • "; // configure vehicle: OvmsMetricSetUserConfig(GrpDistance, units_distance); if (units_distance == "miles") { OvmsMetricSetUserConfig(GrpDistanceShort, "feet"); OvmsMetricSetUserConfig(GrpSpeed, "miph"); OvmsMetricSetUserConfig(GrpAccel, "miphps"); OvmsMetricSetUserConfig(GrpAccelShort, "ftpss"); OvmsMetricSetUserConfig(GrpConsumption, "mipkwh"); } else { // Set to their defaults. OvmsMetricSetUserConfig(GrpDistanceShort, ""); OvmsMetricSetUserConfig(GrpSpeed, ""); OvmsMetricSetUserConfig(GrpAccel, ""); OvmsMetricSetUserConfig(GrpAccelShort, ""); OvmsMetricSetUserConfig(GrpConsumption, ""); } MyConfig.SetParamValue("auto", "vehicle.type", vehicletype); // configure server: MyConfig.SetParamValue("server.v2", "server", server); MyConfig.SetParamValueBool("server.v2", "tls", true); if (error == "" && !server.empty()) { MyConfig.SetParamValue("vehicle", "id", vehicleid); MyConfig.SetParamValue("password","server.v2", password); } if (error == "") { // start test: step = CfgInitSetStep("4.test.start", 3); } else { // output error, return to form: error = "

    Error!

      " + error + "
    "; c.alert("danger", error.c_str()); step = CfgInitSetStep("4"); } } } if (c.method == "GET") { // read configuration: vehicleid = MyConfig.GetParamValue("vehicle", "id"); vehicletype = MyConfig.GetParamValue("auto", "vehicle.type"); units_distance = OvmsMetricGetUserConfig(GrpDistance); units_temp = OvmsMetricGetUserConfig(GrpTemp); units_pressure = OvmsMetricGetUserConfig(GrpPressure); server = MyConfig.GetParamValue("server.v2", "server"); password = MyConfig.GetParamValue("password","server.v2"); // default data server = ota server: if (server.empty()) { server = MyConfig.GetParamValue("ota", "server"); if (startsWith(server, "ovms-ota.bit-cloud.de")) server = "ovms-server.bit-cloud.de"; else server = "ovms.dexters-web.de"; } } // output: if (startsWith(step, "4.test")) { c.print( "
    " "
    " "
    " "
    " "

    Testing Vehicle & Server

    " "
    " "
    " "
    " "

    What happens now?

    " "

    The module now configures the vehicle type, then tries to connect to the OVMS data server.

    " "

    This may take a few seconds, the progress is shown below.

    " "
    " "
    "
                  "
    "
                "
    " "
    " "" "" "
    " "
    " "
    " "
    " ""); return ""; } if (step == "4.fail.vehicle") { c.printf( "
    " "

    Vehicle type setup failed!

    " "

    Sorry, this really should not happen.

    " "

    Please use a generic vehicle type like the demonstration vehicle or OBDII for the moment" " and ask for support on the OpenVehicles forum.

    " "
    "); } // Wizard status: c.alert("info", "

    Quick setup wizard

    " "
      " "
    1. Secure module access
    2. " "
    3. Connect module to internet (via Wifi)
    4. " "
    5. Update to latest firmware version
    6. " "
    7. Configure vehicle type and server
    8. " "
    9. Configure cellular modem (if equipped)
    10. " "
    "); // form: c.panel_start("primary", "Step 4/5: Vehicle & Server"); c.form_start(p.uri); c.input_select_start("Vehicle type", "vehicletype"); c.input_select_option("—", "", vehicletype.empty()); for (OvmsVehicleFactory::map_vehicle_t::iterator k=MyVehicleFactory.m_vmap.begin(); k!=MyVehicleFactory.m_vmap.end(); ++k) c.input_select_option(k->second.name, k->first, (vehicletype == k->first)); c.input_select_end(); bool is_metric = units_distance != "miles"; c.input_radiobtn_start("Distance related units", "units_distance"); c.input_radiobtn_option("units_distance", "Metric (km & metres)", "", is_metric); c.input_radiobtn_option("units_distance", "Imperial (miles & feet)", "miles", !is_metric); c.input_radiobtn_end(); is_metric = units_temp != "fahrenheit"; c.input_radiobtn_start("Temperature units", "units_temp"); c.input_radiobtn_option("units_temp", "Metric (°C)", "", is_metric); c.input_radiobtn_option("units_temp", "Imperial (°F)", "fahrenheit", !is_metric); c.input_radiobtn_end(); is_metric = units_pressure != "psi"; c.input_radiobtn_start("Pressure units", "units_pressure"); c.input_radiobtn_option("units_pressure", "Metric (kPa)", "", is_metric); c.input_radiobtn_option("units_pressure", "Imperial (PSI)", "psi", !is_metric); c.input_radiobtn_end(); c.input_radio_start("OVMS data server", "server"); c.input_radio_option("server", "No server connection", "" , server == ""); c.input_radio_option("server", "Europe, Germany (ovms-server.bit-cloud.de) Registration", "ovms-server.bit-cloud.de" , server == "ovms-server.bit-cloud.de"); c.input_radio_option("server", "Asia-Pacific (openvehicles.com) Registration", "api.openvehicles.com" , server == "api.openvehicles.com"); c.input_radio_option("server", "Europe (dexters-web.de) Registration", "ovms.dexters-web.de", server == "ovms.dexters-web.de"); c.input_radio_end(); c.input_text("Vehicle ID", "vehicleid", vehicleid.c_str(), "Use ASCII letters, digits and '-'", NULL, "autocomplete=\"section-serverv2 username\""); c.input_password("Server password", "password", "", "empty = use module password", "

    Note: enter the password for the vehicle ID, not your user account password

    ", "autocomplete=\"section-serverv2 current-password\""); c.print( "
    " "
    " " " " " " " "
    " "
    "); c.form_end(); c.panel_end(); c.alert("info", "

    What will happen next?

    " "

    The module will configure itself for your vehicle type.

    " "

    If you have selected a data server, it will try to connect to the server using the" " login (ID) and password and display the results.

    " "

    The progress is shown live and can be cancelled any time.

    "); return ""; } /** * CfgInit5: modem */ std::string OvmsWebServer::CfgInit5(PageEntry_t& p, PageContext_t& c, std::string step) { std::string error, info; bool modem = false, gps = false; std::string apn, apn_user, apn_pass; if (c.method == "POST") { if (startsWith(step, "5.test")) { // action from test dialog: if (c.getvar("action") == "keep") { MyConfig.SetParamValueBool("auto", "modem", true); return CfgInitSetStep("done"); } else if (c.getvar("action") == "change") { step = CfgInitSetStep("5"); c.method = "GET"; } } else { // process form input: modem = c.getvar("modem") == "yes"; apn = c.getvar("apn"); apn_user = c.getvar("apn_user"); apn_pass = c.getvar("apn_pass"); gps = c.getvar("gps") == "yes"; MyConfig.SetParamValue("modem", "apn", apn); MyConfig.SetParamValue("modem", "apn.user", apn_user); MyConfig.SetParamValue("modem", "apn.password", apn_pass); MyConfig.SetParamValueBool("modem", "enable.gps", gps); MyConfig.SetParamValueBool("modem", "enable.gpstime", gps); if (modem) { // start test: ESP_LOGI(TAG, "CfgInit5: starting test"); step = CfgInitSetStep("5.test.start", 3); } else { ESP_LOGI(TAG, "CfgInit5: cellular modem disabled"); MyConfig.SetParamValueBool("auto", "modem", false); return CfgInitSetStep("done"); } } } if (c.method == "GET") { // read configuration: modem = MyConfig.GetParamValueBool("auto", "modem", false); apn = MyConfig.GetParamValue("modem", "apn"); apn_user = MyConfig.GetParamValue("modem", "apn.user"); apn_pass = MyConfig.GetParamValue("modem", "apn.password"); gps = MyConfig.GetParamValueBool("modem", "enable.gps", false); // default: hologram if (apn.empty()) apn = "hologram"; } // output: if (startsWith(step, "5.test")) { c.print( "
    " "
    " "
    " "
    " "

    Testing cellular modem APN

    " "
    " "
    " "
    " "

    What happens now?

    " "

    The cellular modem now tries to register with the mobile network.

    " "

    This may take up to a few minutes depending on your mobile provider and the" " SIM activation status. The progress is shown below.

    " "

    The cellular modem is connected when State: NetMode and PPP connected" " have been established.

    " "
    " "
    "
                "
    " "
    " "" "" "
    " "
    " "
    " "
    " ""); return ""; } // Wizard status: c.alert("info", "

    Quick setup wizard

    " "
      " "
    1. Secure module access
    2. " "
    3. Connect module to internet (via Wifi)
    4. " "
    5. Update to latest firmware version
    6. " "
    7. Configure vehicle type and server
    8. " "
    9. Configure cellular modem (if equipped)
    10. " "
    "); // form: c.panel_start("primary", "Step 5/5: Cellular Modem"); c.form_start(p.uri); std::string iccid = StdMetrics.ms_m_net_mdm_iccid->AsString(); if (!iccid.empty()) { info = "" + iccid + ""; } else { info = "
    " "(power cellular modem on to read)" " " "" " " "" "
    " ""; } c.input_info("SIM ICCID", info.c_str()); c.input_checkbox("Enable cellular modem", "modem", modem); c.input_text("APN", "apn", apn.c_str(), NULL, "

    For Hologram, use APN hologram with empty username & password

    "); c.input_text("APN username", "apn_user", apn_user.c_str()); c.input_text("APN password", "apn_pass", apn_pass.c_str()); c.input_checkbox("Enable GPS", "gps", gps, "

    This enables the cellular modem GPS receiver. Use this if your car does not provide GPS.

    "); c.print( "
    " "
    " " " " " " " "
    " "
    "); c.form_end(); c.panel_end(); c.alert("info", "

    What will happen next?

    " "

    The cellular modem will try to register with the mobile network using the APN data you enter.

    " "

    This may take up to a few minutes depending on your mobile provider and the SIM activation" " status — if you haven't activated your SIM yet, do so before starting the test.

    " "

    The progress is shown live and can be cancelled any time.

    "); return ""; } #endif // WEBSRV_HAVE_SETUPWIZARD