mirror of
https://github.com/aunefyren/wrapperr
synced 2024-12-14 05:12:27 +00:00
bdef6c017b
- New design for platform - Page change based on results - Illustrations added - Search by email and username - Better security (sensitive files moved to folder with .htaccess) - Admin page for setup (with password) - Customizable functions - Caching of results - Pre-caching script for caching multiple users
74 lines
1.9 KiB
JavaScript
74 lines
1.9 KiB
JavaScript
function search_button(string) {
|
|
$('#search_get').html(string);
|
|
}
|
|
|
|
function time_days(seconds_input) {
|
|
var seconds = Number(seconds_input);
|
|
var days = seconds * 1.15741E-5;
|
|
|
|
var hours = String(days).split(".");
|
|
var hours_str = "0." + hours[1];
|
|
var hours_int = Number(hours_str) * 24.0;
|
|
|
|
var minutes = String(hours_int).split(".");
|
|
var minutes_str = "0." + minutes[1];
|
|
var minutes_int = Number(minutes_str) * 60.0;
|
|
|
|
var days_form = String(days).split(".");
|
|
var hours_form = String(hours_int).split(".");
|
|
var minutes_form = String(minutes_int).split(".");
|
|
|
|
var final = [Number(days_form[0]), Number(hours_form[0]), Number(minutes_form[0])];
|
|
return final;
|
|
}
|
|
|
|
function time_hours(seconds_input) {
|
|
var seconds = Number(seconds_input);
|
|
var hours_int = Number(seconds) * 0.0002777778;
|
|
|
|
var minutes = String(hours_int).split(".");
|
|
var minutes_str = "0." + minutes[1];
|
|
var minutes_int = Number(minutes_str) * 60.0;
|
|
|
|
var hours_form = String(hours_int).split(".");
|
|
var minutes_form = String(minutes_int).split(".");
|
|
|
|
var final = [Number(hours_form[0]), Number(minutes_form[0])];
|
|
return final;
|
|
}
|
|
|
|
function makeRequest (method, url, data) {
|
|
return new Promise(function (resolve, reject) {
|
|
var xhr = new XMLHttpRequest();
|
|
xhr.open(method, url);
|
|
xhr.onload = function () {
|
|
if (this.status >= 200 && this.status < 300) {
|
|
resolve(xhr.response);
|
|
} else {
|
|
reject({
|
|
status: this.status,
|
|
statusText: xhr.statusText
|
|
});
|
|
}
|
|
};
|
|
xhr.onerror = function () {
|
|
reject({
|
|
status: this.status,
|
|
statusText: xhr.statusText
|
|
});
|
|
};
|
|
if(method=="POST" && data){
|
|
xhr.send(data);
|
|
}else{
|
|
xhr.send();
|
|
}
|
|
});
|
|
}
|
|
|
|
$(document).on('submit', '#stats_form', function(){
|
|
|
|
search_button("SEARCHING...");
|
|
|
|
get_functions();
|
|
|
|
});
|