-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcode.gs
586 lines (534 loc) · 16.9 KB
/
code.gs
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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
/*
* Copyright Laura Taylor
* (https://github.com/techstreams/TSFormTranslator)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Add a custom menu to the active form
*/
function onOpen() {
FormApp.getUi()
.createMenu('TSFormTranslator')
.addItem('Open sidebar', 'openSidebar')
.addItem('Clear form', 'clearForm')
.addSeparator()
.addItem('About', 'about')
.addToUi();
};
/*
* Open TSFormTranslator sidebar
*/
function openSidebar() {
var html, langs, tsft, ui;
ui = FormApp.getUi();
try {
tsft = new TSFormTranslator(FormApp.getActiveForm());
tsft.setFormTrigger('checkResponses').setDocProperties();
langs = tsft.getLangs();
html = HtmlService.createTemplateFromFile('sidebar');
html.langs = langs;
ui.showSidebar(html.evaluate().setSandboxMode(HtmlService.SandboxMode.IFRAME).setTitle('TSFormTranslator'));
} catch (e) {
ui.alert('Clear Form', 'TSFormTranslator encountered an error while trying to open the sidebar. Please try again later.', ui.ButtonSet.OK);
}
};
/*
* Process form response
* @param {Object} form submit trigger event
*/
function checkResponses(e) {
var form, tscf;
try {
form = FormApp.getActiveForm();
tscf = new TSFormTranslator(form, e.response).sendEmail();
} catch(error) {
// Send errors to owner
MailApp.sendEmail(Session.getEffectiveUser().getEmail(), 'TSFormTranslator: Error processing form submission', error.message);
}
};
/*
* Delete all items in form
*/
function clearForm() {
var result, tsft, ui;
ui = FormApp.getUi();
try {
result = ui.alert('Clear Form', 'Remove all form elements?', ui.ButtonSet.OK_CANCEL);
if (result == ui.Button.OK) {
tsft = new TSFormTranslator(FormApp.getActiveForm()).clear();
ui.alert('Clear Form', 'All form elements have been removed.', ui.ButtonSet.OK);
}
} catch (e) {
ui.alert('Clear Form', 'TSFormTranslator encountered an error while clearing the form. Please try again later.', ui.ButtonSet.OK);
}
};
/*
* Show About Information
*/
function about() {
FormApp.getUi().showModelessDialog(HtmlService.createHtmlOutputFromFile('about').setSandboxMode(HtmlService.SandboxMode.IFRAME), ' ');
};
/*
* Convert form text to selected translation language
*/
function translate(formObject) {
try {
return new TSFormTranslator(FormApp.getActiveForm()).translateText(formObject);
} catch(e) {
throw new Error('The following error occurred while trying to translate the form. Please run the "TSFormTranslator > Clear form" menu option to reset the form. \n\n' + e);
}
};
/*
* Get time in pretty format
* @param {String} time string in format hh:mm
* @return {String} time string in pretty format
*/
function getPrettyTime(time) {
var t;
t = time.trim().split(":");
if (t[0] == 0) {
return '12' + ":" + t[1] + 'AM';
} else if (t[0] < 12) {
return parseInt(t[0]) + ":" + t[1] + 'AM';
} else if (t[0] == 12) {
return '12' + ":" + t[1] + 'PM';
} else {
return (t[0] - 12) + ":" + t[1] + 'PM';
}
};
/*
* Get duration in pretty format
* @param {String} duration string in format hh:mm:ss
* @return {String} duration string in pretty format
*/
function getPrettyDuration(time) {
var duration, t;
duration = '';
t = time.trim().split(":");
if (t[0] > 0) {
duration += parseInt(t[0]) + " hours";
}
if (t[1] > 0) {
if (t[0] > 0) {
duration += " : "
}
duration += parseInt(t[1]) + " minutes";
}
if (t[2] > 0) {
if (t[0] > 0 || t[1] > 0) {
duration += " : "
}
duration += parseInt(t[2]) + " seconds";
}
return duration;
};
/*
* Define TSFormTranslator Class
*/
(function() {
/*
* TSFormTranslator
* @class
*/
return this.TSFormTranslator = (function() {
/*
* @constructor
* @param {Object} form object
* @param {Object} form response object
* @param {String} email template name
* @param {String} email subject line
* @return {TSFormTranslator} this object for chaining
*/
function TSFormTranslator(form, formResponse, email, subjectline) {
this.form = form;
this.formResponse = formResponse != null ? formResponse : null;
this.email = email != null ? email : 'email';
this.subjectline = subjectline != null ? subjectline : 'Form Submission';
this.key = 'tsformtranslator';
this.origin = {
code: 'en',
lang: 'English'
};
this.translator = {
code: '',
lang: ''
};
this.meta = null;
this;
}
/*
* Remove form elements and reset TSFormTranslator configuration
* @return {TSFormTranslator} this object for chaining
*/
TSFormTranslator.prototype.clear = function() {
var children;
this.form.setTitle('TSFormTranslator');
this.form.setDescription('');
this.form.setConfirmationMessage('');
children = this.form.getItems();
children.forEach((function(_this) {
return function(item) {
return _this.form.deleteItem(item);
};
})(this));
PropertiesService.getDocumentProperties().setProperty(this.key, this.origin.lang);
return this;
};
/*
* Get languages
* @return {Object} an object of language codes
*/
TSFormTranslator.prototype.getLangs = function() {
var langs;
langs = {
'Afrikaans': 'af',
'Albanian': 'sq',
'Arabic': 'ar',
'Armenian': 'hy',
'Azerbaijani': 'az',
'Basque': 'eu',
'Belarusian': 'be',
'Bengali': 'bn',
'Bosnian': 'bs',
'Bulgarian': 'bg',
'Catalan': 'ca',
'Cebuano': 'ceb',
'Chinese': 'zh',
'Croatian': 'hr',
'Czech': 'cs',
'Danish': 'da',
'Dutch': 'nl',
'Esperanto': 'eo',
'Estonian': 'et',
'Filipino': 'tl',
'Finnish': 'fi',
'French': 'fr',
'Galician': 'gl',
'Georgian': 'ka',
'German': 'de',
'Greek': 'el',
'Gujarati': 'gu',
'Haitian Creole': 'ht',
'Hausa': 'ha',
'Hebrew': 'iw',
'Hindi': 'hi',
'Hmong': 'hmn',
'Hungarian': 'hu',
'Icelandic': 'is',
'Igbo': 'ig',
'Indonesian': 'id',
'Irish': 'ga',
'Italian': 'it',
'Japanese': 'ja',
'Javanese': 'jv',
'Kannada': 'kn',
'Khmer': 'km',
'Korean': 'ko',
'Lao': 'lo',
'Latin': 'la',
'Latvian': 'lv',
'Lithuanian': 'lt',
'Macedonian': 'mk',
'Malay': 'ms',
'Maltese': 'mt',
'Maori': 'mi',
'Marathi': 'mr',
'Mongolian': 'mn',
'Nepali': 'ne',
'Norwegian': 'no',
'Persian': 'fa',
'Polish': 'pl',
'Portuguese': 'pt',
'Punjabi': 'pa',
'Romanian': 'ro',
'Russian': 'ru',
'Serbian': 'sr',
'Slovak': 'sk',
'Slovenian': 'sl',
'Somali': 'so',
'Spanish': 'es',
'Swahili': 'sw',
'Swedish': 'sv',
'Tamil': 'ta',
'Telugu': 'te',
'Thai': 'th',
'Turkish': 'tr',
'Ukrainian': 'uk',
'Urdu': 'ur',
'Vietnamese': 'vi',
'Welsh': 'cy',
'Yiddish': 'yi',
'Yoruba': 'yo',
'Zulu': 'zu'
};
return langs;
};
/*
* Generate form meta and send email
* @return {TSFormTranslator} this object for chaining
*/
TSFormTranslator.prototype.sendEmail = function() {
var from, lang;
lang = PropertiesService.getDocumentProperties().getProperty(this.key);
from = this.getLangs()[lang];
if (from) {
this.generateFormResponseMeta_(from, this.origin.code);
} else {
this.generateFormResponseMeta_(this.origin.code, this.origin.code);
}
if (this.meta) {
this.sendEmail_();
}
return this;
};
/*
* Set Initial Document Properties
* @return {TSFormTranslator} this object for chaining
*/
TSFormTranslator.prototype.setDocProperties = function() {
if (!PropertiesService.getDocumentProperties().getProperty(this.key)) {
PropertiesService.getDocumentProperties().setProperty(this.key, this.origin.lang);
}
return this;
};
/*
* Set a form trigger for processing form responses
* @param {String} function name to be run on trigger
* @return {TSFormTranslator} this object for chaining
*/
TSFormTranslator.prototype.setFormTrigger = function(functionName) {
var triggers;
if (!this.hasSubmitTrigger_(functionName)) {
triggers = ScriptApp.getProjectTriggers();
triggers.forEach(function(trigger) {
return ScriptApp.deleteTrigger(trigger);
});
ScriptApp.newTrigger(functionName).forForm(this.form).onFormSubmit().create();
}
return this;
};
/*
* Translate form text
* @return {String} language string
*/
TSFormTranslator.prototype.translateText = function(formObject) {
var toCode;
if (formObject.status === 'translatetext') {
toCode = this.getLangs()[formObject.translatelang];
this.translate_(this.origin.code, toCode);
PropertiesService.getDocumentProperties().setProperty(this.key, formObject.translatelang);
return formObject.translatelang;
}
if (formObject.status === 'translateeng') {
toCode = this.getLangs()[formObject.translate];
this.translate_(toCode, this.origin.code);
PropertiesService.getDocumentProperties().setProperty(this.key, this.origin.lang);
return this.origin.lang;
}
};
/*
* Generate form response meta
* @return {TSFormTranslator} this object for chaining
* @private
*/
TSFormTranslator.prototype.generateFormResponseMeta_ = function(from, to) {
var meta;
if (this.formResponse) {
meta = new Object();
meta.lang = PropertiesService.getDocumentProperties().getProperty(this.key);
meta.fromCode = from;
meta.toCode = to;
meta.url = this.form.getPublishedUrl();
meta.title = this.form.getTitle();
if (this.form.collectsEmail()) {
meta.submitter = this.formResponse.getRespondentEmail();
}
meta.response = [];
this.formResponse.getItemResponses().forEach((function(_this) {
return function(itemResponse) {
var item, response, scale, scaleparams;
item = itemResponse.getItem();
response = new Object();
response.title = item.getTitle();
response.type = _this.getItemType_(item.getType());
if (response.type === 'grid') {
response.rows = item.asGridItem().getRows();
}
if (response.type === 'scale') {
scale = item.asScaleItem();
scaleparams = new Object();
scaleparams.lowerlabel = scale.getLeftLabel();
scaleparams.lowerbound = scale.getLowerBound();
scaleparams.upperlabel = scale.getRightLabel();
scaleparams.upperbound = scale.getUpperBound();
response.scale = scaleparams;
}
response.response = itemResponse.getResponse();
meta.response.push(response);
return null;
};
})(this));
this.meta = meta;
}
return this;
};
/*
* Get form response item type
* @param {Object} form response item type
* @return {String} type of form object
* @private
*/
TSFormTranslator.prototype.getItemType_ = function(itemType) {
var type;
type = null;
switch (itemType) {
case FormApp.ItemType.CHECKBOX:
type = 'checkbox';
break;
case FormApp.ItemType.DATE:
type = 'date';
break;
case FormApp.ItemType.DATETIME:
type = 'datetime';
break;
case FormApp.ItemType.TIME:
type = 'time';
break;
case FormApp.ItemType.DURATION:
type = 'duration';
break;
case FormApp.ItemType.GRID:
type = 'grid';
break;
case FormApp.ItemType.LIST:
type = 'list';
break;
case FormApp.ItemType.MULTIPLE_CHOICE:
type = 'multiplechoice';
break;
case FormApp.ItemType.SCALE:
type = 'scale';
break;
case FormApp.ItemType.PARAGRAPH_TEXT:
type = 'paragraph';
break;
case FormApp.ItemType.TEXT:
type = 'text';
break;
case FormApp.ItemType.TIME:
type = 'time';
break;
}
return type;
};
/*
* Check for form submit trigger
* @return {Boolean} return true if submit trigger exists else false
*/
TSFormTranslator.prototype.hasSubmitTrigger_ = function(functionName) {
var exists;
exists = false;
ScriptApp.getProjectTriggers().forEach(function(trigger) {
if (trigger.getEventType() === ScriptApp.EventType.ON_FORM_SUBMIT && trigger.getHandlerFunction() === functionName) {
return exists = true;
}
});
return exists;
};
/*
* Send email
* @return {TSFormTranslator} this object for chaining
* @private
*/
TSFormTranslator.prototype.sendEmail_ = function() {
var email, params;
email = HtmlService.createTemplateFromFile(this.email);
email.meta = this.meta;
params = {
htmlBody: email.evaluate().getContent()
};
MailApp.sendEmail(Session.getEffectiveUser().getEmail(), this.subjectline, "", params);
return this;
};
/*
* Translate form elements
* @return {TSFormTranslator} this object for chaining
* @private
*/
TSFormTranslator.prototype.translate_ = function(from, to) {
var children;
this.form.setTitle(LanguageApp.translate(this.form.getTitle(), from, to));
if (this.form.getDescription() && this.form.getDescription() !== '') {
this.form.setDescription(LanguageApp.translate(this.form.getDescription(), from, to));
}
if (this.form.getConfirmationMessage() && this.form.getConfirmationMessage() !== '') {
this.form.setConfirmationMessage(LanguageApp.translate(this.form.getConfirmationMessage(), from, to));
}
children = this.form.getItems();
children.forEach(function(item) {
var choices, columns, elem, leftlabel, rightlabel, rows;
if (item.getTitle() && item.getTitle() !== '') {
item.setTitle(LanguageApp.translate(item.getTitle(), from, to));
}
if (item.getHelpText() && item.getHelpText() !== '') {
item.setHelpText(LanguageApp.translate(item.getHelpText(), from, to));
}
if (item.getType() === FormApp.ItemType.CHECKBOX) {
choices = [];
elem = item.asCheckboxItem();
elem.getChoices().forEach(function(choice) {
return choices.push(LanguageApp.translate(choice.getValue(), from, to));
});
elem.setChoiceValues(choices);
}
if (item.getType() === FormApp.ItemType.LIST) {
choices = [];
elem = item.asListItem();
elem.getChoices().forEach(function(choice) {
return choices.push(LanguageApp.translate(choice.getValue(), from, to));
});
elem.setChoiceValues(choices);
}
if (item.getType() === FormApp.ItemType.MULTIPLE_CHOICE) {
choices = [];
elem = item.asMultipleChoiceItem();
elem.getChoices().forEach(function(choice) {
return choices.push(LanguageApp.translate(choice.getValue(), from, to));
});
elem.setChoiceValues(choices);
}
if (item.getType() === FormApp.ItemType.SCALE) {
elem = item.asScaleItem();
leftlabel = LanguageApp.translate(elem.getLeftLabel(), from, to);
rightlabel = LanguageApp.translate(elem.getRightLabel(), from, to);
elem.setLabels(leftlabel, rightlabel);
}
if (item.getType() === FormApp.ItemType.GRID) {
elem = item.asGridItem();
rows = [];
columns = [];
elem.getRows().forEach(function(row) {
return rows.push(LanguageApp.translate(row, from, to));
});
elem.getColumns().forEach(function(column) {
return columns.push(LanguageApp.translate(column, from, to));
});
return elem.setRows(rows).setColumns(columns);
}
});
return this;
};
return TSFormTranslator;
})();
})();