-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathoptions.js
412 lines (367 loc) · 13.7 KB
/
options.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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
var BASE64_KEY = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
var COLOR_PIXEL_PREFIX = "data:image/gif;base64,R0lGODlhAQABAPAA";
var COLOR_PIXEL_SUFFIX = "/yH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==";
var DEFAULT_COLOR_HEX = "#ffffff";
var PURCHASE_SERVER = 'https://calendar.useit.today';
// if (chrome.runtime.id == 'fkbpcfnnknjdoolkoaliocdnefpkobhi') {
// PURCHASE_SERVER = 'http://localhost:8080'; // Test mode
// }
var DEFAULT_TOKEN = '';
var TOKEN_LENGTH = 12;
var DEFAULT_IMAGE_URLS = [
'//storage.googleapis.com/static.useit.today/wallCalendarImg/January.jpg',
'//storage.googleapis.com/static.useit.today/wallCalendarImg/February.jpg',
'//storage.googleapis.com/static.useit.today/wallCalendarImg/March.jpg',
'//storage.googleapis.com/static.useit.today/wallCalendarImg/April.jpg',
'//storage.googleapis.com/static.useit.today/wallCalendarImg/May.jpg',
'//storage.googleapis.com/static.useit.today/wallCalendarImg/June.jpg',
'//storage.googleapis.com/static.useit.today/wallCalendarImg/July.jpg',
'//storage.googleapis.com/static.useit.today/wallCalendarImg/August.jpg',
'//storage.googleapis.com/static.useit.today/wallCalendarImg/September.jpg',
'//storage.googleapis.com/static.useit.today/wallCalendarImg/October.jpg',
'//storage.googleapis.com/static.useit.today/wallCalendarImg/November.jpg',
'//storage.googleapis.com/static.useit.today/wallCalendarImg/December.jpg',
];
// OVERLAY: either lghtOverlay (default) or darkOverlay
DEFAULT_OVERLAY_MODE = 'lghtOverlay';
USER_INFO = null;
function getUserInfo(cb) {
if (USER_INFO != null) {
cb(USER_INFO);
return;
}
chrome.identity.getProfileUserInfo( {accountStatus: 'ANY'}, userInfo => cb(userInfo) );
}
// Initialize overlay picker
function loadOverlayMode(overlayMode) {
isDark = (overlayMode == 'darkOverlay')
document.getElementById('o1').checked = !isDark;
document.getElementById('o2').checked = isDark;
}
// Read overlay mode (gets persisted on image save)
function getOverlayMode() {
if (document.getElementById('o2').checked) {
return 'darkOverlay';
} else {
return 'lghtOverlay';
}
}
// Encode three 8-bit numbers to 4 6-bit base64
// Kudos to https://stackoverflow.com/questions/5845238/javascript-generate-transparent-1x1-pixel-in-dataurl-format
function tripletEncode(e1, e2, e3) {
enc1 = e1 >> 2;
enc2 = ((e1 & 3) << 4) | (e2 >> 4);
enc3 = ((e2 & 15) << 2) | (e3 >> 6);
enc4 = e3 & 63;
return BASE64_KEY.charAt(enc1) + BASE64_KEY.charAt(enc2) + BASE64_KEY.charAt(enc3) + BASE64_KEY.charAt(enc4);
}
// Decode 4 6-bit base64 to three 8-bit numbers (reverse the above)
function tripletDecode(aaaa) {
enc1 = BASE64_KEY.indexOf(aaaa[0])
enc2 = BASE64_KEY.indexOf(aaaa[1])
enc3 = BASE64_KEY.indexOf(aaaa[2])
enc4 = BASE64_KEY.indexOf(aaaa[3])
e3 = ((enc3 & 3) << 6) | enc4
e2 = ((enc2 & 15) << 4) | (enc3 >> 2)
e1 = (enc1 << 2) | (enc2 >> 4)
return [e1, e2, e3]
}
// Reverse colorHexToUrl back into a hex color.
// If it's not from colorHexToUrl, return null.
function urlToMaybeColorHex(url) {
if (!url.startsWith(COLOR_PIXEL_PREFIX) || !url.endsWith(COLOR_PIXEL_SUFFIX)) {
return null;
}
encoded = url.substring(COLOR_PIXEL_PREFIX.length, url.length - COLOR_PIXEL_SUFFIX.length)
_rg = tripletDecode(encoded.substring(0, 4))
b__ = tripletDecode(encoded.substring(4, 8))
r = _rg[1]
g = _rg[2]
b = b__[0]
// Kudos to https://stackoverflow.com/questions/5623838/rgb-to-hex-and-hex-to-rgb
return "#" + ((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1);
}
// Convert a hex color (#aabbcc) to a data URL for a 1x1 pixel of that color
function colorHexToUrl(hexColor) {
var s = hexColor.substring(1, 7);
r = parseInt(s[0] + s[1], 16)
g = parseInt(s[2] + s[3], 16)
b = parseInt(s[4] + s[5], 16)
encoded = tripletEncode(0, r, g) + tripletEncode(b, 255, 255);
return COLOR_PIXEL_PREFIX + encoded + COLOR_PIXEL_SUFFIX;
}
// Convert the purchase token + user email + month into the image address to load.
function monthToPurchaseUrl(fullToken, month, email) {
const parts = fullToken.split('/');
if (parts.length != 2 || parts[1].length != TOKEN_LENGTH) {
return;
}
const theme = parts[0];
const token = parts[1];
const monthName = ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec'][month];
return PURCHASE_SERVER +
'/img/' + theme + '/' + monthName + '.jpg' +
'?t=' + window.encodeURIComponent(token);
}
/** When the image changes, update both the picker and the demo image. */
function updateImageUrl(url) {
getUserInfo( userInfo => {
if (url.indexOf("//") == 0) {
url = "https:" + url;
}
if (url.indexOf(PURCHASE_SERVER) == 0) {
url += '&u=' + userInfo.email;
}
document.getElementById('demo').style.backgroundImage = 'url(' + url + ')';
isDark = (getOverlayMode() == 'darkOverlay')
sideColor = "rgba(255,255,255,0.3)"
if (isDark) {
sideColor = "rgba(0,0,0,0.3)";
}
document.getElementById('sidebar').style.backgroundColor = sideColor;
});
}
/** Change which tab of options are visible. */
function setTab(tab) {
document.getElementById('demo').style.backgroundImage = 'none';
document.getElementById('t1').checked = (tab == 't1');
document.getElementById('t2').checked = (tab == 't2');
document.getElementById('t3').checked = (tab == 't3');
document.getElementById('t4').checked = (tab == 't4');
document.getElementById('t1Fields').style.display = ((tab == 't1') ? "block" : "none");
document.getElementById('t2Fields').style.display = ((tab == 't2') ? "block" : "none");
document.getElementById('t3Fields').style.display = ((tab == 't3') ? "block" : "none");
document.getElementById('t4Fields').style.display = ((tab == 't4') ? "block" : "none");
// Load user details when looking at the purchase tab
getUserInfo( userInfo => {
if (!userInfo.email) {
document.getElementById('no_email_error').style.display = 'inline-block';
} else {
document.getElementById('no_email_error').style.display = 'none';
redirect_url = PURCHASE_SERVER + '/store?user=' + window.encodeURIComponent(userInfo.email);
document.getElementById('purchase_redirect').href = redirect_url;
}
});
}
/** Show single tab, and update the one URL to use. */
function loadSingleOption(singleImageURL) {
setTab('t1');
document.getElementById('url').value = singleImageURL;
updateImageUrl(singleImageURL);
}
/** Show tab for 12 images, and update the URL to use based on this month. */
function loadMonthOptions(imageURL) {
setTab('t2');
document.getElementById('t2').checked = true;
for (var i = 0; i < imageURL.length && i < 12; i++) {
document.getElementById('urlMonth' + i).value = imageURL[i];
}
var currentMonth = new Date().getMonth();
updateImageUrl(imageURL[currentMonth % imageURL.length]);
}
/** Show tab for single colour picker and load colour based on base64 pixel. */
function loadColorOption(imageURL, parsedColorHex) {
setTab('t3');
document.getElementById('color').value = parsedColorHex;
updateImageUrl(imageURL);
}
/** Show tab for user-purchased image sets. */
function loadPurchasedOption(themeToken) {
setTab('t4');
document.getElementById('purchase_token').value = themeToken;
getUserInfo( userInfo => {
var currentMonth = new Date().getMonth();
const imageURL = monthToPurchaseUrl(themeToken, currentMonth, userInfo.email);
updateImageUrl(imageURL);
});
}
/** Initialize URL from chrome sync options. */
function loadOptions() {
console.log("Loading options for user ... ");
chrome.storage.sync.get({
imageURL: DEFAULT_IMAGE_URLS,
overlayMode: DEFAULT_OVERLAY_MODE,
themeToken: DEFAULT_TOKEN,
}, function(items) {
loadOverlayMode(items.overlayMode);
if (!Array.isArray(items.imageURL)) {
parsedColorHex = urlToMaybeColorHex(items.imageURL);
if (parsedColorHex) {
loadColorOption(items.imageURL, parsedColorHex);
} else {
loadSingleOption(items.imageURL);
}
} else {
if (items.themeToken != DEFAULT_TOKEN) {
loadPurchasedOption(items.themeToken);
} else {
loadMonthOptions(items.imageURL);
}
}
// Force switch to the token page if in the URL:
const params = new URLSearchParams(window.location.search);
if (params.get('token')) {
loadPurchasedOption(params.get('token'));
savePurchaseOption();
return;
}
});
}
/** Save a single image URL as the one to use. */
function saveSingleOption() {
var imageURL = document.getElementById('url').value;
if (imageURL.length == 0) {
imageURL = DEFAULT_IMAGE_URLS[0];
document.getElementById('url').value = imageURL;
}
chrome.storage.sync.set({
imageURL: imageURL,
overlayMode: getOverlayMode(),
// NOTE: doesn't reset themeToken
}, function() {
updateImageUrl(imageURL);
// Update status to let user know options were saved.
var status = document.getElementById('status');
status.textContent = 'Options saved.';
setTimeout(function() {
status.textContent = '';
}, 1000);
});
}
/** Save a collection of up to twelve images, for use once per month. */
function saveMonthOptions() {
var imageURL = [];
for (var i = 0; i < 12; i++) {
var url = document.getElementById('urlMonth' + i).value;
if (url) {
imageURL.push(url);
}
}
if (imageURL.length == 0) {
imageURL = DEFAULT_IMAGE_URLS;
for (var i = 0; i < imageURL.length && i < 12; i++) {
document.getElementById('urlMonth' + i).value = imageURL[i];
}
}
chrome.storage.sync.set({
imageURL: imageURL,
overlayMode: getOverlayMode(),
themeToken: DEFAULT_TOKEN, // force back to unset
}, function() {
var currentMonth = new Date().getMonth();
updateImageUrl(imageURL[currentMonth % imageURL.length]);
// Update status to let user know options were saved.
var status = document.getElementById('status');
status.textContent = 'Options saved.';
setTimeout(function() {
status.textContent = '';
}, 1000);
});
}
/** Save colour by generating data URL to single pixel of that color. */
function saveColorOptions() {
var colorHex = document.getElementById('color').value;
var imageURL = colorHexToUrl(colorHex)
chrome.storage.sync.set({
imageURL: imageURL,
overlayMode: getOverlayMode(),
// NOTE: doesn't reset themeToken
}, function() {
updateImageUrl(imageURL);
// Update status to let user know options were saved.
var status = document.getElementById('status');
status.textContent = 'Options saved.';
setTimeout(function() {
status.textContent = '';
}, 1000);
});
}
/** Save purchase option by storing the token. */
function savePurchaseOption() {
// TODO - handle saving an empty string?
const fullToken = document.getElementById('purchase_token').value;
const parts = fullToken.split('/');
if (parts.length != 2 || parts[1].length != TOKEN_LENGTH) {
// TODO - warn on error
alert("Invalid token - please visit the store and copy the token exactly, or click 'Use in calendar'");
return;
}
getUserInfo(userInfo => {
var imageURLs = [];
for (var i = 0; i < 12; i++) {
const url = monthToPurchaseUrl(fullToken, i, userInfo.email);
imageURLs.push(url);
document.getElementById('urlMonth' + i).value = url;
}
chrome.storage.sync.set({
imageURL: imageURLs,
overlayMode: getOverlayMode(),
themeToken: fullToken,
}, function() {
var currentMonth = new Date().getMonth();
updateImageUrl(imageURLs[currentMonth % imageURLs.length]);
// Update status to let user know options were saved.
var status = document.getElementById('status');
status.textContent = 'Options saved.';
setTimeout(function() {
status.textContent = '';
}, 1000);
});
});
}
/** Persist extension options to chrome sync. */
function saveOptions() {
if (!!document.getElementById('t1').checked) {
saveSingleOption();
} else if (!!document.getElementById('t2').checked) {
saveMonthOptions();
} else if (!!document.getElementById('t3').checked) {
saveColorOptions();
} else if (!!document.getElementById('t4').checked) {
savePurchaseOption();
}
}
/** Change the single URL tab back to the default path. */
function resetSingleOption() {
document.getElementById('url').value = DEFAULT_IMAGE_URLS[0];
}
/** Change the all month paths to their default URLs. */
function resetMonthOptions() {
for (var i = 0; i < 12; i++) {
document.getElementById('urlMonth' + i).value = DEFAULT_IMAGE_URLS[i];
}
}
/** Change single color back to the default color. */
function resetColorOption() {
document.getElementById('color').value = DEFAULT_COLOR_HEX;
}
/** Change paid calendar back to unused. */
function resetPurchasedOption() {
document.getElementById('purchase_token').value = DEFAULT_TOKEN;
}
/** Reset current URLs to their defaults. */
function resetOptions() {
if (!!document.getElementById('t1').checked) {
resetSingleOption();
} else if (!!document.getElementById('t2').checked) {
resetMonthOptions();
} else if (!!document.getElementById('t3').checked) {
resetColorOption();
} else if (!!document.getElementById('t4').checked) {
resetPurchasedOption(); // Keep?
}
}
/** Set tab after a radio button was selected. */
function changeTab(e) {
setTab(e.target.id);
}
function main() {
document.addEventListener('DOMContentLoaded', loadOptions);
document.getElementById('save').addEventListener('click', saveOptions);
document.getElementById('reset').addEventListener('click', resetOptions);
document.getElementById('t1').addEventListener('change', changeTab);
document.getElementById('t2').addEventListener('change', changeTab);
document.getElementById('t3').addEventListener('change', changeTab);
document.getElementById('t4').addEventListener('change', changeTab);
}
main();