mirror of https://github.com/calzoneman/sync.git
Fix bug with userJoin, add password support to channel API
This commit is contained in:
parent
d006099fc7
commit
81b5c0eeaa
44
lib/api.js
44
lib/api.js
|
@ -74,8 +74,48 @@ module.exports = function (Server) {
|
||||||
loaded: false
|
loaded: false
|
||||||
};
|
};
|
||||||
|
|
||||||
if(Server.isChannelLoaded(name))
|
var needPassword = false;
|
||||||
data = getChannelData(Server.getChannel(name));
|
var chan = null;
|
||||||
|
if (Server.isChannelLoaded(name)) {
|
||||||
|
chan = Server.getChannel(name);
|
||||||
|
data = getChannelData(chan);
|
||||||
|
needPassword = chan.opts.password;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (needPassword !== false) {
|
||||||
|
var pw = req.query.password;
|
||||||
|
if (pw !== needPassword) {
|
||||||
|
var uname = req.cookies.cytube_uname;
|
||||||
|
var session = req.cookies.cytube_session;
|
||||||
|
Server.db.userLoginSession(uname, session, function (err, row) {
|
||||||
|
if (err) {
|
||||||
|
res.status(403);
|
||||||
|
res.type("application/json");
|
||||||
|
res.jsonp({
|
||||||
|
error: "Password required to view this channel"
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (chan !== null) {
|
||||||
|
chan.getRank(uname, function (err, rank) {
|
||||||
|
if (err || rank < 2) {
|
||||||
|
res.status(403);
|
||||||
|
res.type("application/json");
|
||||||
|
res.jsonp({
|
||||||
|
error: "Password required to view this channel"
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
res.type("application/json");
|
||||||
|
res.jsonp(data);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
res.type("application/json");
|
res.type("application/json");
|
||||||
res.jsonp(data);
|
res.jsonp(data);
|
||||||
|
|
|
@ -99,7 +99,7 @@ var Channel = function(name) {
|
||||||
},
|
},
|
||||||
show_public: false,
|
show_public: false,
|
||||||
enable_link_regex: true,
|
enable_link_regex: true,
|
||||||
password: "tomato74"
|
password: false
|
||||||
};
|
};
|
||||||
self.filters = [
|
self.filters = [
|
||||||
new Filter("monospace", "`([^`]+)`", "g", "<code>$1</code>"),
|
new Filter("monospace", "`([^`]+)`", "g", "<code>$1</code>"),
|
||||||
|
@ -801,6 +801,22 @@ Channel.prototype.search = function(query, callback) {
|
||||||
|
|
||||||
/* REGION User interaction */
|
/* REGION User interaction */
|
||||||
|
|
||||||
|
Channel.prototype.addPendingJoin = function (user, password) {
|
||||||
|
var self = this;
|
||||||
|
if (!("pendingJoins" in self)) {
|
||||||
|
self.pendingJoins = [];
|
||||||
|
}
|
||||||
|
for (var i = 0; i < self.pendingJoins.length; i++) {
|
||||||
|
if (self.pendingJoins[i].user === user) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
self.pendingJoins.push({
|
||||||
|
user: user,
|
||||||
|
pw: password
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
Channel.prototype.handlePendingJoins = function () {
|
Channel.prototype.handlePendingJoins = function () {
|
||||||
var self = this;
|
var self = this;
|
||||||
self.pendingJoins.forEach(function (u) {
|
self.pendingJoins.forEach(function (u) {
|
||||||
|
@ -812,15 +828,7 @@ Channel.prototype.handlePendingJoins = function () {
|
||||||
Channel.prototype.userJoin = function(user, password) {
|
Channel.prototype.userJoin = function(user, password) {
|
||||||
var self = this;
|
var self = this;
|
||||||
if (!self.ready) {
|
if (!self.ready) {
|
||||||
if (!("pendingJoins" in self)) {
|
self.addPendingJoin(user, password);
|
||||||
self.pendingJoins = [];
|
|
||||||
}
|
|
||||||
if (self.pendingJoins.indexOf(user) === -1) {
|
|
||||||
self.pendingJoins.push({
|
|
||||||
user: user,
|
|
||||||
pw: password
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue