-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathformscanner.js
More file actions
479 lines (437 loc) · 13.3 KB
/
formscanner.js
File metadata and controls
479 lines (437 loc) · 13.3 KB
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
const fs = (() => {
const compose = (...fns) => input => fns.reduceRight((chain, func) => chain.then(func), Promise.resolve(input));
const fieldChart = () => {
compose(
consoleTableIt,
getFieldChart,
getTargetFrame
) (window);
}
const parseURL = () => {
compose(
consoleTableIt,
getUrlParams,
getUrlQueryString,
getTargetFrame
) (window);
}
const getSections = () => {
compose(
consoleGroupIt,
openNewTab,
compileUrl,
compileSectionQuery
) (isServicePortalPage(window));
}
const searchBusinessRules = (fieldName) => {
compose(
consoleGroupIt,
openNewTab,
compileUrl,
compileBusinessRuleQuery
)(fieldName);
}
const searchUiPolicies = (fieldName) => {
compose(
consoleGroupIt,
openNewTab,
compileUrl,
compileUiPolicyQuery,
addUiPolicyScriptSearchResults,
searchPolicyActions
)(fieldName);
}
const searchClientScripts = (fieldName) => {
compose(
consoleGroupIt,
openNewTab,
compileUrl,
compileClientScriptQuery
)(fieldName);
}
const searchScripts = (searchTerm) => {
searchClientScripts(searchTerm);
searchBusinessRules(searchTerm);
searchUiPolicies(searchTerm);
}
const getTableName = () => {
if (isServicePortalPage(window)) {
return spGetTableName();
} else {
return getTargetFrame(window).g_form.tableName;
}
}
const searchPolicyScripts = (policyArray, fieldName, policySysIds, callback) => {
let tFrame = getTargetFrame(window);
let promises = [];
policyArray.forEach(policy => {
if (policy.script_false != '' || policy.script_true != '') {
let pgr = new tFrame.GlideRecord('sys_ui_policy');
pgr.addQuery('sys_id', policy.sys_id);
promises.push(new Promise((resolve, reject) => {
pgr.query(rec => {
while (rec.next()) {
if (rec.script_true.search(fieldName) != -1 || rec.script_false.search(fieldName) != -1) {
if (policySysIds.indexOf(policy.sys_id) == -1) {
policySysIds.push(policy.sys_id);
}
}
}
resolve(policySysIds);
});
}));
}
});
if(promises.length == 0) {
callback(policySysIds);
} else {
Promise.all(promises)
.then((policySysIds) => {
callback(policySysIds);
});
}
}
const spfieldChart = () => {
let gf = null;
try {
gf = angular.element("sp-variable-layout").scope().getGlideForm();
} catch (err) {
console.error('Unable to find the g_form object: ' + err.message);
return;
}
let fieldDetails = []
let fields = gf.getFieldNames();
fields.forEach(fieldName => {
let details = {};
details.fieldLabel = gf.getLabelOf(fieldName);
details.fieldName = fieldName;
details.value = gf.getValue(fieldName);
details.type = gf.getField(fieldName).type;
details.reference = gf.getField(fieldName).refTable;
fieldDetails.push(details);
});
return fieldDetails;
}
const spGetTableName = () => {
var gForm = angular.element("sp-variable-layout").scope().getGlideForm();
return gForm.getTableName();
}
const getHostName = () => {
return location.hostname;
}
const getPolicyArray = () => {
if(isServicePortalPage(window)) {
return spGetFormScope().policy;
} else {
let tFrame = getTargetFrame(window);
return tFrame.g_ui_policy;
}
}
const addUiPolicyScriptSearchResults = ({policyArray, resultSysIds, fieldName}) => {
return new Promise((resolve, reject) => {
searchPolicyScripts(policyArray, fieldName, resultSysIds, results => resolve(results));
});
}
const compileUiPolicyQuery = (resultSysIds) => {
let resultString = convertSysIdArrayToString(resultSysIds);
return {
type: 'uiPolicies',
variables: {
sysIdString: resultString
}
}
}
const searchPolicyActions = (fieldName) => {
let policyArray = getPolicyArray();
let resultSysIds = [];
policyArray.forEach((policy) => {
policy.actions.forEach((action) => {
if (action.name == fieldName) {
resultSysIds.push(policy.sys_id);
}
});
});
return {
policyArray: policyArray,
resultSysIds: resultSysIds,
fieldName: fieldName
}
}
const getParmValue = (parmName) => {
var searchParams = new URLSearchParams(getTargetFrame(window).location.search);
var value = searchParams.get(parmName);
// an empty string will signify the default view
return value || '';
}
const getUrlParams = (search) => {
let hashes = search.slice(search.indexOf('?') + 1).split('&');
let params = {}
hashes.map(hash => {
let [key, val] = hash.split('=');
params[key] = decodeURIComponent(val);
})
return params
}
const getTargetFrame = (context) => {
let tFrame;
if (context.hasOwnProperty('g_form')) {
tFrame = context;
return tFrame;
} else if (document.getElementById('gsft_main')) {
tFrame = document.getElementById('gsft_main').contentWindow
return tFrame;
} else {
return context;
}
}
const getFieldChart = (frame) => {
if (isServicePortalPage(window)) {
return spfieldChart();
} else {
let fields = [];
let gf = frame.g_form;
gf.elements.forEach(elem => {
if (elem.tableName != 'variable') {
let details = {};
details.fieldLabel = gf.getLabelOf(elem.fieldName);
details.fieldName = elem.fieldName;
details.value = gf.getValue(elem.fieldName);
details.type = elem.type;
details.reference = elem.reference;
fields.push(details);
}
});
return fields;
}
}
const spGetFormScope = () => {
let widgetScopes = [];
let spWidgets = document.querySelectorAll("[widget='widget']");
let formScope = null;
spWidgets.forEach((widget, i) => {
let thisScope = angular.element(spWidgets[i]).scope();
if (thisScope.hasOwnProperty('data') && thisScope.data.hasOwnProperty('f'))
formScope = thisScope.data.f;
});
return formScope;
}
const spGetClientScriptSysIds = (fieldName) => {
let clientScripts = spGetFormScope().client_script;
let clientScriptSysIds;
clientScriptTypes().forEach(type => {
if(clientScripts.hasOwnProperty(type)) {
if(clientScripts[type].length > 0) {
clientScripts[type].forEach(clientScript => {
if(clientScript.script.search(fieldName) != -1)
clientScriptSysIds += clientScript.sys_id + ',';
});
}
}
});
return clientScriptSysIds;
}
const clientScriptTypes = () => ['onChange', 'onLoad', 'onSubmit'];
const getClientScriptsSysIds = (fieldName) => {
let tFrame = getTargetFrame(window);
let clientScriptsObj = tFrame.g_event_handler_ids;
let scriptSysIds = [];
let promises = [];
for (let prop in clientScriptsObj) {
let gr = new tFrame.GlideRecord("sys_script_client");
gr.addQuery("sys_id", clientScriptsObj[prop]);
promises.push(new Promise((resolve, reject) => {
gr.query(function (rec) {
while (rec.next()) {
if (rec.script.search(fieldName) != -1) {
resolve(rec.sys_id);
} else {
resolve();
}
}
});
}));
}
return Promise.all(promises);
}
const compileClientScriptQuery = (fieldName) => {
let clientScriptSysIds;
if(isServicePortalPage(window)) {
clientScriptSysIds = spGetClientScriptSysIds(fieldName);
return {
type: 'clientScripts',
variables: {
sysIdString: clientScriptSysIds
}
}
} else {
return new Promise((resolve, reject) => {
getClientScriptsSysIds(fieldName).then(sysIdArray => {
let sysIdString = removeEmptyElements(sysIdArray).reduce((value, curr, i, a) => {
if (i != (a.length - 1))
return value += curr + ',';
else
return value += curr;
}, '');
resolve({
type: 'clientScripts',
variables: {
sysIdString: sysIdString
}
});
});
});
}
}
const getBusinessRuleSysIds = (fieldName) => {
let tFrame = getTargetFrame(window);
let businessRuleSysIds = [];
let gr = new tFrame.GlideRecord("sys_script");
let tableName = getTableName();
gr.addQuery("collection", tableName);
return new Promise((resolve, reject) => {
gr.query(function (rec) {
while (rec.next()) {
if (rec.script.search(fieldName) != -1 || rec.template.search(fieldName) != -1) {
businessRuleSysIds.push(rec.sys_id);
}
}
resolve(businessRuleSysIds);
});
});
}
const compileBusinessRuleQuery = (fieldName) => {
let businessRuleSysIds;
return new Promise((resolve, reject) => {
getBusinessRuleSysIds(fieldName).then(sysIdArray => {
let sysIdString = convertSysIdArrayToString(sysIdArray);
resolve({
type: 'businessRules',
variables: {
sysIdString: sysIdString
}
});
});
});
}
const convertSysIdArrayToString = (sysIdArray) => {
return removeEmptyElements(sysIdArray).reduce((value, curr, i, a) => {
if (i != (a.length - 1))
return value += curr + ',';
else
return value += curr;
}, '');
}
const compileSectionQuery = (isSpPage) => {
let tableName;
let viewName;
let domain;
if (isSpPage) {
tableName = getParmValue('table');
viewName = getParmValue('view');
if (viewName == 'default')
viewName = '';
} else {
tableName = getTargetFrame(window).g_form.getTableName();
viewName = getParmValue('sysparm_view');
domain = getTargetFrame(window).gel('sysparm_domain');
}
if(domain && domain.value !== 'global') {
return{
type: 'sectionsWithDomainSeparation',
variables: {
tableName: tableName,
viewName: viewName,
domain: domain.value
}
}
} else {
return {
type: 'sections',
variables: {
tableName: tableName,
viewName: viewName
}
}
}
}
const compileUrl = ({type, variables}) => {
switch (type) {
case 'sections':
return {
name: 'Sections',
url: `https://${getHostName()}/sys_ui_section_list.do?sysparm_query=name=${variables.tableName}^view.name=${variables.viewName}`
}
case 'sectionsWithDomainSeparation':
return {
name: 'Sections',
url: `https://${getHostName()}/sys_ui_section_list.do?sysparm_query=name=${variables.tableName}^view.name=${variables.viewName}^NQname=${variables.tableName}^view.name=${variables.viewName}^sys_domain=${variables.domain}&sysparm_query_no_domain=true`
}
case 'clientScripts':
return {
name: 'Client Scripts',
url: `https://${getHostName()}/sys_script_client_list.do?sysparm_query=sys_idIN${variables.sysIdString}`
}
case 'businessRules':
return {
name: 'Business Rules',
url: `https://${getHostName()}/sys_script_list.do?sysparm_query=sys_idIN${variables.sysIdString}`
}
case 'uiPolicies':
return {
name: 'UI Policies',
url: `https://${getHostName()}/sys_ui_policy_list.do?sysparm_query=sys_idIN${variables.sysIdString}`
}
default:
console.error(`Could not compile url for type ${type}`);
}
}
// Callback to execute on DOM changes
const breakOnMutation = (mutationList) => {
for (let mutation of mutationList) {
debugger;
}
}
const observer = new MutationObserver(breakOnMutation);
const breakOnChange = (selector, formField) => {
//Since we need to detect any and all DOM changes . . . bring in the MutationObserver!
let targetWindow = getTargetFrame(window);
let targetNode = null;
if(formField){
targetNode = targetWindow.document.getElementById(`element.${targetWindow.g_form.tableName}.${selector}`);
} else {
targetNode = targetWindow.document.querySelector(selector);
}
let config = { attributes: true, childList: true, characterData: true, subtree: true };
observer.observe(targetNode, config);
}
const disableBreakPoint = () => {
if (observer) observer.disconnect();
}
const consoleTableIt = (a) => {
console.table(a);
}
const consoleGroupIt = ({name, url}) => {
console.group(name);
console.log(name + ': ' + url);
console.groupEnd();
}
const removeEmptyElements = arr => arr.filter(Boolean);
const openNewTab = ({name, url}) => {
window.open(url, '_blank');
return {name, url};
}
const isServicePortalPage = (context) => {
return context.NOW.hasOwnProperty('sp');
}
const getUrlQueryString = (context) => {
return context.location.search;
}
return {
fieldChart: fieldChart,
parseURL: parseURL,
getSections: getSections,
searchScripts: searchScripts,
breakOnChange: breakOnChange,
disableBreakPoint: disableBreakPoint,
};
})();