forked from sitepoint-editors/gmail-api-javascript-example
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.js
227 lines (179 loc) · 5.55 KB
/
main.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
// In order to have a clean global namespace
// we wrap the whole library in a function
var GoogleAPIMailClient = window.GoogleAPIMailClient || (function() {
var clientId,
apiKey,
scopes = 'https://www.googleapis.com/auth/gmail.readonly',
Messages = {};
function config(config) {
clientId = config.clientId;
apiKey = config.apiKey;
}
function clientLoad() {
gapi.client.setApiKey(apiKey);
window.setTimeout(checkAuth, 1);
}
function checkAuth() {
gapi.auth.authorize({
client_id: clientId,
scope: scopes,
immediate: true
}, handleAuthResult);
}
function handleAuthClick() {
gapi.auth.authorize({
client_id: clientId,
scope: scopes,
immediate: false
}, handleAuthResult);
return false;
}
function handleAuthResult(authResult) {
var $authorizeBtn = $('#authorize-button');
if(authResult && !authResult.error) {
loadGmailApi();
$authorizeBtn.off();
$authorizeBtn.remove();
$('.table-inbox').removeClass("hidden");
} else {
$authorizeBtn.removeClass("hidden");
}
}
function loadGmailApi() {
gapi.client.load('gmail', 'v1', displayInbox);
}
function displayInbox() {
var request = gapi.client.gmail.users.messages.list({
userId: 'me',
labelIds: 'INBOX',
maxResults: 20
});
request.execute(function(response) {
var promises = [];
$.each(response.messages, function() {
var messageRequest = gapi.client.gmail.users.messages.get({
userId: 'me',
id: this.id
});
// Since Google api is asyncronous, we need to wrap all server responses in a Promise.all()
var promise = $.Deferred();
promises.push(promise);
messageRequest.execute(function(message) {
// Save the message in a collection
Messages[message.id] = message;
promise.resolve(message);
});
});
$.when.all(promises).then(function(messages){
// Sort messages by date in descending order
messages.sort(function(a, b) {
var d1 = new Date(getHeader(a.payload.headers, 'Date')).valueOf();
var d2 = new Date(getHeader(b.payload.headers, 'Date')).valueOf();
return d1 < d2 ? 1 : (d1 > d2 ? -1 : 0);
});
// Finally, process the messages
messages.forEach(function(message){
processMessage(message);
})
});
});
}
function processMessage(message) {
var row = $('#row-template').html();
var sender = getHeader(message.payload.headers, 'From');
var subject = getHeader(message.payload.headers, 'Subject');
var date = moment(new Date(getHeader(message.payload.headers, 'Date'))).format('DD MMM, YY HH:mm');
// Remove the email address, leave only sender's name
var from = sender.replace(/<\S+@\S+\.\S{2,8}>/g, '').replace(/"+/g, '');
from = from.trim() || sender;
var renderedRow = Mustache.render(row, {
from : from,
subject : subject,
messageId : message.id,
date : date
});
$('.table-inbox tbody').append(renderedRow);
}
function getHeader(headers, index) {
var header = '';
$.each(headers, function(){
if(this.name === index)
{
header = this.value;
}
});
return header;
}
function getBody(message) {
var encodedBody = '';
encodedBody = message.parts ? getHTMLPart(message.parts) : message.body.data;
encodedBody = encodedBody.replace(/-/g, '+').replace(/_/g, '/').replace(/\s/g, '');
return decodeURIComponent(escape(window.atob(encodedBody)));
}
function getHTMLPart(arr) {
for(var x = 0; x < arr.length; x++)
{
if(typeof arr[x].parts === 'undefined')
{
if(arr[x].mimeType === 'text/html')
{
return arr[x].body.data;
}
}
else
{
return getHTMLPart(arr[x].parts);
}
}
return '';
}
// Initialize UI events
function init() {
$('#authorize-button').on('click', function(){
handleAuthClick();
});
$('.table-inbox tbody').on('click', 'a.message-link', function(e) {
var id, title, iframe, messageBody;
id = $(this).attr('id').split('-')[2];
title = getHeader(Messages[id].payload.headers, 'Subject');
$('#myModalTitle').text(title);
iframe = $('#message-iframe')[0].contentWindow.document;
// The message body goes to the iframe's content
messageBody = getBody(Messages[id].payload);
$('body', iframe).html(messageBody);
// Show the modal window
$('#message-modal').modal('show');
});
}
init();
return {
config : config,
clientLoad : clientLoad
};
})();
function handleClientLoad() {
// The configuration - ClientId & APIKey - is loaded from config.js,
// which allows to prevent from uploading the secrets to the github repo
// Note: `config.js` is part of `.gitignore`
GoogleAPIMailClient.config(config);
GoogleAPIMailClient.clientLoad();
}
/**
*
* The jQuery library does not feature a `when.all` function
* to handle an array of promises, so we put up a polyfill
*
*/
if (jQuery.when.all === undefined) {
jQuery.when.all = function(deferreds) {
var deferred = new jQuery.Deferred();
$.when.apply(jQuery, deferreds).then(
function() {
deferred.resolve(Array.prototype.slice.call(arguments));
},
function() {
deferred.fail(Array.prototype.slice.call(arguments));
});
return deferred;
}
}