code.js 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740
  1. // First, checks if it isn't implemented yet.
  2. if (!String.prototype.format) {
  3. String.prototype.format = function() {
  4. var args = arguments;
  5. return this.replace(/{(\d+)}/g, function(match, number) {
  6. return typeof args[number] != 'undefined'
  7. ? args[number]
  8. : match
  9. ;
  10. });
  11. };
  12. }
  13. var releaseURL = 'https://api.github.com/repos/sle118/squeezelite-esp32/releases';
  14. var recovery = false;
  15. var enableAPTimer = true;
  16. var enableStatusTimer = true;
  17. var commandHeader = 'squeezelite -b 500:2000 -d all=info ';
  18. var pname, ver, otapct, otadsc;
  19. var blockAjax = false;
  20. var blockFlashButton = false;
  21. var lastMsg = '';
  22. var apList = null;
  23. var selectedSSID = "";
  24. var refreshAPInterval = null;
  25. var checkStatusInterval = null;
  26. var StatusIntervalActive = false;
  27. var RefreshAPIIntervalActive = false;
  28. var output = '';
  29. function stopCheckStatusInterval(){
  30. if(checkStatusInterval != null){
  31. clearTimeout(checkStatusInterval);
  32. checkStatusInterval = null;
  33. }
  34. StatusIntervalActive = false;
  35. }
  36. function stopRefreshAPInterval(){
  37. if(refreshAPInterval != null){
  38. clearTimeout(refreshAPInterval);
  39. refreshAPInterval = null;
  40. }
  41. RefreshAPIIntervalActive = false;
  42. }
  43. function startCheckStatusInterval(){
  44. StatusIntervalActive = true;
  45. checkStatusInterval = setTimeout(checkStatus, 3000);
  46. }
  47. function startRefreshAPInterval(){
  48. RefreshAPIIntervalActive = true;
  49. refreshAPInterval = setTimeout(refreshAP, 2800);
  50. }
  51. function RepeatCheckStatusInterval(){
  52. if(StatusIntervalActive)
  53. startCheckStatusInterval();
  54. }
  55. function RepeatRefreshAPInterval(){
  56. if(RefreshAPIIntervalActive)
  57. startRefreshAPInterval();
  58. }
  59. $(document).ready(function(){
  60. $("#wifi-status").on("click", ".ape", function() {
  61. $( "#wifi" ).slideUp( "fast", function() {});
  62. $( "#connect-details" ).slideDown( "fast", function() {});
  63. });
  64. $("#manual_add").on("click", ".ape", function() {
  65. selectedSSID = $(this).text();
  66. $( "#ssid-pwd" ).text(selectedSSID);
  67. $( "#wifi" ).slideUp( "fast", function() {});
  68. $( "#connect_manual" ).slideDown( "fast", function() {});
  69. $( "#connect" ).slideUp( "fast", function() {});
  70. //update wait screen
  71. $( "#loading" ).show();
  72. $( "#connect-success" ).hide();
  73. $( "#connect-fail" ).hide();
  74. });
  75. $("#wifi-list").on("click", ".ape", function() {
  76. selectedSSID = $(this).text();
  77. $( "#ssid-pwd" ).text(selectedSSID);
  78. $( "#wifi" ).slideUp( "fast", function() {});
  79. $( "#connect_manual" ).slideUp( "fast", function() {});
  80. $( "#connect" ).slideDown( "fast", function() {});
  81. //update wait screen
  82. $( "#loading" ).show();
  83. $( "#connect-success" ).hide();
  84. $( "#connect-fail" ).hide();
  85. });
  86. $("#cancel").on("click", function() {
  87. selectedSSID = "";
  88. $( "#connect" ).slideUp( "fast", function() {});
  89. $( "#connect_manual" ).slideUp( "fast", function() {});
  90. $( "#wifi" ).slideDown( "fast", function() {});
  91. });
  92. $("#manual_cancel").on("click", function() {
  93. selectedSSID = "";
  94. $( "#connect" ).slideUp( "fast", function() {});
  95. $( "#connect_manual" ).slideUp( "fast", function() {});
  96. $( "#wifi" ).slideDown( "fast", function() {});
  97. });
  98. $("#join").on("click", function() {
  99. performConnect();
  100. });
  101. $("#manual_join").on("click", function() {
  102. performConnect($(this).data('connect'));
  103. });
  104. $("#ok-details").on("click", function() {
  105. $( "#connect-details" ).slideUp( "fast", function() {});
  106. $( "#wifi" ).slideDown( "fast", function() {});
  107. });
  108. $("#ok-credits").on("click", function() {
  109. $( "#credits" ).slideUp( "fast", function() {});
  110. $( "#app" ).slideDown( "fast", function() {});
  111. });
  112. $("#acredits").on("click", function(event) {
  113. event.preventDefault();
  114. $( "#app" ).slideUp( "fast", function() {});
  115. $( "#credits" ).slideDown( "fast", function() {});
  116. });
  117. $("#ok-connect").on("click", function() {
  118. $( "#connect-wait" ).slideUp( "fast", function() {});
  119. $( "#wifi" ).slideDown( "fast", function() {});
  120. });
  121. $("#disconnect").on("click", function() {
  122. $( "#connect-details-wrap" ).addClass('blur');
  123. $( "#diag-disconnect" ).slideDown( "fast", function() {});
  124. });
  125. $("#no-disconnect").on("click", function() {
  126. $( "#diag-disconnect" ).slideUp( "fast", function() {});
  127. $( "#connect-details-wrap" ).removeClass('blur');
  128. });
  129. $("#yes-disconnect").on("click", function() {
  130. stopCheckStatusInterval();
  131. selectedSSID = "";
  132. $( "#diag-disconnect" ).slideUp( "fast", function() {});
  133. $( "#connect-details-wrap" ).removeClass('blur');
  134. $.ajax({
  135. url: '/connect.json',
  136. dataType: 'text',
  137. method: 'DELETE',
  138. cache: false,
  139. contentType: 'application/json; charset=utf-8',
  140. data: JSON.stringify({ 'timestamp': Date.now()})
  141. });
  142. startCheckStatusInterval();
  143. $( "#connect-details" ).slideUp( "fast", function() {});
  144. $( "#wifi" ).slideDown( "fast", function() {})
  145. });
  146. $("input#autoexec-cb").on("click", function() {
  147. var data = { 'timestamp': Date.now() };
  148. autoexec = (this.checked)?1:0;
  149. data['autoexec'] = autoexec;
  150. showMessage('please wait for the ESP32 to reboot', 'WARNING');
  151. $.ajax({
  152. url: '/config.json',
  153. dataType: 'text',
  154. method: 'POST',
  155. cache: false,
  156. headers: { "X-Custom-autoexec": autoexec },
  157. contentType: 'application/json; charset=utf-8',
  158. data: JSON.stringify(data),
  159. error: function (xhr, ajaxOptions, thrownError) {
  160. console.log(xhr.status);
  161. console.log(thrownError);
  162. if (thrownError != '') showMessage(thrownError, 'ERROR');
  163. }
  164. });
  165. console.log('sent config JSON with headers:', autoexec);
  166. console.log('now triggering reboot');
  167. $.ajax({
  168. url: '/reboot.json',
  169. dataType: 'text',
  170. method: 'POST',
  171. cache: false,
  172. contentType: 'application/json; charset=utf-8',
  173. data: JSON.stringify({ 'timestamp': Date.now()}),
  174. error: function (xhr, ajaxOptions, thrownError) {
  175. console.log(xhr.status);
  176. console.log(thrownError);
  177. if (thrownError != '') showMessage(thrownError, 'ERROR');
  178. }
  179. });
  180. });
  181. $("input#save-autoexec1").on("click", function() {
  182. var data = { 'timestamp': Date.now() };
  183. autoexec1 = $("#autoexec1").val();
  184. data['autoexec1'] = autoexec1;
  185. $.ajax({
  186. url: '/config.json',
  187. dataType: 'text',
  188. method: 'POST',
  189. cache: false,
  190. headers: { "X-Custom-autoexec1": autoexec1 },
  191. contentType: 'application/json; charset=utf-8',
  192. data: JSON.stringify(data),
  193. error: function (xhr, ajaxOptions, thrownError) {
  194. console.log(xhr.status);
  195. console.log(thrownError);
  196. if (thrownError != '') showMessage(thrownError, 'ERROR');
  197. }
  198. });
  199. console.log('sent config JSON with headers:', autoexec1);
  200. console.log('sent data:', JSON.stringify(data));
  201. });
  202. $("input#save-gpio").on("click", function() {
  203. var data = { 'timestamp': Date.now() };
  204. var headers = {};
  205. $("input.gpio").each(function() {
  206. var id = $(this)[0].id;
  207. var pin = $(this).val();
  208. if (pin != '') {
  209. headers["X-Custom-"+id] = pin;
  210. data[id] = pin;
  211. }
  212. });
  213. $.ajax({
  214. url: '/config.json',
  215. dataType: 'text',
  216. method: 'POST',
  217. cache: false,
  218. headers: headers,
  219. contentType: 'application/json; charset=utf-8',
  220. data: JSON.stringify(data),
  221. error: function (xhr, ajaxOptions, thrownError) {
  222. console.log(xhr.status);
  223. console.log(thrownError);
  224. if (thrownError != '') showMessage(thrownError, 'ERROR');
  225. }
  226. });
  227. console.log('sent config JSON with headers:', JSON.stringify(headers));
  228. console.log('sent config JSON with data:', JSON.stringify(data));
  229. });
  230. $("#save-nvs").on("click", function() {
  231. var headers = {};
  232. var data = { 'timestamp': Date.now() };
  233. $("input.nvs").each(function() {
  234. var key = $(this)[0].id;
  235. var val = $(this).val();
  236. if (key != '') {
  237. headers["X-Custom-"+key] = val;
  238. data[key] = val;
  239. }
  240. });
  241. var key = $("#nvs-new-key").val();
  242. var val = $("#nvs-new-value").val();
  243. if (key != '') {
  244. headers["X-Custom-"+key] = val;
  245. data[key] = val;
  246. }
  247. $.ajax({
  248. url: '/config.json',
  249. dataType: 'text',
  250. method: 'POST',
  251. cache: false,
  252. headers: headers,
  253. contentType: 'application/json; charset=utf-8',
  254. data: JSON.stringify(data),
  255. error: function (xhr, ajaxOptions, thrownError) {
  256. console.log(xhr.status);
  257. console.log(thrownError);
  258. if (thrownError != '') showMessage(thrownError, 'ERROR');
  259. }
  260. });
  261. console.log('sent config JSON with headers:', JSON.stringify(headers));
  262. console.log('sent config JSON with data:', JSON.stringify(data));
  263. });
  264. $("#flash").on("click", function() {
  265. var data = { 'timestamp': Date.now() };
  266. if (blockFlashButton) return;
  267. blockFlashButton = true;
  268. var url = $("#fwurl").val();
  269. data['fwurl'] = url;
  270. $.ajax({
  271. url: '/config.json',
  272. dataType: 'text',
  273. method: 'POST',
  274. cache: false,
  275. headers: { "X-Custom-fwurl": url },
  276. contentType: 'application/json; charset=utf-8',
  277. data: JSON.stringify(data),
  278. error: function (xhr, ajaxOptions, thrownError) {
  279. console.log(xhr.status);
  280. console.log(thrownError);
  281. if (thrownError != '') showMessage(thrownError, 'ERROR');
  282. }
  283. });
  284. enableStatusTimer = true;
  285. });
  286. $("#generate-command").on("click", function() {
  287. var commandLine = commandHeader + '-n ' + $("#player").val();
  288. if (output == 'bt') {
  289. commandLine += ' -o "BT -n \'' + $("#btsink").val() + '\'" -R -Z 192000';
  290. } else if (output == 'spdif') {
  291. commandLine += ' -o SPDIF -R -Z 192000';
  292. } else {
  293. commandLine += ' -o I2S';
  294. }
  295. if ($("#optional").val() != '') {
  296. commandLine += ' ' + $("#optional").val();
  297. }
  298. $("#autoexec1").val(commandLine);
  299. });
  300. $('[name=audio]').on("click", function(){
  301. if (this.id == 'bt') {
  302. $("#btsinkdiv").show(200);
  303. output = 'bt';
  304. } else if (this.id == 'spdif') {
  305. $("#btsinkdiv").hide(200);
  306. output = 'spdif';
  307. } else {
  308. $("#btsinkdiv").hide(200);
  309. output = 'i2s';
  310. }
  311. });
  312. $('#fwcheck').on("click", function(){
  313. $("#releaseTable").html("");
  314. $.getJSON(releaseURL, function(data) {
  315. var i=0;
  316. data.forEach(function(release) {
  317. var url = '';
  318. release.assets.forEach(function(asset) {
  319. if (asset.name.match(/\.bin$/)) {
  320. url = asset.browser_download_url;
  321. }
  322. });
  323. var [ver, idf, cfg, branch] = release.name.split('#');
  324. var body = release.body;
  325. body = body.replace(/\'/ig, "\"");
  326. body = body.replace(/[\s\S]+(### Revision Log[\s\S]+)### ESP-IDF Version Used[\s\S]+/, "$1");
  327. body = body.replace(/- \(.+?\) /g, "- ");
  328. var [date, time] = release.created_at.split('T');
  329. var trclass = (i++ > 6)?' hide':'';
  330. $("#releaseTable").append(
  331. "<tr class='release"+trclass+"'>"+
  332. "<td data-toggle='tooltip' title='"+body+"'>"+ver+"</td>"+
  333. "<td>"+date+"</td>"+
  334. "<td>"+cfg+"</td>"+
  335. "<td>"+idf+"</td>"+
  336. "<td>"+branch+"</td>"+
  337. "<td><input id='generate-command' type='button' class='btn btn-success' value='Select' data-url='"+url+"' onclick='setURL(this);' /></td>"+
  338. "</tr>"
  339. );
  340. });
  341. if (i > 7) {
  342. $("#releaseTable").append(
  343. "<tr id='showall'>"+
  344. "<td colspan='6'>"+
  345. "<input type='button' id='showallbutton' class='btn btn-info' value='Show older releases' />"+
  346. "</td>"+
  347. "</tr>"
  348. );
  349. $('#showallbutton').on("click", function(){
  350. $("tr.hide").removeClass("hide");
  351. $("tr#showall").addClass("hide");
  352. });
  353. }
  354. $("#searchfw").css("display", "inline");
  355. })
  356. .fail(function() {
  357. alert("failed to fetch release history!");
  358. });
  359. });
  360. $('input#searchinput').on("input", function(){
  361. var s = $('input#searchinput').val();
  362. var re = new RegExp(s, "gi");
  363. if (s.length == 0) {
  364. $("tr.release").removeClass("hide");
  365. } else if (s.length < 3) {
  366. $("tr.release").addClass("hide");
  367. } else {
  368. $("tr.release").addClass("hide");
  369. $("tr.release").each(function(tr){
  370. $(this).find('td').each (function() {
  371. if ($(this).html().match(re)) {
  372. $(this).parent().removeClass('hide');
  373. }
  374. });
  375. });
  376. }
  377. });
  378. //first time the page loads: attempt to get the connection status and start the wifi scan
  379. refreshAP();
  380. getConfig();
  381. //start timers
  382. startCheckStatusInterval();
  383. startRefreshAPInterval();
  384. $('[data-toggle="tooltip"]').tooltip({
  385. html: true,
  386. placement : 'right',
  387. });
  388. });
  389. function setURL(button) {
  390. var url = button.dataset.url;
  391. $("#fwurl").val(url);
  392. $('[data-url^="http"]').addClass("btn-success").removeClass("btn-danger");
  393. $('[data-url="'+url+'"]').addClass("btn-danger").removeClass("btn-success");
  394. }
  395. function performConnect(conntype){
  396. //stop the status refresh. This prevents a race condition where a status
  397. //request would be refreshed with wrong ip info from a previous connection
  398. //and the request would automatically shows as succesful.
  399. stopCheckStatusInterval();
  400. //stop refreshing wifi list
  401. stopRefreshAPInterval();
  402. var pwd;
  403. var dhcpname;
  404. if (conntype == 'manual') {
  405. //Grab the manual SSID and PWD
  406. selectedSSID=$('#manual_ssid').val();
  407. pwd = $("#manual_pwd").val();
  408. dhcpname= $("#dhcp-name2").val();;
  409. }else{
  410. pwd = $("#pwd").val();
  411. dhcpname= $("#dhcp-name1").val();;
  412. }
  413. //reset connection
  414. $( "#loading" ).show();
  415. $( "#connect-success" ).hide();
  416. $( "#connect-fail" ).hide();
  417. $( "#ok-connect" ).prop("disabled",true);
  418. $( "#ssid-wait" ).text(selectedSSID);
  419. $( "#connect" ).slideUp( "fast", function() {});
  420. $( "#connect_manual" ).slideUp( "fast", function() {});
  421. $( "#connect-wait" ).slideDown( "fast", function() {});
  422. $.ajax({
  423. url: '/connect.json',
  424. dataType: 'text',
  425. method: 'POST',
  426. cache: false,
  427. headers: { 'X-Custom-ssid': selectedSSID, 'X-Custom-pwd': pwd, 'X-Custom-host_name': dhcpname },
  428. contentType: 'application/json; charset=utf-8',
  429. data: { 'timestamp': Date.now()},
  430. error: function (xhr, ajaxOptions, thrownError) {
  431. console.log(xhr.status);
  432. console.log(thrownError);
  433. if (thrownError != '') showMessage(thrownError, 'ERROR');
  434. }
  435. });
  436. //now we can re-set the intervals regardless of result
  437. startCheckStatusInterval();
  438. startRefreshAPInterval();
  439. }
  440. function rssiToIcon(rssi){
  441. if(rssi >= -60){
  442. return 'w0';
  443. }
  444. else if(rssi >= -67){
  445. return 'w1';
  446. }
  447. else if(rssi >= -75){
  448. return 'w2';
  449. }
  450. else{
  451. return 'w3';
  452. }
  453. }
  454. function refreshAP(){
  455. if (!enableAPTimer) return;
  456. $.getJSON( "/ap.json", function( data ) {
  457. if(data.length > 0){
  458. //sort by signal strength
  459. data.sort(function (a, b) {
  460. var x = a["rssi"]; var y = b["rssi"];
  461. return ((x < y) ? 1 : ((x > y) ? -1 : 0));
  462. });
  463. apList = data;
  464. refreshAPHTML(apList);
  465. }
  466. });
  467. }
  468. function refreshAPHTML(data){
  469. var h = "";
  470. data.forEach(function(e, idx, array) {
  471. h += '<div class="ape{0}"><div class="{1}"><div class="{2}">{3}</div></div></div>'.format(idx === array.length - 1?'':' brdb', rssiToIcon(e.rssi), e.auth==0?'':'pw',e.ssid);
  472. h += "\n";
  473. });
  474. $( "#wifi-list" ).html(h)
  475. }
  476. function checkStatus(){
  477. RepeatCheckStatusInterval();
  478. if (!enableStatusTimer) return;
  479. if (blockAjax) return;
  480. blockAjax = true;
  481. $.getJSON( "/status.json", function( data ) {
  482. if (data.hasOwnProperty('ssid') && data['ssid'] != ""){
  483. if (data["ssid"] === selectedSSID){
  484. //that's a connection attempt
  485. if (data["urc"] === 0){
  486. //got connection
  487. $("#connected-to span").text(data["ssid"]);
  488. $("#connect-details h1").text(data["ssid"]);
  489. $("#ip").text(data["ip"]);
  490. $("#netmask").text(data["netmask"]);
  491. $("#gw").text(data["gw"]);
  492. $("#wifi-status").slideDown( "fast", function() {});
  493. $("span#foot-wifi").html(", SSID: <strong>"+data["ssid"]+"</strong>, IP: <strong>"+data["ip"]+"</strong>");
  494. //unlock the wait screen if needed
  495. $( "#ok-connect" ).prop("disabled",false);
  496. //update wait screen
  497. $( "#loading" ).hide();
  498. $( "#connect-success" ).append("<p>Your IP address now is: " + text(data["ip"]) + "</p>");
  499. $( "#connect-success" ).show();
  500. $( "#connect-fail" ).hide();
  501. enableAPTimer = false;
  502. if (!recovery) enableStatusTimer = false;
  503. }
  504. else if (data["urc"] === 1){
  505. //failed attempt
  506. $("#connected-to span").text('');
  507. $("#connect-details h1").text('');
  508. $("#ip").text('0.0.0.0');
  509. $("#netmask").text('0.0.0.0');
  510. $("#gw").text('0.0.0.0');
  511. $("span#foot-wifi").html("");
  512. //don't show any connection
  513. $("#wifi-status").slideUp( "fast", function() {});
  514. //unlock the wait screen
  515. $( "#ok-connect" ).prop("disabled",false);
  516. //update wait screen
  517. $( "#loading" ).hide();
  518. $( "#connect-fail" ).show();
  519. $( "#connect-success" ).hide();
  520. enableAPTimer = true;
  521. enableStatusTimer = true;
  522. }
  523. }
  524. else if (data.hasOwnProperty('urc') && data['urc'] === 0){
  525. //ESP32 is already connected to a wifi without having the user do anything
  526. if( !($("#wifi-status").is(":visible")) ){
  527. $("#connected-to span").text(data["ssid"]);
  528. $("#connect-details h1").text(data["ssid"]);
  529. $("#ip").text(data["ip"]);
  530. $("#netmask").text(data["netmask"]);
  531. $("#gw").text(data["gw"]);
  532. $("#wifi-status").slideDown( "fast", function() {});
  533. $("span#foot-wifi").html(", SSID: <strong>"+data["ssid"]+"</strong>, IP: <strong>"+data["ip"]+"</strong>");
  534. }
  535. enableAPTimer = false;
  536. if (!recovery) enableStatusTimer = false;
  537. }
  538. }
  539. else if (data.hasOwnProperty('urc') && data['urc'] === 2){
  540. //that's a manual disconnect
  541. if($("#wifi-status").is(":visible")){
  542. $("#wifi-status").slideUp( "fast", function() {});
  543. $("span#foot-wifi").html("");
  544. }
  545. enableAPTimer = true;
  546. enableStatusTimer = true;
  547. }
  548. if (data.hasOwnProperty('recovery')) {
  549. if (data["recovery"] === 1) {
  550. recovery = true;
  551. $("#otadiv").show();
  552. $('a[href^="#tab-audio"]').hide();
  553. $('a[href^="#tab-gpio"]').show();
  554. $('a[href^="#tab-nvs"]').show();
  555. $("footer.footer").removeClass('sl');
  556. $("footer.footer").addClass('recovery');
  557. $("#boot-button").html('Reboot');
  558. $("#boot-form").attr('action', '/reboot.json');
  559. enableStatusTimer = true;
  560. } else {
  561. recovery = false;
  562. $("#otadiv").hide();
  563. $('a[href^="#tab-audio"]').show();
  564. $('a[href^="#tab-gpio"]').hide();
  565. $('a[href^="#tab-nvs"]').hide();
  566. $("footer.footer").removeClass('recovery');
  567. $("footer.footer").addClass('sl');
  568. $("#boot-button").html('Recovery');
  569. $("#boot-form").attr('action', '/recovery.json');
  570. enableStatusTimer = false;
  571. }
  572. }
  573. if (data.hasOwnProperty('project_name') && data['project_name'] != ''){
  574. pname = data['project_name'];
  575. }
  576. if (data.hasOwnProperty('version') && data['version'] != ''){
  577. ver = data['version'];
  578. $("span#foot-fw").html("fw: <strong>"+ver+"</strong>, mode: <strong>"+pname+"</strong>");
  579. }
  580. if (data.hasOwnProperty('ota_pct') && data['ota_pct'] != 0){
  581. otapct = data['ota_pct'];
  582. $('.progress-bar').css('width', otapct+'%').attr('aria-valuenow', otapct);
  583. $('.progress-bar').html(otapct+'%');
  584. }
  585. if (data.hasOwnProperty('ota_dsc') && data['ota_dsc'] != ''){
  586. otadsc = data['ota_dsc'];
  587. $("span#flash-status").html(otadsc);
  588. if (otadsc.match(/Error:/) || otapct > 95) {
  589. blockFlashButton = false;
  590. enableStatusTimer = true;
  591. }
  592. } else {
  593. $("span#flash-status").html('');
  594. }
  595. if (data.hasOwnProperty('message') && data['message'] != ''){
  596. var msg = data['message'].text;
  597. var severity = data['message'].severity;
  598. if (msg != lastMsg) {
  599. showMessage(msg, severity);
  600. lastMsg = msg;
  601. }
  602. }
  603. blockAjax = false;
  604. })
  605. .fail(function(xhr, ajaxOptions, thrownError) {
  606. console.log(xhr.status);
  607. console.log(thrownError);
  608. if (thrownError != '') showMessage(thrownError, 'ERROR');
  609. blockAjax = false;
  610. });
  611. }
  612. function getConfig() {
  613. $.getJSON("/config.json", function(data) {
  614. Object.keys(data).sort().forEach(function(key, i) {
  615. if (data.hasOwnProperty(key)) {
  616. if (key == 'autoexec') {
  617. if (data["autoexec"] === "1") {
  618. $("#autoexec-cb")[0].checked=true;
  619. } else {
  620. $("#autoexec-cb")[0].checked=false;
  621. }
  622. } else if (key == 'autoexec1') {
  623. $("textarea#autoexec1").val(data[key]);
  624. } else if (key == 'host_name') {
  625. $("dhcp-name1").val(data[key]);
  626. $("dhcp-name2").val(data[key]);
  627. }
  628. $("tbody#nvsTable").append(
  629. "<tr>"+
  630. "<td>"+key+"</td>"+
  631. "<td class='value'>"+
  632. "<input type='text' class='form-control nvs' id='"+key+"'>"+
  633. "</td>"+
  634. "</tr>"
  635. );
  636. $("input#"+key).val(data[key]);
  637. }
  638. });
  639. $("tbody#nvsTable").append(
  640. "<tr>"+
  641. "<td>"+
  642. "<input type='text' class='form-control' id='nvs-new-key' placeholder='new key'>"+
  643. "</td>"+
  644. "<td>"+
  645. "<input type='text' class='form-control' id='nvs-new-value' placeholder='new value'>"+
  646. "</td>"+
  647. "</tr>"
  648. );
  649. })
  650. .fail(function(xhr, ajaxOptions, thrownError) {
  651. console.log(xhr.status);
  652. console.log(thrownError);
  653. if (thrownError != '') showMessage(thrownError, 'ERROR');
  654. blockAjax = false;
  655. });
  656. }
  657. function showMessage(message, severity) {
  658. if (severity == 'INFO') {
  659. $('#message').css('background', '#6af');
  660. } else if (severity == 'WARNING') {
  661. $('#message').css('background', '#ff0');
  662. } else {
  663. $('#message').css('background', '#f00');
  664. }
  665. $('#message').html(message);
  666. $("#content").fadeTo("slow", 0.3, function() {
  667. $("#message").show(500).delay(5000).hide(500, function() {
  668. $("#content").fadeTo("slow", 1.0);
  669. });
  670. });
  671. }