Statistics
| Branch: | Tag: | Revision:

root / ui / templates / machines.html @ 912bf2a1

History | View | Annotate | Download (15.6 kB)

1
{% load i18n %}
2

    
3
<div id="machines" class="seperator"></div>
4

    
5
<a id="create" rel="#wizard" href="#">{% trans "Create New +" %}</a>
6
<a id="notify" rel="#misc" href="#"></a>
7
<div id="view-select">
8
    <a id="standard" class="current" href="/machines">#</a>
9
    <span class="view-seperator">|</span>
10
    <a id="list" href="/machines/list">=</a>
11
</div>
12

    
13
<div id="machinesview" class="standard">
14
    <div id="spinner"></div>
15
    <div class="machine" id="machine-template" style="display:none">
16
        <div class="state">
17
            <div class="status">{% trans "Running" %}</div>
18
            <div class="indicator"></div>
19
            <div class="indicator"></div>
20
            <div class="indicator"></div>
21
            <div class="indicator"></div>
22
        </div>
23
        <img class="logo" src="path/to/logos" />
24
        <a href="#" class="name">
25
            <h5>Νame: <span class="name">node.name</span><span class="rename"></span></h5>
26
        </a>
27
        <a href="#" class="ip">
28
            <h5>IP: <span class="public">node.public_ip</span></h5>
29
        </a>
30
        <h5 class="settings">
31
            {% trans "Show:" %} <a href="#">{% trans "disks" %}</a> | <a href="#">{% trans "networks" %}</a> | <a href="#">{% trans "group" %}</a>
32
        </h5>
33
        <div class="actions">
34
            <a href="#" class="action">{% trans "Reboot" %}</a>
35
            <a href="#" class="action">{% trans "Shutdown" %}</a>
36
            <a href="#" class="more">{% trans "more &hellip;" %}</a>
37
        </div>
38
        <div class="seperator"></div>
39
    </div>
40

    
41
    <div class="running"></div>
42
    <div id="mini" class="seperator"></div>
43
    <div class="terminated"></div>
44
</div>
45

    
46
<div id="machines" class="seperator"></div>
47

    
48
<!-- the form -->
49
<form action="#">
50
        <!-- scrollable root element -->
51
        <div class="modal" id="wizard">
52
                <!-- status bar -->
53
                <ul id="status">
54
                        <li class="active"><strong>1.</strong> {% trans "Image" %}</li>
55
                        <li><strong>2.</strong> {% trans "Machine" %}</li>
56
                        <li><strong>3.</strong> {% trans "Review" %}</li>
57
                </ul>
58
                <!-- scrollable items -->
59
                <div class="items">
60
                        <!-- pages -->
61
                        <div class="page">
62
                <h2>{% trans "Select an OS" %}</h2>
63
                <ul class="tabs">
64
                    <li><a href="#">{% trans "standard" %}</a></li>
65
                    <li><a href="#">{% trans "custom" %}</a></li>
66
                </ul>
67
                <div class="panes">
68
                            <li id="image-template" style="display:none">
69
                                    <label for="image.id"> 
70
                            <a><div class="image">
71
                                <img src="static/os_logos/image.logo" class="image-logo"/>
72
                                <strong class="image-title">image.title</strong>
73
                                <input class="radio" type="radio" name="image-id" id="image-id" />
74
                                <br />
75
                                <span class="description">image.description</span> 
76
                                <span class="size">?? MB</span>
77
                                
78
                            </div></a>
79
                                    </label>
80
                            </li>
81
                    <ul class="pane" id="standard-images">
82
                                            <!-- standard images -->
83
                                    </ul>
84
                    <ul class="pane" id="custom-images">
85
                                            <!-- custom images -->
86

    
87
                    </ul>
88
                </div>
89
                                <button type="button" class="prev" id="cancel">{% trans "Cancel" %}</button>
90
                                <button type="button" class="next right">{% trans "Next" %} &raquo;</button>
91
            </div>
92
                        <div class="page">
93
                                <h2>{% trans "Select CPU, RAM and storage" %}</h2>
94
                <ul>
95
                    <li>
96
                        <div class="machine-type">
97
                            <label for="small">
