Statistics
| Branch: | Tag: | Revision:

root / image_creator / dialog_menu.py @ 5e18a927

History | View | Annotate | Download (29.4 kB)

1
# -*- coding: utf-8 -*-
2
#
3
# Copyright 2012 GRNET S.A. All rights reserved.
4
#
5
# Redistribution and use in source and binary forms, with or
6
# without modification, are permitted provided that the following
7
# conditions are met:
8
#
9
#   1. Redistributions of source code must retain the above
10
#      copyright notice, this list of conditions and the following
11
#      disclaimer.
12
#
13
#   2. Redistributions in binary form must reproduce the above
14
#      copyright notice, this list of conditions and the following
15
#      disclaimer in the documentation and/or other materials
16
#      provided with the distribution.
17
#
18
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
19
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
22
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
25
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29
# POSSIBILITY OF SUCH DAMAGE.
30
#
31
# The views and conclusions contained in the software and
32
# documentation are those of the authors and should not be
33
# interpreted as representing official policies, either expressed
34
# or implied, of GRNET S.A.
35

    
36
"""This module implements the "expert" mode of the dialog-based version of
37
snf-image-creator.
38
"""
39

    
40
import os
41
import textwrap
42
import StringIO
43
import json
44

    
45
from image_creator import __version__ as version
46
from image_creator.util import MD5, FatalError
47
from image_creator.output.dialog import GaugeOutput, InfoBoxOutput
48
from image_creator.kamaki_wrapper import Kamaki, ClientError
49
from image_creator.help import get_help_file
50
from image_creator.dialog_util import SMALL_WIDTH, WIDTH, \
51
    update_background_title, confirm_reset, confirm_exit, Reset, \
52
    extract_image, extract_metadata_string, add_cloud, edit_cloud
53

    
54
CONFIGURATION_TASKS = [
55
    ("Partition table manipulation", ["FixPartitionTable"],
56
        ["linux", "windows"]),
57
    ("File system resize",
58
        ["FilesystemResizeUnmounted", "FilesystemResizeMounted"],
59
        ["linux", "windows"]),
60
    ("Swap partition configuration", ["AddSwap"], ["linux"]),
61
    ("SSH keys removal", ["DeleteSSHKeys"], ["linux"]),
62
    ("Temporal RDP disabling", ["DisableRemoteDesktopConnections"],
63
        ["windows"]),
64
    ("SELinux relabeling at next boot", ["SELinuxAutorelabel"], ["linux"]),
65
    ("Hostname/Computer Name assignment", ["AssignHostname"],
66
        ["windows", "linux"]),
67
    ("Password change", ["ChangePassword"], ["windows", "linux"]),
68
    ("File injection", ["EnforcePersonality"], ["windows", "linux"])
69
]
70

    
71

    
72
class MetadataMonitor(object):
73
    """Monitors image metadata chages"""
74
    def __init__(self, session, meta):
75
        self.session = session
76
        self.meta = meta
77

    
78
    def __enter__(self):
79
        self.old = {}
80
        for (k, v) in self.meta.items():
81
            self.old[k] = v
82

    
83
    def __exit__(self, type, value, traceback):
84
        d = self.session['dialog']
85

    
86
        altered = {}
87
        added = {}
88

    
89
        for (k, v) in self.meta.items():
90
            if k not in self.old:
91
                added[k] = v
92
            elif self.old[k] != v:
93
                altered[k] = v
94

    
95
        if not (len(added) or len(altered)):
96
            return
97

    
98
        msg = "The last action has changed some image properties:\n\n"
99
        if len(added):
100
            msg += "New image properties:\n"
101
            for (k, v) in added.items():
102
                msg += '    %s: "%s"\n' % (k, v)
103
            msg += "\n"
104
        if len(altered):
105
            msg += "Updated image properties:\n"
106
            for (k, v) in altered.items():
107
                msg += '    %s: "%s" -> "%s"\n' % (k, self.old[k], v)
108
            msg += "\n"
109

    
110
        self.session['metadata'].update(added)
111
        self.session['metadata'].update(altered)
112
        d.msgbox(msg, title="Image Property Changes", width=SMALL_WIDTH)
113

    
114

    
115
def upload_image(session):
116
    """Upload the image to the storage service"""
117
    d = session["dialog"]
