summaryrefslogtreecommitdiffstats
path: root/install/static/associate.js
blob: 2050e468ee0f6e63bc9a4416b52b7304f0c1ecb3 (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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
/*  Authors:
 *    Adam Young <ayoung@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 */
/* CURRENTLY ALSO REQUIRES search.js, because it reuses it's code to create
 * the AssociationList elements; IT NEEDS IT'S OWN CODE! */

/**
*This associator is built for the case where each association requires a separate rpc
*/
function serial_associate(form, manyObjPkeys, on_success)
{
    var associator = this;
    this.form = form;
    this.manyObjPkeys =  manyObjPkeys;
    this.on_success = on_success;

    this.associate_next = function(){
        var form = this.form;
        //TODO assert pre-conditions
        var  manyObjPkey =  manyObjPkeys.shift();
        if (manyObjPkey){
            var options = {};
            options[form.oneObj] = form.pkey;
            var args = [manyObjPkey];

            ipa_cmd( form.method,args, options ,
                     function(data, text_status, xhr) {
                         if (data.error){
                             alert('error adding member: '+data.error.message);
                         }else{
                             associator.associate_next();
                         }
                     },
                     function(xhr, text_status, error_thrown) {
                         alert('associateFailure');
                     },
                     form.manyObj );
        }else{
            associator.on_success();
        }
    }
    this.associate_next();
}


function serial_delete(delete_method, one_entity, one_entity_pkey, many_entity,
                       many_entity_pkeys, on_success){
    var that = {};
    that.one_entity = one_entity;
    that.on_success = on_success;
    that.many_entity_pkeys = many_entity_pkeys;
    that.delete_next = function(){
        var  many_entity_pkey =  this.many_entity_pkeys.shift();
        if (many_entity_pkey){
            var options = {};
            options[one_entity] = one_entity_pkey;
            var args = [many_entity_pkey];
            ipa_cmd( delete_method,args, options ,
                     function(data, text_status, xhr) {
                         if (data.error){
                             alert("error deleting member: "
                                   +data.error.message);
                         }else{
                             that.delete_next();
                         }
                     },
                     function(xhr, text_status, error_thrown) {
                         alert("associateFailure");
                     },
                     many_entity );
        }else{
            this.on_success();
        }
    }

    that.delete_next();
}

function bulk_delete(delete_method, one_entity, one_entity_pkey, many_entity,
                     many_entity_pkeys, on_success){
    if (many_entity_pkeys.length){
        var options = {};
        options[one_entity] = one_entity_pkey;
        var option = many_entity_pkeys.shift();
        while(many_entity_pkeys.length > 0) {
                option += ',' + many_entity_pkeys.shift();
            }

            var options = {
                'all':true
            };
            options[many_entity] = option;
            var args = [one_entity_pkey];
            ipa_cmd( delete_method,args, options ,
                     function(data, text_status, xhr) {
                         if (data.error){
                             alert("error deleting member: "
                                   +data.error.message);
                         }else{
                             on_success();
                         }
                     },
                     function(xhr, text_status, error_thrown) {
                         alert("associateFailure");
                     },
                     one_entity );
    }else{
        on_success();
    }
}


/**
*This associator is for the common case where all the asociations can be sent
in a single rpc
*/
function bulk_associate(form, manyObjPkeys, on_success)
{
    var associator = this;
    this.form = form;
    this.manyObjPkeys = manyObjPkeys;
    this.on_success = on_success;

    var form = this.form;
    var option = manyObjPkeys.shift();
    while(manyObjPkeys.length > 0) {
        option += ',' + manyObjPkeys.shift();
    }
    var options = {
        'all':true
    };
    options[form.manyObj] = option;
    var args = [form.pkey];
    ipa_cmd( form.method,args, options ,
             function(data, text_status, xhr) {
                 if (data.error){
                     alert('error adding member: '+data.error.message);
                 }else{
                     associator.on_success();
                 }
             },
             function(xhr, text_status, error_thrown) {
                 alert('associateFailure');
             },
             form.oneObj );
}

/**
 *  Create a form for a one to many association.
 *
 */
function AssociationForm(oneObj, pkey, manyObj, on_success, associator, method)
{
    var form = this;

    this.oneObj = oneObj;
    this.pkey = pkey;
    this.manyObj = manyObj;
    this.on_success = on_success;

    this.dialog = $('<div></div>');

    //An optional parameter to determine what ipa method to call to create
    //the association
    if (method)
        this.method = method;
    else
        this.method = 'add_member';

    this.associator = associator;



    this.setup = function() {
        var label = IPA.metadata[form.manyObj].label;

        form.dialog.attr('title', 'Enroll '+form.oneObj+' '+form.pkey+' in '+label);

        association_form_create(form.dialog);

        var availableList = $('#availableList', form.dialog);
        availableList.html('');

        var enrollments = $('#enrollments', form.dialog);
        enrollments.html('');

        $('#addToList', form.dialog).click(function(){
            $('#availableList :selected', form.dialog).each(function(i, selected){
                enrollments.append(selected);
            });
            $('#availableList :selected', form.dialog).remove();
        });
        $('#removeFromList', form.dialog).click(function(){
            $('#enrollments :selected', form.dialog).each(function(i, selected){
                availableList.append(selected);
            });
            $('#enrollments :selected', form.dialog).remove();
        });

        $('#find', form.dialog).click(function(){
            form.search();
        });

        form.dialog.dialog({
            modal: true,
            width: 600,
            buttons: {
                'Enroll': function(evt) {
                    form.associate(form.on_success);
                },
                'Cancel': form.close
            }
        });
    };

    this.close = function() {
        form.dialog.dialog('close');
    };

    this.search = function() {

        function search_on_win(data, text_status, xhr) {
            var results = data.result;
            var list = $('#availableList', form.dialog);
            list.html('');

            var searchColumn = IPA.metadata[form.manyObj].primary_key;

            for (var i =0; i != results.count; i++){
                var result = results.result[i];
                $('<option></option>',{
                    value: result[searchColumn][0],
                    html: result[searchColumn][0]
                }).appendTo(list);
            }
        }

        function search_on_fail(xhr, text_status, errow_thrown) {
            alert('associationSearchFailure');
        }

        var queryFilter = $('#associateFilter', form.dialog).val();
        ipa_cmd('find', [queryFilter], {}, search_on_win, null, form.manyObj);
    };

    this.associate = function (on_success) {
        var manyObjPkeys = [];
        $('#enrollments', form.dialog).children().each(function (i, selected) {
            manyObjPkeys.push(selected.value);
        });
        this.associator(form, manyObjPkeys, on_success);
    };
}

function ipa_association_config(spec) {
    spec = spec || {};

    var that = {};

    that.name = spec.name;
    that.associator = spec.associator;
    that.method = spec.method;

    return that;
}

function ipa_association_facet(spec) {

    spec = spec || {};

    var that = ipa_facet(spec);

    that.configs = [];
    that.configs_by_name = {};

    that.other_entity = null;

    that.get_configs = function() {
        return that.configs;
    };

    that.get_config = function(name) {
        return that.configs_by_name[name];
    };

    that.add_config = function(config) {
        that.configs.push(config);
        that.configs_by_name[config.name] = config;
    };

    that.create_config = function(spec) {
        var config = ipa_association_config(spec);
        that.add_config(config);
        return config;
    };

    that.is_dirty = function() {
        var pkey = $.bbq.getState(that.entity_name + '-pkey', true) || '';
        var other_entity = $.bbq.getState(that.entity_name + '-enroll', true) || '';
        return pkey != that.pkey || other_entity != that.other_entity;
    };

    that.setup = function(container, unspecified) {

        that.pkey = $.bbq.getState(that.entity_name + '-pkey', true) || '';
        that.other_entity = $.bbq.getState(that.entity_name + '-enroll', true) || '';

        that.member_attrribute = ipa_get_member_attribute(that.entity_name, that.other_entity);
        that.columns = [
            {
                'title': IPA.metadata[that.other_entity].label,
                'column': that.member_attrribute + '_' + that.other_entity
            }
        ];

        var config = that.get_config(that.other_entity);

        if ( config && config.associator ===  'serial' ){
            that.associator = serial_associate;
            that.deleter = serial_delete;
        }else{
            that.associator = bulk_associate;
            that.deleter = bulk_delete;
        }

        that.method = config ? config.method : null;

        that.setup_views(container);

        //TODO I18N
        var header_message = that.other_entity + '(s) enrolled in '  +
            that.entity_name + ' ' + that.pkey;
        container.append($('<h2/>',{html:  header_message }) );
        association_list_create(that.entity_name, container);
        container.find('.search-filter').css('display', 'none');
        container.find('.search-buttons').html('');

        var ctrls = container.find('.search-buttons');

        ipa_make_button( 'ui-icon-plus',IPA.messages.button.enroll).
            click(function() {
                that.show_enrollment_dialog(container);
            }).appendTo(ctrls);

        ipa_make_button('ui-icon-trash',IPA.messages.button.delete).
            click(function(){
                that.delete_on_click(container);
            }).appendTo(ctrls);



        var header = container.find('.search-table thead:last').find("tr");;
        for (var i =0 ; i != that.columns.length ;i++){
            $('<th></th>',{
                html: that.columns[i].title
            }).appendTo(header);
        }
        that.refresh(container);
    };

    that.delete_on_click = function(container) {
        var delete_list = [];
        var delete_dialog = $('<div></div>', {
            title: IPA.messages.button.delete,
            'class': 'search-dialog-delete'
        });

        function delete_on_click() {
            that.deleter('remove_member', that.entity_name,
                          that.pkey, that.other_entity, delete_list,
                          function(){ that.refresh(container)});
            delete_dialog.dialog('close');
        }
        function delete_on_win() {
            delete_dialog.dialog('close');
        }
        function cancel_on_click() {
            delete_dialog.dialog('close');
        }
        var confirm_list = $('<ul/>');
        var delete_list = [];
        container.find('.search-selector').each(function () {
            if (this.checked){
                delete_list.push(this.title);
                confirm_list.append($('<li/>',{text: this.title}));
            }
        });
        if (delete_list.length == 0){
            return;
        }
        delete_dialog.append(confirm_list);
        delete_dialog.append(
            $('<p/>',
              {text:IPA.messages.search.delete_confirm}));


        delete_dialog.dialog({
            modal: true,
            buttons: {
                'Delete': delete_on_click,
                'Cancel': cancel_on_click
            }
        });
    }

    that.refresh = function(container) {

        function refresh_on_success(data, text_status, xhr) {
            var tbody = container.find('.search-table tbody');
            tbody.empty();
            var associationList = data.result.result[that.columns[0].column];
            //TODO, this is masking an error where the wrong
            //direction association is presented upon page reload.
            //if the associationList is unset, it is because
            //form.associationColumns[0] doesn't exist in the results
            if (!associationList) return;


            for (var j = 0; j < associationList.length; j++){
                var association = associationList[j];
                var row  = $('<tr/>').appendTo(tbody);
                search_generate_checkbox_td(row, association);


                for (var k = 0; k < that.columns.length ;k++){
                    var column = that.columns[k].column;
                    $('<td></td>',{
                        html:data.result.result[column][j],
                    }).appendTo(row);
                }
            }

            tbody.find('.search-a-pkey').click(function () {
                var jobj = $(this);
                var state = {};
                state[that.other_entity + '-facet'] = 'details';
                state[that.other_entity + '-pkey'] = $(this).text();
                //Before this will work, we need to set the tab one level up
                //for example:
                //state['identity'] = 0;
                //but we have no way of getting the index.

                $.bbq.pushState(state);
                return (false);
            });
        }

        function refresh_on_error(xhr, text_status, error_thrown) {
            var search_results = $('.search-results', container).empty();
            search_results.append('<p>Error: '+error_thrown.name+'</p>');
            search_results.append('<p>'+error_thrown.title+'</p>');
            search_results.append('<p>'+error_thrown.message+'</p>');
        }

        ipa_cmd('show', [that.pkey], {}, refresh_on_success, refresh_on_error, that.entity_name);
    };

    that.show_enrollment_dialog = function(container) {



        var enrollment_dialog = new AssociationForm(
            that.entity_name,
            that.pkey,
            that.other_entity,
            function() {
                that.refresh(container);
                enrollment_dialog.close();
            },
            that.associator,
            that.method
        );
        enrollment_dialog.setup();
    };

    return that;
}


function association_form_create(jobj)
{
    var div = $('<div id="associations"></div>');

    var form = $('<form></form>');
    var form_div = $('<div></div>');
    form_div.css('border-width', '1px');
    var sub_div = $('<div></div>');
    sub_div.append($('<input />', {
        id: 'associateFilter',
        type: 'text'
    }));
    sub_div.append($('<input />', {
        id: 'find',
        type: 'button',
        value: 'Find'
    }));

    form_div.append(sub_div);
    form.append(form_div);
    var form_div = $('<div id="results"></div>');
    form_div.css('border', '2px solid rgb(0, 0, 0)');
    form_div.css('position', 'relative');
    form_div.css('height', '200px');
    var sub_div = $('<div></div>');
    sub_div.css('float', 'left');
    sub_div.append($('<div></div>', {
        text: 'Available'
    }));
    sub_div.append($('<select></select>', {
        id: 'availableList',
        width: '150px',
        size: '10',
        multiple: 'true'
    }));
    form_div.append(sub_div);
    var sub_div = $('<div></div>');
    sub_div.css('float', 'left');
    var p = $('<p></p>');
    p.append($('<input />', {
        id: 'removeFromList',
        type: 'button',
        value: '<<'
    }));
    sub_div.append(p);
    var p = $('<p></p>');
    p.append($('<input />', {
        id: 'addToList',
        type: 'button',
        value: '>>'
    }));
    sub_div.append(p);
    form_div.append(sub_div);
    var sub_div = $('<div></div>');
    sub_div.css('float', 'left');
    sub_div.append($('<div></div>', {
        text: 'Prospective'
    }));
    sub_div.append($('<select></select>', {
        id: 'enrollments',
        width: '150px',
        size: '10',
        multiple: 'true'
    }));
    form_div.append(sub_div);
    form.append(form_div);
    form.append($('<hr />'));
    form.append($('<div></div>', {
        text: 'Message Area'
    }));
    form.append($('<hr />'));
    var form_div = $('<div></div>');
    var span = $('<span></span>');
    span.css('float', 'left');
    span.append($('<p></p>', {
        text: '*Enter Group Names and Press Groups'
    }));
    span.append($('<p></p>', {
        text: '*More stuff'
    }));
    span.append($('<p></p>', {
        text: '*More stuff'
    }));
    form_div.append(span);
    form.append(form_div);
    div.append(form);
    jobj.append(div);
}

function association_list_create(obj_name, jobj)
{
    search_create(obj_name, [], jobj);
}