MainWindow.py :  » GIS » umit » umit-1.0RC » umit » gui » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » GIS » umit 
umit » umit 1.0RC » umit » gui » MainWindow.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2005-2006 Insecure.Com LLC.
# Copyright (C) 2007-2008 Adriano Monteiro Marques
#
# Authors: Adriano Monteiro Marques <adriano@umitproject.org>
#          Cleber Rodrigues <cleber.gnu@gmail.com>
#          Francesco Piccinno <stack.box@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

import os
import gtk
import sys
from os.path import split,isfile,join
import xml.sax.saxutils

from types import StringTypes
from time import time
from tempfile import mktemp

from higwidgets.higwindows import HIGMainWindow
from higwidgets.higdialogs import HIGDialog,HIGAlertDialog
from higwidgets.higlabels import HIGEntryLabel
from higwidgets.higboxes import HIGHBox,HIGVBox

from umit.gui.FileChoosers import ResultsFileChooserDialog
from umit.gui.FileChoosers import SaveResultsFileChooserDialog
from umit.gui.ScanNotebook import ScanNotebook,ScanNotebookPage
from umit.gui.ProfileEditor import ProfileEditor
from umit.gui.ProfileManager import ProfileManager
from umit.gui.Wizard import Wizard
from umit.gui.ProfileManager import ProfileManager
from umit.gui.About import About
from umit.gui.DiffCompare import DiffWindow
from umit.gui.SearchWindow import SearchWindow
from umit.gui.BugReport import BugReport
from umit.gui.SchedulerControl import SchedControl
from umit.gui.SchedulerEdit import SchedSchemaEditor
from umit.gui.SMTPSetup import SMTPSetup

from umit.interfaceeditor.Main import InterfaceEditor

from umit.gui.Help import show_help

from umit.core.Paths import Path
from umit.core.RecentScans import recent_scans
from umit.core.UmitLogging import log
from umit.core.I18N import _
from umit.core.UmitOptionParser import option_parser
from umit.core.UmitConf import SearchConfig
from umit.core.UmitDB import Scans,UmitDB
from umit.core.Utils import amiroot,is_maemo
from umit.core.DataDecay import remove_old_data
import umit.core.Scheduler as Scheduler

from umit.db.XMLStore import XMLStore
from umit.inventory.Viewer import InventoryViewer

from umit.plugin.Window import PluginWindow
from umit.plugin.Engine import PluginEngine

root = amiroot()
UmitMainWindow = None
hildon = None

if is_maemo():
    import hildon
    class UmitMainWindow(hildon.Window):
        def __init__(self):
            hildon.Window.__init__(self)
            self.set_resizable(False)
            self.set_border_width(0)
            self.vbox = gtk.VBox()
            self.vbox.set_border_width(0)
            self.vbox.set_spacing(0)

else:
    class UmitMainWindow(HIGMainWindow):
        def __init__(self):
            HIGMainWindow.__init__(self)
            self.vbox = gtk.VBox()

            screen = self.get_screen()
            if screen.get_width() >= 800 and screen.get_height() >= 600:
                self.set_default_size(760, 570) # (800 - 40, 600 - 30)

