Statistics
| Branch: | Tag: | Revision:

root / ui / templates / machines.html @ 0604f74f

History | View | Annotate | Download (16.4 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="" />
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="" 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
<! -- TODO: remove and put into the Create VM from the wizard -->
178
<a href="#" class="post-create">Create VM</a>
179

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

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

204
function update() {
205

206
    $(".running").text('');
207
    $(".terminated").text('');
208
    $("ul#standard-images").text('');
209
    $("ul#custom-images").text('');
210

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

219
                var machine = $("#machine-template").clone().attr("id", server.id).fadeIn("slow");
220
                machine.find("input[type='checkbox']").attr("id", "input-" + server.id);
221
                machine.find("input[type='checkbox']").attr("class", server.status);
222
                machine.find("a.name span.name").text(server.name);
223
                machine.find("img.logo").attr("src","static/machines/"+image_tags[server.imageId]+'.png');
224
                machine.find("img.list-logo").attr("src","static/os_logos/"+image_tags[server.imageId]+'.png');
225
                machine.find("img.list-logo").attr("title",image_tags[server.imageId]);
226
                machine.find("span.imagetag").text(image_tags[server.imageId]);
227

228
                machine.find("a.ip span.public").text(String(server.addresses.public).replace(',',' '));            
229

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

257

258
    $.ajax({
259
        url: '/api/v1.0/images/detail',
260
        type: "GET",
261
    //    async: false,
262
        dataType: "json",
263
        success: function(data) {
264
            $.each(data.images, function(i,image){
265
                var img = $('#image-template').clone().attr("id","img-"+image.id).fadeIn("slow");
266
                img.find("label").attr('for',"img-radio-" + image.id);
267
                img.find(".image-title").text(image.name);
268
                img.find("input.radio").attr('id',"img-radio-" + image.id);
269
                if (i==0) img.find("input.radio").attr("checked","checked"); 
270
                img.find("img.image-logo").attr('src','static/os_logos/'+image_tags[image.id]+'.png');
271
                if (image.serverId) {
272
                    img.appendTo("ul#custom-images");
273
                } else {
274
                    img.appendTo("ul#standard-images");
275
                }
276
            });
277
        }
278
    });
279

280
//TESTING $.ajax POST+DELETE. api/handlers.py/ServerHandler and ServerActionHandler receive these calls
281
//DELETE is working, while POST is not (maybe this has to do with piston+django csrf?
282
/*
283
    $.ajax({
284
        url: '/api/v1.0/servers/1234/action',
285
        type: "POST",
286
        data: {
287
                  "reboot": {
288
                      "type" : "HARD"
289
                  }
290
               },
291
        dataType: "json",
292
        success: function() {
293
                            }
294
            });
295

296

297

298
    $.ajax({
299
        url: '/api/v1.0/servers/1234',
300
        type: "DELETE",
301
    //    async: false,
302
        dataType: "json",
303
        success: function(data) {
304
}
305
           });
306
*/
307
//DELETE TILL HERE
308
}
309

310

311
update();
312

313
// switch to list view
314
$("#list").click(function(event){
315
    $("div.standard#machinesview").load($("#list").attr("href"));
316
    $("a#standard")[0].className += ' activelink'
317
    this.style.color = '#5f8dd3';
318
    update(); 
319
    return false;
320
});
321

322
$("a#standard").click(function(event){
323
    href=$("a#standard").attr("href");
324
    $("div.pane#machines-pane").load(href);
325
    //$("a#standard")[0].className += ' activelink'
326
    //this.style.color = '#5f8dd3';
327
    return false;
328
});
329

330
$("ul.tabs").tabs("div.panes ul");
331

332
$(":range").rangeinput({progress:true});
333

334
function disableSliders() {
335
    $("#cpu").attr('disabled',true);
336
    $("#ram").attr('disabled',true);
337
    $("#storage").attr('disabled',true);
338
}
339

340
$("#custom").click(function(event){
341
    $("#cpu").attr('disabled',false);
342
    $("#ram").attr('disabled',false);
343
    $("#storage").attr('disabled',false);
344
    $("strong.sliders").style = 'color: #778899;';
345
});
346

347
$("#small").click(function(event){
348
    $("#cpu").data('rangeinput').setValue(1);
349
    $("#ram").data('rangeinput').setValue(256);
350
    $("#storage").data('rangeinput').setValue(5);
351
});
352

353
$("#medium").click(function(event){
354
    $("#cpu").data('rangeinput').setValue(4);
355
    $("#ram").data('rangeinput').setValue(1024);
356
    $("#storage").data('rangeinput').setValue(30);
357
});
358

359
$("#large").click(function(event){
360
    $("#cpu").data('rangeinput').setValue(8);
361
    $("#ram").data('rangeinput').setValue(4096);
362
    $("#storage").data('rangeinput').setValue(80);
363
});
364

365
$("#cancel").click(function(event){
366
    $("a#create[rel]").overlay().close();
367
});
368

369
$("#start").click(function(event){
370
    var triggers = $("a#notify").overlay({
371
            // some mask tweaks suitable for modal dialogs
372
            mask: {
373
                    color: '#ebecff',
374
                    opacity: '0.9'
375
            },
376
        top: 'center',
377
            closeOnClick: false,
378
        oneInstance: false,
379
        load: true,
380
        onClose: function(event){
381
            $("div.pane#machines-pane").load($("a#standard").attr("href"));
382
        }
383
    });
384
    $("#wizard").hide();
385
    update();
386
});
387

388
$("a#create").click(function(event){
389
    $("#wizard").scrollable().begin();
390
});
391

392
$("#cpu").change(function(event){
393
    $("#custom").click();
394
});
395

396
$("#ram").change(function(event){
397
    $("#custom").click();
398
});
399

400
$("#storage").change(function(event){
401
    $("#custom").click();
402
});
403

404
$(function() { 
405
    $("a#create[rel]").overlay({mask: '#000', effect: 'default', top: '5%', oneInstance: false, closeOnClick: false});
406
});
407

408
$(function() {
409
    var root = $("#wizard").scrollable();
410

411
    // some variables that we need
412
    var api = root.scrollable();
413

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

440
    // if tab is pressed on the next button seek to next page
441
    root.find("button.next").keydown(function(e) {
442
            if (e.keyCode == 9) {
443
                    // seeks to next tab by executing our validation routine
444
                    api.next();
445
                    e.preventDefault();
446
            }
447
    });
448
// ]]>
449
});
450

451
// create action
452
$(".post-create").click(function() {
453
    $.ajax({
454
        url: '/api/v1.0/servers',
455
        type: "POST",
456
        data: {
457
            "create": {"foo" : "foo"}
458
            },
459
        //TODO: get the real data
460
        //async: false,
461
        dataType: "json",
462
        success: function() {}
463
    });
464
});
465
</script>