/usr/share/perl5/EBox/LdapUserBase.pm is in zentyal-users 2.3.15+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 | # 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::LdapUserBase;
use strict;
use warnings;
use EBox::Gettext;
sub new
{
my $class = shift;
my $self = {};
bless($self, $class);
return $self;
}
# Method: _addUser
#
# When a new user is created this method is called
#
# Parameters:
#
# user - created user
sub _addUser
{
}
# Method: _delUser
#
# When a user is deleted this method is called
#
# Parameters:
#
# user - deleted user
sub _delUser
{
}
# Method: _modifyUser
#
# When a user is modified this method is called
#
# Parameters:
#
# user - modified user
sub _modifyUser
{
}
# Method: _delUserWarning
#
# When a user is to be deleted, modules should warn the sort of data
# (if any) is going to be removed
#
# Parameters:
#
# user - user
#
# Returns:
#
# array - Each element must be a string describing the sort of data
# is going to be removed if the user is deleted. If nothing is going to
# removed you must not return anything
sub _delUserWarning
{
}
# Method: _addGroup
#
# When a new user is created this method is called
#
# Parameters:
#
# user - created group
sub _addGroup
{
}
# Method: _modifyGroup
#
# When a group is modified this method is called
#
# Parameters:
#
# group - modified group
sub _modifyGroup
{
}
# Method: _delGroup
#
# When a group is deleted this method is called
#
# Parameters:
#
# group - deleted group
sub _delGroup
{
}
# Method: _delGroupWarning
#
# When a group is to be deleted, modules should warn the sort of data
# (if any) is going to be removed
#
# Parameters:
#
# group - group
#
# Returns:
#
# array - Each element must be a string describing the sort of data
# is going to be removed if the group is deleted. If nothing is going to
# removed you must not return anything
sub _delGroupWarning
{
}
# Method: _userAddOns
#
# When a user is to be edited, this method is called to get customized
# mason components from modules depending on users stored in LDAP.
# Thus, these components will be showed below the basic user data
# The method has to return a hash ref containing:
# 'path' => MASON_COMPONENT_PATH_TO_BE_ADDED
# 'params' => PARAMETERS_FOR_MASON_COMPONENT
#
# The method can also return undef to sigmnal there is not add on for the
# module
#
# Parameters:
#
# user - user
#
# Returns:
#
# A hash ref containing:
#
# path - mason component which is going to be added
# params - parameters for the mason component
#
# - or -
#
# undef if there is not component to add
sub _userAddOns
{
}
# Method: _groupAddOns
#
# When a group is to be edited, this method is called to get customized
# mason components from modules depending on groups stored in LDAP.
# Thus, these components will be showed below the basic group data
# The method has to return a hash ref containing:
# 'path' => MASON_COMPONENT_PATH_TO_BE_ADDED
# 'params' => PARAMETERS_FOR_MASON_COMPONENT
#
# Parameters:
#
# group - group to be edited
#
# Returns:
#
# A hash ref containing:
#
# path - mason component which is going to be added
# params - parameters for the mason component
#
sub _groupAddOns
{
}
# Method: schemas
#
# Returns the paths for the LDIF schemas that need to be loaded
#
# Returns:
#
# array ref - Each element must be a string with a path to an LDIF schema
#
sub schemas
{
return [];
}
# Method: acls
#
# Returns the ACLs that need to be loaded into the LDAP configuration
#
# Returns:
#
# array ref - Each element must be a string with an ACL
#
sub acls
{
return [];
}
# Method: indexes
#
# Returns the attributes that need to be indexed in a translucent LDAP
#
# Returns:
#
# array ref - Each element must be a string with an attribute name to inex
#
sub indexes
{
return [];
}
# Method: defaultUserModel
#
# Returns the name of model that is used to compose a default template for
# new user
#
# Returns:
#
# string - model name
#
sub defaultUserModel
{
return undef;
}
# Method: multipleOUSupport
#
# Returns 1 if this module supports users in multiple OU's,
# 0 otherwise
#
sub multipleOUSupport
{
return 0;
}
1;
|