118
    image = session['image']
119
    meta = session['metadata']
120
    size = image.size
121

    
122
    if "account" not in session:
123
        d.msgbox("You need to select a valid cloud before you can upload "
124
                 "images to it", width=SMALL_WIDTH)
125
        return False
126

    
127
    while 1:
128
        if 'upload' in session:
129
            init = session['upload']
130
        elif 'OS' in meta:
131
            init = "%s.diskdump" % meta['OS']
132
        else:
133
            init = ""
134
        (code, answer) = d.inputbox("Please provide a filename:", init=init,
135
                                    width=WIDTH)
136

    
137
        if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
138
            return False
139

    
140
        filename = answer.strip()
141
        if len(filename) == 0:
142
            d.msgbox("Filename cannot be empty", width=SMALL_WIDTH)
143
            continue
144

    
145
        kamaki = Kamaki(session['account'], None)
146
        overwrite = []
147
        for f in (filename, "%s.md5sum" % filename, "%s.meta" % filename):
148
            if kamaki.object_exists(f):
149
                overwrite.append(f)
150

    
151
        if len(overwrite) > 0:
152
            if d.yesno("The following storage service object(s) already "
153
                       "exist(s):\n%s\nDo you want to overwrite them?" %
154
                       "\n".join(overwrite), width=WIDTH, defaultno=1):
155
                continue
156

    
157
        session['upload'] = filename
158
        break
159

    
160
    gauge = GaugeOutput(d, "Image Upload", "Uploading...")
161
    try:
162
        out = image.out
163
        out.add(gauge)
164
        kamaki.out = out
165
        try:
166
            if 'checksum' not in session:
167
                md5 = MD5(out)
168
                session['checksum'] = md5.compute(image.device, size)
169

    
170
            try:
171
                # Upload image file
172
                with open(image.device, 'rb') as f:
173
                    session["pithos_uri"] = \
174
                        kamaki.upload(f, size, filename,
175
                                      "Calculating block hashes",
176
                                      "Uploading missing blocks")
177
                # Upload md5sum file
178
                out.output("Uploading md5sum file...")
179
                md5str = "%s %s\n" % (session['checksum'], filename)
180
                kamaki.upload(StringIO.StringIO(md5str), size=len(md5str),
181
                              remote_path="%s.md5sum" % filename)
182
                out.success("done")
183

    
184
            except ClientError as e:
185
                d.msgbox(
186
                    "Error in storage service client: %s" % e.message,
187
                    title="Storage Service Client Error", width=SMALL_WIDTH)
188
                if 'pithos_uri' in session:
189
                    del session['pithos_uri']
190
                return False
191
        finally:
192
            out.remove(gauge)
193
    finally:
194
        gauge.cleanup()
195

    
196
    d.msgbox("Image file `%s' was successfully uploaded" % filename,
197
             width=SMALL_WIDTH)
198

    
199
    return True
200

    
201

    
202
def register_image(session):
203
    """Register image with the compute service"""
204
    d = session["dialog"]
205

    
206
    is_public = False
207

    
208
    if "account" not in session:
209
        d.msgbox("You need to select a valid cloud before you "
210
                 "can register an images with it", width=SMALL_WIDTH)
211
        return False
212

    
213
    if "pithos_uri" not in session:
214
        d.msgbox("You need to upload the image to the cloud before you can "
215
                 "register it", width=SMALL_WIDTH)
216
        return False
217

    
218
    while 1:
219
        (code, answer) = d.inputbox("Please provide a registration name:",
220
                                    width=WIDTH)
221
        if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
222
            return False
223

    
224
        name = answer.strip()
225
        if len(name) == 0:
226
            d.msgbox("Registration name cannot be empty", width=SMALL_WIDTH)
227
            continue
228

    
229
        ret = d.yesno("Make the image public?\\nA public image is accessible "
230
                      "by every user of the service.", defaultno=1,
231
                      width=WIDTH)
232
        if ret not in (0, 1):
233
            continue
234

    
235
        is_public = True if ret == 0 else False
236

    
237
        break
238

    
239
    metadata = {}
240
    metadata.update(session['metadata'])
241
    if 'task_metadata' in session:
242
        for key in session['task_metadata']:
243
            metadata[key] = 'yes'
244

    
245
    img_type = "public" if is_public else "private"
