-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathgoogle-picker.js
executable file
·178 lines (163 loc) · 4.49 KB
/
google-picker.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*
* angular-google-picker
*
* Interact with the Google API Picker
* More information about the Google API can be found at https://developers.google.com/picker/
*
* (c) 2014 Loic Kartono
* License: MIT
*/
(function () {
angular.module('lk-google-picker', [])
.provider('lkGoogleSettings', function () {
this.apiKey = null;
this.clientId = null;
this.scopes = ['https://www.googleapis.com/auth/drive'];
this.features = ['MULTISELECT_ENABLED'];
this.views = [
'DocsView().setIncludeFolders(true)',
'DocsUploadView().setIncludeFolders(true)'
];
this.locale = 'en'; // Default to English
/**
* Provider factory $get method
* Return Google Picker API settings
*/
this.$get = ['$window', function ($window) {
return {
apiKey : this.apiKey,
clientId : this.clientId,
scopes : this.scopes,
features : this.features,
views : this.views,
locale : this.locale,
origin : this.origin || $window.location.protocol + '//' + $window.location.host
}
}];
/**
* Set the API config params using a hash
*/
this.configure = function (config) {
for (var key in config) {
this[key] = config[key];
}
};
})
.directive('lkGooglePicker', ['lkGoogleSettings', function (lkGoogleSettings) {
return {
restrict: 'A',
scope: {
onLoaded: '&',
onAuthenticated: '&',
onCancel: '&',
onPicked: '&',
accesToken: '=',
openDialog: '=',
openDialogFrom: '@',
},
link: function (scope, element, attrs) {
var accessToken = null;
/**
* Load required modules
*/
function instantiate () {
if(scope.accesToken){
accessToken = scope.accesToken;
gapi.auth.setToken({
access_token: accessToken,
});
}
gapi.load('auth', { 'callback': onApiAuthLoad });
gapi.load('picker');
}
/**
* OAuth autorization
* If user is already logged in, then open the Picker modal
*/
function onApiAuthLoad () {
var authToken = gapi.auth.getToken();
if (authToken) {
handleAuthResult(authToken);
}else{
gapi.auth.authorize({
'client_id' : lkGoogleSettings.clientId,
'scope' : lkGoogleSettings.scopes,
'immediate' : false
}, handleAuthResult);
}
}
/**
* Google API OAuth response
*/
function handleAuthResult (result) {
if (result && !result.error) {
if(!accessToken){
accessToken = result.access_token;
if(scope.onAuthenticated)
scope.onAuthenticated({result : result});
}
openDialog();
}
}
/**
* Everything is good, open the files picker
*/
function openDialog () {
try{
var picker = new google.picker.PickerBuilder()
.setLocale(lkGoogleSettings.locale)
.setOAuthToken(accessToken)
.setCallback(pickerResponse)
.setOrigin(lkGoogleSettings.origin);
}catch(err){
setTimeout(openDialog, 100);
return;
}
if (lkGoogleSettings.features.length > 0) {
angular.forEach(lkGoogleSettings.features, function (feature, key) {
picker.enableFeature(google.picker.Feature[feature]);
});
}
if (lkGoogleSettings.views.length > 0) {
angular.forEach(lkGoogleSettings.views, function (view, key) {
view = eval('new google.picker.' + view);
picker.addView(view);
});
}
picker.build().setVisible(true);
}
/**
* Callback invoked when interacting with the Picker
* data: Object returned by the API
*/
function pickerResponse (data) {
gapi.client.load('drive', 'v2', function () {
if (data.action == google.picker.Action.LOADED && scope.onLoaded) {
(scope.onLoaded || angular.noop)();
}
if (data.action == google.picker.Action.CANCEL && scope.onCancel) {
(scope.onCancel || angular.noop)();
}
if (data.action == google.picker.Action.PICKED && scope.onPicked) {
(scope.onPicked || angular.noop)({docs: data.docs});
}
scope.$apply();
});
}
if(!scope.openDialogFrom || scope.openDialogFrom == 'both' || scope.openDialogFrom == 'click'){
element.bind('click', function (e) {
/* dynamically load dependencies only on click */
instantiate();
});
}
if(scope.openDialogFrom == 'both' || scope.openDialogFrom == 'variable'){
scope.$watch('openDialog', function(value){
if(value == true){
instantiate();
}
});
}
}
}
}]);
})();