2013-05-03 00:29:52 +02:00
|
|
|
var settings = (function () {
|
|
|
|
|
|
|
|
var exports = {};
|
|
|
|
|
2013-06-14 20:03:54 +02:00
|
|
|
function add_bot_row(name, email, avatar_url, api_key) {
|
|
|
|
var avatar_cell;
|
|
|
|
|
|
|
|
if (avatar_url) {
|
|
|
|
avatar_cell = '<img src="' + avatar_url + '" height=60 width=60>';
|
|
|
|
} else {
|
|
|
|
avatar_cell = '(default)';
|
|
|
|
}
|
|
|
|
|
2013-05-03 00:29:52 +02:00
|
|
|
var row = $('<tr></tr>').append($('<td>').text(name),
|
|
|
|
$('<td>').text(email),
|
2013-06-14 20:03:54 +02:00
|
|
|
$('<td>').html(avatar_cell),
|
2013-05-03 00:29:52 +02:00
|
|
|
$('<td class="api_key">').text(api_key));
|
2013-05-28 21:36:22 +02:00
|
|
|
$('#create_bot_row').before(row);
|
2013-05-03 00:29:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function is_local_part(value, element) {
|
|
|
|
// Adapted from Django's EmailValidator
|
|
|
|
return this.optional(element) || /^[\-!#$%&'*+\/=?\^_`{}|~0-9A-Z]+(\.[\-!#$%&'*+\/=?\^_`{}|~0-9A-Z]+)*$/i.test(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
$(function () {
|
|
|
|
$.ajax({
|
|
|
|
type: 'POST',
|
|
|
|
url: '/json/get_bots',
|
|
|
|
dataType: 'json',
|
|
|
|
success: function (data) {
|
|
|
|
$('#bot_table_error').hide();
|
|
|
|
|
2013-06-27 23:05:36 +02:00
|
|
|
$.each(data.bots, function (idx, elem) {
|
2013-06-14 20:03:54 +02:00
|
|
|
add_bot_row(elem.full_name, elem.username, elem.avatar_url, elem.api_key);
|
2013-05-03 00:29:52 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
error: function (xhr, error_type, xhn) {
|
|
|
|
$('#bot_table_error').text("Could not fetch bots list").show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$.validator.addMethod("bot_local_part",
|
|
|
|
function (value, element) {
|
|
|
|
return is_local_part.call(this, value + "-bot", element);
|
|
|
|
},
|
|
|
|
"Please only use characters that are valid in an email address");
|
|
|
|
|
2013-06-14 20:03:54 +02:00
|
|
|
function clear_bot_avatar_file_input() {
|
|
|
|
var control = $('#bot_avatar_file_input');
|
|
|
|
var new_control = control.clone(true);
|
|
|
|
control.replaceWith(new_control);
|
|
|
|
}
|
|
|
|
|
2013-06-25 19:55:22 +02:00
|
|
|
$('#bot_avatar_file_input').on('drop', function(e) {
|
|
|
|
var files = e.dataTransfer.files;
|
|
|
|
if (files === null || files === undefined || files.length === 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
this.files = files;
|
|
|
|
e.preventDefault();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2013-06-14 20:03:54 +02:00
|
|
|
$('#bot_avatar_file_input').change(function(e) {
|
|
|
|
if (e.target.files.length === 0) {
|
|
|
|
$('#bot_avatar_file_input_error').hide();
|
|
|
|
} else if (e.target.files.length === 1) {
|
|
|
|
var file = e.target.files[0];
|
|
|
|
if (file.size > 5*1024*1024) {
|
|
|
|
$('#bot_avatar_file_input_error').text('File size must be < 5Mb.');
|
|
|
|
$('#bot_avatar_file_input_error').show();
|
|
|
|
clear_bot_avatar_file_input();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$('#bot_avatar_file_input_error').hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$('#bot_avatar_file_input_error').text('Please just upload one file.');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-05-03 00:29:52 +02:00
|
|
|
$('#create_bot_form').validate({
|
|
|
|
errorClass: 'text-error',
|
|
|
|
success: function () {
|
|
|
|
$('#bot_table_error').hide();
|
|
|
|
},
|
|
|
|
submitHandler: function () {
|
2013-06-14 20:03:54 +02:00
|
|
|
var full_name = $('#create_bot_name').val();
|
2013-05-03 00:29:52 +02:00
|
|
|
var short_name = $('#create_bot_short_name').val();
|
2013-06-14 20:03:54 +02:00
|
|
|
var formData = new FormData();
|
|
|
|
formData.append('csrfmiddlewaretoken', csrf_token);
|
|
|
|
formData.append('full_name', full_name);
|
|
|
|
formData.append('short_name', short_name);
|
|
|
|
jQuery.each($('#bot_avatar_file_input')[0].files, function(i, file) {
|
|
|
|
formData.append('file-'+i, file);
|
|
|
|
});
|
|
|
|
util.make_loading_indicator($('#create_bot_spinner'), 'Adding bot');
|
|
|
|
$('#create_bot_button').hide();
|
2013-05-03 00:29:52 +02:00
|
|
|
$.ajax({
|
|
|
|
url: '/json/create_bot',
|
2013-06-14 20:03:54 +02:00
|
|
|
type: 'POST',
|
|
|
|
data: formData,
|
|
|
|
cache: false,
|
|
|
|
processData: false,
|
|
|
|
contentType: false,
|
2013-05-03 00:29:52 +02:00
|
|
|
success: function (data) {
|
2013-06-14 20:03:54 +02:00
|
|
|
util.destroy_loading_indicator($("#create_bot_spinner"));
|
2013-05-03 00:29:52 +02:00
|
|
|
$('#bot_table_error').hide();
|
|
|
|
$('#create_bot_name').val('');
|
|
|
|
$('#create_bot_short_name').val('');
|
2013-06-14 20:03:54 +02:00
|
|
|
$('#create_bot_button').show();
|
|
|
|
clear_bot_avatar_file_input();
|
2013-05-03 00:29:52 +02:00
|
|
|
|
2013-06-14 20:03:54 +02:00
|
|
|
add_bot_row(
|
|
|
|
full_name,
|
|
|
|
short_name + "-bot@" + page_params.domain,
|
|
|
|
data.avatar_url,
|
|
|
|
data.api_key
|
|
|
|
);
|
2013-05-03 00:29:52 +02:00
|
|
|
},
|
|
|
|
error: function (xhr, error_type, exn) {
|
2013-06-14 20:03:54 +02:00
|
|
|
util.destroy_loading_indicator($("#create_bot_spinner"));
|
|
|
|
$('#create_bot_button').show();
|
2013-05-03 00:29:52 +02:00
|
|
|
$('#bot_table_error').text(JSON.parse(xhr.responseText).msg).show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2013-06-27 23:05:36 +02:00
|
|
|
}());
|