246
    gauge = GaugeOutput(d, "Image Registration", "Registering image...")
247
    try:
248
        out = session['image'].out
249
        out.add(gauge)
250
        try:
251
            try:
252
                out.output("Registering %s image with the cloud..." % img_type)
253
                kamaki = Kamaki(session['account'], out)
254
                result = kamaki.register(name, session['pithos_uri'], metadata,
255
                                         is_public)
256
                out.success('done')
257
                # Upload metadata file
258
                out.output("Uploading metadata file...")
259
                metastring = unicode(json.dumps(result, ensure_ascii=False))
260
                kamaki.upload(StringIO.StringIO(metastring),
261
                              size=len(metastring),
262
                              remote_path="%s.meta" % session['upload'])
263
                out.success("done")
264
                if is_public:
265
                    out.output("Sharing metadata and md5sum files...")
266
                    kamaki.share("%s.meta" % session['upload'])
267
                    kamaki.share("%s.md5sum" % session['upload'])
268
                    out.success('done')
269
            except ClientError as e:
270
                d.msgbox("Error in storage service client: %s" % e.message)
271
                return False
272
        finally:
273
            out.remove(gauge)
274
    finally:
275
        gauge.cleanup()
276

    
277
    d.msgbox("%s image `%s' was successfully registered with the cloud as `%s'"
278
             % (img_type.title(), session['upload'], name), width=SMALL_WIDTH)
279
    return True
280

    
281

    
282
def modify_clouds(session):
283
    """Modify existing cloud accounts"""
284
    d = session['dialog']
285

    
286
    while 1:
287
        clouds = Kamaki.get_clouds()
288
        if not len(clouds):
289
            if not add_cloud(session):
290
                break
291
            continue
292

    
293
        choices = []
294
        for (name, cloud) in clouds.items():
295
            descr = cloud['description'] if 'description' in cloud else ''
296
            choices.append((name, descr))
297

    
298
        (code, choice) = d.menu(
299
            "In this menu you can edit existing cloud accounts or add new "
300
            " ones. Press <Edit> to edit an existing account or <Add> to add "
301
            " a new one. Press <Back> or hit <ESC> when done.", height=18,
302
            width=WIDTH, choices=choices, menu_height=10, ok_label="Edit",
303
            extra_button=1, extra_label="Add", cancel="Back", help_button=1,
304
            title="Clouds")
305

    
306
        if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
307
            return True
308
        elif code == d.DIALOG_OK:  # Edit button
309
            edit_cloud(session, choice)
310
        elif code == d.DIALOG_EXTRA:  # Add button
311
            add_cloud(session)
312

    
313

    
314
def delete_clouds(session):
315
    """Delete existing cloud accounts"""
316
    d = session['dialog']
317

    
318
    choices = []
319
    for (name, cloud) in Kamaki.get_clouds().items():
320
        descr = cloud['description'] if 'description' in cloud else ''
321
        choices.append((name, descr, 0))
322

    
323
    if len(choices) == 0:
324
        d.msgbox("No available clouds to delete!", width=SMALL_WIDTH)
325
        return True
326

    
327
    (code, to_delete) = d.checklist("Choose which cloud accounts to delete:",
328
                                    choices=choices, width=WIDTH)
329
    to_delete = map(lambda x: x.strip('"'), to_delete)  # Needed for OpenSUSE
330

    
331
    if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
332
        return False
333

    
334
    if not len(to_delete):
335
        d.msgbox("Nothing selected!", width=SMALL_WIDTH)
336
        return False
337

    
338
    if not d.yesno("Are you sure you want to remove the selected cloud "
339
                   "accounts?", width=WIDTH, defaultno=1):
340
        for i in to_delete:
341
            Kamaki.remove_cloud(i)
342
            if 'cloud' in session and session['cloud'] == i:
343
                del session['cloud']
344
                if 'account' in session:
345
                    del session['account']
346
    else:
347
        return False
348

    
349
    d.msgbox("%d cloud accounts were deleted." % len(to_delete),
350
             width=SMALL_WIDTH)
351
    return True
352

    
353

    
354
def kamaki_menu(session):
355
    """Show kamaki related actions"""
356
    d = session['dialog']
357
    default_item = "Cloud"
358

    
359
    if 'cloud' not in session:
