summaryrefslogtreecommitdiffstats
path: root/install/static/user.js
blob: 1b6054d7e29b55d810b72a595ebcf5061291aed7 (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
/*  Authors:
 *    Pavel Zuna <pzuna@redhat.com>
 *
 * Copyright (C) 2010 Red Hat
 * see file 'COPYING' for use and warranty information
 *
 * 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; version 2 only
 *
 * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

/* REQUIRES: ipa.js, details.js, search.js, add.js, entity.js */

ipa_entity_set_search_definition('user', [
    ['cn', 'Name', null],
    ['uid', 'Login', null],
    ['uidnumber', 'UID', null],
    ['mail', 'EMAIL', null],
    ['telephonenumber', 'Phone', null],
    ['title', 'Job Title', null],
    ['quick_links', 'Quick Links', ipa_entity_quick_links]
]);

ipa_entity_set_add_definition('user', [
    'dialog-add-user', 'Add New User', [
        ['uid', 'Login', null],
        ['givenname', 'First Name', null],
        ['sn', 'Last Name', null]
    ]
]);


ipa_entity_set_details_definition('user', [
    ipa_stanza({name:'identity', label:'Identity Details'}).
        input({name:'title', label: 'Title'}).
        input({name:'givenname', label:'First Name'}).
        input({name:'sn', label:'Last Name'}).
        input({name:'cn', label:'Full Name'}).
        input({name:'displayname', label:'Dispaly Name'}).
        input({name:'initials', label:'Initials'}),
    ipa_stanza({name:'account', label:'Account Details'}).
        input({name:'status', label:'Account Status', load:user_status_load}).
        input({name:'uid', label:'Login'}).
        input({name:'userpassword',
               label:'Password',
               load: user_password_load}).
        input({name:'uidnumber', label:'UID'}).
        input({name:'gidnumber', label:'GID'}).
        input({name:'homedirectory', label:'homedirectory'}),
    ipa_stanza({name:'contact', label:'Contact Details'}).
        input({name:'mail', label:'E-mail Address'}).
        input({name:'telephonenumber', label:'Phone Numbers'}).
        input({name:'pager', label:'Pager Numbers'}).
        input({name:'mobile', label:'Mobile Phone Numbers'}).
        input({name:'facsimiletelephonenumber', label:'Fax Numbers'}),
    ipa_stanza({name:'address', label:'Mailing Address'}).
        input({name:'street', label:'Address'}).
        input({name:'location', label:'City'}).
        input({name:'state', label:'State', load:user_state_load}).
        input({name:'postalcode', label:'ZIP'}),
    ipa_stanza({name:'employee', label:'Employee Information'}).
        input({name:'ou', label:'Org. Unit'}).
        input({name:'manager', label:'Manager'}),
    ipa_stanza({name:'misc', label:'Misc. Information'}).
        input({name:'carlicense', label:'Car License'})
]);

ipa_entity_set_association_definition('user', {
    'group': { associator: 'serial' },
    'netgroup': { associator: 'serial' },
    'rolegroup': { associator: 'serial' },
    'taskgroup': { associator: 'serial' }
});

/* Account status Toggle button */

function toggle_on_click(obj)
{
    var jobj = $(obj);
    var val = jobj.attr('title');
    if (val == 'Active') {
        ipa_cmd(
            'lock', [qs['pkey']], {}, on_lock_win, on_fail,
            IPA.metadata['user']['name']
        );
    } else {
        ipa_cmd(
            'unlock', [qs['pkey']], {}, on_lock_win, on_fail,
            IPA.metadata['user']['name']
        );
    }
    return (false);
}

function on_lock_win(data, textStatus, xhr)
{
    if (data['error']) {
        alert(data['error']['message']);
        return;
    }

    var jobj = $('a[title=Active]');
    if (jobj.length) {
        if (ipa_details_cache) {
            var memberof = ipa_details_cache['memberof'];
            if (memberof) {
                memberof.push(
                    'cn=inactivated,cn=account inactivation'
                );
            } else {
                memberof = ['cn=inactivated,cn=account inactivation'];
            }
            ipa_details_cache['memberof'] = memberof;
            a_status(jobj.parent().prev(), ipa_details_cache);
            jobj.parent().remove()
        }
        return;
    }

    var jobj = $('a[title=Inactive]');
    if (jobj.length) {
        if (ipa_details_cache) {
            var memberof = ipa_details_cache['memberof'];
            if (memberof) {
                for (var i = 0; i < memberof.length; ++i) {
                    if (memberof[i].indexOf('cn=inactivated,cn=account inactivation') != -1) {
                        memberof.splice(i, 1);
                        break;
                    }
                }
            } else {
                memberof = [];
            }
            ipa_details_cache['memberof'] = memberof;
            a_status(jobj.parent().prev(), ipa_details_cache);
            jobj.parent().remove();
        }
        return;
    }
}

/* ATTRIBUTE CALLBACKS */

var toggle_temp = 'S <a href="jslink" onclick="return (toggle_on_click(this))" title="S">Toggle</a>';
function user_status_load(container, result) {
    var dt = $('dt[title='+this.name+']', container);
    if (!dt.length) return;

    var memberof = result['memberof'];
    var dd;

    if (memberof) {
        for (var i = 0; i < memberof.length; ++i) {
            if (memberof[i].indexOf('cn=inactivated,cn=account inactivation') != -1) {
                var t = toggle_temp.replace(/S/g, 'Inactive');
                dd = ipa_create_first_dd(this.name, t);
                dt.after(dd);
                return;
            }
        }
    }

    dd = ipa_create_first_dd(this.name, toggle_temp.replace(/S/g, 'Inactive'));
    dt.after(dd);
}



function resetpwd_on_click(){

    function reset_password(new_password){
        var dialog =  resetpwd_dialog;

        var user_pkey = $.bbq.getState('user-pkey');
        var pw_pkey;
        if (user_pkey === ipa_whoami_pkey){
            pw_pkey = [];
        }else{
            pw_pkey = [user_pkey];
        }

        ipa_cmd('passwd',
                pw_pkey, {"password":new_password},
                function(){
                    alert("Password change complete");
                    dialog.dialog("close");
                },
                function(){});
    }


    var resetpwd_dialog =
        $('<div ><dl class="modal">'+
          '<dt>New Password</dt>'+
          '<dd class="first" ><input id="password_1" type="password"/></dd>'+
          '<dt>Repeat Password</dt>'+
          '<dd class="first"><input id="password_2" type="password"/></dd>'+
          '</dl></div>');
    resetpwd_dialog.dialog(
        { modal: true,
          minWidth:400,
          buttons: {
              'Reset Password': function(){
                  var p1 = $("#password_1").val();
                  var p2 = $("#password_2").val();
                  if (p1 != p2){
                      alert("passwords must match");
                      return;
                  }
                  reset_password(p1);
              },
              'Cancel':function(){
                  resetpwd_dialog.dialog('close');
              }
          }});
    return false;
}

function user_password_load(container, result) {
    var dt = $('dt[title='+this.name+']', container);
    if (!dt.length) return;

    dt.after(ipa_create_first_dd(
        this.name,
        $('<a/>',{
            href:"jslink",
            click:resetpwd_on_click,
            title:'userpassword',
            text: 'reset password'
        })));
}

var select_temp = '<select title="st"></select>';
var option_temp = '<option value="V">V</option>';
var states = [
    'AL', 'AK', 'AS', 'AZ', 'AR', 'CA', 'CO', 'CT', 'DE', 'DC', 'FM',
    'FL', 'GA', 'GU', 'HI', 'ID', 'IL', 'IN', 'IA', 'KS', 'KY', 'LA',
    'ME', 'MH', 'MD', 'MA', 'MI', 'MN', 'MS', 'MO', 'MT', 'NE', 'NV',
    'NH', 'NJ', 'NM', 'NY', 'NC', 'ND', 'MP', 'OH', 'OK', 'OR', 'PW',
    'PA', 'PR', 'RI', 'SC', 'SD', 'TN', 'TX', 'UT', 'VT', 'VI', 'VA',
    'WA', 'WV', 'WI', 'WY', ''
];
function user_state_load(container, result) {
    var dt = $('dt[title='+this.name+']', container);
    if (!dt.length) return;

    var next = dt.next();
    next.css('clear', 'none');
    next.css('width', '70px');

    var dd = ipa_create_first_dd(this.name, select_temp);
    dt.after(dd);

    var sel = dt.next().children().first();
    for (var i = 0; i < states.length; ++i)
        sel.append(option_temp.replace(/V/g, states[i]));

    var st = result['st'];
    if (st)
        sel.val(st);
    else
        sel.val('');
}