Removes console.log calls and adds amazing comments

This commit is contained in:
David Cormier 2013-08-04 22:25:59 -04:00
parent 7fa45cbc4f
commit 320b143687
2 changed files with 17 additions and 37 deletions

View file

@ -1,23 +1,6 @@
var Protocol = function() { var Protocol = function() {
var self = this; var self = this;
self.isEvent = function(receivedMessage) {
/*
* Determines whether or not the received message
* is an event.
*
* Right now, only the presence of an id is checked,
* as messages from the client don't specify the ID
*
* FIXME: check content of the id to dermine if message is an event
*/
if (receivedMessage['id']) {
return true;
} else {
return false;
}
}
var getInfo = function() { var getInfo = function() {
var info = {}; var info = {};
info.key = getString(); info.key = getString();
@ -144,8 +127,6 @@ var Protocol = function() {
objects.push(object); objects.push(object);
object = getObject(); object = getObject();
} }
console.log("Received message");
console.log(header, id, objects);
return { return {
header: header, header: header,
id: id, id: id,

View file

@ -105,7 +105,6 @@ weechat.factory('colors', [function($scope) {
weechat.factory('handlers', ['$rootScope', 'colors', function($rootScope, colors) { weechat.factory('handlers', ['$rootScope', 'colors', function($rootScope, colors) {
var handleBufferLineAdded = function(message) { var handleBufferLineAdded = function(message) {
var buffer_line = {} var buffer_line = {}
var prefix = colors.parse(message['objects'][0]['content'][0]['prefix']); var prefix = colors.parse(message['objects'][0]['content'][0]['prefix']);
var text = colors.parse(message['objects'][0]['content'][0]['message']); var text = colors.parse(message['objects'][0]['content'][0]['message']);
@ -113,19 +112,21 @@ weechat.factory('handlers', ['$rootScope', 'colors', function($rootScope, colors
var message = _.union(prefix, text); var message = _.union(prefix, text);
buffer_line['message'] = message; buffer_line['message'] = message;
buffer_line['metadata'] = findMetaData(text[0]['text']); buffer_line['metadata'] = findMetaData(text[0]['text']);
$rootScope.buffers[buffer]['lines'].push(buffer_line); $rootScope.buffers[buffer]['lines'].push(buffer_line);
} }
var handleBufferOpened = function(message) { var handleBufferOpened = function(message) {
console.log('buffer opened');
var fullName = message['objects'][0]['content'][0]['full_name'] var fullName = message['objects'][0]['content'][0]['full_name']
var buffer = message['objects'][0]['content'][0]['pointers'][0] var buffer = message['objects'][0]['content'][0]['pointers'][0]
$rootScope.buffers[buffer] = { 'lines':[], 'full_name':fullName } $rootScope.buffers[buffer] = { 'lines':[], 'full_name':fullName }
console.log($rootScope.buffers);
} }
/*
* Handle answers to (bufinfo) messages
*
* (bufinfo) messages are specified by this client. It is the first
* message that is sent to the relay after connection.
*/
var handleBufferInfo = function(message) { var handleBufferInfo = function(message) {
// buffer info from message // buffer info from message
var bufferInfos = message['objects'][0]['content']; var bufferInfos = message['objects'][0]['content'];
@ -143,7 +144,6 @@ weechat.factory('handlers', ['$rootScope', 'colors', function($rootScope, colors
var handleEvent = function(message) { var handleEvent = function(message) {
console.log(message);
types[message['id']](message); types[message['id']](message);
} }
@ -170,24 +170,28 @@ weechat.factory('handlers', ['$rootScope', 'colors', function($rootScope, colors
}]); }]);
weechat.factory('connection', ['$rootScope', '$http', 'handlers', 'colors', function($rootScope, $http, handlers, colors) { weechat.factory('connection', ['$rootScope', '$log', 'handlers', 'colors', function($rootScope, $log, handlers, colors) {
protocol = new Protocol(); protocol = new Protocol();
var websocket = null; var websocket = null;
var doSend = function(message) {
// Sanitizes messages to be sent to the weechat relay
var doSend = function(message) {
msgs = message.replace(/[\r\n]+$/g, "").split("\n"); msgs = message.replace(/[\r\n]+$/g, "").split("\n");
for (var i = 0; i < msgs.length; i++) { for (var i = 0; i < msgs.length; i++) {
console.log('=' + msgs[i] + '='); $log.log('=' + msgs[i] + '=');
$rootScope.commands.push("SENT: " + msgs[i]); $rootScope.commands.push("SENT: " + msgs[i]);
} }
websocket.send(message); websocket.send(message);
} }
// Takes care of the connection and websocket hooks
var connect = function (hostport, proto, password) { var connect = function (hostport, proto, password) {
websocket = new WebSocket("ws://" + hostport + "/weechat"); websocket = new WebSocket("ws://" + hostport + "/weechat");
websocket.binaryType = "arraybuffer" websocket.binaryType = "arraybuffer"
websocket.onopen = function (evt) { websocket.onopen = function (evt) {
// FIXME: does password need to be sent only if protocol is not weechat?
if (proto == "weechat") { if (proto == "weechat") {
doSend("init compression=off\nversion\n"); doSend("init compression=off\nversion\n");
doSend("(bufinfo) hdata buffer:gui_buffers(*) full_name\n"); doSend("(bufinfo) hdata buffer:gui_buffers(*) full_name\n");
@ -195,27 +199,26 @@ weechat.factory('connection', ['$rootScope', '$http', 'handlers', 'colors', func
} else { } else {
doSend("PASS " + password + "\r\nNICK test\r\nUSER test 0 * :test\r\n"); doSend("PASS " + password + "\r\nNICK test\r\nUSER test 0 * :test\r\n");
} }
$log.info("Connected to relay");
$rootScope.connected = true; $rootScope.connected = true;
$rootScope.$apply(); $rootScope.$apply();
} }
websocket.onclose = function (evt) { websocket.onclose = function (evt) {
console.log("disconnected", "Disconnected"); $log.info("Disconnected from relay");
$rootScope.connected = false; $rootScope.connected = false;
$rootScope.$apply();
} }
websocket.onmessage = function (evt) { websocket.onmessage = function (evt) {
message = protocol.parse(evt.data) message = protocol.parse(evt.data)
handlers.handleEvent(message); handlers.handleEvent(message);
$rootScope.commands.push("RECV: " + evt.data + " TYPE:" + evt.type) ; $rootScope.commands.push("RECV: " + evt.data + " TYPE:" + evt.type) ;
$rootScope.$apply(); $rootScope.$apply();
} }
websocket.onerror = function (evt) { websocket.onerror = function (evt) {
console.log("error", "ERROR: " + evt.data); $log.error("Relay error " + evt.data);
} }
this.websocket = websocket; this.websocket = websocket;
@ -223,12 +226,9 @@ weechat.factory('connection', ['$rootScope', '$http', 'handlers', 'colors', func
var sendMessage = function(message) { var sendMessage = function(message) {
message = "input " + $rootScope.activeBuffer['full_name'] + " " + message + "\n" message = "input " + $rootScope.activeBuffer['full_name'] + " " + message + "\n"
console.log($rootScope.activeBuffer);
doSend(message); doSend(message);
} }
return { return {
connect: connect, connect: connect,
sendMessage: sendMessage sendMessage: sendMessage
@ -246,7 +246,6 @@ weechat.controller('WeechatCtrl', ['$rootScope', '$scope', 'connection', functio
$scope.password = "" $scope.password = ""
$scope.setActiveBuffer = function(key) { $scope.setActiveBuffer = function(key) {
console.log('change buffer');
$rootScope.activeBuffer = $rootScope.buffers[key]; $rootScope.activeBuffer = $rootScope.buffers[key];
}; };