mirror of
https://github.com/luc-github/ESP3D-WEBUI.git
synced 2026-02-20 01:11:21 +01:00
Fix Marlin filter file settings not working for second SD and isolate normal SD and Direct SD setting to avoid duplicate item and so conflict value Bump version
86 lines
2.7 KiB
JavaScript
86 lines
2.7 KiB
JavaScript
/*http.js - ESP3D WebUI helpers file
|
|
|
|
Copyright (c) 2021 Luc LEBOSSE. All rights reserved.
|
|
|
|
This code is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
This code is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with This code; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
import { h } from "preact"
|
|
|
|
function getCookie(cname) {
|
|
let name = cname + "="
|
|
let decodedCookie = decodeURIComponent(document.cookie)
|
|
let ca = decodedCookie.split(";")
|
|
for (var i = 0; i < ca.length; i++) {
|
|
var c = ca[i]
|
|
while (c.charAt(0) == " ") {
|
|
c = c.substring(1)
|
|
}
|
|
if (c.indexOf(name) == 0) {
|
|
return c.substring(name.length, c.length)
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
|
|
//generate an URL with server host and base address
|
|
//args is array of arguments: [{'cmd':'[ESP800]},...]
|
|
const espHttpURL = (base = "", args = {}) => {
|
|
const url = (() => {
|
|
try {
|
|
return new URL(base)
|
|
} catch (error) {
|
|
return new URL(base, `http://${window.location.host}`)
|
|
}
|
|
})()
|
|
Object.entries(args).forEach(([key, value]) =>
|
|
url.searchParams.append(key, value)
|
|
)
|
|
return url.toString()
|
|
}
|
|
|
|
function isLimitedEnvironment(mode) {
|
|
let sitesList = [
|
|
//google / android Captive Portal Detection
|
|
"google.com",
|
|
"connectivitycheck.",
|
|
"googleapis.com",
|
|
"gstatic.com",
|
|
// Apple iPhone, iPad with iOS 6 Captive Portal Detection
|
|
"apple.com",
|
|
".akamaitechnologies.com",
|
|
// Apple iPhone, iPad with iOS 7, 8, 9 and recent versions of OS X
|
|
"www.appleiphonecell.com",
|
|
"www.itools.info",
|
|
"www.ibook.info",
|
|
"www.airport.us",
|
|
"www.thinkdifferent.us",
|
|
".akamaiedge.net",
|
|
// Windows
|
|
".msftncsi.com",
|
|
"microsoft.com",
|
|
".msftconnecttest.com",
|
|
// Firefox
|
|
"detectportal.firefox.com",
|
|
// Linux
|
|
"network-test.debian.org",
|
|
"nmcheck.gnome.org",
|
|
]
|
|
if (mode != "AP") return false
|
|
for (let i = 0; i < sitesList.length; i++) {
|
|
if (document.location.host.indexOf(sitesList[i]) != -1) return true
|
|
}
|
|
return false
|
|
}
|
|
|
|
export { espHttpURL, getCookie, isLimitedEnvironment }
|