aboutsummaryrefslogtreecommitdiff
blob: e64188818c3a477808648b9b336702d23d68c53b (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
#
# account_gui.py: gui root password and crypt algorithm dialog
#
# Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005,  Red Hat Inc.
#               2006, 2007, 2008
# All rights reserved.
#
# 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, see <http://www.gnu.org/licenses/>.
#

import gtk
import string
import gui
from iw_gui import *
from flags import flags
from constants import *
import cracklib
import _isys
from gentoo.const import LIVE_USER
import grp

import gettext
_ = lambda x: gettext.ldgettext("anaconda", x)

class AccountWindow (InstallWindow):
    def getScreen(self, anaconda):
        self.anaconda = anaconda
        self.intf = anaconda.intf

        (self.xml, self.align) = gui.getGladeWidget("user.glade",
                                                    "account_align")
        self.icon = self.xml.get_widget("icon")
        self.capslock = self.xml.get_widget("capslock")
        self.pwlabel = self.xml.get_widget("pwlabel")
        self.pw = self.xml.get_widget("pw")
        self.username = self.xml.get_widget("username")
        self.fullname = self.xml.get_widget("fullname")
        self.confirmlabel = self.xml.get_widget("confirmlabel")
        self.confirm = self.xml.get_widget("confirm")
        self.usernamelabel = self.xml.get_widget("usernamelabel")
        self.fullnamelabel = self.xml.get_widget("fullnamelabel")

        # load the icon
        gui.readImageFromFile("root-password.png", image=self.icon)

        # connect hotkeys
        self.pwlabel.set_text_with_mnemonic(_("_Password:"))
        self.pwlabel.set_mnemonic_widget(self.pw)
        self.confirmlabel.set_text_with_mnemonic(_("_Confirm:"))
        self.confirmlabel.set_mnemonic_widget(self.confirm)

        self.usernamelabel.set_text_with_mnemonic(_("_Username:"))
        self.usernamelabel.set_mnemonic_widget(self.username)
        self.fullnamelabel.set_text_with_mnemonic(_("_Full name:"))
        self.fullnamelabel.set_mnemonic_widget(self.fullname)

        # watch for Caps Lock so we can warn the user
        self.intf.icw.window.connect("key-release-event",
            lambda w, e: self.handleCapsLockRelease(w, e, self.capslock))

        # we might have a root password already
        live_user_data = self.anaconda.users.otherUsers.get(LIVE_USER, {})
        self.pw.set_text(live_user_data.get('password', ''))
        self.confirm.set_text(live_user_data.get('password', ''))
        self.username.set_text(live_user_data.get('username', ''))
        self.fullname.set_text(live_user_data.get('fullname', ''))

        # pressing Enter in confirm == clicking Next
        vbox = self.xml.get_widget("account_box")
        self.confirm.connect("activate", lambda widget,
                             vbox=vbox: self.ics.setGrabNext(1))

        # set initial caps lock label text
        self.setCapsLockLabel()

        return self.align

    def focus(self):
        self.username.grab_focus()

    def passwordError(self):
        self.pw.set_text("")
        self.confirm.set_text("")
        self.pw.grab_focus()
        raise gui.StayOnScreen

    def usernameError(self):
        self.username.set_text("")
        self.username.grab_focus()
        raise gui.StayOnScreen

    def fullnameError(self):
        self.fullname.set_text("")
        self.fullname.grab_focus()
        raise gui.StayOnScreen

    def handleCapsLockRelease(self, window, event, label):
        if event.keyval == gtk.keysyms.Caps_Lock and \
           event.state & gtk.gdk.LOCK_MASK:
            self.setCapsLockLabel()

    def setCapsLockLabel(self):
        if _isys.isCapsLockEnabled():
            self.capslock.set_text("<b>" + _("Caps Lock is on.") + "</b>")
            self.capslock.set_use_markup(True)
        else:
            self.capslock.set_text("")

    def isStringLegal(self, tstr, spaces = True):
        legal = string.digits + string.ascii_letters + string.punctuation
        if spaces:
            legal += " "
        for letter in tstr:
            if letter not in legal:
                return False
        return True

    def isUsernameAlreadyAvailable(self, username):
        import pwd
        return username in [x.pw_name for x in pwd.getpwall()]

    def getNext (self):
        pw = self.pw.get_text()
        confirm = self.confirm.get_text()
        username = self.username.get_text().lower()
        fullname = self.fullname.get_text()

        if not pw or not confirm:
            self.intf.messageWindow(_("Error with Password"),
                                    _("You must enter your user password "
                                      "and confirm it by typing it a second "
                                      "time to continue."),
                                    custom_icon="error")
            self.passwordError()

        if pw != confirm:
            self.intf.messageWindow(_("Error with Password"),
                                    _("The passwords you entered were "
                                      "different.  Please try again."),
                                    custom_icon="error")
            self.passwordError()

        if len(pw) < 6:
            self.intf.messageWindow(_("Error with Password"),
                                    _("User password must be at least "
                                      "six characters long."),
                                    custom_icon="error")
            self.passwordError()

        try:
            cracklib.FascistCheck(pw)
        except ValueError, e:
            msg = gettext.ldgettext("cracklib", e)
            ret = self.intf.messageWindow(_("Weak Password"),
                                          _("You have provided a weak password: %s") % msg,
                                          type="custom", custom_icon="error",
                                          custom_buttons=[_("Cancel"), _("Use Anyway")])
            if ret == 0:
                self.passwordError()

        if not self.isStringLegal(pw):
            self.intf.messageWindow(_("Error with Password"),
                                    _("Requested password contains "
                                      "non-ASCII characters, which are "
                                      "not allowed."),
                                    custom_icon="error")
            self.passwordError()

        if len(username) < 2:
            self.intf.messageWindow(_("Error with username"),
                                    _("Username too short"),
                                    custom_icon="error")
            self.usernameError()

        if not self.isStringLegal(username, spaces = False):
            self.intf.messageWindow(_("Error with username"),
                                    _("Requested username contains "
                                      "non-ASCII characters or spaces, which are "
                                      "not allowed."),
                                    custom_icon="error")
            self.usernameError()

        if self.isUsernameAlreadyAvailable(username):
            self.intf.messageWindow(_("Error with username"),
                                    _("Requested username is already taken."),
                                    custom_icon="error")
            self.usernameError()

        def get_all_groups(user):
            for group in grp.getgrall():
                if user in group.gr_mem:
                    yield group.gr_name

        user_data = {
            'fullname': fullname,
            'password': pw,
            'username': username,
            'groups': list(get_all_groups(LIVE_USER)),
        }
        self.anaconda.users.otherUsers[LIVE_USER] = user_data

        return None