-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathkthoom-google.js
100 lines (93 loc) · 3.35 KB
/
kthoom-google.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/**
* Code for handling file access through Google Drive.
*/
if (window.kthoom == undefined) {
window.kthoom = {};
}
kthoom.google = {
apiKey: 'AIzaSyApRwQ3x622fi29dZsn4DD98FqYax9dBHY',
clientId: '652854531961-pqkhcpcgqda9ag1b9p5gub0vv8f554q0.apps.googleusercontent.com',
authed: false,
oathToken: undefined,
boot: function() {
gapi.client.setApiKey(kthoom.google.apiKey);
window.setTimeout(function() {
kthoom.google.authorize(true /* immediate */, function() {});
}, 1);
},
authorize: function(immediate, callbackFn) {
gapi.auth.authorize({
'client_id': kthoom.google.clientId,
'immediate': immediate,
'response_type': 'token',
'scope': [
'https://www.googleapis.com/auth/userinfo.email',
'https://www.googleapis.com/auth/userinfo.profile',
'https://www.googleapis.com/auth/drive'
]
}, function(result) {
// If we authenticated, then load the Drive API and after that,
// call the callback function.
if (result && !result.error) {
kthoom.google.oathToken = result.access_token;
kthoom.google.authed = true;
gapi.client.load('drive', 'v2', function() {
gapi.load('picker', callbackFn);
});
} else {
// Else, if we are not Google authenticated, and this was immediate, then
// just do the callback. Otherwise, we've failed horribly so die.
if (immediate) {
callbackFn();
} else {
alert('There was a problem authenticating with Google. ' +
'Please try again later.');
}
}
});
},
doDrive: function() {
if (!kthoom.google.authed) {
kthoom.google.authorize(false /* immediate */, kthoom.google.doDrive);
} else {
var docsView = new google.picker.DocsView();
docsView.setMode(google.picker.DocsViewMode.LIST);
docsView.setQuery('*.cbr|*.cbz|*.cbt');
var picker = new google.picker.PickerBuilder().
addView(docsView).
// Enable this feature when we can efficiently get downloadUrls
// for each file selected (right now we'd have to do drive.get
// calls for each file which is annoying the way we have set up
// library.allBooks).
//enableFeature(google.picker.Feature.MULTISELECT_ENABLED).
enableFeature(google.picker.Feature.NAV_HIDDEN).
setOAuthToken(kthoom.google.oathToken).
setDeveloperKey(kthoom.google.apiKey).
setAppId(kthoom.google.clientId).
setCallback(kthoom.google.pickerCallback).
build();
picker.setVisible(true);
}
},
pickerCallback : function(data) {
if (data.action == google.picker.Action.PICKED) {
var gRequest = gapi.client.drive.files.get({
'fileId': data.docs[0].id
});
gRequest.execute(function(response) {
var xhr = new XMLHttpRequest();
xhr.open('GET', response.downloadUrl, true);
xhr.setRequestHeader('Authorization', 'OAuth ' + kthoom.google.oathToken);
xhr.responseType = 'arraybuffer';
xhr.onload = function (event) {
var arrayBuffer = event.target.response;
loadFromArrayBuffer(arrayBuffer);
};
xhr.onprogress = function (evt) {
kthoom.setProgressMeter(evt.loaded / evt.total, 'Loading');
}
xhr.send(null);
});
}
}
};