mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-08 03:29:43 +01:00
f802c1d889
broken.
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
var ip;
|
|
$.ajax({
|
|
type: "GET",
|
|
url: "//jsonip.appspot.com/?callback=?",
|
|
dataType: "jsonp",
|
|
success: function(getip) { ip = getip.ip; }
|
|
});
|
|
|
|
componentconstructors['chat'] = function(dynmap, configuration) {
|
|
var me = this;
|
|
// Provides 'chat'-events by monitoring the world-updates.
|
|
$(dynmap).bind('worldupdate', function(event, update) {
|
|
swtch(update.type, {
|
|
chat: function() {
|
|
$(dynmap).trigger('chat', [{source: update.source, name: update.playerName, text: update.message, account: update.account,
|
|
channel: update.channel}]);
|
|
}
|
|
});
|
|
});
|
|
|
|
if (dynmap.options.allowwebchat) {
|
|
// Accepts 'sendchat'-events to send chat messages to the server.
|
|
$(dynmap).bind('sendchat', function(event, message) {
|
|
var data = '{"name":'+JSON.stringify(ip?ip:"")+',"message":'+JSON.stringify(message)+'}';
|
|
$.ajax({
|
|
type: 'POST',
|
|
url: config.url.sendmessage,
|
|
data: data,
|
|
dataType: 'json',
|
|
success: function(response) {
|
|
//handle response
|
|
if(response) {
|
|
$(dynmap).trigger('chat', [{source: 'me', name: ip, text: message}]);
|
|
}
|
|
},
|
|
error: function(xhr) {
|
|
if (xhr.status === 403) {
|
|
$(dynmap).trigger('chat', [{source: 'me', name: 'Error', text: dynmap.options.spammessage.replace('%interval%', dynmap.options['webchat-interval'])}]);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
}
|
|
};
|