summaryrefslogtreecommitdiffstats
path: root/install/ui/dns.js
blob: 6ec807a09fc531de018c1722722ecea14cff2f10 (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
/*jsl:import ipa.js */
/*jsl:import search.js */

/*  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, either version 3 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/>.
 */

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

/* DNS */
IPA.entity_factories.dnszone = function() {

    if (!IPA.dns_enabled) {
        throw "DNS not enabled on server";
    }

    return IPA.entity_builder().
        entity('dnszone').
        search_facet({
            title: IPA.metadata.objects.dnszone.label,
            columns:['idnsname']
        }).
        details_facet({
            sections:[{
                name:'identity',
                fields:[
                    'idnsname',
                    'idnszoneactive',
                    'idnssoamname',
                    'idnssoarname',
                    'idnssoaserial',
                    'idnssoarefresh',
                    'idnssoaretry',
                    'idnssoaexpire',
                    'idnssoaminimum',
                    'dnsttl',
                    'dnsclass',
                    'idnsallowdynupdate',
                    'idnsupdatepolicy']}]
        }).
        facet({
            factory: IPA.dnsrecord_facet,
            name: 'records',
            facet_group: 'member',
            label: IPA.metadata.objects.dnsrecord.label,
            columns: [
                {
                    name: 'idnsname',
                    label: IPA.get_entity_param('dnsrecord', 'idnsname').label,
                    primary_key: true
                },
                {
                    name: 'type',
                    label: 'Record Type'
                },
                {
                    name: 'data',
                    label: 'Data'
                }
            ]
        }).
        standard_association_facets().
        adder_dialog({
            fields: [
                'idnsname',
                'idnssoamname',
                'idnssoarname',
                {factory:IPA.force_dnszone_add_checkbox_widget}]
        }).
        build();
};

IPA.force_dnszone_add_checkbox_widget = function(spec) {
    var param_info = IPA.get_method_option('dnszone_add', 'force');
    spec.name = 'force';
    spec.label = param_info.label;
    spec.tooltip = param_info.doc;
    spec.undo = false;
    return  IPA.checkbox_widget(spec);
};

IPA.dnsrecord_facet = function(spec) {

    spec = spec || {};

    spec.disable_back_link = false;
    spec.disable_facet_tabs = false;

    var that = IPA.search_facet(spec);

    var record_types = [
        'a', 'aaaa', 'dname', 'cname', 'mx', 'ns', 'ptr',
        'srv', 'txt', 'a6', 'afsdb', 'cert', 'ds',
        'key', 'kx', 'loc',  'naptr', 'nsec',
        'rrsig', 'sshfp'
    ];

    that.init = function() {

        that.facet_init();

        that.table = IPA.table_widget({
            'class': 'content-table',
            name: 'search',
            label: IPA.metadata.objects[that.entity_name].label,
            entity_name: that.entity_name,
            scrollable: true
        });

        var columns = that.columns.values;
        for (var i=0; i<columns.length; i++) {
            var column = columns[i];
            that.table.add_column(column);
        }

        that.table.select_changed = function() {
            that.select_changed();
        };

        that.table.refresh = function() {
            that.refresh();
        };

        that.table.init();
    };

    function create_type_select(id,add_none) {
        var type_select = $('<select/>',{
            id: id
        });

        if (add_none){
            type_select.append($('<option/>', {
                text: '(any)',
                value: ''
            }));
        }
        for (var t = 0 ; t < record_types.length ; t += 1){
            var record_type = record_types[t].toUpperCase();

            type_select.append($('<option/>',{
                text: record_type,
                value: record_type
            }));
        }
        return type_select;
    }

    that.add = function() {

        var dialog = IPA.dialog({
            title: IPA.messages.objects.dnsrecord.add
        });

        dialog.create = function() {

            var dl = $('<dl/>').appendTo(dialog.container);

            $('<dt/>', {
                html: IPA.messages.objects.dnsrecord.resource
            }).appendTo(dl);

            var dd = $('<dd/>').appendTo(dl);

            dialog.resource = $('<input/>', {
                type: 'text'
            }).appendTo(dd);

            $('<dt/>', {
                html: IPA.messages.objects.dnsrecord.type
            }).appendTo(dl);

            dd = $('<dd/>').appendTo(dl);

            dialog.type = create_type_select('dns-record-type').appendTo(dd);

            $('<dt/>', {
                html: IPA.messages.objects.dnsrecord.data
            }).appendTo(dl);

            dd = $('<dd/>').appendTo(dl);

            dialog.data = $('<textarea/>', {
                rows: 8,
                cols: 20
            }).appendTo(dd);
        };

        dialog.add_button(IPA.messages.buttons.add, function() {
            dialog.add();
            dialog.close();
        });

        dialog.add_button(IPA.messages.buttons.add_and_add_another, function() {
            dialog.add();
        });

        dialog.add_button(IPA.messages.buttons.cancel, function() {
            dialog.close();
        });

        dialog.add = function() {

            var pkey = $.bbq.getState(that.entity_name+'-pkey');
            var resource = dialog.resource.val();

            var options = {};
            var key =  dialog.type.val().toLowerCase()+'record';
            options[key] = dialog.data.val();

            var command = IPA.command({
                entity: 'dnsrecord',
                method: 'add',
                args: [pkey, resource],
                options: options,
                on_success: function(data, text_status, xhr) {
                    that.refresh();
                }
            });

            command.execute();
        };

        dialog.init();

        dialog.open(that.container);
    };

    that.remove = function() {

        var values = that.table.get_selected_rows();

        if (!values.length) {
            return;
        }

        var zone = $.bbq.getState('dnszone-pkey');

        var records = [];

        values.each(function() {
            var tr = $(this);

            records.push({
                resource: $('span[name=idnsname]', tr).text(),
                type: $('span[name=type]', tr).text().toLowerCase(),
                data: $('span[name=data]', tr).text()
            });
        });

        var dialog = IPA.dialog({
            title: IPA.messages.buttons.remove
        });

        dialog.create = function() {

            var to_delete_table =
                $('<table class="search-table" >'+
                  '<thead><tr><th>Resource</th><th>Type</th></tr></thead>'+
                  '<tbody></tbody></table>').appendTo(dialog.container);

            var to_delete_body =  to_delete_table.find('tbody');

            for (var i=0; i<records.length; i++) {
                var record = records[i];

                var tr = $('<tr></tr>').appendTo(to_delete_body);

                $('<td/>', {
                    html: record.resource
                }).appendTo(tr);

                $('<td/>', {
                    html: record.type
                }).appendTo(tr);
            }

            $('<p/>', {
                text: IPA.messages.search.delete_confirm
            }).appendTo(dialog.container);
        };

        dialog.add_button(IPA.messages.buttons.remove, function() {

            var batch = IPA.batch_command({
                on_success: function() {
                    that.refresh();
                    dialog.close();
                },
                on_error: function() {
                    that.refresh();
                    dialog.close();
                }
            });

            for (var i=0; i<records.length; i++) {
                var record = records[i];

                var command = IPA.command({
                    entity: 'dnsrecord',
                    method: 'del',
                    args: [zone, record.resource]
                });

                command.set_option(record.type+'record', record.data);

                batch.add_command(command);
            }

            batch.execute();
        });

        dialog.add_button(IPA.messages.buttons.cancel, function() {
            dialog.close();
        });

        dialog.init();

        dialog.open(that.container);
    };

    that.create_header = function(container) {

        that.facet_create_header(container);

        var span = $('<span/>', {
            'class': 'right-aligned-facet-controls'
        }).appendTo(that.controls);

        that.filter = $('<input/>', {
            type: 'text',
            'class': 'search-filter',
            name: 'filter'
        }).appendTo(span);

        that.filter.keypress(function(e) {
            /* if the key pressed is the enter key */
            if (e.which == 13) {
                that.find();
            }
        });

        /*
          The old DNS plugin allowed for search based on record type.
          This one does not. If the plugin gets modified to support
          Record type searches, uncomment the following lines and
          adjust the code that modifies the search parameters.

          that.controls.append('Type');
          create_type_select('dns-record-type-filter',true).
          appendTo(that.controls);
        */

        that.find_button = IPA.action_button({
            name: 'find',
            icon: 'search-icon',
            click: function(){
                that.find();
                return false;
            }
        }).appendTo(span);

        that.controls.append(IPA.create_network_spinner());

        that.remove_button = IPA.action_button({
            name: 'remove',
            label: IPA.messages.buttons.remove,
            icon: 'remove-icon',
            click: function() {
                if (that.remove_button.hasClass('input_link_disabled')) return false;
                that.remove();
                return false;
            }
        }).appendTo(that.controls);

        that.add_button = IPA.action_button({
            name: 'add',
            label: IPA.messages.buttons.add,
            icon: 'add-icon',
            click: function() {
                that.add();
                return false;
            }
        }).appendTo(that.controls);
    };

    that.create_content = function(container) {

        that.table.create(container);
        that.table.setup(container);
    };

    that.setup = function(container) {

        that.facet_setup(container);

        //commented out until data is searchable
        //control_span.append('Data');
        //control_span.append($('<input />',{
        //    type: "text",
        //    id: 'dns-record-data-filter',
        //    name: 'search-' + obj_name + '-filter'
        //}));
    };

    that.show = function() {
        that.facet_show();

        that.record = $.bbq.getState(that.entity_name+'-record');
        that.pkey = $.bbq.getState(that.entity_name+'-pkey');
        that.header.set_pkey(that.pkey);
    };


    that.get_records = function(result) {
        var idnsname;
        if (result.idnsname) {
            idnsname = result.idnsname[0];
        } else {
            idnsname = result.dn.split(',')[0].split('=')[1];
        }

        var records = [];
        for (var i=0; i<record_types.length; i++){
            var type = record_types[i];
            var data = result[type+'record'] || [];
            for (var j =0 ; j < data.length; j+=1){
                var record = {
                    idnsname: idnsname,
                    type : type,
                    data : data[j]
                };
                records.unshift(record);
            }
        }

        return records;
    };


    that.refresh = function() {

        function on_success(data, text_status, xhr) {

            that.table.empty();

            var result = data.result.result;
            for (var i = 0; i<result.length; i++) {
                var records = that.get_records(result[i]);

                for (var j =0; j < records.length; j +=1){
                    var record = records[j];
                    that.table.add_record(record);
                }
            }

            var summary = $('span[name=summary]', that.table.tfoot);
            if (data.result.truncated) {
                var message = IPA.messages.search.truncated;
                message = message.replace('${counter}', data.result.count);
                summary.text(message);
            } else {
                summary.text(data.result.summary);
            }

            that.filter.focus();
            that.select_changed();
        }

        function on_error(xhr, text_status, error_thrown) {
            var summary = $('span[name=summary]', that.table.tfoot).empty();
            summary.append(error_thrown.name+': '+error_thrown.message);
        }

        var options = {};

        var filter = that.filter.val();
/*
        if (filter){
            options.idnsname = filter;
        }

        var type_filter = that.container.find("#dns-record-type-filter").val();
        if (type_filter){
            options.type = type_filter;
        }

        var data_filter = that.container.find("#dns-record-data-filter").val();
        if (data_filter){
            options.data = data_filter;
        }
*/
        var args = [$.bbq.getState(that.entity_name+'-pkey')];

        if (filter) {
            args.push(filter);
        }

        IPA.command({
            entity: 'dnsrecord',
            method: 'find',
            args: args,
            options: options,
            on_success: on_success,
            on_error: on_error
        }).execute();
    };

    return that;
};