Bugfixes for last commit

- Fix race condition for login frame
- Fix guest logins
This commit is contained in:
calzoneman 2013-04-25 23:04:51 -05:00
parent 3a7acd0526
commit 087f612b37
8 changed files with 30 additions and 10 deletions

17
api.js
View File

@ -126,6 +126,23 @@ function handleLogin(params, req, res) {
var name = params.name || "";
var pw = params.pw || "";
if(pw == "") {
if(!Auth.isRegistered(name)) {
sendJSON(res, {
success: true,
session: ""
});
return;
}
else {
sendJSON(res, {
success: false,
error: "That username is already taken"
});
return;
}
}
var row = Auth.login(name, pw, session);
if(row) {
sendJSON(res, {

View File

@ -2,7 +2,7 @@
"author": "Calvin Montgomery",
"name": "CyTube",
"description": "Online media synchronizer and chat",
"version": "1.3.0",
"version": "1.3.1",
"repository": {
"url": "http://github.com/calzoneman/sync"
},

View File

@ -9,7 +9,7 @@ The above copyright notice and this permission notice shall be included in all c
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
const VERSION = "1.3.0";
const VERSION = "1.3.1";
var fs = require("fs");
var Logger = require("./logger.js");

View File

@ -398,7 +398,7 @@ User.prototype.login = function(name, pw, session) {
else {
this.socket.emit("login", {
success: false,
error: "Invalid username/password pair"
error: "Invalid session"
});
return false;
}

View File

@ -143,7 +143,7 @@ function initCallbacks() {
$("#loginform").css("display", "none");
$("#logoutform").css("display", "");
$("#loggedin").css("display", "");
session = data.session;
session = data.session || "";
createCookie("sync_uname", uname, 7);
createCookie("sync_session", session, 7);
}

View File

@ -863,7 +863,13 @@ function showLoginFrame() {
.css("height", "300px")
.css("margin", "0")
.appendTo(body);
var timer = setInterval(function() {
frame[0].contentWindow.postMessage("cytube-syn", document.location);
}, 1000);
var respond = function(e) {
if(e.data == "cytube-ack") {
clearInterval(timer);
}
if(e.data.indexOf(":") == -1) {
return;
}
@ -874,8 +880,8 @@ function showLoginFrame() {
alert(data.error);
}
else if(data.success) {
session = data.session;
uname = data.uname;
session = data.session || "";
uname = data.uname || "";
socket.emit("login", {
name: uname,
session: session
@ -900,9 +906,6 @@ function showLoginFrame() {
// their shit together
window.attachEvent("onmessage", respond);
}
setTimeout(function() {
frame[0].contentWindow.postMessage("cytube-syn", document.location);
}, 1000);
var footer = $("<div/>").addClass("modal-footer").appendTo(modal);
modal.on("hidden", function() {
modal.remove();

View File

@ -279,7 +279,6 @@ Media.prototype.initRTMP = function() {
}
Media.prototype.update = function(data) {
console.log(parseInt(data.currentTime / 60), parseInt(data.currentTime % 60));
if(data.id != this.id) {
if(data.currentTime < 0) {
data.currentTime = 0;

View File

@ -38,6 +38,7 @@
var respond = function(e) {
if(e.data == "cytube-syn") {
source = e.source;
source.postMessage("cytube-ack", document.location);
}
}
window.addEventListener("message", respond, false);