360
        cloud = Kamaki.get_default_cloud_name()
361
        if cloud:
362
            session['cloud'] = cloud
363
            session['account'] = Kamaki.get_account(cloud)
364
            if not session['account']:
365
                del session['account']
366
        else:
367
            default_item = "Add/Edit"
368

    
369
    while 1:
370
        cloud = session["cloud"] if "cloud" in session else "<none>"
371
        if 'account' not in session and 'cloud' in session:
372
            cloud += " <invalid>"
373

    
374
        upload = session["upload"] if "upload" in session else "<none>"
375

    
376
        choices = [("Add/Edit", "Add/Edit cloud accounts"),
377
                   ("Delete", "Delete existing cloud accounts"),
378
                   ("Cloud", "Select cloud account to use: %s" % cloud),
379
                   ("Upload", "Upload image to the cloud"),
380
                   ("Register", "Register image with the cloud: %s" % upload)]
381

    
382
        (code, choice) = d.menu(
383
            text="Choose one of the following or press <Back> to go back.",
384
            width=WIDTH, choices=choices, cancel="Back", height=13,
385
            menu_height=5, default_item=default_item,
386
            title="Image Registration Menu")
387

    
388
        if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
389
            return False
390

    
391
        if choice == "Add/Edit":
392
            if modify_clouds(session):
393
                default_item = "Cloud"
394
        elif choice == "Delete":
395
            if delete_clouds(session):
396
                if len(Kamaki.get_clouds()):
397
                    default_item = "Cloud"
398
                else:
399
                    default_time = "Add/Edit"
400
            else:
401
                default_time = "Delete"
402
        elif choice == "Cloud":
403
            default_item = "Cloud"
404
            clouds = Kamaki.get_clouds()
405
            if not len(clouds):
406
                d.msgbox("No clouds available. Please add a new cloud!",
407
                         width=SMALL_WIDTH)
408
                default_item = "Add/Edit"
409
                continue
410

    
411
            if 'cloud' not in session:
412
                session['cloud'] = clouds.keys()[0]
413

    
414
            choices = []
415
            for name, info in clouds.items():
416
                default = 1 if session['cloud'] == name else 0
417
                descr = info['description'] if 'description' in info else ""
418
                choices.append((name, descr, default))
419

    
420
            (code, answer) = d.radiolist("Please select a cloud:",
421
                                         width=WIDTH, choices=choices)
422
            if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
423
                continue
424
            else:
425
                session['account'] = Kamaki.get_account(answer)
426

    
427
                if session['account'] is None:  # invalid account
428
                    if not d.yesno("The cloud %s' is not valid! Would you "
429
                                   "like to edit it?" % answer, width=WIDTH):
430
                        if edit_cloud(session, answer):
431
                            session['account'] = Kamaki.get_account(answer)
432
                            Kamaki.set_default_cloud(answer)
433

    
434
                if session['account'] is not None:
435
                    session['cloud'] = answer
436
                    Kamaki.set_default_cloud(answer)
437
                    default_item = "Upload"
438
                else:
439
                    del session['account']
440
                    del session['cloud']
441
        elif choice == "Upload":
442
            if upload_image(session):
443
                default_item = "Register"
444
            else:
445
                default_item = "Upload"
446
        elif choice == "Register":
447
            if register_image(session):
448
                return True
449
            else:
450
                default_item = "Register"
451

    
452

    
453
def add_property(session):
454
    """Add a new property to the image"""
455
    d = session['dialog']
456

    
457
    while 1:
458
        (code, answer) = d.inputbox("Please provide a name for a new image"
459
                                    " property:", width=WIDTH)
460
        if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
461
            return False
462

    
463
        name = answer.strip()
464
        if len(name) == 0:
465
            d.msgbox("A property name cannot be empty", width=SMALL_WIDTH)
466
            continue
467

    
468
        break
469

    
470
    while 1:
471
        (code, answer) = d.inputbox("Please provide a value for image "
472
                                    "property %s" % name, width=WIDTH)
473
        if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
474
            return False
475

    
476
        value = answer.strip()
477
        if len(value) == 0:
478
            d.msgbox("Value cannot be empty", width=SMALL_WIDTH)
479
            continue
480

    
481
        break
482

    
483
    session['metadata'][name] = value
484

    
485
    return True
