Prevent quota overflow

This commit is contained in:
Calvin Montgomery 2013-07-09 22:55:40 -04:00
parent d4d6fb6686
commit 53c1655894
2 changed files with 43 additions and 17 deletions

View File

@ -30,6 +30,10 @@ function getJSON(options, callback) {
catch(e) {
Logger.errlog.log("JSON fail: " + options.path);
var m = buffer.match(/<internalReason>([^<]+)<\/internalReason>/);
if(m === null)
m = buffer.match(/<code>([^<]+)<\/code>/);
if(m === null)
m = buffer.match(/([0-9]+ not found)/);
if(m) {
callback(m[1], res.statusCode, null);
}
@ -60,6 +64,10 @@ function getJSONHTTPS(options, callback) {
catch(e) {
Logger.errlog.log("JSON fail: " + options.path);
var m = buffer.match(/<internalReason>([^<]+)<\/internalReason>/);
if(m === null)
m = buffer.match(/<code>([^<]+)<\/code>/);
if(m === null)
m = buffer.match(/([0-9]+ not found)/);
if(m) {
callback(m[1], res.statusCode, null);
}
@ -259,7 +267,7 @@ exports.getMedia = function(id, type, callback) {
case "vi":
exports.getVIInfo(id, function(err, res, data) {
if(err || res != 200) {
callback(true, null);
callback(err || true, null);
return;
}

View File

@ -49,16 +49,29 @@ function Playlist(chan) {
this._qaInterval = false;
if(chan) {
this.channel = chan;
var pl = this;
this.on("mediaUpdate", function(m) {
if(chan != pl.channel) {
pl.die();
return;
}
chan.sendAll("mediaUpdate", m.timeupdate());
});
this.on("changeMedia", function(m) {
if(chan != pl.channel) {
pl.die();
return;
}
chan.onVideoChange();
chan.sendAll("setCurrent", pl.current.uid);
chan.sendAll("changeMedia", m.fullupdate());
});
this.on("remove", function(item) {
if(chan != pl.channel) {
pl.die();
return;
}
chan.broadcastPlaylistMeta();
chan.sendAll("delete", {
uid: item.uid
@ -254,7 +267,10 @@ Playlist.prototype.addMediaList = function(data, callback) {
start = false;
var pl = this;
data.list.forEach(function(x) {
for(var i = 0; i < data.list.length; i++) {
var x = data.list[i];
(function(i, x) {
setTimeout(function() {
x.queueby = data.queueby;
x.pos = data.pos;
if(start && x == start) {
@ -272,7 +288,9 @@ Playlist.prototype.addMediaList = function(data, callback) {
else {
pl.addMedia(x, callback);
}
});
}, 500 * i);
})(i, x);
}
}
Playlist.prototype.addYouTubePlaylist = function(data, callback) {