mirror of
https://github.com/lxsang/antos-frontend.git
synced 2024-12-26 17:38:20 +01:00
add timestamp to request
This commit is contained in:
parent
7b0adc5f39
commit
a7cb8e06e1
Binary file not shown.
@ -1138,7 +1138,6 @@ namespace OS {
|
|||||||
return $.ajax({
|
return $.ajax({
|
||||||
type: "POST",
|
type: "POST",
|
||||||
url: p,
|
url: p,
|
||||||
headers: { 'Connection': 'close'},
|
|
||||||
contentType: "application/json",
|
contentType: "application/json",
|
||||||
data: JSON.stringify(
|
data: JSON.stringify(
|
||||||
d,
|
d,
|
||||||
@ -1227,7 +1226,6 @@ namespace OS {
|
|||||||
url: p,
|
url: p,
|
||||||
data: formd,
|
data: formd,
|
||||||
type: "POST",
|
type: "POST",
|
||||||
headers: { 'Connection': 'close'},
|
|
||||||
contentType: false,
|
contentType: false,
|
||||||
processData: false,
|
processData: false,
|
||||||
})
|
})
|
||||||
|
@ -162,7 +162,7 @@ namespace OS {
|
|||||||
* which contains an error or a list of FileInfoType
|
* which contains an error or a list of FileInfoType
|
||||||
*/
|
*/
|
||||||
export function scandir(p: string): Promise<RequestResult> {
|
export function scandir(p: string): Promise<RequestResult> {
|
||||||
const path = `${REST}/VFS/scandir`;
|
const path = `${REST}/VFS/scandir?__t=${(new Date()).getTime()}`;
|
||||||
return API.post(path, { path: p });
|
return API.post(path, { path: p });
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -176,7 +176,7 @@ namespace OS {
|
|||||||
* which contains an error or true on success
|
* which contains an error or true on success
|
||||||
*/
|
*/
|
||||||
export function mkdir(p: string): Promise<RequestResult> {
|
export function mkdir(p: string): Promise<RequestResult> {
|
||||||
const path = `${API.REST}/VFS/mkdir`;
|
const path = `${API.REST}/VFS/mkdir?__t=${(new Date()).getTime()}`;
|
||||||
return API.post(path, { path: p });
|
return API.post(path, { path: p });
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -194,7 +194,7 @@ namespace OS {
|
|||||||
p: string,
|
p: string,
|
||||||
pub: boolean
|
pub: boolean
|
||||||
): Promise<RequestResult> {
|
): Promise<RequestResult> {
|
||||||
const path = `${API.REST}/VFS/publish`;
|
const path = `${API.REST}/VFS/publish?__t=${(new Date()).getTime()}`;
|
||||||
return API.post(path, { path: p, publish: pub });
|
return API.post(path, { path: p, publish: pub });
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -207,7 +207,7 @@ namespace OS {
|
|||||||
* which contains an error or an object of FileInfoType
|
* which contains an error or an object of FileInfoType
|
||||||
*/
|
*/
|
||||||
export function fileinfo(p: string): Promise<RequestResult> {
|
export function fileinfo(p: string): Promise<RequestResult> {
|
||||||
const path = `${API.REST}/VFS/fileinfo`;
|
const path = `${API.REST}/VFS/fileinfo?__t=${(new Date()).getTime()}`;
|
||||||
return API.post(path, { path: p });
|
return API.post(path, { path: p });
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -244,7 +244,7 @@ namespace OS {
|
|||||||
* which contains an error or a success response
|
* which contains an error or a success response
|
||||||
*/
|
*/
|
||||||
export function move(s: string, d: string): Promise<RequestResult> {
|
export function move(s: string, d: string): Promise<RequestResult> {
|
||||||
const path = `${API.REST}/VFS/move`;
|
const path = `${API.REST}/VFS/move?__t=${(new Date()).getTime()}`;
|
||||||
return API.post(path, { src: s, dest: d });
|
return API.post(path, { src: s, dest: d });
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -257,7 +257,7 @@ namespace OS {
|
|||||||
* which contains an error or a success response
|
* which contains an error or a success response
|
||||||
*/
|
*/
|
||||||
export function remove(p: string): Promise<RequestResult> {
|
export function remove(p: string): Promise<RequestResult> {
|
||||||
const path = `${API.REST}/VFS/delete`;
|
const path = `${API.REST}/VFS/delete?__t=${(new Date()).getTime()}`;
|
||||||
return API.post(path, { path: p });
|
return API.post(path, { path: p });
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -283,7 +283,7 @@ namespace OS {
|
|||||||
export function packages(
|
export function packages(
|
||||||
d: PackageCommandType
|
d: PackageCommandType
|
||||||
): Promise<RequestResult> {
|
): Promise<RequestResult> {
|
||||||
const path = `${API.REST}/system/packages`;
|
const path = `${API.REST}/system/packages?__t=${(new Date()).getTime()}`;
|
||||||
return API.post(path, d);
|
return API.post(path, d);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -295,7 +295,7 @@ namespace OS {
|
|||||||
* @returns {Promise<RequestResult>} a promise on a [[RequestResult]]
|
* @returns {Promise<RequestResult>} a promise on a [[RequestResult]]
|
||||||
*/
|
*/
|
||||||
export function upload(d: string): Promise<RequestResult> {
|
export function upload(d: string): Promise<RequestResult> {
|
||||||
const path = `${API.REST}/VFS/upload`;
|
const path = `${API.REST}/VFS/upload?__t=${(new Date()).getTime()}`;
|
||||||
return API.upload(path, d);
|
return API.upload(path, d);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -311,7 +311,7 @@ namespace OS {
|
|||||||
p: string,
|
p: string,
|
||||||
d: string
|
d: string
|
||||||
): Promise<RequestResult> {
|
): Promise<RequestResult> {
|
||||||
const path = `${API.REST}/VFS/write`;
|
const path = `${API.REST}/VFS/write?__t=${(new Date()).getTime()}`;
|
||||||
return API.post(path, { path: p, data: d });
|
return API.post(path, { path: p, data: d });
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -350,7 +350,7 @@ namespace OS {
|
|||||||
if (ws) {
|
if (ws) {
|
||||||
return new Promise(function (resolve, reject) {
|
return new Promise(function (resolve, reject) {
|
||||||
try {
|
try {
|
||||||
const path = `${API.BASE_URI}/system/apigateway?ws=1`;
|
const path = `${API.BASE_URI}/system/apigateway?ws=1&__t=${(new Date()).getTime()}`;
|
||||||
const proto =
|
const proto =
|
||||||
window.location.protocol === "https:"
|
window.location.protocol === "https:"
|
||||||
? "wss://"
|
? "wss://"
|
||||||
@ -362,7 +362,7 @@ namespace OS {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
const path = `${API.REST}/system/apigateway?ws=0`;
|
const path = `${API.REST}/system/apigateway?ws=0&__t=${(new Date()).getTime()}`;
|
||||||
return API.post(path, d);
|
return API.post(path, d);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -375,7 +375,7 @@ namespace OS {
|
|||||||
* contains an error or a [[UserSettingType]] object
|
* contains an error or a [[UserSettingType]] object
|
||||||
*/
|
*/
|
||||||
export function auth(): Promise<RequestResult> {
|
export function auth(): Promise<RequestResult> {
|
||||||
const p = `${API.REST}/user/auth`;
|
const p = `${API.REST}/user/auth?__t=${(new Date()).getTime()}`;
|
||||||
return API.post(p, {});
|
return API.post(p, {});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -388,7 +388,7 @@ namespace OS {
|
|||||||
* contains an error or a [[UserSettingType]] object
|
* contains an error or a [[UserSettingType]] object
|
||||||
*/
|
*/
|
||||||
export function login(d: UserLoginType): Promise<RequestResult> {
|
export function login(d: UserLoginType): Promise<RequestResult> {
|
||||||
const p = `${API.REST}/user/login`;
|
const p = `${API.REST}/user/login?__t=${(new Date()).getTime()}`;
|
||||||
return API.post(p, d);
|
return API.post(p, d);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -399,7 +399,7 @@ namespace OS {
|
|||||||
* @returns {Promise<RequestResult>} a promise on a [[RequestResult]]
|
* @returns {Promise<RequestResult>} a promise on a [[RequestResult]]
|
||||||
*/
|
*/
|
||||||
export function logout(): Promise<RequestResult> {
|
export function logout(): Promise<RequestResult> {
|
||||||
const p = `${API.REST}/user/logout`;
|
const p = `${API.REST}/user/logout?__t=${(new Date()).getTime()}`;
|
||||||
return API.post(p, {});
|
return API.post(p, {});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -410,7 +410,7 @@ namespace OS {
|
|||||||
* @returns {Promise<RequestResult>} a promise on a [[RequestResult]]
|
* @returns {Promise<RequestResult>} a promise on a [[RequestResult]]
|
||||||
*/
|
*/
|
||||||
export function setting(): Promise<RequestResult> {
|
export function setting(): Promise<RequestResult> {
|
||||||
const p = `${API.REST}/system/settings`;
|
const p = `${API.REST}/system/settings?__t=${(new Date()).getTime()}`;
|
||||||
return API.post(p, OS.setting);
|
return API.post(p, OS.setting);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -463,7 +463,7 @@ namespace OS {
|
|||||||
cmd: string,
|
cmd: string,
|
||||||
d: GenericObject<any>
|
d: GenericObject<any>
|
||||||
): Promise<RequestResult> {
|
): Promise<RequestResult> {
|
||||||
const path = `${API.REST}/VDB/${cmd}`;
|
const path = `${API.REST}/VDB/${cmd}?__t=${(new Date()).getTime()}`;
|
||||||
return API.post(path, d);
|
return API.post(path, d);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user