486

    
487

    
488
def modify_properties(session):
489
    """Modify an existing image property"""
490
    d = session['dialog']
491

    
492
    while 1:
493
        choices = []
494
        for (key, val) in session['metadata'].items():
495
            choices.append((str(key), str(val)))
496

    
497
        (code, choice) = d.menu(
498
            "In this menu you can edit existing image properties or add new "
499
            "ones. Be careful! Most properties have special meaning and "
500
            "alter the image deployment behaviour. Press <HELP> to see more "
501
            "information about image properties. Press <BACK> when done.",
502
            height=18, width=WIDTH, choices=choices, menu_height=10,
503
            ok_label="Edit", extra_button=1, extra_label="Add", cancel="Back",
504
            help_button=1, title="Image Properties")
505

    
506
        if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
507
            return True
508
        # Edit button
509
        elif code == d.DIALOG_OK:
510
            (code, answer) = d.inputbox("Please provide a new value for the "
511
                                        "image property with name `%s':" %
512
                                        choice,
513
                                        init=session['metadata'][choice],
514
                                        width=WIDTH)
515
            if code not in (d.DIALOG_CANCEL, d.DIALOG_ESC):
516
                value = answer.strip()
517
                if len(value) == 0:
518
                    d.msgbox("Value cannot be empty!")
519
                    continue
520
                else:
521
                    session['metadata'][choice] = value
522
        # ADD button
523
        elif code == d.DIALOG_EXTRA:
524
            add_property(session)
525
        elif code == 'help':
526
            help_file = get_help_file("image_properties")
527
            assert os.path.exists(help_file)
528
            d.textbox(help_file, title="Image Properties", width=70, height=40)
529

    
530

    
531
def delete_properties(session):
532
    """Delete an image property"""
533
    d = session['dialog']
534

    
535
    choices = []
536
    for (key, val) in session['metadata'].items():
537
        choices.append((key, "%s" % val, 0))
538

    
539
    (code, to_delete) = d.checklist("Choose which properties to delete:",
540
                                    choices=choices, width=WIDTH)
541
    to_delete = map(lambda x: x.strip('"'), to_delete)  # needed for OpenSUSE
542

    
543
    # If the user exits with ESC or CANCEL, the returned tag list is empty.
544
    for i in to_delete:
545
        del session['metadata'][i]
546

    
547
    cnt = len(to_delete)
548
    if cnt > 0:
549
        d.msgbox("%d image properties were deleted." % cnt, width=SMALL_WIDTH)
550
        return True
551
    else:
552
        return False
553

    
554

    
555
def exclude_tasks(session):
556
    """Exclude specific tasks from running during image deployment"""
557
    d = session['dialog']
558

    
559
    index = 0
560
    displayed_index = 1
561
    choices = []
562
    mapping = {}
563
    if 'excluded_tasks' not in session:
564
        session['excluded_tasks'] = []
565

    
566
    if -1 in session['excluded_tasks']:
567
        if not d.yesno("Image deployment configuration is disabled. "
568
                       "Do you wish to enable it?", width=SMALL_WIDTH):
569
            session['excluded_tasks'].remove(-1)
570
        else:
571
            return False
572

    
573
    for (msg, task, osfamily) in CONFIGURATION_TASKS:
574
        if session['metadata']['OSFAMILY'] in osfamily:
575
            checked = 1 if index in session['excluded_tasks'] else 0
576
            choices.append((str(displayed_index), msg, checked))
577
            mapping[displayed_index] = index
578
            displayed_index += 1
579
        index += 1
580

    
581
    while 1:
582
        (code, tags) = d.checklist(
583
            text="Please choose which configuration tasks you would like to "
584
                 "prevent from running during image deployment. "
585
                 "Press <No Config> to supress any configuration. "
586
                 "Press <Help> for more help on the image deployment "
587
                 "configuration tasks.",
588
            choices=choices, height=19, list_height=8, width=WIDTH,
589
            help_button=1, extra_button=1, extra_label="No Config",
590
            title="Exclude Configuration Tasks")
591
        tags = map(lambda x: x.strip('"'), tags)  # Needed for OpenSUSE
592

    
593
        if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
594
            return False
595
        elif code == d.DIALOG_HELP:
596
            help_file = get_help_file("configuration_tasks")
597
            assert os.path.exists(help_file)
