This file is indexed.

/usr/share/perl5/EBox/DNS/Model/Text.pm is in zentyal-dns 2.3.10+quantal1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
# Copyright (C) 2011-2012 eBox Technologies S.L.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License, version 2, as
# published by the Free Software Foundation.
#
# 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

# Class:
#
#   <EBox::DNS::Model::Text>
#
#   This class inherits from <EBox::Model::DataTable> and represents
#   the object table which contains the free based TXT records for a domain
#
package EBox::DNS::Model::Text;

use base 'EBox::DNS::Model::Record';

use strict;
use warnings;

use EBox::Exceptions::External;
use EBox::Global;
use EBox::Gettext;

use EBox::Types::Text;
use EBox::Types::Select;
use EBox::Types::Union;
use EBox::Types::Union::Text;

# Group: Public methods

# Constructor: new
#
#      Create a new Text model instance
#
# Returns:
#
#      <EBox::DNS::Model::Text> - the newly created model
#      instance
#
sub new
{
    my ($class, %params) = @_;

    my $self = $class->SUPER::new(%params);
    bless($self, $class);

    return $self;
}

# Method: validateTypedRow
#
#   Check the given custom name is a Fully Qualified Domain Name (FQDN)
#
# Overrides:
#
#      <EBox::Model::DataTable::validateTypedRow>
#
sub validateTypedRow
{
    my ($self, $action, $changedFields, $allFields) = @_;

    if ( exists $changedFields->{txt_data} ) {
        my $val = $changedFields->{txt_data}->value();
        # See RFC 4408 for details
        if ( length($val) >= 450 ) {
            throw EBox::Exceptions::External(
                __x('The {name} cannot be longer than {value} characters',
                    name  => $changedFields->{txt_data}->printableName(),
                    value => 450));
        }
    }

    if ( $action eq 'update' ) {
        # Add toDelete the RRs for this TXT record
        my $oldRow  = $self->row($changedFields->{id});
        my $zoneRow = $oldRow->parentRow();
        if ($zoneRow->valueByName('type') ne EBox::DNS::STATIC_ZONE()) {
            my $zone = $zoneRow->valueByName('domain');
            my $hostname = $allFields->{hostName};
            my $record = '';
            if ( $hostname->selectedType() eq 'domain' ) {
                $record = $zone;
            } else {
                $record = $hostname->printableValueByName('hostName');
                $record = "$record.$zone";
            }
            $self->{toDelete} = "$record TXT";
        }
    }

}

# Method: deletedRowNotify
#
# 	Overrides to add to the list of deleted RR in dynamic zones
#
# Overrides:
#
#      <EBox::Model::DataTable::deletedRowNotify>
#
sub deletedRowNotify
{
    my ($self, $row) = @_;

    my $zoneRow = $row->parentRow();
    if ($zoneRow->valueByName('type') ne EBox::DNS::STATIC_ZONE()) {
        my $zone = $zoneRow->valueByName('domain');
        my $hostname = $row->elementByName('hostName');
        my $record = '';
        if ( $hostname->selectedType() eq 'domain' ) {
            $record = $zone;
        } else {
            $record = $hostname->printableValue('hostName');
            $record = "$record.$zone";
        }
        $self->_addToDelete("$record TXT");
    }

}

# Group: Protected methods

# Method: _table
#
# Overrides:
#
#     <EBox::Model::DataForm::_table>
#
sub _table
{
    my ($self) = @_;

    my @tableDesc =
      (
          new EBox::Types::Union(
              fieldName     => 'hostName',
              printableName => __('Host name'),
              editable      => 1,
              help          => __('If you select the Domain, then you are '
                                  . 'choosing the zone'),
              subtypes      =>
                [
                    new EBox::Types::Select(
                        fieldName     => 'ownerDomain',
                        printableName => __('This domain'),
                        foreignModel  => \&_hostnameModel,
                        foreignField  => 'hostname',
                        editable      => 1,
                       ),
                    new EBox::Types::Union::Text(
                        fieldName     => 'domain',
                        printableName => __('Domain'),
                       ),
                    new EBox::Types::Text(
                        fieldName     => 'custom',
                        printableName => __('Custom owner'),
                        editable      => 1,
                        ),
                   ],
             ),
          new EBox::Types::Text(
              fieldName        => 'txt_data',
              printableName    => __x('{txt} data', txt => 'TXT'),
              editable         => 1,
              help             => __('Any data could be provided'),
              allowUnsafeChars => 1,
             ),
      );

    my $dataTable =
        {
            tableName => 'Text',
            printableTableName => __x('{txt} records', txt => 'TXT'),
            automaticRemove => 1,
            modelDomain     => 'DNS',
            defaultActions => ['add', 'del', 'move', 'editField',  'changeView' ],
            tableDescription => \@tableDesc,
            class => 'dataTable',
            help => __('It manages the TXT records for this domain. They are useful to in SPF or DKIM antispam protocols'),
            printableRowName => __x('{txt} record', txt => 'TXT'),
        };

    return $dataTable;
}

# Group: Private methods

# Get the hostname model from DNS module
sub _hostnameModel
{
    my ($type) = @_;

    # FIXME: We cannot use API until the bug in parent deep recursion is fixed
    # my $parentRow = $type->model()->parentRow();
    # if ( defined($parentRow) ) {
    #     return $parentRow->subModel('hostnames');
    # } else {
        # Bug in initialisation code of ModelManager
        my $model = EBox::Global->modInstance('dns')->model('HostnameTable');
        my $dir = $type->model()->directory();
        $dir =~ s:txt:hostnames:g;
        $model->setDirectory($dir);
        return $model;
    # }

}

1;