172 lines
3.2 KiB
JavaScript
172 lines
3.2 KiB
JavaScript
var irc = require("irc");
|
|
var _ = require("lodash");
|
|
var Backbone = require("backbone");
|
|
var moment = require("moment");
|
|
|
|
// Local library
|
|
var config = require("./../config.js");
|
|
|
|
var models =
|
|
module.exports =
|
|
{};
|
|
|
|
var id = 1;
|
|
|
|
models.User = Backbone.Model.extend({
|
|
defaults: {
|
|
mode: "",
|
|
name: ""
|
|
}
|
|
});
|
|
|
|
var x = 1;
|
|
models.UserCollection = Backbone.Collection.extend({
|
|
model: models.User,
|
|
sort: function(options) {
|
|
this.models = _.sortBy(
|
|
this.models,
|
|
function(user) {
|
|
return user.get("name").toLowerCase();
|
|
}
|
|
);
|
|
|
|
// Iterate all the modes and move users with these
|
|
// modes to the top of the collection.
|
|
var modes = ["+", "@"];
|
|
for (var i in modes) {
|
|
this.models = _.remove(this.models, function(user) {
|
|
if (user.get("mode") == modes[i]) {
|
|
return true;
|
|
}
|
|
}).concat(this.models);
|
|
}
|
|
}
|
|
});
|
|
|
|
models.Message = Backbone.Model.extend({
|
|
defaults: {
|
|
time: "",
|
|
user: "",
|
|
text: "",
|
|
type: "normal"
|
|
},
|
|
initialize: function() {
|
|
this.set("time", moment().format("HH:mm"));
|
|
}
|
|
});
|
|
|
|
models.MessageCollection = Backbone.Collection.extend({
|
|
model: models.Message
|
|
});
|
|
|
|
models.Channel = Backbone.Model.extend({
|
|
defaults: {
|
|
type: "channel",
|
|
name: ""
|
|
},
|
|
initialize: function() {
|
|
this.set({
|
|
id: id++
|
|
});
|
|
|
|
this.set("messages", new models.MessageCollection());
|
|
this.get("messages").on("all", function(action, data) {
|
|
this.trigger("MESSAGES", {
|
|
target: this.get("id"),
|
|
type: "message",
|
|
data: data,
|
|
action: action
|
|
});
|
|
}, this);
|
|
|
|
this.set("users", new models.UserCollection());
|
|
this.get("users").on("all", function(action) {
|
|
this.trigger("USERS", {
|
|
target: this.get("id"),
|
|
type: "user",
|
|
data: this.get("users"),
|
|
action: action
|
|
});
|
|
}, this);
|
|
}
|
|
});
|
|
|
|
models.ChannelCollection = Backbone.Collection.extend({
|
|
model: models.Channel
|
|
});
|
|
|
|
models.Network = Backbone.Model.extend({
|
|
defaults: {
|
|
host: "",
|
|
nick: config.nick
|
|
},
|
|
initialize: function() {
|
|
this.set({
|
|
id: id++
|
|
});
|
|
|
|
this.set("channels", new models.ChannelCollection());
|
|
this.get("channels").on("all", function(action, data) {
|
|
if (action == "USERS" || action == "MESSAGES") {
|
|
this.trigger(action, data);
|
|
} else {
|
|
this.trigger("CHANNELS", {
|
|
target: this.get("id"),
|
|
type: "channel",
|
|
data: data,
|
|
action: action
|
|
});
|
|
}
|
|
}, this);
|
|
|
|
this.get("channels").add(new models.Channel({
|
|
type: "network",
|
|
name: this.get("host")
|
|
}));
|
|
},
|
|
connect: function(channels) {
|
|
var client = new irc.Client(
|
|
this.get("host"),
|
|
this.get("nick"), {
|
|
fullname: config.fullname,
|
|
channels: channels
|
|
}
|
|
);
|
|
|
|
this.irc = client;
|
|
this.irc.addListener("error", function() {
|
|
// ..
|
|
});
|
|
|
|
this.on("remove", function() {
|
|
if (typeof this.irc !== "undefined") {
|
|
this.irc.disconnect();
|
|
}
|
|
});
|
|
|
|
return this.irc;
|
|
}
|
|
});
|
|
|
|
models.NetworkCollection = Backbone.Collection.extend({
|
|
model: models.Network,
|
|
initialize: function() {
|
|
this.add(new models.Network({
|
|
host: "Lobby",
|
|
connect: false
|
|
}));
|
|
},
|
|
find: function(id) {
|
|
var networks = this.models;
|
|
for (var i = 0; i < networks.length; i++) {
|
|
var find = networks[i].get("channels").findWhere({id: id});
|
|
if (find) {
|
|
return {
|
|
network: networks[i],
|
|
channel: find
|
|
};
|
|
}
|
|
}
|
|
}
|
|
});
|