598
            d.textbox(help_file, title="Configuration Tasks",
599
                      width=70, height=40)
600
        # No Config button
601
        elif code == d.DIALOG_EXTRA:
602
            session['excluded_tasks'] = [-1]
603
            session['task_metadata'] = ["EXCLUDE_ALL_TASKS"]
604
            break
605
        elif code == d.DIALOG_OK:
606
            session['excluded_tasks'] = []
607
            for tag in tags:
608
                session['excluded_tasks'].append(mapping[int(tag)])
609

    
610
            exclude_metadata = []
611
            for task in session['excluded_tasks']:
612
                exclude_metadata.extend(CONFIGURATION_TASKS[task][1])
613

    
614
            session['task_metadata'] = map(lambda x: "EXCLUDE_TASK_%s" % x,
615
                                           exclude_metadata)
616
            break
617

    
618
    return True
619

    
620

    
621
def sysprep(session):
622
    """Perform various system preperation tasks on the image"""
623
    d = session['dialog']
624
    image = session['image']
625

    
626
    # Is the image already shrinked?
627
    if 'shrinked' in session and session['shrinked']:
628
        msg = "It seems you have shrinked the image. Running system " \
629
              "preparation tasks on a shrinked image is dangerous."
630

    
631
        if d.yesno("%s\n\nDo you really want to continue?" % msg,
632
                   width=SMALL_WIDTH, defaultno=1):
633
            return
634

    
635
    wrapper = textwrap.TextWrapper(width=WIDTH - 5)
636

    
637
    help_title = "System Preperation Tasks"
638
    sysprep_help = "%s\n%s\n\n" % (help_title, '=' * len(help_title))
639

    
640
    syspreps = image.os.list_syspreps()
641

    
642
    if len(syspreps) == 0:
643
        d.msgbox("No system preparation task available to run!",
644
                 title="System Preperation", width=SMALL_WIDTH)
645
        return
646

    
647
    while 1:
648
        choices = []
649
        index = 0
650
        for sysprep in syspreps:
651
            name, descr = image.os.sysprep_info(sysprep)
652
            display_name = name.replace('-', ' ').capitalize()
653
            sysprep_help += "%s\n" % display_name
654
            sysprep_help += "%s\n" % ('-' * len(display_name))
655
            sysprep_help += "%s\n\n" % wrapper.fill(" ".join(descr.split()))
656
            enabled = 1 if sysprep.enabled else 0
657
            choices.append((str(index + 1), display_name, enabled))
658
            index += 1
659

    
660
        (code, tags) = d.checklist(
661
            "Please choose which system preparation tasks you would like to "
662
            "run on the image. Press <Help> to see details about the system "
663
            "preparation tasks.", title="Run system preparation tasks",
664
            choices=choices, width=70, ok_label="Run", help_button=1)
665
        tags = map(lambda x: x.strip('"'), tags)  # Needed for OpenSUSE
666

    
667
        if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
668
            return False
669
        elif code == d.DIALOG_HELP:
670
            d.scrollbox(sysprep_help, width=WIDTH)
671
        elif code == d.DIALOG_OK:
672
            # Enable selected syspreps and disable the rest
673
            for i in range(len(syspreps)):
674
                if str(i + 1) in tags:
675
                    image.os.enable_sysprep(syspreps[i])
676
                else:
677
                    image.os.disable_sysprep(syspreps[i])
678

    
679
            if len([s for s in image.os.list_syspreps() if s.enabled]) == 0:
680
                d.msgbox("No system preperation task is selected!",
681
                         title="System Preperation", width=SMALL_WIDTH)
682
                continue
683

    
684
            infobox = InfoBoxOutput(d, "Image Configuration")
685
            try:
686
                image.out.add(infobox)
687
                try:
688
                    # The checksum is invalid. We have mounted the image rw
689
                    if 'checksum' in session:
690
                        del session['checksum']
691

    
692
                    # Monitor the metadata changes during syspreps
693
                    with MetadataMonitor(session, image.os.meta):
694
                        try:
695
                            image.os.do_sysprep()
696
                            infobox.finalize()
697
                        except FatalError as e:
698
                            title = "System Preparation"
699
                            d.msgbox("System Preparation failed: %s" % e,
700
                                     title=title, width=SMALL_WIDTH)
