summaryrefslogtreecommitdiffstats
path: root/iw/account_gui.py
blob: 13883524ab97d6734a62c414c7bc70f8afa138ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
#
# account_gui.py: gui root password and user creation dialog
#
# Copyright 2001 Red Hat, Inc.
#
# This software may be freely redistributed under the terms of the GNU
# library public license.
#
# You should have received a copy of the GNU Library Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#

from gtk import *
from iw_gui import *
from translate import _, N_
import re
import string
from gnome.ui import *

class AccountWindow (InstallWindow):

    userAccountMatch = re.compile("([A-Za-z])([A-Za-z0-9])*")

    windowTitle = N_("Account Configuration")
    htmlTag = ("accts")

    def getNext (self):
	if not self.__dict__.has_key("pw"): return None

        self.rootPw.set (self.pw.get_text ())
	accounts = []

	for n in range(len(self.passwords.keys())):
	    accounts.append((self.userList.get_text(n, 0),
                             self.userList.get_text(n, 1),
                             self.passwords[self.userList.get_text(n, 0)]))
            
	self.accounts.setUserList(accounts)
        return None

    def rootPasswordsMatch (self, *args):
        pw = self.pw.get_text ()
        confirm = self.confirm.get_text ()

        if pw == confirm and len (pw) >= 6:
            self.ics.setNextEnabled (TRUE)
            self.rootStatus.set_text (_("Root password accepted."))
        else:
	    if not pw and not confirm:
                self.rootStatus.set_text ("")
            elif len (pw) < 6:
                self.rootStatus.set_text (_("Root password is too short."))
            else:
                self.rootStatus.set_text (_("Root passwords do not match."))
                
            self.ics.setNextEnabled (FALSE)

    def userOkay(self, *args):
	accountName = self.accountName.get_text()
	password1 = self.userPass1.get_text()
	password2 = self.userPass2.get_text()

	if (password1 and password1 == password2 and
	    self.userAccountMatch.search(accountName) and
	    len(accountName) <= 8 and len(password1) > 5) and accountName != "root":
	    self.userPwLabel.set_text(_("User password accepted."))
            self.win.set_sensitive(0, TRUE)
	else:
            self.win.set_sensitive(0, FALSE)
	    if not accountName:
		self.userPwLabel.set_text("")
	    elif accountName == "root":
		self.userPwLabel.set_text (_("Root account can not be added here."))
	    elif not password1 and not password2:
		self.userPwLabel.set_text (_("Please enter user password."))
	    elif len (password1) < 6:
		self.userPwLabel.set_text (_("User password is too short."))
	    else:
		self.userPwLabel.set_text (_("User passwords do not match."))

    def userSelected(self, *args):
	index = self.userList.selection
	if (not index): return
	index = index[0]
	accountName = self.userList.get_text(index, 0)
	fullName = self.userList.get_text(index, 1)
	password = self.passwords[accountName]
        self.edit.set_sensitive(TRUE)
        self.delete.set_sensitive(TRUE)
        #Keep track of the data in the CList so we can edit the entry when Edit button is clicked
        self.data = [index, accountName, password, password, fullName]

    def addUser_cb(self, widget, *args):
	accountName = self.accountName.get_text()
	password1 = self.userPass1.get_text()
        password2 = self.userPass2.get_text()
	fullName = self.fullName.get_text()

        if not (accountName and password1 and (password1 == password2)):
            return
	if accountName == "root":
	    return

        if self.passwords.has_key (accountName):
            return

        if (self.editingUser != None):
	    index = self.editingUser
	    self.userList.set_text(index, 0, accountName)
	    self.userList.set_text(index, 1, fullName)
	else:
	    index = self.userList.append((accountName, fullName))
        self.accountName.grab_focus ()
	self.passwords[accountName] = password1

        self.edit.set_sensitive(FALSE)
        self.delete.set_sensitive(FALSE)
        self.win.destroy()
        
    def editUser_cb(self, widget, *args):
	index = self.userList.selection
	if (not index): return

	accountName = self.accountName.get_text()
	password1 = self.userPass1.get_text()
	fullName = self.fullName.get_text()
        index = index[0]        #Get first item in the list

        #if the username has not changed, reset the password
        if accountName in self.passwords.keys():
            self.passwords[accountName] = password1
        else:  #the username has changed, we need to remove that username from password dictionary
            currAccount = self.userList.get_text(index, 0)
            del self.passwords[currAccount]
            self.passwords[accountName] = password1

        self.userList.set_text(index, 0, accountName)
        self.userList.set_text(index, 1, fullName)

        self.edit.set_sensitive(FALSE)
        self.delete.set_sensitive(FALSE)
        self.userList.unselect_all()
        self.win.destroy()        

    def addUser (self, widget):
        title = _("Add a New User")
        self.win = self.userWindow(title, None)
        self.win.append_button_with_pixmap(_("OK"), STOCK_BUTTON_OK)
        self.win.append_button_with_pixmap(_("Cancel"), STOCK_BUTTON_CANCEL)
        self.win.button_connect(0, self.addUser_cb)
        self.win.button_connect(1, self.win.destroy)
        self.win.set_sensitive(0, FALSE)
        self.win.show_all()

    def editUser (self, widget):
        title = _("Edit User")
        if self.data:   #if there is data there to edit
            self.win = self.userWindow(title, self.data)
            self.win.append_button_with_pixmap(_("OK"), STOCK_BUTTON_OK)
            self.win.append_button_with_pixmap(_("Cancel"), STOCK_BUTTON_CANCEL)
            self.win.button_connect(0, self.editUser_cb)
            self.win.button_connect(1, self.win.destroy)
            self.win.show_all()

    def userWindow (self, title, data=None):
        userWin = GnomeDialog()
        userWin.set_modal(TRUE)
        userWin.set_usize(350, 200)		
        userWin.set_position (WIN_POS_CENTER)

        userTable = GtkTable (5,2)
        userTable.set_homogeneous(FALSE)

        vbox = GtkVBox()
        vbox.pack_start(userTable)
        userAddFrame = GtkFrame (title)
        userAddFrame.add(vbox)
        userWin.vbox.pack_start(userAddFrame)

        #Labels
        label = GtkLabel (_("User Name:"))
        userTable.attach(label, 0, 1, 0, 1)
        label = GtkLabel (_("Full Name:"))
        userTable.attach(label, 0, 1, 1, 2)
        label = GtkLabel (_("Password:"))
        userTable.attach(label, 0, 1, 2, 3)
        label = GtkLabel (_("Confirm:"))
        userTable.attach(label, 0, 1, 3, 4)
        #user password label
        self.userPwLabel = GtkLabel(_("Please enter user name"))
        vbox.pack_start(self.userPwLabel)

        #entry boxes
        self.accountName = GtkEntry (8)
        self.accountName.connect("changed", self.userOkay)
        self.accountName.connect("insert-text", self.filter)
        self.accountName.connect("activate", self.forward)
        userTable.attach(self.accountName, 1, 2, 0, 1, SHRINK, SHRINK)
        self.fullName = GtkEntry ()
        userTable.attach(self.fullName, 1, 2, 1, 2, SHRINK, SHRINK)
        self.userPass1 = GtkEntry (9)
        self.userPass1.set_visibility(FALSE)
        self.userPass1.connect("changed", self.userOkay)
        userTable.attach(self.userPass1, 1, 2, 2, 3, SHRINK, SHRINK)
        self.userPass2 = GtkEntry (9)
        self.userPass2.set_visibility(FALSE)
        self.userPass2.connect("changed", self.userOkay)
        userTable.attach (self.userPass2, 1, 2, 3, 4, SHRINK, SHRINK)

        if data:
            index, account, password, password, name = data
            self.accountName.set_text(account)
            self.fullName.set_text(name)
            self.userPass1.set_text(password)
            self.userPass2.set_text(password)

        return userWin
        
    def deleteUser(self, *args):
	index = self.userList.selection
	if (not index): return
	index = index[0]
	accountName = self.userList.get_text(index, 0)

	del self.passwords[accountName]
	self.userList.remove(index)
        self.edit.set_sensitive(FALSE)
        self.delete.set_sensitive(FALSE)

    def filter(self, widget, text, len, pos):
        # XXX this doesn't check copy/pase
        if len != 1:
            return
        
        # first character case:
        if not widget.get_text ():
            if (text[0] not in string.uppercase and
                text[0] not in string.lowercase):
                widget.emit_stop_by_name ("insert-text")

        # everything else:
        if (text[0] not in string.uppercase and
            text[0] not in string.lowercase and
            text[0] not in string.digits and
            text[0] not in [ '.', '-', '_' ]):
            widget.emit_stop_by_name ("insert-text")

    def setFocus (self, area, data):
        self.pw.grab_focus ()

    # AccountWindow tag="accts"
    def getScreen (self, rootPw, accounts):
	self.accounts = accounts
	self.rootPw = rootPw

	self.passwords = {}
	self.editingUser = None

        box = GtkVBox ()

        hbox = GtkHBox()
        pix = self.ics.readPixmap ("root-password.png")
        if pix:
            a = GtkAlignment ()
            a.add (pix)
            a.set (0.0, 0.0, 0.0, 0.0)
            hbox.pack_start (a, FALSE)

        label = GtkLabel (_("Enter the password for the root user (administrator) of this system."))
        a = GtkAlignment ()
        a.add (label)
        a.set (0.0, 0.5, 0.0, 0.0)
        hbox.pack_start(a, FALSE, 20)
        box.pack_start(hbox, FALSE)
       
        self.forward = lambda widget, box=box: box.focus (DIR_TAB_FORWARD)

        table = GtkTable (2, 2)
        table.set_row_spacings (5)
	table.set_col_spacings (5)

        pass1 = GtkLabel (_("Root Password: "))
        pass1.set_alignment (0.0, 0.5)
        table.attach (pass1, 0, 1, 0, 1, FILL, 0, 10)
        pass2 = GtkLabel (_("Confirm: "))
        pass2.set_alignment (0.0, 0.5)
        table.attach (pass2, 0, 1, 1, 2, FILL, 0, 10)
        self.pw = GtkEntry (128)
        self.pw.connect ("activate", self.forward)
        self.pw.connect ("changed", self.rootPasswordsMatch)
        self.pw.connect ("draw", self.setFocus)
        self.pw.set_visibility (FALSE)
        self.confirm = GtkEntry (128)
        self.confirm.connect ("activate", self.forward)
        self.confirm.set_visibility (FALSE)
        self.confirm.connect ("changed", self.rootPasswordsMatch)
        table.attach (self.pw,      1, 2, 0, 1, FILL|EXPAND, 5)
        table.attach (self.confirm, 1, 2, 1, 2, FILL|EXPAND, 5)

        box.pack_start (table, FALSE)

        # root password statusbar
        self.rootStatus = GtkLabel ("")
        self.rootPasswordsMatch ()
        wrapper = GtkHBox(0, FALSE)
        wrapper.pack_start (self.rootStatus)
        box.pack_start (wrapper, FALSE)

        box.pack_start (GtkHSeparator (), FALSE, padding=3)

 	pw = self.rootPw.getPure()
	if pw:
	    self.pw.set_text(pw)
	    self.confirm.set_text(pw)

        sw = GtkScrolledWindow ()
        sw.set_policy (POLICY_AUTOMATIC, POLICY_AUTOMATIC)

        self.userList = GtkCList (2, (_("Account Name"), _("Full Name")))
        for x in range (2):
            self.userList.column_title_passive (x)

	self.userList.connect("select_row", self.userSelected)
        sw.add (self.userList)

        self.add = GtkButton (_("Add"))
	self.add.connect("clicked", self.addUser)
        self.edit = GtkButton (_("Edit"))
	self.edit.connect("clicked", self.editUser)
        self.edit.set_sensitive(FALSE)
        self.delete = GtkButton (_("Delete"))
	self.delete.connect("clicked", self.deleteUser)
        self.delete.set_sensitive(FALSE)

        bb = GtkVButtonBox ()
        bb.set_border_width (5)
        bb.set_layout_default(BUTTONBOX_START)
        bb.pack_start (self.add)
        bb.pack_start (self.edit)
        bb.pack_start (self.delete)

        hbox = GtkHBox()
        pix = self.ics.readPixmap ("users.png")
        if pix:
            a = GtkAlignment ()
            a.add (pix)
            a.set (0.5, 0.5, 0, 0)
            hbox.pack_start (a, FALSE, padding=7)

        a = GtkAlignment (0.0, 0.5)
        label = GtkLabel (_("Additional accounts can be created for other "
                            "users of this system. Such accounts could be for "
                            "a personal login account, or for other "
                            "non-administrative users who need to use this "
                            "system. Use the <Add> button to enter additional "
                            "user accounts."))
        label.set_line_wrap(TRUE)
        label.set_usize(400, -1)
        a.add(label)
        hbox.pack_start(a, FALSE)

        box.pack_start(hbox, FALSE)
        
        hbox = GtkHBox(FALSE)
        hbox.pack_start(sw, TRUE)
        hbox.pack_start(bb, FALSE)
        box.pack_start(hbox)
        
        index = 0
	for (user, name, password) in self.accounts.getUserList():
	    self.userList.append((user, name))
	    self.passwords[user] = password
	    index = index + 1

	box.set_border_width (5)

        return box