2017-03-26 10:04:15 +02:00
|
|
|
$('#unauth_users').change(function() {
|
|
|
|
var pathname = window.location.pathname;
|
|
|
|
var checked = $(this).is(':checked')
|
|
|
|
var payload = {"unauth_users": checked}
|
|
|
|
$.post(pathname, payload, function(data) {
|
|
|
|
Materialize.toast('Updated guest users setting!', 2000)
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-06-09 06:22:33 +02:00
|
|
|
$('#visitor_view').change(function() {
|
|
|
|
var pathname = window.location.pathname;
|
|
|
|
var checked = $(this).is(':checked')
|
|
|
|
var payload = {"visitor_view": checked}
|
|
|
|
$.post(pathname, payload, function(data) {
|
|
|
|
Materialize.toast('Updated visitor mode setting!', 2000)
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-08-27 23:41:36 +02:00
|
|
|
$('#webhook_messages').change(function() {
|
|
|
|
var pathname = window.location.pathname;
|
|
|
|
var checked = $(this).is(':checked')
|
|
|
|
var payload = {"webhook_messages": checked}
|
|
|
|
$.post(pathname, payload, function(data) {
|
|
|
|
Materialize.toast('Updated webhook messages setting!', 2000)
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-05-09 02:55:07 +02:00
|
|
|
$('#chat_links').change(function() {
|
|
|
|
var pathname = window.location.pathname;
|
|
|
|
var checked = $(this).is(':checked')
|
|
|
|
var payload = {"chat_links": checked}
|
|
|
|
$.post(pathname, payload, function(data) {
|
|
|
|
Materialize.toast('Updated chat links setting!', 2000)
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#bracket_links').change(function() {
|
|
|
|
var pathname = window.location.pathname;
|
|
|
|
var checked = $(this).is(':checked')
|
|
|
|
var payload = {"bracket_links": checked}
|
|
|
|
$.post(pathname, payload, function(data) {
|
|
|
|
Materialize.toast('Updated embed links setting!', 2000)
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$("#mentions_limit").keyup(function(event){
|
|
|
|
if(event.keyCode == 13){
|
|
|
|
var pathname = window.location.pathname;
|
|
|
|
var value = $("#mentions_limit").val()
|
|
|
|
var payload = {"mentions_limit": value}
|
|
|
|
$.post(pathname, payload, function(data) {
|
|
|
|
Materialize.toast('Updated mentions limit setting!', 2000)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-01-13 19:37:42 +01:00
|
|
|
$("#invite_link").keyup(function(event){
|
2017-06-04 07:31:45 +02:00
|
|
|
if(event.keyCode == 13){
|
|
|
|
var pathname = window.location.pathname;
|
2018-01-13 19:37:42 +01:00
|
|
|
var value = $("#invite_link").val()
|
|
|
|
var payload = {"invite_link": value}
|
2017-06-04 07:31:45 +02:00
|
|
|
$.post(pathname, payload, function(data) {
|
2018-01-13 19:37:42 +01:00
|
|
|
Materialize.toast('Updated invite link setting!', 2000)
|
2017-06-04 07:31:45 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-09-24 03:22:07 +02:00
|
|
|
$("#guest_icon").keyup(function(event){
|
2017-09-13 07:55:51 +02:00
|
|
|
if(event.keyCode == 13){
|
|
|
|
var pathname = window.location.pathname;
|
2017-09-24 03:22:07 +02:00
|
|
|
var value = $("#guest_icon").val()
|
|
|
|
var payload = {"guest_icon": value}
|
2017-09-13 07:55:51 +02:00
|
|
|
$.post(pathname, payload, function(data) {
|
2017-09-24 03:22:07 +02:00
|
|
|
Materialize.toast('Updated Guest Icon setting!', 2000)
|
2017-09-13 07:55:51 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-11-04 03:58:26 +01:00
|
|
|
$('#unauth_captcha').change(function() {
|
|
|
|
var pathname = window.location.pathname;
|
|
|
|
var checked = $(this).is(':checked')
|
|
|
|
var payload = {"unauth_captcha": checked}
|
|
|
|
$.post(pathname, payload, function(data) {
|
|
|
|
Materialize.toast('Updated Guest User Captcha setting!', 2000)
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-03-26 10:04:15 +02:00
|
|
|
function initiate_ban(guild_id, user_id) {
|
|
|
|
var reason = prompt("Please enter your reason for ban");
|
|
|
|
var payload = {
|
|
|
|
"reason": reason,
|
|
|
|
"guild_id": guild_id,
|
|
|
|
"user_id": user_id,
|
|
|
|
}
|
|
|
|
var pathname = document.location.origin + "/user/ban"
|
|
|
|
|
|
|
|
if (reason != null) {
|
|
|
|
$.post(pathname, payload)
|
|
|
|
.done(function(){
|
|
|
|
location.reload();
|
|
|
|
})
|
|
|
|
.fail(function(xhr, status, error) {
|
|
|
|
if (error == "CONFLICT") {
|
|
|
|
Materialize.toast('User is already banned!', 2000)
|
|
|
|
} else {
|
|
|
|
Materialize.toast('An error has occured!', 2000)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function remove_ban(guild_id, user_id) {
|
|
|
|
var payload = {
|
|
|
|
"guild_id": guild_id,
|
|
|
|
"user_id": user_id,
|
|
|
|
}
|
|
|
|
var pathname = document.location.origin + "/user/ban"
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: pathname + '?' + $.param(payload),
|
|
|
|
type: 'DELETE',
|
|
|
|
success: function() {
|
|
|
|
location.reload();
|
|
|
|
},
|
|
|
|
error: function(jqxhr, status, error) {
|
|
|
|
if (error == "CONFLICT") {
|
|
|
|
Materialize.toast('User is already pardoned!', 2000)
|
|
|
|
} else {
|
|
|
|
Materialize.toast('An error has occured!', 2000)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function revoke_user(guild_id, user_id) {
|
|
|
|
var payload = {
|
|
|
|
"guild_id": guild_id,
|
|
|
|
"user_id": user_id,
|
|
|
|
}
|
|
|
|
var confirmation = confirm("Are you sure that you want to kick user?")
|
|
|
|
var pathname = document.location.origin + "/user/revoke"
|
|
|
|
if (confirmation) {
|
|
|
|
$.post(pathname, payload)
|
|
|
|
.done(function(){
|
|
|
|
location.reload();
|
|
|
|
})
|
|
|
|
.fail(function(xhr, status, error) {
|
|
|
|
if (error == "CONFLICT") {
|
|
|
|
Materialize.toast('User is already revoked!', 2000)
|
|
|
|
} else {
|
|
|
|
Materialize.toast('An error has occured!', 2000)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|