-
Notifications
You must be signed in to change notification settings - Fork 673
/
Copy pathscripts.js
100 lines (86 loc) · 3.24 KB
/
scripts.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
/****************Client Code****************/
function clientConfirm() {
var actionCallbackOK = function() {
gsftSubmit(null, g_form.getFormElement(), 'copyQuestionSet');
};
var actionCallbackCancel = function() {
return false;
};
var gm = new GlideModal('glide_confirm_basic',false); //UI page with logic to confirm
gm.setTitle("This will create a copy of this variable set including all variables, choices, UI policies, UI policy actions and client scripts. Do you want to proceed?"); // confirm message to ask for confirmation
gm.setPreference('onPromptComplete', actionCallbackOK.bind(this)); //bind to local function to take action when selected Ok
gm.setPreference('onPromptCancel', actionCallbackCancel.bind(this)); //bind to local function to take action when selected Cancel
gm.render();
}
/****************Server Code****************/
//set some new default values
var name = current.title;
current.title = 'Copy of ' + name;
//insert a copy of the variable set
var oldid = current.sys_id.toString();
var newid = current.insert();
var allVars = {};
if (typeof window == 'undefined') {
main(oldid, newid);
}
function main(oldid, newid) {
createVariables(oldid, newid);
createCatalogClientScript(oldid, newid);
createCatalogUiPolicy(oldid, newid);
}
//creates a copy of the variables and associates them to the new variable set
function createVariables(oldid, newid) {
var vars = new GlideRecord('item_option_new');
vars.addQuery('variable_set', oldid);
vars.query();
while (vars.next()) {
var varoldid = vars.sys_id.toString();
vars.variable_set = newid;
var varnewid = vars.insert();
allVars['IO:' + varoldid] = 'IO:' + varnewid.toString();
var qc = new GlideRecord('question_choice');
qc.addQuery('question', varoldid);
qc.query();
while (qc.next()) {
qc.question = varnewid;
qc.insert();
}
}
}
//creates a copy of the client scripts and associates to the variable set.
function createCatalogClientScript(oldid, newid) {
var ccs = new GlideRecord('catalog_script_client');
ccs.addQuery('variable_set', oldid);
ccs.query();
while (ccs.next()) {
if (ccs.type == 'onChange') {
var cv = ccs.cat_variable;
ccs.cat_variable = allVars[cv];
}
ccs.variable_set = newid;
ccs.insert();
}
}
//creates a copy of the UI Policies and associates them to the new variable set
function createCatalogUiPolicy(oldid, newid) {
var cup = new GlideRecord('catalog_ui_policy');
cup.addQuery('variable_set', oldid);
cup.query();
while (cup.next()) {
var uipoldid = cup.sys_id.toString();
cup.variable_set = newid;
var newuip = cup.insert();
var cupa = new GlideRecord('catalog_ui_policy_action');
cupa.addQuery('ui_policy', uipoldid);
cupa.query();
while (cupa.next()) {
cupa.ui_policy = newuip;
cupa.variable_set = newid;
var cv = cupa.catalog_variable;
cupa.catalog_variable = allVars[cv];
cupa.insert();
}
}
}
//Return the user to the new variable set record
action.setRedirectURL(current);