mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-22 23:32:24 +01:00
41 lines
1019 B
JavaScript
41 lines
1019 B
JavaScript
'use strict';
|
|
|
|
// Create the Socket.io wrapper service
|
|
angular.module('core').service('Socket', ['Authentication', '$state', '$timeout',
|
|
function (Authentication, $state, $timeout) {
|
|
// Connect to Socket.io server
|
|
this.connect = function () {
|
|
// Connect only when authenticated
|
|
if (Authentication.user) {
|
|
this.socket = io();
|
|
}
|
|
};
|
|
this.connect();
|
|
|
|
// Wrap the Socket.io 'on' method
|
|
this.on = function (eventName, callback) {
|
|
if (this.socket) {
|
|
this.socket.on(eventName, function (data) {
|
|
$timeout(function () {
|
|
callback(data);
|
|
});
|
|
});
|
|
}
|
|
};
|
|
|
|
// Wrap the Socket.io 'emit' method
|
|
this.emit = function (eventName, data) {
|
|
if (this.socket) {
|
|
this.socket.emit(eventName, data);
|
|
}
|
|
};
|
|
|
|
// Wrap the Socket.io 'removeListener' method
|
|
this.removeListener = function (eventName) {
|
|
if (this.socket) {
|
|
this.socket.removeListener(eventName);
|
|
}
|
|
};
|
|
}
|
|
]);
|