98
                                <input type="radio" id="small" name="machine-type" value="small" checked="true" />
99
                                <strong>{% trans "small" %}</strong>
100
                            </label>
101
                        </div>
102
                        <div class="machine-type">      
103
                            <label for="medium">
104
                                <input type="radio" id="medium" name="machine-type" value="medium" />                  
105
                                <strong>{% trans "medium" %}</strong>
106
                            </label>
107
                        </div>
108
                        <div class="machine-type">
109
                            <label for="large">
110
                                <input type="radio" id="large" name="machine-type" value="large" />
111
                                <strong>{% trans "large" %}</strong>
112
                            </label>
113
                        </div>
114
                        <div class="machine-type">
115
                            <label for="custom">
116
                                <input type="radio" name="machine-type" id="custom" value="large" />
117
                                <strong>{% trans "custom" %}</strong>
118
                            </label>
119
                        </div>
120
                    </li>
121
                    <li>
122
                                    <label><strong class="sliders">CPU (cores)</strong></label>
123
                        <input type="range" id="cpu" value="1" max="8" min="1" />
124
                    </li>
125
                    <li>
126
                                    <label><strong class="sliders">RAM (MB)</strong></label>
127
                        <input type="range" id="ram" value="256" max="2048" min="256" step="256" />
128
                    </li>
129
                    <li>
130
                                <label><strong class="sliders">Storage (GB)</strong></label>
131
                        <input type="range" id="storage" value="5" step="1" max="100" min="2" />
132
                    </li>
133
                    <li>
134
                        <div class="cost">
135
                            {% trans "Cost per hour:" %} 20 {% trans "credits" %} | {% trans "Credits currently in account:" %} 10.000
136
                        </div>
137
                    </li>
138
                </ul>
139
                                <button type="button" class="prev">&laquo; {% trans "Back" %}</button>
140
                                <button type="button" class="next right">{% trans "Next" %} &raquo;</button>
141
            </div>
142
                        <div class="page">
143
                                <h2>{% trans "Confirm your settings" %}</h2>
144
                <ul>
145
                    <li class="required">
146
                        <label>
147
                            <strong>Machine name</strong>
148
                            <input type="text" class="text" name="machine_name" value="My Ubuntu 10.04 x86_64 server"/>
149
                        </label>
150
                    </li>
151
                    <li>
152
                        <strong>{% trans "Image:" %}</strong> <span>Ubuntu 10.04 x86_64 server</span>
153
                    </li>
154
                    <li>
155
                        <strong>{% trans "CPU:" %}</strong> <span>2 cores</span>
156
                    </li>
157
                    <li>
158
                        <strong>{% trans "RAM:" %}</strong> <span>1024MB</span>
159
                    </li>
160
                    <li>
161
                        <strong>{% trans "Storage:" %}</strong> <span>10GB</span>
162
                    </li>
163
                    <li>
164
                        <strong>{% trans "Cost per hour:" %}</strong> <span>20 {% trans "credits" %}</span>
165
                    </li>
166
                    <li>
167
                        <strong>{% trans "Remaining credits:" %}</strong> <span>10.000</span>
168
                    </li>
169
                </ul>
170
                                <button type="button" class="prev">&laquo; {% trans "Back" %}</button>
171
                                <button type="button" class="next right" id="start">{% trans "Create VM" %}</button>        
172
            </div>
173
                </div>
174
        </div>
175
</form>
176

    
177
<div class="modal" id="misc">
178
    <h3>Your VM is being created!</h3>
179
    <p>{% trans "Your password is:" %}<strong> sdeEFre</strong></p>
180
    <p>{% trans "Please copy this! Without it you can not connect to your VM." %}</p>
181
</div>
182

    
183
<script>
184
// <![CDATA[ 
185
var image_tags = {
186
                1: 'archlinux',
187
                2: 'centos',
188
                3: 'debian',
189
                4: 'freebsd',
190
                5: 'gentoo',
191
                6: 'netbsd',
192
                7: 'openbsd',
193
                8: 'redhat',
194
                9: 'slackware',
195
                10: 'suse',
196
                11: 'ubuntu',
197
                12: 'windows',
198
                20: 'ubuntu',
199
               };