class MainWindow(UmitMainWindow):
    def __init__(self):
        UmitMainWindow.__init__(self)
        self.set_title(_("Umit"))

        self._plugin_win = PluginWindow()
        self._icontheme = gtk.IconTheme()
        self.main_accel_group = gtk.AccelGroup()

        self.add_accel_group(self.main_accel_group)

        self.add(self.vbox)

        self.connect('delete-event', self._exit_cb)

        self.schedctrl = SchedControl(None)
        self._create_ui_manager()
        self._create_menubar()
        self._create_toolbar()
        self._create_scan_notebook()
        self._verify_root()

        self.running_ni = False # Running NetworkInventory
        self.running_ie = False # Running InterfaceEditor
        self.running_pm = False # Running ProfileManager

        # These dialogs should be instanciated on demand
        # Unfortunately, due to a GTK bug on the filefilters (or our own
        # stupidity), we are creating/destroying them at each callback
        # invocation. sigh.
        self._profile_filechooser_dialog = None
        self._results_filechooser_dialog = None

        self._prepare_first_scan()

        # Loading files passed as argument
        files = option_parser.get_open_results()
        if len(files) >= 1:
            for file in files:
                self._load(filename=file)
                
        # Create a Window List ( Something like SearchWindow,etc)
        self.wlist = []
        self.niwin = None
        self.uie = None
        self.pm = None
        
    def configure_focus_chain(self):
        self.vbox.set_focus_chain()
        
    def disable_window(self):
        """Disable all windows of Umit Network Scanner.
        After execute this functions you can not play with Umit again"""
        # Disable MainWindow
        self.set_sensitive(False)
        # Disable Window List
        print self.wlist
        for window in self.wlist:
            window.set_sensitive(False)
        # Disable Umit Plugis Window
        self._plugin_win.set_sensitive(False)
        # Disable Network Inventory
        if self.niwin!= None:
            self.niwin.set_sensitive(False)
        # Disable Interface Editor
        if self.uie!=None:
            self.uie.set_sensitive(False)
        # Disable Profile Manager
        if self.pm != None:
            self.pm.set_sensitive(False)
        

    def _verify_root(self):
        if not root:
            non_root = NonRootWarning()
    
    def __remove_wlist(self, widget):
        """Remove Window from list to disable"""
        self.wlist.remove(widget)            
        
    def _get_running_ni(self):
        """
        Return True if there is a Network Inventory open.
        """
        return self.__niwin
    
    def _set_running_ni(self, running):
        """
        Set to True if Network Inventory is running, otherwise, False.
        """
        self.__niwin = running

    def _create_ui_manager(self):
        self.ui_manager = gtk.UIManager()

        # See info on ActionGroup at:
        # * http://www.pygtk.org/pygtk2reference/class-gtkactiongroup.html
        # * http://www.gtk.org/api/2.6/gtk/GtkActionGroup.html
        self.main_action_group = gtk.ActionGroup('MainActionGroup')

        # See info on Action at:
        # * http://www.pygtk.org/pygtk2reference/class-gtkaction.html
        # * http://www.gtk.org/api/2.6/gtk/GtkAction.html

        # Each action tuple can go from 1 to six fields, example:
        # ('Open Scan Results',      -> Name of the action
        #   gtk.STOCK_OPEN,          -> 
        #   _('_Open Scan Results'), -> 
        #   None,
        #   _('Open the results of a previous scan'),
        #   lambda x: True) 

        about_icon = None
        try: about_icon = gtk.STOCK_ABOUT
        except: pass

        self.main_actions = [ \
            # Top level
            ('Scan', None, _('Sc_an'), None), 

            ('Wizard',
             gtk.STOCK_CONVERT,
             _('_Command Wizard'),
             '<Control>i',
             _('Open nmap command constructor wizard'),
             self._wizard_cb),

             ('Save Scan',
              gtk.STOCK_SAVE,
              _('_Save Scan'),
              None,
              _('Save current scan results'),
              self._save_scan_results_cb),

              ('Open Scan',
               gtk.STOCK_OPEN,
               _('_Open Scan'),
               None,
               _('Open the results of a previous scan'),
               self._load_scan_results_cb),


               ('Tools', None, _('_Tools'), None), 

               ('New Scan',
                gtk.STOCK_NEW,
                _('_New Scan'),
                "<Control>T",
                _('Create a new Scan Tab'),
                self._new_scan_cb),

                ('Close Scan',
                 gtk.STOCK_CLOSE,
                 _('Close Scan'),
                 "<Control>w",
                 _('Close current scan tab'),
                 self._close_scan_cb),

                 ('New Profile',
                  gtk.STOCK_JUSTIFY_LEFT,
                  _('New _Profile'),
                  '<Control>p',
                  _('Create a new scan profile'),
                  self._new_scan_profile_cb),

                  ('Search Scan',
                   gtk.STOCK_FIND,
                   _('Search Scan Results'),
                   '<Control>f',
                   _('Search for a scan result'),
                   self._search_scan_result),

                   ('Edit Profile',
                    gtk.STOCK_PROPERTIES,
                    _('_Edit Selected Profile'),
                    '',
                    _('Edit selected scan profile'),
                    self._edit_scan_profile_cb),

                    ('Delete Profile', 
                     gtk.STOCK_PROPERTIES, 
                     _('_Delete Selected Profile'), 
                     '', 
                     _('Delete selected scan profile'), 
                     self._delete_scan_profile_cb), 
                    
                    ('Profile Manager',
                     gtk.STOCK_DND_MULTIPLE,
                     _('Profile Manager'),
                     '<Control>m',
                     _('Use to manage profiles'),
                     self._profile_manager),            
                    
                    ('Interface Editor',
                     gtk.STOCK_DND_MULTIPLE,
                     _('Interface Editor'),
                     '<Control>n',
                     _('Use to edit profile/wizard'),
                     self._uie),   

                     ('New Profile with Selected',
                      gtk.STOCK_PROPERTIES,
                      _('New P_rofile with Selected'),
                      '<Control>r',
                      _('Use the selected scan profile to create another'),
                      self._new_scan_profile_with_selected_cb),
                      
                      ('Extensions',
                       gtk.STOCK_INFO,
                       _('_Extensions'),
                       '<Control>e',
                       _('Extensions manager'),
                       self._show_plugin_manager),

                      ('Quit',
                       gtk.STOCK_QUIT,
                       _('_Quit'),
                       None,
                       _('Quit this application'),
                       self._exit_cb),


                       # Top Level
                       ('Profile', None, _('_Profile'), None),

                       ('Compare Results',
                        gtk.STOCK_DND_MULTIPLE,
                        _('Compare Results'),
                        "<Control>D",
                        _('Compare Scan Results using Diffies'),
                        self._load_diff_compare_cb),

            # Network Inventory
            ('Inventory', None, _('_Inventory'), None),

            ('Add Scan Inv', 
                gtk.STOCK_ADD,
                _('_Add scan to Inventory'), None,
                _("Add finished scan on current tab to Network Inventory"),
                self._add_scan_inv
            ),

            ('Open Inv',
                None,
                _('Network _Inventory'),
                "<Shift><Control>I",
                _("Run Network Inventory"),
                self._open_inv
            ),

            # Scan Scheduler
            ('Scheduler', None, _('_Scheduler'), None),
            
            ('Sched Control', self.schedctrl.stock_icon,
             self.schedctrl.status_text,
             None, self.schedctrl.status_text,
             self.schedctrl._scheduler_control),
            
            ('Sched Editor', None, _('_Editor'),
             None, _("Open Scheduler Editor"),
             self._open_schededit),
            
            # SMTP Setup
            ('SMTP Setup', None, _("SMTP Setup"),
             None, _("Open SMTP Accounts editor"),
             self._open_smtpsetup),

                        # Top Level
                        ('Help', None, _('_Help'), None),

                        ('Report a bug',
                         gtk.STOCK_DIALOG_INFO,
                         _('_Report a bug'),
                         '<Control>b',
                         _("Report a bug"),
                         self._show_bug_report
                         ),

                         ('About',
                          about_icon,
                          _('_About'),
                          '<Control>a',
                          _("About Umit"),
                          self._show_about_cb
                          ),

                          ('Show Help',
                           gtk.STOCK_HELP,
                           _('_Help'),
                           None,
                           _('Shows the application help'),
                           self._show_help),
                       ]

        # See info on UIManager at:
        # * http://www.pygtk.org/pygtk2reference/class-gtkuimanager.html        
        # * http://www.gtk.org/api/2.6/gtk/GtkUIManager.html

        # UIManager supports UI "merging" and "unmerging". So, suppose there's
        # no scan running or scan results opened, we should have a minimal
        # interface. When we one scan running, we should "merge" the scan UI.
        # When we get multiple tabs opened, we might merge the tab UI.

        # This is the default, minimal UI

        self.default_ui = """<menubar>
            <menu action='Scan'>
            <menuitem action='New Scan'/>
            <menuitem action='Close Scan'/>
            <menuitem action='Save Scan'/>
            <menuitem action='Open Scan'/>
            <placeholder name='RecentScans'>
            </placeholder>
            <menuitem action='Quit'/>
            </menu>

            <menu action='Tools'>
            <menuitem action='Wizard'/>
            <menuitem action='Compare Results'/>
            <menuitem action='Search Scan'/>
            <separator/>
            <menuitem action='Extensions'/>
            <menuitem action='SMTP Setup'/>
            <menu action='Scheduler'>
                <menuitem action='Sched Editor' />
                <menuitem action='Sched Control' />
            </menu>
            <menu action='Inventory'>
                <menuitem action='Add Scan Inv'/>
                <menuitem action='Open Inv'/>
            </menu>
            </menu>

            <menu action='Profile'>
            <menuitem action='New Profile'/>
            <menuitem action='New Profile with Selected'/>
            <menuitem action='Edit Profile'/>
            <menuitem action='Delete Profile'/> 
            <separator/>
            <menuitem action='Profile Manager'/>
            <menuitem action='Interface Editor'/>
            </menu>

            <menu action='Help'>
            <menuitem action='Show Help'/>
            <menuitem action='Report a bug'/>
            <menuitem action='About'/>
            </menu>

            </menubar>

            <toolbar>
            <toolitem action='New Scan'/>
            <toolitem action='Wizard'/>
            <toolitem action='Save Scan'/>
            <toolitem action='Open Scan'/>
            <separator/>
            <toolitem action='Sched Control'/>
            <separator/>
            <toolitem action='Report a bug'/>
            <toolitem action='Show Help'/>
            </toolbar>
            """

        self.main_action_group.add_actions(self.main_actions)

        for action in self.main_action_group.list_actions():
            action.set_accel_group(self.main_accel_group)
            action.connect_accelerator()

        self.ui_manager.insert_action_group(self.main_action_group, 0)
        self.ui_manager.add_ui_from_string(self.default_ui)

        self._rscans_actiongroup = gtk.ActionGroup('UIRecentScans')
        self.ui_manager.insert_action_group(self._rscans_actiongroup, 1)
        self._rscans_merge_id = 0
        self.update_recent_scans()

        self.schedctrl.ui_action = self.main_action_group.get_action(
                'Sched Control')

    def _open_schededit(self, action):
        """
        Open Scheduler Schemas Editor.
        """
        win = SchedSchemaEditor()
        win.show_all()

    def _open_smtpsetup(self, action):
        """
        Open SMTP Accounts Editor.
        """
        win = SMTPSetup()
        win.show_all()
        
    def _open_inv(self, action):
        """
        Open Inventories visualizer.
        """
        if self.running_ni:
            return
        
        self.niwin = InventoryViewer(self)
        self.niwin.show_all()
        self.running_ni = True

    def _add_scan_inv(self, action):
        """
        Add scan to inventory.
        """
        current_page = self.scan_notebook.get_nth_page(self.scan_notebook.get_current_page())

        try:
            status = current_page.status
        except:
            alert = HIGAlertDialog(message_format=_("No scan tab"),
                    secondary_text=_("There is no scan tab or scan result "
                        "being shown. Run a scan and then retry adding."))
            alert.run()
            alert.destroy()
            return None
        
        if status.get_status() in [ "scan_failed", "unknown", "empty",
                                    "scanning", "parsing_result" ]:

            run_something_text = _("You tried adding a scan to the Inventory, "
                    "but there isn't a finished scan on the active tab!")

            dlg = HIGAlertDialog(self, message_format=_("No scan tab"),
                                 secondary_text=run_something_text)
            dlg.run()
            dlg.destroy()
            return None

        # if we got to this point, it should be possible to add this scan
        inventory_title = self.scan_notebook.get_tab_title(current_page)

        xml_scanfile = mktemp()
        f = open(xml_scanfile, "w")
        current_page.parsed.write_xml(f)
        f.close()

        log.debug("Adding scan to inventory database..")

        xmlstore = XMLStore(Path.umitdb_ng, False)
        try:
            xmlstore.store(xml_scanfile, current_page.parsed, inventory_title)
        finally:
            # close connection to the inventory's database
            xmlstore.close()
        os.remove(xml_scanfile)
        log.debug("Insertion finished")

        dlg = HIGAlertDialog(self,
                message_format=_('Insertion finished!'),
                secondary_text=(
                    _("Scan has been added to the") +
                    " %r " % inventory_title +
                    _("inventory.")))
        dlg.run()
        dlg.destroy()
        
        if self.running_ni: # update inventory viewer
            self.niwin._update_viewer()
            
    def _show_bug_report(self, widget):
        bug = BugReport()
        bug.show_all()

    def _search_scan_result(self, widget):
        search_window = SearchWindow(self._load_search_result,
                                     self.scan_notebook)
        search_window.connect("destroy", self.__remove_wlist)
        search_window.show_all()
        self.wlist.append(search_window)

    def _load_search_result(self, results):
        for result in results:
            if results[result][1].is_unsaved():
                for i in range(self.scan_notebook.get_n_pages()):
                    if results[result][0] == "Unsaved " + \
                       self.scan_notebook.get_nth_page(i).get_tab_label():
                        self.scan_notebook.set_current_page(i)
            else:
                page = self._load(parsed_result=results[result][1],
                                  title=results[result][1].scan_name)
                page.status.set_search_loaded()
    
    def _show_plugin_manager(self, widget, data=None):
        self._plugin_win.show()
    
    def _close_scan_cb(self, widget, data=None):
        # data can be none, if the current page is to be closed
        if data is None:
            page_num = self.scan_notebook.get_current_page()
        # but can also be this page's content, which will be used
        # to find this page number
        else:
            page_num = self.scan_notebook.page_num(data)
        page = self.scan_notebook.get_nth_page(page_num)
        filename = None

        if page is None or not isinstance(page, ScanNotebookPage):
            return True

        if page.status.unsaved_unchanged \
           or page.status.unsaved_changed\
           or page.status.loaded_changed:

            log.debug("Found changes on closing tab")
            dialog = HIGDialog(buttons=(gtk.STOCK_SAVE, gtk.RESPONSE_OK,
                                        _('Close anyway'), gtk.RESPONSE_CLOSE,
                                        gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL))

            title = self.scan_notebook.get_tab_title(page)

            alert = None
            if title:
                alert = HIGEntryLabel('<b>%s "%s"</b>' % (_("Save changes on"),
                                                          title))
            else:
                alert = HIGEntryLabel('<b>%s</b>' % _("Save changes"))

            text = HIGEntryLabel(_('The given scan has unsaved changes.\n\
What do you want to do?'))
            hbox = HIGHBox()
            hbox.set_border_width(5)
            hbox.set_spacing(12)

            vbox = HIGVBox()
            vbox.set_border_width(5)
            vbox.set_spacing(12)

            image = gtk.Image()
            image.set_from_stock(gtk.STOCK_DIALOG_QUESTION,gtk.ICON_SIZE_DIALOG)

            vbox.pack_start(alert)
            vbox.pack_start(text)
            hbox.pack_start(image)
            hbox.pack_start(vbox)

            dialog.vbox.pack_start(hbox)
            dialog.vbox.show_all()

            response = dialog.run()
            dialog.destroy()

            if response == gtk.RESPONSE_OK:
                filename = self._save_scan_results_cb(page)
                # filename = None means that user didn't saved the result
            elif response == gtk.RESPONSE_CANCEL:
                return False

            self.store_result(page, filename)

        elif page.status.scanning:
            log.debug("Trying to close a tab with a running scan")
            dialog = HIGDialog(buttons=(_('Close anyway'), gtk.RESPONSE_CLOSE,
                                        gtk.STOCK_CANCEL, gtk.RESPONSE_CANCEL))

            title = self.scan_notebook.get_tab_title(page)

            alert = None
            if title:
                alert = HIGEntryLabel('<b>%s "%s"</b>' % (_("Trying to close"),
                                                          title))
            else:
                alert = HIGEntryLabel('<b>%s</b>' % _("Trying to close"))

            text = HIGEntryLabel(_('The page you are trying to close has \
a scan running at the background.\nWhat do you want to do?'))
            hbox = HIGHBox()
            hbox.set_border_width(5)
            hbox.set_spacing(12)

            vbox = HIGVBox()
            vbox.set_border_width(5)
            vbox.set_spacing(12)

            image = gtk.Image()
            image.set_from_stock(gtk.STOCK_DIALOG_WARNING, gtk.ICON_SIZE_DIALOG)

            vbox.pack_start(alert)
            vbox.pack_start(text)
            hbox.pack_start(image)
            hbox.pack_start(vbox)

            dialog.vbox.pack_start(hbox)
            dialog.vbox.show_all()

            response = dialog.run()
            dialog.destroy()

            if response == gtk.RESPONSE_CLOSE:
                page.kill_scan()
            elif response == gtk.RESPONSE_CANCEL:
                return False
        elif not page.status.empty:
            alert = HIGAlertDialog(message_format=_('Closing current Scan Tab'),
                                   secondary_text=_('Are you sure you want \
to close current Scan Tab?'),
          buttons=gtk.BUTTONS_OK_CANCEL,
          type=gtk.MESSAGE_WARNING)
            response = alert.run()
            alert.destroy()

            if response != gtk.RESPONSE_OK:
                return False

        page.close_tab()
        # Close (and maybe remove) temporary files.
        try:
            page.command_execution.close()
        except AttributeError:
            # Page didn't have a scan.
            pass

        self.scan_notebook.remove_page(page_num)
        return True

    def store_result(self, page, filename):
        page.parsed.scan_name = self.scan_notebook.get_tab_title(page)

        if not filename:
            filename = mktemp()
            f = open(filename, "w")
            page.parsed.write_xml(f)
            f.close()

        search_config = SearchConfig()
        if search_config.store_results:
            try:
                log.debug(">>> Saving result into data base...")
                scan = Scans(scan_name=self.scan_notebook.get_tab_title(page),
                             nmap_xml_output=open(filename).read(),
                             date=time())
            except:
                log.debug("Error while trying to store result in Data Base!")

        # Remove temp file created, if possible.
        try:
            os.remove(filename)
        except OSError, err:
            # See umit.core.NmapCommand.close
            if getattr(err, 'winerror', None) != 32:
                raise

    def update_recent_scans(self):
        """Shows the most recent saved scans in the 'Scan' menu."""
        # clean previous recent scans listing, if any
        if self._rscans_merge_id:
            for action in self._rscans_actiongroup.list_actions():
                self._rscans_actiongroup.remove_action(action)
            self.ui_manager.remove_ui(self._rscans_merge_id)
            # ensure_update is used here so we can be sure that the
            # UIManager updates our UI. Not doing so will cause
            # new items in the recent scans listing to appear at the
            # end of the current listing.
            self.ui_manager.ensure_update()

        r_scans = recent_scans.get_recent_scans_list()
        rscans_ui = """
        <menubar>
            <menu action='Scan'>
                <placeholder name='RecentScans'>
                %s
                </placeholder>
            </menu>
        </menubar>"""
        new_rscan_xml = ''

        actions = []

        # Add the seven most recent saved scans to the menu.
        for scan in r_scans[:7]:
            scan = scan.replace('\n', '')
            if os.access(split(scan)[0], os.R_OK) and isfile(scan):
                scan = scan.replace('\n', '')
                new_rscan = (scan,
                             None,
                             scan,
                             None,
                             scan,
                             self._load_recent_scan)
                new_rscan_xml += "<menuitem action='%s'/>\n" % \
                              xml.sax.saxutils.escape(scan)
                actions.append(new_rscan)
        new_rscan_xml += "<separator />\n"

        self._rscans_actiongroup.add_actions(actions)
        self._rscans_merge_id = self.ui_manager.add_ui_from_string(
                rscans_ui % new_rscan_xml)

    def _create_menubar(self):
        # Get and pack the menubar
        menubar = self.ui_manager.get_widget('/menubar')

        if is_maemo():
            menu = gtk.Menu()
            for child in menubar.get_children():
                child.reparent(menu)
            self.set_menu(menu)
            menubar.destroy()
            self.menubar = menu
        else:
            self.menubar = menubar
            self.vbox.pack_start(self.menubar, False, False, 0)

        self.menubar.show_all()

    def _create_toolbar(self):
        toolbar = self.ui_manager.get_widget('/toolbar')

        if is_maemo():
            tb = gtk.Toolbar()
            for child in toolbar.get_children():
                child.reparent(tb)
            self.add_toolbar(tb)
            self.toolbar = tb
            toolbar.destroy()
        else:
            self.toolbar = toolbar
            self.vbox.pack_start(self.toolbar, False, False, 0)

        self.toolbar.show_all()

    def _title_edited_cb(self, widget, old_text, new_text, page):
        # Called when the user try to edit the title
        # we could decide to set or not the title

        # Only loaded and unsaved tab can change their title
        # so let's filter

        status = page.status

        # Change to unsaved. (needs adds?)
        if status.loaded_unchanged or status.loaded_changed:
            page.status.set_loaded_changed()
        elif status.unsaved_unchanged or status.unsaved_changed or status.empty:
            page.status.set_unsaved_changed()
        else:
            # No compatible status.
            return False

        log.debug(">>> Changing scan_name")
        page.parsed.set_scan_name(new_text)

        # Ok we can change this title.
        return True

    def _create_scan_notebook(self):
        self.scan_notebook = ScanNotebook()
        self.scan_notebook.close_scan_cb = self._close_scan_cb
        self.scan_notebook.title_edited_cb = self._title_edited_cb
        
        if is_maemo():
            # No padding. We need space!
            self.vbox.pack_start(self.scan_notebook, True, True, 0)
        else:
            self.vbox.pack_start(self.scan_notebook, True, True, 4)

        # Conencting ScanNotebook Callbacks
        self.scan_notebook.connect("page-removed", self._update_when_removed)
        self.scan_notebook.connect("page-added", self._update_when_added)
    
    def _prepare_first_scan(self):
        # Load here becouse some plugins require some signals
        # Set the mainwindow and load the selected plugins
        PluginEngine().core.mainwindow = self
        PluginEngine().load_selected_plugins()

        page = self._new_scan_cb()
        self.scan_notebook.show_all()

        # Applying some command line options
        target = option_parser.get_target()
        profile = option_parser.get_profile()
        nmap = option_parser.get_nmap()

        if target:
            page.toolbar.selected_target = target
        if profile:
            page.toolbar.selected_profile = profile

        if target and profile:
            log.debug(">>> Executing scan with the given args: %s \
                      with %s" % (target, profile))
            page.toolbar.scan_button.set_sensitive(True)
            page.start_scan_cb()

        elif target and nmap:
            page.command_toolbar.command = " ".join(["".join(nmap),target])
            page.toolbar.scan_button.set_sensitive(True)
            page.start_scan_cb()

        elif not target and nmap:
            #non_valid_target = NonValidTarget()
            #del non_valid_target
            page.command_toolbar.command = "nmap " + " ".join(nmap)
            page.toolbar.scan_button.set_sensitive(True)
            page.start_scan_cb()

    def _update_when_removed(self, notebook, child, pagenum):
        self._update_main_menu()

    def _update_when_added(self, notebook, child, pagenum):
        self._update_main_menu()

    def _update_main_menu(self):
        page = self.scan_notebook.get_n_pages()

        # Get some menu widgets
        close_scan = self.ui_manager.get_action("/menubar/Scan/Close Scan")
        save_scan = self.ui_manager.get_action("/menubar/Scan/Save Scan")
        compare_results = self.ui_manager.\
                        get_action("/menubar/Tools/Compare Results")
        new_profile_with_selected = self.ui_manager.\
                        get_action("/menubar/Profile/New Profile with Selected")
        edit_profile = self.ui_manager.\
                     get_action("/menubar/Profile/Edit Profile")

        if page == 0:
            close_scan.set_sensitive(False)
            save_scan.set_sensitive(False)
            compare_results.set_sensitive(False)
            new_profile_with_selected.set_sensitive(False)
            edit_profile.set_sensitive(False)
        else:
            close_scan.set_sensitive(True)
            save_scan.set_sensitive(True)
            compare_results.set_sensitive(True)
            new_profile_with_selected.set_sensitive(True)
            edit_profile.set_sensitive(True)

    def _create_statusbar(self):
        self.statusbar = gtk.Statusbar()
        self.vbox.pack_start(self.statusbar, False, False, 0)

    def _wizard_cb(self, widget):
        w = Wizard()
        w.set_notebook(self.scan_notebook)

        w.show_all()

    def _load_scan_results_cb(self, p):
        self._results_filechooser_dialog = ResultsFileChooserDialog(\
            title=p.get_name())

        if (self._results_filechooser_dialog.run() == gtk.RESPONSE_OK):
            self._load(filename=self._results_filechooser_dialog.get_filename())

        self._results_filechooser_dialog.destroy()
        self._results_filechooser_dialog = None

    def _load_recent_scan(self, widget):
        self._load(widget.get_name())

    def _verify_page_usage(self, page):
        """Verifies if given page is empty and can be used to load a result, or
        if it's not empty and shouldn't be used to load a result. Returns True,
        if it's ok to be used, and False if it's not.
        """
        if page is None \
           or page.status.saved\
           or page.status.unsaved_unchanged\
           or page.status.unsaved_changed\
           or page.status.loaded_unchanged\
           or page.status.loaded_changed\
           or page.status.parsing_result\
           or page.status.scanning\
           or page.status.search_loaded:
            return False
        else:
            return True

    def _load(self, filename=None, parsed_result=None, title=None):
        scan_page = None

        if filename or parsed_result:
            current_page = self.scan_notebook.\
                         get_nth_page(self.scan_notebook.get_current_page())

            if self._verify_page_usage(current_page):
                log.debug(">>> Loading inside current scan page.")
                scan_page = current_page
            else:
                log.debug(">>> Creating a new page to load it.")
                scan_page = self._new_scan_cb()

            log.debug(">>> Enabling page widgets")
            scan_page.enable_widgets()

        if filename and os.access(filename, os.R_OK):
            # Load scan result from file
            log.debug(">>> Loading file: %s" % filename)
            log.debug(">>> Permissions to access file? %s" % os.access(filename,
                                                                       os.R_OK))

            # Parse result
            f = open(filename)
            scan_page.parse_result(f)
            scan_page.saved_filename = filename

            # Closing file to avoid problems with file descriptors
            f.close()

            log.debug(">>> Setting tab label")
            self.scan_notebook.set_tab_title(scan_page, title)

        elif parsed_result:
            # Load scan result from parsed object
            scan_page.load_from_parsed_result(parsed_result)

            log.debug(">>> Setting tab label")
            self.scan_notebook.set_tab_title(scan_page, None)

        elif filename and not os.access(filename, os.R_OK):
            alert = HIGAlertDialog(message_format=_('Permission denied'),
                                   secondary_text=_('Don\'t have read access \
to the path'))
            alert.run()
            alert.destroy()
            return 
        else:
            alert = HIGAlertDialog(message_format=_('Could not load result'),
                                   secondary_text=_('An unidentified error \
occouried and the scan result was unable to be loaded properly.'))
            alert.run()
            alert.destroy()
            return 

        log.debug(">>> Setting flag that defines that there is no changes at \
this scan result yet")
        scan_page.changes = False
        scan_page.status.set_loaded_unchanged()

        log.debug(">>> Showing loaded result page")
        self.scan_notebook.set_current_page(self.scan_notebook.get_n_pages()-1)
        return scan_page

    def _save_scan_results_cb(self, saving_page):
        current_page = self.scan_notebook.get_nth_page(self.scan_notebook.\
                                                       get_current_page())

        try:
            status = current_page.status
        except:
            alert = HIGAlertDialog(message_format=_('No scan tab'),
                                   secondary_text=_('There is no scan tab or \
scan result been shown. Run a scan and then try to save it.'))
            alert.run()
            alert.destroy()
            return None


        log.debug(">>> Page status: %s" % current_page.status.status)

        if status.empty or status.unknown:    # EMPTY or UNKNOWN
            # Show a dialog saying that there is nothing to be saved
            alert = HIGAlertDialog(message_format=_('Nothing to save'),
                                   secondary_text=_('No scan on this tab. \
Start a scan an then try again'))
            alert.run()
            alert.destroy()

        elif status.scan_failed:
            alert = HIGAlertDialog(message_format=_('Nothing to save'),
                                   secondary_text=_('The scan has failed! \
There is nothing to be saved.'))
            alert.run()
            alert.destroy()

        elif status.parsing_result:    # PARSING_RESULT
            # Say that the result is been parsed
            alert = HIGAlertDialog(message_format=_('Parsing the result'),
                                   secondary_text=_('The result is still \
been parsed. You can not save the result yet.'))
            alert.run()
            alert.destroy()

        elif status.scanning:    # SCANNING
            # Say that the scan is still running
            alert = HIGAlertDialog(message_format=_('Scan is running'),
                                   secondary_text=_('The scan process is not \
finished yet. Wait until the scan is finished and then try to save it again.'))
            alert.run()
            alert.destroy()

        elif status.unsaved_unchanged or status.unsaved_changed or \
             status.search_loaded:
            # UNSAVED_UNCHANGED and UNSAVED_CHANGED
            # Show the dialog to choose the path to save scan result
            self._save_results_filechooser_dialog = SaveResultsFileChooserDialog(\
                title=_('Save Scan'))    
            response = self._save_results_filechooser_dialog.run()

            filename = None
            if (response == gtk.RESPONSE_OK):
                filename = self._save_results_filechooser_dialog.get_filename()
                # add .usr to filename if there is no other extension
                if filename.find('.') == -1:
                    filename += ".usr"
                self._save(current_page, filename)

            self._save_results_filechooser_dialog.destroy()
            self._save_results_filechooser_dialog = None

            return filename

        elif status.loaded_changed:    # LOADED_CHANGED
            # Save the current result at the loaded file
            self._save(current_page, current_page.saved_filename)
        elif status.saved or status.loaded_unchanged:
            pass
        else:    # UNDEFINED status
            alert = HIGAlertDialog(message_format=_('Nothing to save'),
                                   secondary_text=_('No scan on this tab. \
Start a scan an then try again'))
            alert.run()
            alert.destroy()

    def _show_about_cb(self, widget):
        a = About()
        a.show_all()

    def _save(self, saving_page, saved_filename):
        log.debug(">>> File been saved: %s" % saved_filename)
        if os.access(split(saved_filename)[0], os.W_OK):
            f = None
            try:
                f = open(saved_filename, 'w')
            except:
                alert = HIGAlertDialog(message_format=_('Can\'t save file'),
                                       secondary_text=_('Can\'t open file \
to write'))
                alert.run()
                alert.destroy()
            else:
                saving_page.saved = True
                saving_page.changes = False
                saving_page.saved_filename = saved_filename
                saving_page.collect_umit_info()

                log.debug(">>> Page saved? %s" % saving_page.status.saved)
                log.debug(">>> Changes on page? %s" % saving_page.status.status)
                log.debug(">>> File to be saved at: %s" % \
                          saving_page.saved_filename)

                saving_page.parsed.write_xml(f)

                # Closing file to avoid problems with file descriptors
                f.close()

                # Setting page status to saved
                saving_page.status.set_saved()

                # Saving recent scan information
                recent_scans.add_recent_scan(saved_filename)
                recent_scans.save()
                self.update_recent_scans()

        else:
            alert = HIGAlertDialog(message_format=_('Permission denied'),
                                   secondary_text=_('Don\'t have write \
access to this path.'))
            alert.run()
            alert.destroy()

    def _new_scan_cb(self, widget=None, data=None):
        """Append a new ScanNotebookPage to ScanNotebook
        New tab properties:
        - Empty
        - Disabled widgets
        - Ready to start a new scan
        - Untitled scan
        """
        return self.scan_notebook.add_scan_page(data)
        ## Integration UIE
        # Put focus at the target combo, so user can open umit and start writing the target
        # page.target_focus()

        # return page
        
    def _uie(self, p):
        """
        Show Interface Editor
        """
        if self.running_ie:
            return
        else:
            self.uie = InterfaceEditor(self)
            self.uie.show_all()
            self.running_ie = True
    def _profile_manager(self,p):
        pm = ProfileManager()
        pm.show_all()
    def _profile_manager(self,p):
        """ Show Profile Manager """
        if self.running_pm:
            return
        self.pm = ProfileManager(self)
        self.pm.set_notebook(self.scan_notebook)
        self.pm.show_all()
        self.running_pm = True
    
    def _new_scan_profile_cb(self, p):
        pe = ProfileEditor()
        pe.set_notebook(self.scan_notebook)

        pe.show_all()

    def _edit_scan_profile_cb(self, p):
        page = self.scan_notebook.get_nth_page\
             (self.scan_notebook.get_current_page())
        if page is None:
            return

        profile = page.toolbar.selected_profile
       
        

        pe = ProfileEditor(profile)
        pe.set_notebook(self.scan_notebook)

        pe.show_all()

    def _delete_scan_profile_cb(self, p): 
        page = self.scan_notebook.get_nth_page\
             (self.scan_notebook.get_current_page())

        if page is None:
            return

        profile = page.toolbar.selected_profile

        pe = ProfileEditor(profile)
        pe.set_notebook(self.scan_notebook)
        pe.on_delete()

    def _new_scan_profile_with_selected_cb(self, p):
        page = self.scan_notebook.get_nth_page(\
            self.scan_notebook.get_current_page())

        if page is None:
            return

        profile = page.toolbar.selected_profile

        pe = ProfileEditor(profile)
        pe.clean_profile_info()
        pe.set_notebook(self.scan_notebook)

        pe.show_all()

    def _alert_with_action_name_cb(self, p):
        d = HIGAlertDialog(parent=self,
                           message_format=p.get_name(),
                           secondary_text=_("The text above is this \
action's name"))
        d.run()
        d.destroy()

    def _show_help(self, action):
        show_help(self, "index.html")
        
    def _exit_cb (self, widget=None, extra=None):
        for page in self.scan_notebook.get_children():
            if not self._close_scan_cb(page):
                self.show_all()
                return True
        else:
            # Cleaning up data base
            UmitDB().cleanup(SearchConfig().converted_save_time)

            # Saving the plugins
            PluginEngine().plugins.save_changes()

            # Remove old data from database
            remove_old_data()

            gtk.main_quit()

    def _load_diff_compare_cb (self, widget=None, extra=None):
        # We must change this test dict
        # This dict has the following sintax:
        # key = Scan name
        # value = nmap output in string format
        dic = {}

        for i in range(self.scan_notebook.get_n_pages()):
            page = self.scan_notebook.get_nth_page(i)
            scan_name = self.scan_notebook.get_tab_title(page)

            if not scan_name:
                scan_name = _("Scan ") + str(i+1)

            dic[scan_name] = page.parsed

        self.diff_window = DiffWindow(dic)
        self.diff_window.connect("destroy", self.__remove_wlist)
        self.wlist.append(self.diff_window)
        self.diff_window.show_all()


    # Properties
    running_ni = property(_get_running_ni, _set_running_ni)


class NonRootWarning(HIGAlertDialog):
    def __init__(self):
        warning_text = _('''You are trying to run Umit with a non-root user!\n
Some nmap options need root privileges to work.''')

        HIGAlertDialog.__init__(self, message_format=_('Non root user'),
                                secondary_text=warning_text)

        self.run()
        self.destroy()

class NonValidTarget (HIGAlertDialog):
    """ Alert for bad nmap option"""
    def __init__(self):
        warning_text = _('''You run the umit with nmap option and didn't \
specified a valid target (see the umit options)''')

        HIGAlertDialog.__init__(self, message_format=_('Non valid target'),
                                secondary_text=warning_text)

        self.run()
        self.destroy()


if __name__ == '__main__':
    w = MainWindow()
    w.show_all()
    gtk.main()
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.