mirror of https://github.com/calzoneman/sync.git
commit
6ab609db71
|
@ -688,7 +688,7 @@ var Getters = {
|
||||||
/* WARNING: hacks inbound */
|
/* WARNING: hacks inbound */
|
||||||
var options = {
|
var options = {
|
||||||
host: "docs.google.com",
|
host: "docs.google.com",
|
||||||
path: "/file/d/" + id + "/view?sle=true",
|
path: "/file/d/" + id + "/get_video_info?sle=true",
|
||||||
port: 443
|
port: 443
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -709,16 +709,13 @@ var Getters = {
|
||||||
return callback("HTTP " + status, null);
|
return callback("HTTP " + status, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Match [[anything]] and ignore whitespace
|
|
||||||
* Fix 2014-08-07: [^] matches \r\n, . doesn't.
|
|
||||||
*/
|
|
||||||
var m = res.match(/\[(\[\s*\[[^\[][^]*?\]\s*\])/);
|
|
||||||
try {
|
try {
|
||||||
var propertyList = JSON.parse(m[1]);
|
|
||||||
var data = {};
|
var data = {};
|
||||||
propertyList.forEach(function (kv) {
|
res.split("&").forEach(function (urlparam) {
|
||||||
data[kv[0]] = kv[1];
|
var pair = urlparam.split("=").map(decodeURIComponent).map(
|
||||||
|
function (s) { return s.replace(/\+/g, ' '); });
|
||||||
|
data[pair[0]] = pair[1];
|
||||||
});
|
});
|
||||||
|
|
||||||
if (data.hasOwnProperty("reason")) {
|
if (data.hasOwnProperty("reason")) {
|
||||||
|
@ -726,8 +723,12 @@ var Getters = {
|
||||||
if (reason.indexOf("Unable to play this video at this time.") === 0) {
|
if (reason.indexOf("Unable to play this video at this time.") === 0) {
|
||||||
reason = "There is currently a bug with Google Drive which prevents playback " +
|
reason = "There is currently a bug with Google Drive which prevents playback " +
|
||||||
"of videos 1 hour long or longer.";
|
"of videos 1 hour long or longer.";
|
||||||
|
} else if (reason.indexOf(
|
||||||
|
"You must be signed in to access this video") >= 0) {
|
||||||
|
reason = "This video is not shared properly";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return callback(reason);
|
return callback(reason);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue