|
|
@ -9,7 +9,9 @@ class CurrentUser { |
|
|
|
.then(response => response.json()) |
|
|
|
.then(response => { |
|
|
|
if ("error" in response) { |
|
|
|
console.log("Cannot fetch current user"); |
|
|
|
console.log(response.error); |
|
|
|
$("#Header_CurrentUser").html("Ошибка получения данных профиля! "); |
|
|
|
$("#Header_Logout").html("(Обнови страницу для релога)") |
|
|
|
return; |
|
|
|
} |
|
|
|
document.getElementById("Header_CurrentUser").href = "#"; |
|
|
@ -306,9 +308,10 @@ function ReconstructVipSection(data) { |
|
|
|
$("#Modal_SelectPayMethod_ProfileName").html(`Вип будет выдан: ${data.steam_data.nickname}`); |
|
|
|
|
|
|
|
let price_array = new Array( |
|
|
|
["VIP (1 месяц)", 150, "1 ключ", "site_content/images/vip/VIP_1_MOUNTH.jpg", "month"], |
|
|
|
["VIP (1 неделя)", 75, "20 рефов", "site_content/images/vip/VIP_7_DAYS.jpg", "seven_day"], |
|
|
|
["VIP (1 день)", 20, "5 рефов", "site_content/images/vip/VIP_1_DAY.jpg", "day"] |
|
|
|
["1 месяц", 150, "1 ключ", "site_content/images/vip/VIP_1_MOUNTH.jpg", "month"], |
|
|
|
["1 неделя", 75, "20 рефов", "site_content/images/vip/VIP_7_DAYS.jpg", "seven_day"], |
|
|
|
["1 день", 20, "5 рефов", "site_content/images/vip/VIP_1_DAY.jpg", "day"], |
|
|
|
["1 день", 0, "бесплатно", "site_content/images/vip/freevip.jpg", "free"] |
|
|
|
); |
|
|
|
|
|
|
|
let vip_select; |
|
|
@ -321,7 +324,6 @@ function ReconstructVipSection(data) { |
|
|
|
<a href="#" class="stretched-link" id="Section_VIP_buttons_${price_array[select][4]}"></a> |
|
|
|
<div class="mt-auto"> |
|
|
|
<h5 class="vip-card-text">${price_array[select][0]}</h5> |
|
|
|
<hr class="vip-card-text"> |
|
|
|
<h6 class="vip-card-text">${price_array[select][1]} Рублей</h6> |
|
|
|
<h6 class="vip-card-text">${price_array[select][2]}</h6> |
|
|
|
</div> |
|
|
@ -332,16 +334,28 @@ function ReconstructVipSection(data) { |
|
|
|
$(vip_select).appendTo("#Section_VIP_buttons"); |
|
|
|
$(`#Section_VIP_buttons_${price_array[select][4]}`).click(async function (ev) { |
|
|
|
ev.preventDefault(); |
|
|
|
$("#Modal_SelectPayMethod_QIWI_Button").attr("href", QIWI_TRADE.replace("(AMOUNT)", price_array[select][1]).replace("(COMMENT)", data.steamids.steam2.replace(":", "%3A"))); |
|
|
|
$("#Modal_SelectPayMethod_QIWI_Value").html(`${price_array[select][1]} Рублей`); |
|
|
|
$("#Modal_SelectPayMethod_STEAM_Button").attr("href", STEAM_TRADE); |
|
|
|
$("#Modal_SelectPayMethod_STEAM_Value").html(price_array[select][2]); |
|
|
|
if(price_array[select][4] != "free"){ |
|
|
|
$("#Modal_SelectPayMethod_PayButtons").show(0); |
|
|
|
$("#Modal_SelectPayMethod_GetFreeButtons").hide(0); |
|
|
|
$("#Modal_SelectPayMethod_QIWI_Button").attr("href", QIWI_TRADE.replace("(AMOUNT)", price_array[select][1]).replace("(COMMENT)", data.steamids.steam2.replace(":", "%3A"))); |
|
|
|
$("#Modal_SelectPayMethod_QIWI_Value").html(`${price_array[select][1]} Рублей`); |
|
|
|
$("#Modal_SelectPayMethod_STEAM_Button").attr("href", STEAM_TRADE); |
|
|
|
$("#Modal_SelectPayMethod_STEAM_Value").html(price_array[select][2]); |
|
|
|
} else { |
|
|
|
$("#Modal_SelectPayMethod_PayButtons").hide(0); |
|
|
|
$("#Modal_SelectPayMethod_GetFreeButtons").show(0); |
|
|
|
} |
|
|
|
$('#Modal_SelectPayMethod').modal('show'); |
|
|
|
return false; |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
$("#Modal_SelectPayMethod_GetFreeButton_Check").click(async function (ev) { |
|
|
|
ev.preventDefault(); |
|
|
|
alert("пошел нахуй"); |
|
|
|
}); |
|
|
|
|
|
|
|
//secret egg
|
|
|
|
let konami_code = ""; |
|
|
|
let activated = false; |
|
|
|