701
                finally:
702
                    image.out.remove(infobox)
703
            finally:
704
                infobox.cleanup()
705
            break
706
    return True
707

    
708

    
709
def shrink(session):
710
    """Shrink the image"""
711
    d = session['dialog']
712
    image = session['image']
713

    
714
    shrinked = 'shrinked' in session and session['shrinked']
715

    
716
    if shrinked:
717
        d.msgbox("The image is already shrinked!", title="Image Shrinking",
718
                 width=SMALL_WIDTH)
719
        return True
720

    
721
    msg = "This operation will shrink the last partition of the image to " \
722
          "reduce the total image size. If the last partition is a swap " \
723
          "partition, then this partition is removed and the partition " \
724
          "before that is shrinked. The removed swap partition will be " \
725
          "recreated during image deployment."
726

    
727
    if not d.yesno("%s\n\nDo you want to continue?" % msg, width=WIDTH,
728
                   height=12, title="Image Shrinking"):
729
        with MetadataMonitor(session, image.meta):
730
            infobox = InfoBoxOutput(d, "Image Shrinking", height=4)
731
            image.out.add(infobox)
732
            try:
733
                image.shrink()
734
                infobox.finalize()
735
            finally:
736
                image.out.remove(infobox)
737

    
738
        session['shrinked'] = True
739
        update_background_title(session)
740
    else:
741
        return False
742

    
743
    return True
744

    
745

    
746
def customization_menu(session):
747
    """Show image customization menu"""
748
    d = session['dialog']
749

    
750
    choices = [("Sysprep", "Run various image preparation tasks"),
751
               ("Shrink", "Shrink image"),
752
               ("View/Modify", "View/Modify image properties"),
753
               ("Delete", "Delete image properties"),
754
               ("Exclude", "Exclude various deployment tasks from running")]
755

    
756
    default_item = 0
757

    
758
    actions = {"Sysprep": sysprep,
759
               "Shrink": shrink,
760
               "View/Modify": modify_properties,
761
               "Delete": delete_properties,
762
               "Exclude": exclude_tasks}
763
    while 1:
764
        (code, choice) = d.menu(
765
            text="Choose one of the following or press <Back> to exit.",
766
            width=WIDTH, choices=choices, cancel="Back", height=13,
767
            menu_height=len(choices), default_item=choices[default_item][0],
768
            title="Image Customization Menu")
769

    
770
        if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
771
            break
772
        elif choice in actions:
773
            default_item = [entry[0] for entry in choices].index(choice)
774
            if actions[choice](session):
775
                default_item = (default_item + 1) % len(choices)
776

    
777

    
778
def main_menu(session):
779
    """Show the main menu of the program"""
780
    d = session['dialog']
781

    
782
    update_background_title(session)
783

    
784
    choices = [("Customize", "Customize image & cloud deployment options"),
785
               ("Register", "Register image to a cloud"),
786
               ("Extract", "Dump image to local file system"),
787
               ("Reset", "Reset everything and start over again"),
788
               ("Help", "Get help for using snf-image-creator")]
789

    
790
    default_item = "Customize"
791

    
792
    actions = {"Customize": customization_menu, "Register": kamaki_menu,
793
               "Extract": extract_image}
794
    while 1:
795
        (code, choice) = d.menu(
796
            text="Choose one of the following or press <Exit> to exit.",
797
            width=WIDTH, choices=choices, cancel="Exit", height=13,
798
            default_item=default_item, menu_height=len(choices),
799
            title="Image Creator for synnefo (snf-image-creator version %s)" %
800
                  version)
801

    
802
        if code in (d.DIALOG_CANCEL, d.DIALOG_ESC):
803
            if confirm_exit(d):
804
                break
805
        elif choice == "Reset":
806
            if confirm_reset(d):
807
                d.infobox("Resetting snf-image-creator. Please wait...",
808
                          width=SMALL_WIDTH)
809
                raise Reset
810
        elif choice == "Help":
811
            d.msgbox("For help, check the online documentation:\n\nhttp://www"
812
                     ".synnefo.org/docs/snf-image-creator/latest/",
813
                     width=WIDTH, title="Help")
814
        elif choice in actions:
815
            actions[choice](session)
816

    
817
# vim: set sta sts=4 shiftwidth=4 sw=4 et ai :