200

201
function update() {
202

203
    $(".running").text('');
204
    $(".terminated").text('');
205
    $("ul#standard-images").text('');
206
    $("ul#custom-images").text('');
207

208
    $.ajax({
209
        url: '/api/v1.0/servers/detail',
210
        type: "GET",
211
    //    async: false,
212
        dataType: "json",
213
        success: function(data) {
214
            $.each(data.servers, function(i,server){
215

216
                var machine = $("#machine-template").clone().attr("id",server.id).fadeIn("slow");
217
                machine.find("a.name span.name").text(server.name);
218
                machine.find("img.logo").attr("src","static/machines/"+image_tags[server.imageId]+'.png');
219
                machine.find("img.list-logo").attr("src","static/os_logos/"+image_tags[server.imageId]+'.png');
220
                machine.find("a.ip span.public").text(String(server.addresses.public));            
221

222
                if (server.status == 'PE_VM_MIGRATING'){
223
                    machine.find(".status").text('Building');
224
                    machine.appendTo(".running");
225
                } else if (server.status == 'PE_VM_RUNNING') {
226
                    machine.find(".status").text('Running');
227
                    machine.appendTo(".running");
228
                } else if (server.status == 'PE_VM_SUSPENDED') {
229
                    machine.find(".status").text('Terminated');
230
                    machine.find("img.logo").attr("src","static/machines/"+image_tags[server.imageId]+'-off.png');
231
                    machine.appendTo(".terminated");
232
                    $("#mini.seperator").fadeIn("slow");
233
                } else {
234
                    machine.find(".status").text('Unknown');
235
                    machine.find("img.logo").attr("src","static/machines/"+image_tags[server.imageId]+'-off.png');
236
                    machine.appendTo(".terminated");
237
                }
238
            });
239
            $("div.machine:last-child").find("div.seperator").hide();
240
            $("#spinner").hide();
241
            $(".list table").tablesorter({ 
242
                headers: { 0: { sorter: false}, 1: {sorter: false} }, 
243
                sortMultiSortKey: "ctrlKey" }).show();
244
            $(".list .actions").show();
245
        }
246
    });
247

248
    $.ajax({
249
        url: '/api/v1.0/images/detail',
250
        type: "GET",
251
    //    async: false,
252
        dataType: "json",
253
        success: function(data) {
254
            $.each(data.images, function(i,image){
255
                var img = $('#image-template').clone().attr("id","img-"+image.id).fadeIn("slow");
256
                img.find("label").attr('for',"img-radio-" + image.id);
257
                img.find(".image-title").text(image.name);
258
                img.find("input.radio").attr('id',"img-radio-" + image.id);
259
                if (i==0) img.find("input.radio").attr("checked","checked"); 
260
                img.find("img.image-logo").attr('src','static/os_logos/'+image_tags[image.id]+'.png');
261
                if (image.serverId) {
262
                    img.appendTo("ul#custom-images");
263
                } else {
264
                    img.appendTo("ul#standard-images");
265
                }
266
            });
267
        }
268
    });
269

270
//TESTING $.ajax POST+DELETE. api/handlers.py/ServerHandler and ServerActionHandler receive these calls
271
//DELETE is working, while POST is not (maybe this has to do with piston+django csrf?
272

273
    $.ajax({
274
        url: '/api/v1.0/servers/1234/action',
275
        type: "POST",
276
        data: {
277
                  "reboot": {
278
                      "type" : "HARD"
279
                  }
280
               },
281
        dataType: "json",
282
        success: function() {
283
                            }
284
            });
285

286

287

288
    $.ajax({
289
        url: '/api/v1.0/servers/1234',
290
        type: "DELETE",
291
    //    async: false,
292
        dataType: "json",
293
        success: function(data) {
294
}
295
           });
296

297
//DELETE TILL HERE
298
}
299

300

301

302
update();
303

304
$("#list").click(function(event){
305
    $("div.standard#machinesview").load($("#list").attr("href"));
306
    $("a#standard")[0].className += ' activelink'
307
    this.style.color = '#5f8dd3';
308
    update(); 
309
    return false;
310
});
311

