You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
8 years ago
|
function Iguana_Jumblr_SetPassphrase(data) {
|
||
|
return new Promise((resolve) => {
|
||
|
var tmpIguanaRPCAuth = 'tmpIgRPCUser@' + sessionStorage.getItem('IguanaRPCAuth'),
|
||
|
ajax_data = {
|
||
|
'userpass': tmpIguanaRPCAuth,
|
||
|
'agent': 'jumblr',
|
||
|
'method': 'setpassphrase',
|
||
|
'passphrase': data.passphrase
|
||
|
};
|
||
|
|
||
|
$.ajax({
|
||
|
data: JSON.stringify(ajax_data),
|
||
|
url: 'http://127.0.0.1:7778',
|
||
|
type: 'POST',
|
||
|
dataType: 'json'
|
||
|
}).done(function(data) {
|
||
|
resolve(data);
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function Iguana_Jumblr_Status() {
|
||
|
return new Promise((resolve) => {
|
||
|
var tmpIguanaRPCAuth = 'tmpIgRPCUser@' + sessionStorage.getItem('IguanaRPCAuth'),
|
||
|
ajax_data = {
|
||
|
'userpass': tmpIguanaRPCAuth,
|
||
|
'agent': 'jumblr',
|
||
|
'method': 'status'
|
||
|
};
|
||
|
|
||
|
$.ajax({
|
||
|
data: JSON.stringify(ajax_data),
|
||
|
url: 'http://127.0.0.1:7778',
|
||
|
type: 'POST',
|
||
|
dataType: 'json'
|
||
|
}).done(function(data) {
|
||
|
resolve(data);
|
||
|
});
|
||
|
});
|
||
|
}
|