|
|
@ -35,21 +35,14 @@ export default function useNodeData() {
|
|
|
|
const [data, setData] = useState<NodeData>()
|
|
|
|
const [data, setData] = useState<NodeData>()
|
|
|
|
const [isPosting, setIsPosting] = useState<boolean>(false)
|
|
|
|
const [isPosting, setIsPosting] = useState<boolean>(false)
|
|
|
|
|
|
|
|
|
|
|
|
const fetchNodeData = useCallback(() => {
|
|
|
|
const fetchNodeData = useCallback(
|
|
|
|
const urlParams = new URLSearchParams(window.location.search)
|
|
|
|
() =>
|
|
|
|
const nextParams = new URLSearchParams()
|
|
|
|
apiFetch("/data")
|
|
|
|
const token = urlParams.get("SynoToken")
|
|
|
|
.then((r) => r.json())
|
|
|
|
if (token) {
|
|
|
|
.then((d) => setData(d))
|
|
|
|
nextParams.set("SynoToken", token)
|
|
|
|
.catch((error) => console.error(error)),
|
|
|
|
}
|
|
|
|
[setData]
|
|
|
|
const search = nextParams.toString()
|
|
|
|
)
|
|
|
|
const url = `api/data${search ? `?${search}` : ""}`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
apiFetch(url)
|
|
|
|
|
|
|
|
.then((r) => r.json())
|
|
|
|
|
|
|
|
.then((d) => setData(d))
|
|
|
|
|
|
|
|
.catch((error) => console.error(error))
|
|
|
|
|
|
|
|
}, [setData])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const updateNode = useCallback(
|
|
|
|
const updateNode = useCallback(
|
|
|
|
(update: NodeUpdate) => {
|
|
|
|
(update: NodeUpdate) => {
|
|
|
@ -77,17 +70,7 @@ export default function useNodeData() {
|
|
|
|
: data.AdvertiseExitNode,
|
|
|
|
: data.AdvertiseExitNode,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const urlParams = new URLSearchParams(window.location.search)
|
|
|
|
|
|
|
|
const nextParams = new URLSearchParams({ up: "true" })
|
|
|
|
|
|
|
|
const token = urlParams.get("SynoToken")
|
|
|
|
|
|
|
|
if (token) {
|
|
|
|
|
|
|
|
nextParams.set("SynoToken", token)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
const search = nextParams.toString()
|
|
|
|
|
|
|
|
const url = `api/data${search ? `?${search}` : ""}`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var body, contentType: string
|
|
|
|
var body, contentType: string
|
|
|
|
|
|
|
|
|
|
|
|
if (data.IsUnraid) {
|
|
|
|
if (data.IsUnraid) {
|
|
|
|
const params = new URLSearchParams()
|
|
|
|
const params = new URLSearchParams()
|
|
|
|
params.append("csrf_token", data.UnraidToken)
|
|
|
|
params.append("csrf_token", data.UnraidToken)
|
|
|
@ -99,11 +82,15 @@ export default function useNodeData() {
|
|
|
|
contentType = "application/json"
|
|
|
|
contentType = "application/json"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
apiFetch(url, {
|
|
|
|
apiFetch(
|
|
|
|
method: "POST",
|
|
|
|
"/data",
|
|
|
|
headers: { Accept: "application/json", "Content-Type": contentType },
|
|
|
|
{
|
|
|
|
body: body,
|
|
|
|
method: "POST",
|
|
|
|
})
|
|
|
|
headers: { Accept: "application/json", "Content-Type": contentType },
|
|
|
|
|
|
|
|
body: body,
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{ up: "true" }
|
|
|
|
|
|
|
|
)
|
|
|
|
.then((r) => r.json())
|
|
|
|
.then((r) => r.json())
|
|
|
|
.then((r) => {
|
|
|
|
.then((r) => {
|
|
|
|
setIsPosting(false)
|
|
|
|
setIsPosting(false)
|
|
|
|