|
@@ -12,8 +12,6 @@ var servers = [];
|
|
|
var channels = [];
|
|
|
var me = null;
|
|
|
|
|
|
-module.exports.setConnection = setConnection;
|
|
|
-
|
|
|
function findServer(s){
|
|
|
for(var i=0; i<servers.length; i++){
|
|
|
srv = servers[i];
|
|
@@ -81,35 +79,6 @@ function parseUmodes(text){
|
|
|
// TODO
|
|
|
}
|
|
|
|
|
|
-function setConnection(host, port, protocol){
|
|
|
- uplink = require('./protocol/' + protocol);
|
|
|
- me = new IRCserver;
|
|
|
- me.introduce('serwisy.pirc.pl', '11K', 'Serwisy', 0, null);
|
|
|
- servers.push(me);
|
|
|
- uplink.setHandlers({
|
|
|
- send: ircSendData,
|
|
|
- findServer: findServer,
|
|
|
- findUser: findUser,
|
|
|
- killUser: killUser,
|
|
|
- newServer: newServer,
|
|
|
- newUser: newUser,
|
|
|
- parseUmodes: parseUmodes,
|
|
|
- getChannel: getChannel
|
|
|
- });
|
|
|
- uplink.setSettings({
|
|
|
- ID: me.sid,
|
|
|
- password: 'myservicespassword',
|
|
|
- name: me.name,
|
|
|
- description: me.description,
|
|
|
- version: 'k4be-services',
|
|
|
- me: me
|
|
|
- });
|
|
|
- connection = new net.Socket();
|
|
|
- connection.connect(port, host, uplink.connected.bind(this));
|
|
|
- connection.on('data', ircDataReceived);
|
|
|
- connection.on('close', ircConnectionClosed);
|
|
|
-}
|
|
|
-
|
|
|
function ircSendData(tags, from, cmd, args){
|
|
|
var data = makeTagsString(tags);
|
|
|
if(from){
|
|
@@ -165,7 +134,65 @@ function processReplyTags(inputTags, newTags){
|
|
|
// TODO
|
|
|
}
|
|
|
|
|
|
+function quitUser(user){
|
|
|
+ console.log('Removing user '+user.name);
|
|
|
+ for(var i=0; i<channels.length; i++){
|
|
|
+ channels[i].removeUser(user);
|
|
|
+ }
|
|
|
+ for(var i=0; i<users.length; i++){
|
|
|
+ if(users[i] == user){
|
|
|
+ users.splice(i, 1);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function removeEmptyChannels(){
|
|
|
+ for(var i=channels.length - 1; i >= 0; i--){
|
|
|
+ if(channels[i].users.length == 0){
|
|
|
+ storeChannelData(channels[i]);
|
|
|
+ console.log('Removing channel '+channels[i].name);
|
|
|
+ channels.splice(i, 1);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+function storeChannelData(channel){
|
|
|
+// TODO maybe move a level up
|
|
|
+}
|
|
|
+
|
|
|
+setInterval(removeEmptyChannels, 1000);
|
|
|
+
|
|
|
var irc = {
|
|
|
+ 'setConnection': function(host, port, protocol){
|
|
|
+ uplink = require('./protocol/' + protocol);
|
|
|
+ me = new IRCserver;
|
|
|
+ me.introduce('serwisy.pirc.pl', '11K', 'Serwisy', 0, null);
|
|
|
+ servers.push(me);
|
|
|
+ uplink.setHandlers({
|
|
|
+ send: ircSendData,
|
|
|
+ findServer: findServer,
|
|
|
+ findUser: findUser,
|
|
|
+ killUser: killUser,
|
|
|
+ newServer: newServer,
|
|
|
+ newUser: newUser,
|
|
|
+ parseUmodes: parseUmodes,
|
|
|
+ getChannel: getChannel,
|
|
|
+ quitUser: quitUser
|
|
|
+ });
|
|
|
+ uplink.setSettings({
|
|
|
+ ID: me.sid,
|
|
|
+ password: 'myservicespassword',
|
|
|
+ name: me.name,
|
|
|
+ description: me.description,
|
|
|
+ version: 'k4be-services',
|
|
|
+ me: me
|
|
|
+ });
|
|
|
+ connection = new net.Socket();
|
|
|
+ connection.connect(port, host, uplink.connected.bind(this));
|
|
|
+ connection.on('data', ircDataReceived);
|
|
|
+ connection.on('close', ircConnectionClosed);
|
|
|
+ },
|
|
|
'messagedata': function() {
|
|
|
this.text = '';
|
|
|
this.args = [];
|
|
@@ -371,3 +398,5 @@ var irc = {
|
|
|
}
|
|
|
};
|
|
|
|
|
|
+module.exports = irc;
|
|
|
+
|