forked from phpvirtualbox/phpvirtualbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwizardExportApplianceAdvanced.html
320 lines (250 loc) · 12 KB
/
wizardExportApplianceAdvanced.html
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
<!--
Advanced export appliance wizard panes. Logic in vboxWizard() class
Copyright (C) 2010-2015 Ian Moore (imoore76 at yahoo dot com)
$Id: wizardExportApplianceAdvanced.html 595 2015-04-17 09:50:36Z imoore76 $
-->
<!-- Step 1 -->
<div id='wizardExportApplianceStep1' style='display: none;'>
<table class='vboxInvisible' style='border: 0px solid transparent; border-spacing: 4px; height: 100%;'>
<tr style='vertical-align: top'>
<td style='width: 50%'>
<span class='translate vboxTableLabel'>Virtual machines to export</span>
<hr style='width: 100%; margin: 0px; margin-bottom: 6px; display: block' class='vboxSeparatorLine'/>
<div id='vboxExportAppVMListContainer' style='overflow:auto;padding:0px;margin:0px;' class='vboxBordered'>
<ul style='width: 100%;margin:0px;' id='vboxExportAppVMList' class='vboxList'>
<li><img src='images/spinner.gif' /></li>
</ul>
</div>
</td>
<td>
<span class='translate vboxTableLabel'>Appliance settings</span>
<hr style='width: 100%; margin: 0px; margin-bottom: 6px; display: block' class='vboxSeparatorLine'/>
<div class='vboxBordered' id='vboxExportPropsContainer' style='overflow: auto' style='width: 100%'>
<table class='vboxHorizontal' style='width: 100%; font-size: 0.9em'>
<tbody id='vboxExportProps'>
</tbody>
</table>
</div>
</td>
</tr>
<tr style='vertical-align: top; height: 1%;'>
<td colspan='2'>
<table style='width: 100%;' class='vboxOptions'>
<tr>
<th width='1%'><span class='translate'>File:</span></th>
<td class='vboxFileFolderInput'>
<input type='text' class='vboxText' name='wizardExportApplianceLocation' />
<input type="button" class="vboxImgButton" style="background-image: url(images/vbox/select_file_16px.png)" onClick="wizardExportApplianceBrowseLocation()" />
</td>
</tr>
<tr>
<th width='1%'><span class='translate'>Format:</span></th>
<td>
<select name='wizardExportApplianceFormat'>
<option value="ovf-0.9">OVF 0.9</option>
<option value="ovf-1.0" selected>OVF 1.0</option>
<option value="ovf-2.0">OVF 2.0</option>
</select>
</td>
</tr>
<tr>
<td colspan='2'>
<label><input type='checkbox' class='vboxCheckbox' name='wizardExportApplianceManifest'/>
<span class='translate'>Write Manifest file</span></label>
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
<script type='text/javascript'>
//Add format options
$(document.forms['frmwizardExportAppliance'].wizardExportApplianceFormat).find('option').html(function(i,h){return trans(h,'UIWizardExportApp');});
// Load list of exportable machines
var l = new vboxLoader();
l.add('vboxGetExportableMachines',function(d){$('#wizardExportApplianceStep1').data('vms',d.responseData);});
l.onLoad = function() {
var vms = $('#wizardExportApplianceStep1').data('vms');
var vmlist = $('#vboxExportAppVMList');
$(vmlist).children().remove();
vms.sort(function(a,b){return strnatcasecmp(a.name,b.name);});
for(var i in vms) {
var li = $('<li />').data({'vm':vms[i]});
if(vboxVMStates.isPaused(vms[i]) || vboxVMStates.isRunning(vms[i])) {
$(li).addClass('vboxDisabled disabled');
} else {
/* Exportable appliance clicked */
$(li).click(function(){
$(this).toggleClass('vboxListItemSelected');
vboxWizardExportApplianceUpdateList();
vboxWizardExportApplianceOVFName();
}).addClass('vboxListItem');
if(vboxChooser.isVMSelected(vms[i].id))
$(li).addClass('vboxListItemSelected');
}
$(li).html("<img style='width: 16px; height: 16px;' src='images/vbox/" + vboxGuestOSTypeIcon(vms[i].OSTypeId) + "' /> " + vms[i].name);
$(vmlist).append(li);
}
vboxColorRows(vmlist);
vboxWizardExportApplianceUpdateList();
vboxWizardExportApplianceOVFName();
};
l.run();
// Resize panes function
function wizardExportApplianceStepResizeList() {
$('#wizardExportApplianceStep1').hide();
$('#vboxExportAppVMListContainer').hide();
$('#vboxExportPropsContainer').hide();
$('#wizardExportApplianceStep1').css({'height':($('#wizardExportApplianceStep1').parent().height()-8)+'px'}).show();
$('#vboxExportAppVMListContainer').css({'height':($('#vboxExportAppVMListContainer').parent().height()-16)+'px'}).show();
$('#vboxExportPropsContainer').css({'height':$('#vboxExportAppVMListContainer').css('height'),
'width':$('#vboxExportAppVMListContainer').parent().width()}).show();
}
// Resize panes when wizard is resized
$('#wizardExportApplianceDialog').on('dialogresizestop',wizardExportApplianceStepResizeList);
//Resize panes after this div is shown
$('#wizardExportApplianceStep1').on('show', wizardExportApplianceStepResizeList);
/*
*
* VM Properties to edit / export
*
*/
var vboxApplianceProps = {
'name' : {'label':'Name','icon':'name'},
'product' : {'label':'Product','icon':'description'},
'product-url' : {'label':'Product-URL','icon':'description'},
'vendor' : {'label':'Vendor','icon':'description'},
'vendor-url' : {'label':'Vendor-URL','icon':'description'},
'version' : {'label':'Version','icon':'description'},
'description' : {'label':'Description','icon':'description','textarea':true},
'license' : {'label':'License','icon':'description','textarea':true}
};
/* Browse for export location */
function wizardExportApplianceBrowseLocation() {
var dsepRegEx = $('#vboxPane').data('vboxConfig').DSEP;
if(dsepRegEx == '\\') dsepRegEx += '\\';
// Get current location
var loc = document.forms['frmwizardExportAppliance'].elements.wizardExportApplianceLocation.value;
if(loc.indexOf($('#vboxPane').data('vboxConfig').DSEP) > -1) {
var r = new RegExp(dsepRegEx+'([^'+dsepRegEx+']*)?$');
loc = loc.replace(r,'');
} else {
// no path set
loc = vboxDirname($('#vboxPane').data('vboxConfig').version.settingsFilePath) + $('#vboxPane').data('vboxConfig').DSEP;
}
vboxFileBrowser(loc,function(f){
if(!f) return;
// get file name
var r = new RegExp('.*'+dsepRegEx);
file = $(document.forms['frmwizardExportAppliance'].elements.wizardExportApplianceLocation).val().replace(r,'');
document.forms['frmwizardExportAppliance'].elements.wizardExportApplianceLocation.value = f+($('#vboxPane').data('vboxConfig').DSEP)+file;
},true,trans('Select a file to export into','UIWizardExportAppPage3'));
}
/* Determine default OVF name */
function vboxWizardExportApplianceOVFName() {
// Keep track of where we were
var vmSel = $('#vboxExportAppVMList').children('li.vboxListItemSelected');
/* When going to step3, make sure vms are selected */
if(!vmSel.length) {
$('#vboxExportAppVMListContainer').addClass('vboxRequired');
return;
}
$('#vboxExportAppVMListContainer').removeClass('vboxRequired');
if(jQuery.trim($(document.forms['frmwizardExportAppliance'].elements.wizardExportApplianceLocation).val()) && $(document.forms['frmwizardExportAppliance'].elements.wizardExportApplianceLocation).data('userChanged'))
return;
$(document.forms['frmwizardExportAppliance'].elements.wizardExportApplianceLocation).data('userChanged', false);
var name = '';
if(vmSel.length > 1) {
name = 'Appliance';
} else {
name = jQuery.trim($(vmSel[0]).text());
}
// If there is already a folder chosen, don't change it
if(jQuery.trim($(document.forms['frmwizardExportAppliance'].elements.wizardExportApplianceLocation).val())) {
name = vboxDirname(jQuery.trim($(document.forms['frmwizardExportAppliance'].elements.wizardExportApplianceLocation).val())) + $('#vboxPane').data('vboxConfig').DSEP + name + '.ova';
} else {
name = vboxDirname($('#vboxPane').data('vboxConfig').version.settingsFilePath) + $('#vboxPane').data('vboxConfig').DSEP + name + '.ova';
}
$(document.forms['frmwizardExportAppliance'].elements.wizardExportApplianceLocation).val(name);
};
function vboxWizardExportApplianceUpdateList() {
var vms = $('#vboxExportAppVMList').children('li');
var tbl = $('#vboxExportProps');
for(var i = 0; i < vms.length; i++) {
var vmid = $(vms[i]).data('vm').id;
// Selected ?
if($(vms[i]).hasClass('vboxListItemSelected')) {
if($('#vboxAppliance-'+vmid).attr('id')) continue;
} else {
$(tbl).children('tr.vboxAppliance-'+vmid).remove();
continue;
}
// VM header row
var trparent = $('<tr />').attr({'id':'vboxAppliance-'+vmid}).addClass('vboxAppliance-'+vmid + ' vboxTableParent');
var td = $('<td />').attr({'colspan':'2','class':'vboxApplianceHeader'}).append(
$('<div />').css({'font-weight':'bold','padding-left':'6px'}).append(
$('<input />').attr({'type':'button','class':'vboxImgButton','style':'background-image: url(images/downArrow.png); margin:0px;margin-right:4px;padding:0px;vspace:0px;hspace:0px;width: 12px; height: 12px;'}).click(function(){
if(!$(this).data('toggleClicked')) {
$(this).data('toggleClicked', true);
$(this).css({'background-image':'url(images/rightArrow.png)'});
var tr = $(this).closest('tr');
$(tr).siblings('tr.vboxChildOf'+$(tr).data('vboxOrder')).hide();
} else {
$(this).data('toggleClicked', false);
$(this).css({'background-image':'url(images/downArrow.png)'});
var tr = $(this).closest('tr');
$(tr).siblings('tr.vboxChildOf'+$(tr).data('vboxOrder')).show();
}
})
).append(
//trans('Virtual System X').replace('%s',(i+1))
$('<div />').text($(vms[i]).data('vm').name).html()
)
).disableSelection();
$(trparent).append(td).data({'vm':$(vms[i]).data('vm'),'vboxOrder':i}).appendTo(tbl);
// VM properties
for(var p in vboxApplianceProps) {
var tr = $('<tr />').attr({'class':'vboxAppliance-'+vmid+' vboxChildOf' + i}).data({'vmprop':p});
$('<td />').css({'padding-left':'18px','white-space':'nowrap','width':'1%'}).html('<img src="images/vbox/'+vboxApplianceProps[p].icon+'_16px.png" /> ' + trans(vboxApplianceProps[p].label,'UIApplianceEditorWidget')).appendTo(tr);
$('<td />').attr({'class':'vboxHideOverflow vboxAppProp'+p}).css({'width':'100%','padding-left':'10px','padding-right':'2px'}).html('<div>'+$('<div />').text(($(trparent).data('vm')[p]||'')).html()+'</div>').dblclick((vboxApplianceProps[p].textarea ? vboxExportAppliancePropEditArea : vboxExportAppliancePropEdit )).appendTo(tr);
$(tbl).append(tr);
}
}
vboxColorRows(tbl,false,'vboxTableParent');
};
/* Edit property that has a text area */
function vboxExportAppliancePropEditArea(evt,elm) {
vboxExportAppliancePropEditDialog(evt.target, $('<span />').html($(evt.target).html()).text());
}
/* Edit property dialog */
function vboxExportAppliancePropEditDialog(elm, defaults) {
var d = $('<div />').css({'display':'none'});
var frm = $('<form />').attr({'onSubmit':'return false;'}).css({'margin':'0px','border':'0px','padding':'0px','width':'100%','height':'100%'});
$('<textarea />').attr({'id':'vboxExportAppliancePropTextarea'}).css({'height':'99%','width':'99%'}).val(defaults).appendTo(frm);
$(d).append(frm);
var buttons = {};
buttons[trans('OK','QIMessageBox')] = function(){
var d = vboxDivOverflowHidden(elm);
$(d).html($('<div />').text($('#vboxExportAppliancePropTextarea').val()).html());
$(elm).html('').append(d);
$(this).empty().remove();
};
buttons[trans('Cancel','QIMessageBox')] = function(){
$(this).empty().remove();
};
$(d).dialog({'height':300,'width':300,'closeOnEscape':false,'modal':true,'resizable':true,'dialogClass':'vboxDialogContent','draggable':true,'buttons':buttons,'title':$(elm).parent().siblings().first().html()});
}
/* Edit property that has a text box */
function vboxExportAppliancePropEdit(evt,elm) {
var input = $('<input />').attr({'type':'text','class':'vboxText'}).css({'width':($(this).innerWidth()-12)+'px','margin':'0px'}).val($('<div />').html($(this).children().first().html()).text()).blur(function(){
var v = $(this).val();
var p = $(this).parent();
var d = vboxDivOverflowHidden(p);
$(this).remove();
$(d).html($('<div />').text(v).html());
$(p).html('').append(d);
}).keydown(function(e){if(e.keyCode == 13) $(this).trigger('blur');});
$(this).html('').append(input).children().first().focus();
}
</script>