summaryrefslogtreecommitdiffstats
path: root/install/static/webui.js
blob: aa17b414b4bde8b342f84cdf275cbd25bf3f82df (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
/*  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: everything, this file puts it all togheter */

/* tabs definition for IPA webUI */
var admin_tabs_lists = [
    ['identity', 'IDENTITY', [
        ['user', 'Users', ipa_entity_setup],
        ['group', 'Groups', ipa_entity_setup],
        ['host', 'Hosts', ipa_entity_setup],
        ['hostgroup', 'Hostgroups', ipa_entity_setup],
        ['netgroup', 'Netgroups', ipa_entity_setup],
        ['service', 'Services', ipa_entity_setup],
    ]],
    ['policy', 'POLICY', unimplemented_tab],
    ['config', 'CONFIG', [
        ['rolegroup', 'Rolegroups', ipa_entity_setup]
    ]]
];


var self_serv_tabs_lists =
    [
    ['identity', 'IDENTITY', [
        ['user', 'Users', ipa_entity_setup]]]];

var nav_tabs_lists;

/* main (document onready event handler) */
$(function() {

    var whoami_pkey;

    function whoami_on_win(data, text_status, xhr) {
        $(window).bind('hashchange', window_hashchange);
        if (!data.error){
            var whoami = data.result.result[0];
            whoami_pkey=whoami.uid[0];
            $('#loggedinas').find('strong').text(whoami.krbprincipalname[0]);
            $('#loggedinas a').fragment(
                {'user-facet':'details', 'user-pkey':whoami_pkey},2);
            if (whoami.hasOwnProperty('memberof_rolegroup') &&
                whoami.memberof_rolegroup.length > 0){
                nav_tabs_lists = admin_tabs_lists;
            }else{
                nav_tabs_lists = self_serv_tabs_lists;

                var state = {'user-pkey':whoami_pkey ,
                             'user-facet': jQuery.bbq.getState('user-facet') ||
                             'details'};
                $.bbq.pushState(state);
            }

            var navigation = $('#navigation');
            nav_create(nav_tabs_lists, navigation, 'tabs');
            nav_select_tabs(nav_tabs_lists, navigation);

            $('#login_header').html(ipa_messages.login.header);
        }else{
            alert("Unable to find prinicpal for logged in user");
        }
    };

    function init_on_win(data, text_status, xhr) {
        ipa_cmd('user_find', [], {"whoami":"true","all":"true"}, whoami_on_win,
            function(xhr, options, thrownError) {
                alert("Error: "+thrownError);
            },
            null
        );
    };

    ipa_init(null, null, init_on_win,
        function(xhr, options, thrownError) {
            alert("Error: "+thrownError);
        }
    );
});

/* use this to track individual changes between two hashchange events */
var window_hash_cache = {};

/* main loop (hashchange event handler) */
function window_hashchange(evt)
{
    var navigation = $('#navigation');
    nav_select_tabs(nav_tabs_lists, navigation);

    for (var i = 0; i < nav_tabs_lists.length; ++i) {
        var t = nav_tabs_lists[i];
        if (typeof t[2] != 'function' && t[2].length) {
            for (var j = 0; j < t[2].length; ++j) {
                var tt = t[2][j];
                var obj_name = tt[0];
                var entity_setup = tt[2];
                var div = $('#' + tt[0]);

                var state = obj_name + '-facet';
                var facet = $.bbq.getState(state, true) || 'search';
                var last_facet = window_hash_cache[state] || 'search';
                if (facet != last_facet) {
                    entity_setup(div);
                    continue;
                }

                if (facet == 'search') {
                    state = obj_name + '-filter';
                    var filter = $.bbq.getState(state, true);
                    var last_filter = window_hash_cache[state];
                    if (filter != last_filter)
                        entity_setup(div);
                } else if (facet == 'details') {
                    state = obj_name + '-pkey';
                    var pkey = $.bbq.getState(state, true);
                    var last_pkey = window_hash_cache[state];
                    if (pkey != last_pkey)
                        entity_setup(div);
                } else if (facet == 'associate') {
                    state = obj_name + '-enroll';
                    var enroll = $.bbq.getState(state, true);
                    var last_enroll = window_hash_cache[state];
                    if (enroll != last_enroll)
                        entity_setup(div);
                }
            }
        }
    }

    window_hash_cache = $.bbq.getState();
}

/* builder function for unimplemented tab content */
function unimplemented_tab(jobj)
{
    jobj.text('Not implemented yet!');
}