312
$("a#standard").click(function(event){
313
    href=$("a#standard").attr("href");
314
    $("div.pane#machines-pane").load(href);
315
    //$("a#standard")[0].className += ' activelink'
316
    //this.style.color = '#5f8dd3';
317
    return false;
318
});
319

320
$("ul.tabs").tabs("div.panes ul");
321

322
$(":range").rangeinput({progress:true});
323

324
function disableSliders() {
325
    $("#cpu").attr('disabled',true);
326
    $("#ram").attr('disabled',true);
327
    $("#storage").attr('disabled',true);
328
}
329

330
$("#custom").click(function(event){
331
    $("#cpu").attr('disabled',false);
332
    $("#ram").attr('disabled',false);
333
    $("#storage").attr('disabled',false);
334
    $("strong.sliders").style = 'color: #778899;';
335
});
336

337
$("#small").click(function(event){
338
    $("#cpu").data('rangeinput').setValue(1);
339
    $("#ram").data('rangeinput').setValue(256);
340
    $("#storage").data('rangeinput').setValue(5);
341
});
342

343
$("#medium").click(function(event){
344
    $("#cpu").data('rangeinput').setValue(4);
345
    $("#ram").data('rangeinput').setValue(1024);
346
    $("#storage").data('rangeinput').setValue(30);
347
});
348

349
$("#large").click(function(event){
350
    $("#cpu").data('rangeinput').setValue(8);
351
    $("#ram").data('rangeinput').setValue(4096);
352
    $("#storage").data('rangeinput').setValue(80);
353
});
354

355
$("#cancel").click(function(event){
356
    $("a#create[rel]").overlay().close();
357
});
358

359
$("#start").click(function(event){
360
    var triggers = $("a#notify").overlay({
361
            // some mask tweaks suitable for modal dialogs
362
            mask: {
363
                    color: '#ebecff',
364
                    opacity: '0.9'
365
            },
366
        top: 'center',
367
            closeOnClick: false,
368
        oneInstance: false,
369
        load: true,
370
        onClose: function(event){
371
            $("div.pane#machines-pane").load($("a#standard").attr("href"));
372
        }
373
    });
374
    $("#wizard").hide();
375
    update();
376
});
377

378
$("a#create").click(function(event){
379
    $("#wizard").scrollable().begin();
380
});
381

382
$("#cpu").change(function(event){
383
    $("#custom").click();
384
});
385

386
$("#ram").change(function(event){
387
    $("#custom").click();
388
});
389

390
$("#storage").change(function(event){
391
    $("#custom").click();
392
});
393

394
$(function() { 
395
    $("a#create[rel]").overlay({mask: '#000', effect: 'default', top: '5%', oneInstance: false, closeOnClick: false});
396
});
397

398
$(function() {
399
    var root = $("#wizard").scrollable();
400

401
    // some variables that we need
402
    var api = root.scrollable();
403

404
    // rangeinput with default configuration
405
    // validation logic is done inside the onBeforeSeek callback
406
    api.onBeforeSeek(function(event, i) {
407
            // we are going 1 step backwards so no need for validation
408
            if (api.getIndex() < i) {
409
             // 1. get current page
410
                     var page = root.find(".page").eq(api.getIndex()),
411
                         // 2. .. and all required fields inside the page
412
                         inputs = page.find(".required :input").removeClass("error"),
413
                         // 3. .. which are empty
414
                         empty = inputs.filter(function() {
415
                                return $(this).val().replace(/\s*/g, '') == '';
416
                         });
417
                     // if there are empty fields, then
418
                    if (empty.length) {
419
                            // add a CSS class name "error" for empty & required fields
420
                            empty.addClass("error");
421
                            // cancel seeking of the scrollable by returning false
422
                            return false;
423
                    // everything is good
424
                    } 
425
            }
426
            // update status bar
427
            $("#status li").removeClass("active").eq(i).addClass("active");
428
    });
429

430
    // if tab is pressed on the next button seek to next page
431
    root.find("button.next").keydown(function(e) {
432
            if (e.keyCode == 9) {
433
                    // seeks to next tab by executing our validation routine
434
                    api.next();
435
                    e.preventDefault();
436
            }
437
    });
438
// ]]>
439
});
440
</script>
441