Viewing file: NCWireless.py (3.37 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
## Copyright (C) 2001-2005 Red Hat, Inc. ## Copyright (C) 2001, 2002 Than Ngo <than@redhat.com> ## Copyright (C) 2001-2005 Harald Hoyer <harald@redhat.com> ## Copyright (C) 2001, 2002 Philipp Knirsch <pknirsch@redhat.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., 675 Mass Ave, Cambridge, MA 02139, USA.
import sys import NC_functions
import string
from netconfpkg.conf import Conf
from netconfpkg import Wireless_base from NC_functions import *
class Wireless(Wireless_base): keydict = { 'Mode' : 'MODE', 'EssId' : 'ESSID', 'Channel' : 'CHANNEL', 'Rate' : 'RATE', 'Key' : 'KEY', 'Securitymode' : 'SECURITYMODE', } def __init__(self, list = None, parent = None): Wireless_base.__init__(self, list, parent) self.Key = '' def load(self, parentConf): conf = parentConf
for selfkey in self.keydict.keys(): confkey = self.keydict[selfkey] if conf.has_key(confkey): self.__dict__[selfkey] = conf[confkey] conf = NC_functions.ConfKeys(self.getParent().DeviceId) if conf.has_key("KEY"): self.Key = conf["KEY"] del conf
if re.search("^s:", self.Key): self.Key = self.Key[2:] elif re.search("^[0-9a-fA-F]+$", self.Key): self.Key = "0x" + self.Key
def save(self, parentConf): conf = parentConf
keyconf = NC_functions.ConfKeys(self.getParent().DeviceId) keyconf.fsf() if self.Key: if re.search("^\s*0x[0-9a-fA-F]+\s*$", self.Key): keyconf["KEY"] = self.Key[2:] elif re.search("^\s*[^\s]+\s*$", self.Key): keyconf["KEY"] = "s:" + self.Key else: keyconf["KEY"] = self.Key else: del keyconf["KEY"] keyconf.write()
# FIXME: [167995] Wireless card mode cannot be set to Auto # FIXME: [162830] activate notifier box does not presist long enough to read it # check, if the interface support RATE, FREQ, etc. for selfkey in self.keydict.keys(): confkey = self.keydict[selfkey] if self.__dict__[selfkey]: conf[confkey] = str(self.__dict__[selfkey]) else: conf[confkey] = ""
if conf.has_key("KEY"): del conf["KEY"]
# Do not clear the non-filled in values # Bugzilla #52252 #for i in conf.keys(): # if not conf[i] or conf[i] == "": del conf[i]
# the key is now stored in a seperate file # conf.oldmode = 0600 # conf.chmod(0600) __author__ = "Harald Hoyer <harald@redhat.com>" __date__ = "$Date: 2006/07/19 15:18:13 $" __version__ = "$Revision: 1.20 $"
|