Stackedit/public/res/helpers/googleHelper.js

782 lines
28 KiB
JavaScript
Raw Normal View History

2013-05-27 19:45:33 +00:00
define([
2013-10-06 14:34:40 +00:00
"underscore",
2013-05-27 19:45:33 +00:00
"jquery",
"core",
"utils",
2013-10-06 14:34:40 +00:00
"settings",
2013-07-30 08:46:36 +00:00
"eventMgr",
2013-10-06 14:34:40 +00:00
"classes/AsyncTask",
"config"
], function(_, $, core, utils, settings, eventMgr, AsyncTask) {
2013-03-27 20:19:12 +00:00
2013-05-29 19:55:23 +00:00
var connected = false;
2013-10-06 14:34:40 +00:00
var permissionList = {};
2013-03-27 20:19:12 +00:00
2013-05-29 19:55:23 +00:00
var googleHelper = {};
2013-04-01 01:06:52 +00:00
2013-08-04 00:53:46 +00:00
// Listen to offline status changes
var isOffline = false;
eventMgr.addListener("onOfflineChanged", function(isOfflineParam) {
isOffline = isOfflineParam;
});
2013-05-29 19:55:23 +00:00
// Try to connect Gdrive by downloading client.js
function connect(task) {
task.onRun(function() {
2013-08-04 00:53:46 +00:00
if(isOffline === true) {
2013-05-29 19:55:23 +00:00
connected = false;
task.error(new Error("Operation not available in offline mode.|stopPublish"));
return;
}
if(connected === true) {
task.chain();
return;
}
delayedFunction = function() {
2013-07-16 23:54:56 +00:00
gapi.load("client,drive-realtime", function() {
connected = true;
task.chain();
});
2013-05-29 19:55:23 +00:00
};
$.ajax({
2013-07-16 23:54:56 +00:00
url: "https://apis.google.com/js/api.js?onload=runDelayedFunction",
2013-05-29 19:55:23 +00:00
dataType: "script",
timeout: AJAX_TIMEOUT
}).fail(function(jqXHR) {
var error = {
code: jqXHR.status,
message: jqXHR.statusText
};
handleError(error, task);
});
});
}
2013-04-01 01:06:52 +00:00
2013-05-29 19:55:23 +00:00
// Try to authenticate with Oauth
var scopeMap = {
gdrive: [
'https://www.googleapis.com/auth/drive.install',
settings.gdriveFullAccess === true ? 'https://www.googleapis.com/auth/drive' : 'https://www.googleapis.com/auth/drive.file'
],
blogger: [
'https://www.googleapis.com/auth/blogger'
],
picasa: [
'https://picasaweb.google.com/data/'
]
};
2013-10-06 14:34:40 +00:00
function authenticate(task, permission) {
2013-05-29 19:55:23 +00:00
task.onRun(function() {
2013-10-06 14:34:40 +00:00
if(_.has(permissionList, permission)) {
2013-05-29 19:55:23 +00:00
task.chain();
return;
}
var immediate = true;
2013-10-06 14:34:40 +00:00
function oauthRedirect() {
core.redirectConfirm('You are being redirected to <strong>Google</strong> authorization page.', function() {
2013-10-06 14:34:40 +00:00
task.chain(localAuthenticate);
2013-10-13 21:13:27 +00:00
}, function() {
task.error(new Error('Operation canceled.'));
2013-10-06 14:34:40 +00:00
});
}
2013-05-29 19:55:23 +00:00
function localAuthenticate() {
if(immediate === false) {
task.timeout = ASYNC_TASK_LONG_TIMEOUT;
}
var scopeList = _.chain(scopeMap).pick(_.keys(permissionList).concat([permission])).flatten().value();
2013-05-29 19:55:23 +00:00
gapi.auth.authorize({
'client_id': GOOGLE_CLIENT_ID,
'scope': scopeList,
2013-05-29 19:55:23 +00:00
'immediate': immediate
}, function(authResult) {
gapi.client.load('drive', 'v2', function() {
if(!authResult || authResult.error) {
// If immediate did not work retry without immediate
// flag
if(connected === true && immediate === true) {
immediate = false;
2013-10-06 14:34:40 +00:00
task.chain(oauthRedirect);
2013-05-29 19:55:23 +00:00
return;
}
// Error
task.error(new Error("Access to Google account is not authorized."));
return;
}
// Success
2013-10-06 14:34:40 +00:00
permissionList[permission] = true;
2013-05-29 19:55:23 +00:00
task.chain();
});
});
}
task.chain(localAuthenticate);
});
}
2013-10-06 14:34:40 +00:00
googleHelper.forceGdriveAuthenticate = function() {
permissionList = _.omit(permissionList, 'gdrive') ;
2013-07-21 22:18:35 +00:00
var task = new AsyncTask();
connect(task);
2013-10-06 14:34:40 +00:00
authenticate(task, 'gdrive');
2013-07-21 22:18:35 +00:00
task.enqueue();
};
2013-03-27 20:19:12 +00:00
googleHelper.upload = function(fileId, parentId, title, content, contentType, etag, callback) {
2013-05-29 19:55:23 +00:00
var result = undefined;
2013-06-16 10:47:35 +00:00
var task = new AsyncTask();
2013-05-29 19:55:23 +00:00
connect(task);
2013-10-06 14:34:40 +00:00
authenticate(task, 'gdrive');
2013-05-29 19:55:23 +00:00
task.onRun(function() {
var boundary = '-------314159265358979323846';
var delimiter = "\r\n--" + boundary + "\r\n";
var close_delim = "\r\n--" + boundary + "--";
contentType = contentType || 'text/x-markdown';
2013-05-29 19:55:23 +00:00
var metadata = {
title: title,
mimeType: contentType
};
2013-08-14 23:44:51 +00:00
if(parentId) {
2013-05-29 19:55:23 +00:00
// Specify the directory
metadata.parents = [
{
kind: 'drive#fileLink',
id: parentId
}
];
2013-05-29 19:55:23 +00:00
}
var path = '/upload/drive/v2/files';
var method = 'POST';
2013-08-14 23:44:51 +00:00
if(fileId) {
2013-05-29 19:55:23 +00:00
// If it's an update
path += "/" + fileId;
method = 'PUT';
}
var headers = {
'Content-Type': 'multipart/mixed; boundary="' + boundary + '"',
};
2013-06-02 00:38:23 +00:00
// Sometimes we have error 412 from Google even with the correct
// etag
// if(etag !== undefined) {
// headers["If-Match"] = etag;
// }
2013-05-29 19:55:23 +00:00
var base64Data = utils.encodeBase64(content);
2013-07-16 23:54:56 +00:00
var multipartRequestBody = [
delimiter,
'Content-Type: application/json\r\n\r\n',
JSON.stringify(metadata),
delimiter,
'Content-Type: ',
contentType,
'\r\n',
'Content-Transfer-Encoding: base64\r\n',
'\r\n',
base64Data,
close_delim
].join("");
2013-05-29 19:55:23 +00:00
var request = gapi.client.request({
'path': path,
'method': method,
'params': {
'uploadType': 'multipart',
},
'headers': headers,
'body': multipartRequestBody,
});
request.execute(function(response) {
if(response && response.id) {
// Upload success
result = response;
2013-05-30 22:16:12 +00:00
result.content = content;
2013-05-29 19:55:23 +00:00
task.chain();
return;
}
var error = response.error;
// Handle error
if(error !== undefined && fileId !== undefined) {
if(error.code === 404) {
error = 'File ID "' + fileId + '" not found on Google Drive.|removePublish';
}
else if(error.code === 412) {
// We may have missed a file update
localStorage.removeItem("gdrive.lastChangeId");
error = 'Conflict on file ID "' + fileId + '". Please restart the synchronization.';
}
}
2013-07-16 23:54:56 +00:00
handleError(error, task);
});
});
task.onSuccess(function() {
callback(undefined, result);
});
task.onError(function(error) {
callback(error);
});
task.enqueue();
};
googleHelper.rename = function(fileId, title, callback) {
var result = undefined;
var task = new AsyncTask();
connect(task);
2013-10-06 14:34:40 +00:00
authenticate(task, 'gdrive');
task.onRun(function() {
var body = {'title': title};
var request = gapi.client.drive.files.patch({
'fileId': fileId,
'resource': body
});
request.execute(function(response) {
if(response && response.id) {
// Rename success
result = response;
task.chain();
return;
}
var error = response.error;
// Handle error
if(error !== undefined && fileId !== undefined) {
if(error.code === 404) {
error = 'File ID "' + fileId + '" not found on Google Drive.|removePublish';
}
}
handleError(error, task);
});
});
task.onSuccess(function() {
callback(undefined, result);
});
2013-07-16 23:54:56 +00:00
task.onError(function(error) {
callback(error);
});
task.enqueue();
};
2013-07-20 01:08:17 +00:00
2013-07-18 23:30:28 +00:00
googleHelper.createRealtimeFile = function(parentId, title, callback) {
var result = undefined;
var task = new AsyncTask();
connect(task);
2013-10-06 14:34:40 +00:00
authenticate(task, 'gdrive');
2013-07-18 23:30:28 +00:00
task.onRun(function() {
var metadata = {
title: title,
2013-07-20 01:08:17 +00:00
mimeType: 'application/vnd.google-apps.drive-sdk',
2013-07-18 23:30:28 +00:00
};
if(parentId !== undefined) {
// Specify the directory
metadata.parents = [
{
kind: 'drive#fileLink',
id: parentId
}
];
}
var request = gapi.client.drive.files.insert({
2013-07-20 01:08:17 +00:00
'resource': metadata
2013-07-18 23:30:28 +00:00
});
request.execute(function(response) {
if(response && response.id) {
// Upload success
result = response;
task.chain();
return;
}
handleError(response.error, task);
});
});
task.onSuccess(function() {
callback(undefined, result);
});
task.onError(function(error) {
callback(error);
});
task.enqueue();
};
2013-07-16 23:54:56 +00:00
googleHelper.uploadImg = function(name, content, albumId, callback) {
var result = undefined;
var task = new AsyncTask();
connect(task);
2013-10-06 14:34:40 +00:00
authenticate(task, 'picasa');
2013-07-16 23:54:56 +00:00
task.onRun(function() {
var headers = {
"Slug": name
};
2013-10-13 23:50:31 +00:00
if(name.match(/.jpe?g$/i)) {
2013-07-17 00:10:19 +00:00
headers["Content-Type"] = "image/jpeg";
}
2013-10-13 23:50:31 +00:00
else if(name.match(/.png$/i)) {
2013-07-17 00:10:19 +00:00
headers["Content-Type"] = "image/png";
}
2013-10-13 23:50:31 +00:00
else if(name.match(/.gif$/i)) {
2013-07-17 00:10:19 +00:00
headers["Content-Type"] = "image/gif";
}
2013-07-16 23:54:56 +00:00
var token = gapi.auth.getToken();
if(token) {
headers.Authorization = "Bearer " + token.access_token;
}
$.ajax({
url: PICASA_PROXY_URL + "upload/" + albumId,
headers: headers,
data: content,
processData: false,
dataType: "xml",
timeout: AJAX_TIMEOUT,
type: "POST"
}).done(function(data, textStatus, jqXHR) {
result = data;
task.chain();
}).fail(function(jqXHR) {
var error = {
code: jqXHR.status,
message: jqXHR.statusText
};
if(error.code == 200) {
error.message = jqXHR.responseText;
}
2013-05-29 19:55:23 +00:00
handleError(error, task);
});
});
task.onSuccess(function() {
callback(undefined, result);
});
task.onError(function(error) {
callback(error);
});
2013-06-16 10:47:35 +00:00
task.enqueue();
2013-05-29 19:55:23 +00:00
};
2013-04-01 01:06:52 +00:00
2013-05-29 19:55:23 +00:00
googleHelper.checkChanges = function(lastChangeId, callback) {
var changes = [];
var newChangeId = lastChangeId || 0;
2013-06-16 10:47:35 +00:00
var task = new AsyncTask();
2013-05-29 19:55:23 +00:00
connect(task);
2013-10-06 14:34:40 +00:00
authenticate(task, 'gdrive');
2013-05-29 19:55:23 +00:00
task.onRun(function() {
var nextPageToken = undefined;
function retrievePageOfChanges() {
var request = undefined;
if(nextPageToken === undefined) {
request = gapi.client.drive.changes.list({
'startChangeId': newChangeId + 1
});
}
else {
request = gapi.client.drive.changes.list({
'pageToken': nextPageToken
});
}
2013-04-01 01:06:52 +00:00
2013-05-29 19:55:23 +00:00
request.execute(function(response) {
if(!response || !response.largestChangeId) {
// Handle error
handleError(response.error, task);
return;
}
// Retrieve success
newChangeId = response.largestChangeId;
nextPageToken = response.nextPageToken;
if(response.items !== undefined) {
changes = changes.concat(response.items);
}
if(nextPageToken !== undefined) {
task.chain(retrievePageOfChanges);
}
else {
task.chain();
}
});
}
task.chain(retrievePageOfChanges);
});
task.onSuccess(function() {
callback(undefined, changes, newChangeId);
});
task.onError(function(error) {
callback(error);
});
2013-06-16 10:47:35 +00:00
task.enqueue();
2013-05-29 19:55:23 +00:00
};
2013-04-01 01:06:52 +00:00
2013-05-29 19:55:23 +00:00
googleHelper.downloadMetadata = function(ids, callback, skipAuth) {
var result = [];
2013-06-16 10:47:35 +00:00
var task = new AsyncTask();
2013-05-29 19:55:23 +00:00
connect(task);
if(!skipAuth) {
2013-10-06 14:34:40 +00:00
authenticate(task, 'gdrive');
2013-05-29 19:55:23 +00:00
}
task.onRun(function() {
function recursiveDownloadMetadata() {
if(ids.length === 0) {
task.chain();
return;
}
var id = ids[0];
var headers = {};
var token = gapi.auth.getToken();
if(token) {
headers.Authorization = "Bearer " + token.access_token;
}
$.ajax({
url: "https://www.googleapis.com/drive/v2/files/" + id,
headers: headers,
data: {
key: GOOGLE_API_KEY
},
dataType: "json",
timeout: AJAX_TIMEOUT
}).done(function(data, textStatus, jqXHR) {
result.push(data);
ids.shift();
task.chain(recursiveDownloadMetadata);
}).fail(function(jqXHR) {
var error = {
code: jqXHR.status,
message: jqXHR.statusText
};
// Handle error
if(error.code === 404) {
error = 'File ID "' + id + '" not found on Google Drive.';
}
handleError(error, task);
});
}
task.chain(recursiveDownloadMetadata);
});
task.onSuccess(function() {
callback(undefined, result);
});
task.onError(function(error) {
callback(error);
});
2013-06-16 10:47:35 +00:00
task.enqueue();
2013-05-29 19:55:23 +00:00
};
2013-05-29 19:55:23 +00:00
googleHelper.downloadContent = function(objects, callback, skipAuth) {
var result = [];
2013-06-16 10:47:35 +00:00
var task = new AsyncTask();
2013-05-29 19:55:23 +00:00
// Add some time for user to choose his files
task.timeout = ASYNC_TASK_LONG_TIMEOUT;
connect(task);
if(!skipAuth) {
2013-10-06 14:34:40 +00:00
authenticate(task, 'gdrive');
2013-05-29 19:55:23 +00:00
}
task.onRun(function() {
function recursiveDownloadContent() {
if(objects.length === 0) {
task.chain();
return;
}
var object = objects[0];
result.push(object);
var file = undefined;
// object may be a file
if(object.kind == "drive#file") {
file = object;
}
// object may be a change
else if(object.kind == "drive#change") {
file = object.file;
}
if(!file) {
objects.shift();
task.chain(recursiveDownloadContent);
return;
}
2013-07-20 01:08:17 +00:00
// if file is a real time document
if(file.mimeType.indexOf("application/vnd.google-apps.drive-sdk") === 0) {
file.content = "";
file.isRealtime = true;
objects.shift();
task.chain(recursiveDownloadContent);
return;
}
2013-05-29 19:55:23 +00:00
var headers = {};
var token = gapi.auth.getToken();
if(token) {
headers.Authorization = "Bearer " + token.access_token;
}
$.ajax({
url: file.downloadUrl,
headers: headers,
data: {
key: GOOGLE_API_KEY
},
dataType: "text",
timeout: AJAX_TIMEOUT
}).done(function(data, textStatus, jqXHR) {
file.content = data;
objects.shift();
task.chain(recursiveDownloadContent);
}).fail(function(jqXHR) {
var error = {
code: jqXHR.status,
message: jqXHR.statusText
};
// Handle error
handleError(error, task);
});
}
task.chain(recursiveDownloadContent);
});
task.onSuccess(function() {
callback(undefined, result);
});
task.onError(function(error) {
callback(error);
});
2013-06-16 10:47:35 +00:00
task.enqueue();
2013-05-29 19:55:23 +00:00
};
2013-07-20 01:08:17 +00:00
2013-07-21 22:18:35 +00:00
googleHelper.loadRealtime = function(fileId, content, callback, errorCallback) {
var doc = undefined;
var task = new AsyncTask();
connect(task);
2013-10-06 14:34:40 +00:00
authenticate(task, 'gdrive');
task.onRun(function() {
gapi.drive.realtime.load(fileId, function(result) {
// onFileLoaded
doc = result;
task.chain();
}, function(model) {
// initializeModel
var string = model.createString(content);
model.getRoot().set('content', string);
}, function(err) {
2013-07-21 22:18:35 +00:00
errorCallback(err);
task.error(new Error(err.message));
2013-07-20 01:08:17 +00:00
});
2013-07-21 14:38:53 +00:00
});
task.onSuccess(function() {
callback(undefined, doc);
});
task.onError(function(error) {
callback(error);
});
task.enqueue();
};
2013-04-02 18:42:47 +00:00
2013-05-29 19:55:23 +00:00
function handleError(error, task) {
var errorMsg = undefined;
if(error) {
logger.error(error);
// Try to analyze the error
if(typeof error === "string") {
errorMsg = error;
}
else {
errorMsg = "Google error (" + error.code + ": " + error.message + ").";
if(error.code >= 500 && error.code < 600) {
// Retry as described in Google's best practices
task.retry(new Error(errorMsg));
return;
}
2013-07-21 22:18:35 +00:00
else if(error.code === 401 || error.code === 403 || error.code == "token_refresh_required") {
2013-10-06 14:34:40 +00:00
permissionList = {};
2013-05-29 19:55:23 +00:00
errorMsg = "Access to Google account is not authorized.";
task.retry(new Error(errorMsg), 1);
return;
}
2013-06-03 22:19:52 +00:00
else if(error.code === 0 || error.code === -1) {
2013-05-29 19:55:23 +00:00
connected = false;
2013-10-06 14:34:40 +00:00
permissionList = {};
2013-05-29 19:55:23 +00:00
core.setOffline();
errorMsg = "|stopPublish";
}
}
}
task.error(new Error(errorMsg));
}
2013-03-27 20:19:12 +00:00
2013-05-29 19:55:23 +00:00
var pickerLoaded = false;
function loadPicker(task) {
task.onRun(function() {
if(pickerLoaded === true) {
task.chain();
return;
}
$.ajax({
url: "//www.google.com/jsapi",
data: {
key: GOOGLE_API_KEY
},
dataType: "script",
timeout: AJAX_TIMEOUT
}).done(function() {
google.load('picker', '1', {
2013-06-16 10:47:35 +00:00
callback: function() {
task.chain();
}
2013-05-29 19:55:23 +00:00
});
pickerLoaded = true;
}).fail(function(jqXHR) {
var error = {
code: jqXHR.status,
message: jqXHR.statusText
};
handleError(error, task);
});
});
}
2013-04-11 22:38:41 +00:00
2013-08-23 23:50:14 +00:00
googleHelper.picker = function(callback, pickerType) {
2013-06-02 00:38:23 +00:00
var docs = [];
2013-05-29 19:55:23 +00:00
var picker = undefined;
function hidePicker() {
if(picker !== undefined) {
picker.setVisible(false);
$(".modal-backdrop, .picker").remove();
}
}
2013-06-16 10:47:35 +00:00
var task = new AsyncTask();
2013-08-23 23:50:14 +00:00
// Add some time for user to choose his files
task.timeout = ASYNC_TASK_LONG_TIMEOUT;
2013-05-29 19:55:23 +00:00
connect(task);
loadPicker(task);
task.onRun(function() {
var pickerBuilder = new google.picker.PickerBuilder();
pickerBuilder.setAppId(GOOGLE_DRIVE_APP_ID);
2013-08-23 23:50:14 +00:00
if(pickerType == 'doc') {
var view = new google.picker.DocsView(google.picker.ViewId.DOCS);
view.setIncludeFolders(true);
2013-07-20 01:08:17 +00:00
view.setMimeTypes([
"text/x-markdown",
"text/plain",
"application/octet-stream",
"application/vnd.google-apps.drive-sdk." + GOOGLE_DRIVE_APP_ID
].join(","));
2013-06-02 00:38:23 +00:00
pickerBuilder.enableFeature(google.picker.Feature.NAV_HIDDEN);
pickerBuilder.enableFeature(google.picker.Feature.MULTISELECT_ENABLED);
pickerBuilder.addView(view);
}
2013-08-23 23:50:14 +00:00
else if(pickerType == 'folder') {
var view = new google.picker.DocsView(google.picker.ViewId.FOLDERS);
view.setIncludeFolders(true);
view.setSelectFolderEnabled(true);
view.setMimeTypes('application/vnd.google-apps.folder');
pickerBuilder.enableFeature(google.picker.Feature.NAV_HIDDEN);
pickerBuilder.addView(view);
}
else if(pickerType == 'img') {
2013-06-02 00:38:23 +00:00
pickerBuilder.addView(google.picker.ViewId.PHOTOS);
pickerBuilder.addView(google.picker.ViewId.PHOTO_UPLOAD);
2013-05-29 19:55:23 +00:00
}
pickerBuilder.setCallback(function(data) {
if(data.action == google.picker.Action.PICKED || data.action == google.picker.Action.CANCEL) {
if(data.action == google.picker.Action.PICKED) {
2013-06-02 00:38:23 +00:00
docs = data.docs;
2013-05-29 19:55:23 +00:00
}
hidePicker();
task.chain();
}
});
picker = pickerBuilder.build();
2013-08-12 22:08:22 +00:00
$(utils.createBackdrop()).click(function() {
2013-05-29 19:55:23 +00:00
hidePicker();
task.chain();
2013-08-12 22:08:22 +00:00
});
2013-05-29 19:55:23 +00:00
picker.setVisible(true);
});
task.onSuccess(function() {
2013-06-02 00:38:23 +00:00
callback(undefined, docs);
2013-05-29 19:55:23 +00:00
});
task.onError(function(error) {
hidePicker();
callback(error);
});
2013-06-16 10:47:35 +00:00
task.enqueue();
2013-05-29 19:55:23 +00:00
};
googleHelper.uploadBlogger = function(blogUrl, blogId, postId, labelList, title, content, callback) {
2013-06-16 10:47:35 +00:00
var task = new AsyncTask();
2013-05-29 19:55:23 +00:00
connect(task);
2013-10-06 14:34:40 +00:00
authenticate(task, 'blogger');
2013-05-29 19:55:23 +00:00
task.onRun(function() {
var headers = {};
var token = gapi.auth.getToken();
if(token) {
headers.Authorization = "Bearer " + token.access_token;
}
function publish() {
var url = "https://www.googleapis.com/blogger/v3/blogs/" + blogId + "/posts/";
var data = {
kind: "blogger#post",
blog: {
id: blogId
},
labels: labelList,
title: title,
content: content
};
var type = "POST";
// If it's an update
if(postId !== undefined) {
url += postId;
data.id = postId;
type = "PUT";
}
$.ajax({
url: url,
data: JSON.stringify(data),
headers: headers,
type: type,
contentType: "application/json",
dataType: "json",
timeout: AJAX_TIMEOUT
}).done(function(post, textStatus, jqXHR) {
postId = post.id;
task.chain();
}).fail(function(jqXHR) {
var error = {
code: jqXHR.status,
message: jqXHR.statusText
};
// Handle error
if(error.code === 404 && postId !== undefined) {
error = 'Post ' + postId + ' not found on Blogger.|removePublish';
}
handleError(error, task);
});
}
function getBlogId() {
if(blogId !== undefined) {
task.chain(publish);
return;
}
$.ajax({
url: "https://www.googleapis.com/blogger/v3/blogs/byurl",
data: {
url: blogUrl
},
headers: headers,
dataType: "json",
timeout: AJAX_TIMEOUT
}).done(function(blog, textStatus, jqXHR) {
blogId = blog.id;
task.chain(publish);
}).fail(function(jqXHR) {
var error = {
code: jqXHR.status,
message: jqXHR.statusText
};
// Handle error
if(error.code === 404) {
error = 'Blog "' + blogUrl + '" not found on Blogger.|removePublish';
}
handleError(error, task);
});
}
task.chain(getBlogId);
});
task.onSuccess(function() {
callback(undefined, blogId, postId);
});
task.onError(function(error) {
callback(error);
});
2013-06-16 10:47:35 +00:00
task.enqueue();
2013-05-29 19:55:23 +00:00
};
return googleHelper;
2013-04-02 18:42:47 +00:00
});