/usr/share/perl5/EBox/Objects.pm is in zentyal-objects 2.3.6+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 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 | # Copyright (C) 2008-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
package EBox::Objects;
use strict;
use warnings;
use base qw(EBox::Module::Config);
use Net::IP;
use EBox::Validate qw( :all );
use EBox::Global;
use EBox::Objects::Model::ObjectTable;
use EBox::Objects::Model::MemberTable;
use EBox::Exceptions::InvalidData;
use EBox::Exceptions::MissingArgument;
use EBox::Exceptions::DataExists;
use EBox::Exceptions::DataMissing;
use EBox::Exceptions::DataNotFound;
use EBox::Gettext;
sub _create
{
my $class = shift;
my $self = $class->SUPER::_create(name => 'objects',
printableName => __('Objects'),
@_);
bless($self, $class);
return $self;
}
## api functions
# Method: objects
#
# Return all object names
#
# Returns:
#
# Array ref. Each element is a hash ref containing:
#
# id - object's id
# name - object's name
sub objects
{
my ($self) = @_;
my @objects;
my $model = $self->model('ObjectTable');
for my $id (@{$model->ids()}) {
my $object = $model->row($id);
push (@objects, {
id => $id,
name => $object->valueByName('name')
});
}
return \@objects;
}
# Method: objectIds
#
# Return all object ids
#
# Returns:
#
# Array ref - containing ids
sub objectIds # (object)
{
my ($self) = @_;
my @ids = map { $_->{'id'} } @{$self->objects()};
return \@ids;
}
# objectMembers
#
# Return the members belonging to an object
#
# Parameters:
#
# (POSITIONAL)
#
# id - object's id
#
# Returns:
#
# <EBox::Objects::Members>
#
# Exceptions:
#
# <EBox::Exceptions::MissingArgument>
sub objectMembers # (object)
{
my ($self, $id) = @_;
unless (defined($id)) {
throw EBox::Exceptions::MissingArgument("id");
}
my $object = $self->model('ObjectTable')->row($id);
return undef unless defined($object);
return $object->subModel('members')->members();
}
# objectAddresses
#
# Return the network addresses of a object
#
# Parameters:
#
# id - object's id
# mask - return alse addresses' mask (named optional, default false)
#
# Returns:
#
# array ref - containing an ip, empty array if
# there are no addresses in the object
# In case mask is wanted the elements of the array would be [ip, mask]
#
sub objectAddresses
{
my ($self, $id, @params) = @_;
unless (defined($id)) {
throw EBox::Exceptions::MissingArgument("id");
}
my $object = $self->model('ObjectTable')->row($id);
return undef unless defined($object);
return $object->subModel('members')->addresses(@params);
}
# Method: objectDescription
#
# Return the description of an Object
#
# Parameters:
#
# id - object's id
#
# Returns:
#
# string - description of the Object
#
# Exceptions:
#
# DataNotFound - if the Object does not exist
sub objectDescription # (object)
{
my ( $self, $id ) = @_;
unless (defined($id)) {
throw EBox::Exceptions::MissingArgument("id");
}
my $object = $self->model('ObjectTable')->row($id);
unless (defined($object)) {
throw EBox::Exceptions::DataNotFound('data' => __('Object'),
'value' => $object);
}
return $object->valueByName('name');
}
# get ( $id, ['name'])
# Method: objectInUse
#
# Asks all installed modules if they are currently using an Object.
#
# Parameters:
#
# object - the name of an Object
#
# Returns:
#
# boolean - true if there is a module which uses the Object, otherwise
# false
sub objectInUse # (object)
{
my ($self, $object ) = @_;
unless (defined($object)) {
throw EBox::Exceptions::MissingArgument("id");
}
my $global = EBox::Global->getInstance();
my @mods = @{$global->modInstancesOfType('EBox::ObjectsObserver')};
foreach my $mod (@mods) {
if ($mod->usesObject($object)) {
return 1;
}
}
return undef;
}
# Method: objectExists
#
# Checks if a given object exists
#
# Parameters:
#
# id - object's id
#
# Returns:
#
# boolean - true if the Object exists, otherwise false
sub objectExists
{
my ($self, $id) = @_;
unless (defined($id)) {
throw EBox::Exceptions::MissingArgument("id");
}
return defined($self->model('ObjectTable')->row($id));
}
# Method: removeObjectForce
#
# Forces an object to be deleted
#
# Parameters:
#
# object - object description
#
sub removeObjectForce # (object)
{
#action: removeObjectForce
my ($self, $object) = @_;
my $global = EBox::Global->getInstance();
my @mods = @{$global->modInstancesOfType('EBox::ObjectsObserver')};
foreach my $mod (@mods) {
$mod->freeObject($object);
}
}
# Method: addObject
#
# Add object to the objects table. Note this method must exist
# because we must provide an easy way to migrate old objects module
# to this new one.
#
# Parameters:
#
# (NAMED)
#
# id - object's id *(optional*). It will be generated automatically
# if none is passed
#
# name - object's name
#
# members - array ref containing the following hash ref in each value:
#
# name - member's name
# ipaddr_ip - member's ipaddr
# ipaddr_mask - member's mask
# macaddr - member's mac address *(optional)*
#
# readOnly - boolean, set the row unremovable from the UI *(optional)*
#
# Example:
#
# name => 'administration',
# members => [
# { 'name' => 'accounting',
# 'ipaddr_ip' => '192.168.1.3',
# 'ipaddr_mask' => '32',
# 'macaddr' => '00:00:00:FA:BA:DA'
# }
# ]
sub addObject
{
my ($self, %params) = @_;
return $self->model('ObjectTable')->addObject(%params);
}
# add( name => 'administration',
# members => [
# { name => 'accounting',
# ipaddr => '192.168.1.3/32',
# macaddr => '00:00:00:FA:BA:DA'
# },
# ]
# Method: menu
#
# Overrides EBox::Module method.
#
#
sub menu
{
my ($self, $root) = @_;
my $folder = new EBox::Menu::Folder('name' => 'Network',
'text' => __('Network'),
'separator' => 'Core',
'order' => 40);
my $item = new EBox::Menu::Item('url' => 'Network/Objects',
'text' => __($self->title),
'order' => 40);
$folder->add($item);
$root->add($folder);
}
1;
|