File: template_config.php

package info (click to toggle)
phpldapadmin 0.9.5-3sarge3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,052 kB
  • ctags: 2,526
  • sloc: php: 21,258; sh: 262; makefile: 132; xml: 42
file content (323 lines) | stat: -rw-r--r-- 12,142 bytes parent folder | download
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
<?php
// $Header: /cvsroot/phpldapadmin/phpldapadmin/templates/template_config.php,v 1.30 2004/12/16 22:55:22 uugdave Exp $

/**
 * template_config.php
 * -------------------
 * General configuration file for templates.
 * File Map:
 * 1 - Generic templates configuration
 * 2 - Samba template configuration
 * 3 - method used in template and other files
 */


/*######################################################################################
## Templates for entry creation                                                       ##
## ----------------------------                                                       ##
##                                                                                    ##
## Fill in this array with templates that you can create to suit your needs.          ##
## Each entry defines a description (to be displayed in the template list) and        ##
## a handler, which is a file that will be executed with certain POST vars set.       ##
## See the templates provided here for examples of how to make your own template.     ##
##                                                                                    ##
######################################################################################*/


$templates = array();

$templates[] =
        array(  'desc'    => $lang['user_account'], 	// 'User Account (posixAccount)',
                'icon'    => 'images/user.png',
                'handler' => 'new_user_template.php' );
                // You can use the 'regexp' directive to restrict where
                // entries can be created for this template
                //'regexp' => '^ou=People,o=.*,c=.*$'
                //'regexp' => '^ou=People,dc=.*,dc=.*$'

$templates[] =
        array(  'desc'    => 'Address Book Entry (inetOrgPerson)',
                'icon'    => 'images/user.png',
                'handler' => 'new_address_template.php' );

$templates[] =
        array(  'desc'    => 'Address Book Entry (mozillaOrgPerson)',
                'icon'    => 'images/user.png',
                'handler' => 'new_mozillaOrgPerson_template.php' ); 

$templates[] =
        array(  'desc'    => 'Kolab User Entry',
                'icon'    => 'images/user.png',
                'handler' => 'new_kolab_template.php' );

$templates[] =
        array(  'desc'    => 'Organizational Unit',
                'icon'    => 'images/ou.png',
                'handler' => 'new_ou_template.php' );

$templates[] =
        array(  'desc'    => 'Organizational Role',
                'icon'    => 'images/o.png',
                'handler' => 'new_organizationalRole.php' ); 

$templates[] =
        array(  'desc'    => 'Posix Group',
                'icon'    => 'images/ou.png',
                'handler' => 'new_posix_group_template.php' );

$templates[] =
        array(  'desc'    => 'Samba NT Machine',
                'icon'    => 'images/nt_machine.png',
                'handler' => 'new_nt_machine.php' );
$templates[] =
        array(  'desc'    => 'Samba 3 NT Machine',
                'icon'    => 'images/nt_machine.png',
                'handler' => 'new_smb3_nt_machine.php' );

$templates[] =
        array(  'desc'    => 'Samba 3 User',
                'icon'    => 'images/nt_user.png',
                'handler' => 'new_smb3_user_template.php' );

$templates[] =
        array(  'desc'    => 'Samba  User',
                'icon'    => 'images/nt_user.png',
                'handler' => 'new_smbuser_template.php' );

$templates[] =
        array(  'desc'    => 'Samba 3 Group Mapping',
                'icon'    => 'images/ou.png',
                'handler' => 'new_smbgroup_template.php' );

$templates[] =
        array(  'desc'    => 'DNS Entry',
                'icon'    => 'images/dc.png',
                'handler' => 'new_dns_entry.php' );

$templates[] =
        array(  'desc'    => 'Simple Security Object',
                'icon'    => 'images/user.png',
                'handler' => 'new_security_object_template.php' ); 

$templates[] =
        array(  'desc'    => 'Courier Mail Account',
                'icon'    => 'images/mail_account.png',
                'handler' => 'new_postfix_account_template.php' ); 

$templates[] =
        array(  'desc'    => 'Courier Mail Alias',
                'icon'    => 'images/mail_alias.png',
                'handler' => 'new_postfix_alias_template.php' ); 

$templates[] =
        array(  'desc'    => 'LDAP Alias',
                'icon'    => 'images/go.png',
                'handler' => 'new_alias_template.php' ); 
$templates[] =
         array( 'desc'    => 'Sendmail Cluster',
                'icon'    => 'images/mail.png',
                'handler' => 'new_sendmail_cluster_template.php' );

 $templates[] =
         array( 'desc'    => 'Sendmail Domain',
                'icon'    => 'images/mail.png',
                'handler' => 'new_sendmail_domain_template.php' );

 $templates[] =
         array( 'desc'    => 'Sendmail Alias',
                'icon'    => 'images/mail.png',
                'handler' => 'new_sendmail_alias_template.php' );

 $templates[] =
         array( 'desc'    => 'Sendmail Virtual Domain',
                'icon'    => 'images/mail.png',
                'handler' => 'new_sendmail_virthost_template.php' );

 $templates[] =
         array( 'desc'    => 'Sendmail Virtual Users',
                'icon'    => 'images/mail.png',
                'handler' => 'new_sendmail_virtuser_template.php' );

 $templates[] =
         array( 'desc'    => 'Sendmail Relays',
                'icon'    => 'images/mail.png',
                'handler' => 'new_sendmail_relay_template.php' );

$templates[] =
        array(  'desc'    => 'Custom',
                'icon'    => 'images/object.png',
                'handler' => 'custom.php' ); 

/*#####################################################################################
## POSIX GROUP TEMPLATE CONFIGURATION                                                ##
## ----------------------------------                                                ##
##                                                                                   ##  
#####################################################################################*/

// uncomment to set the base dn of posix groups
// default is set to the base dn of the server
//$base_posix_groups="ou=People,dc=example,dc=com";




/*######################################################################################
##  SAMBA TEMPLATE CONFIGURATION                                                      ##
##  ----------------------------                                                      ##
##                                                                                    ##
##  In order to use the samba templates, you might edit the following properties:     ##  
##  1 - $mkntpwdCommand : the path to the mkntpwd utility provided with/by Samba.     ##
##  2 - $samba3_domains : the domain name and the domain sid.                 ##   
##                                                                                    ##
######################################################################################*/

// path 2 the mkntpwd utility (Customize)
$mkntpwdCommand = "/usr/local/bin/mkntpwd";

// Default domains definition (Customize)
//   (use `net getlocalsid` on samba server)
$samba3_domains = array();
$samba3_domains[] =
array(  'name'   => 'My Samba domain Name',
	'sid' => 'S-1-5-21-4147564533-719371898-3834029857' );

// The base dn of samba group. (CUSTOMIZE)
//$samba_base_groups = "ou=Groups,ou=samba,dc=example,dc=org";


//Definition of built-in local groups
$built_in_local_groups = array( "S-1-5-32-544" => $lang['administrators'],	// "Administrators",
			        "S-1-5-32-545" => $lang['users'],		// "Users",
			        "S-1-5-32-546" => $lang['guests'],		// "Guests",
			        "S-1-5-32-547" => $lang['power_users'],		// "Power Users",
				"S-1-5-32-548" => $lang['account_ops'],		// "Account Operators",
				"S-1-5-32-549" => $lang['server_ops'],		// "Server Operators",
				"S-1-5-32-550" => $lang['print_ops'],		// "Print Operators",
				"S-1-5-32-551" => $lang['backup_ops'],		// "backup Operators",
				"S-1-5-32-552" => $lang['replicator'] );	// "Replicator" );


/*######################################################################################
##  Methods used in/by templates                                                      ## 
##  ----------------------------                                                      ##
######################################################################################*/

/*
 * Returns the name of the template to use based on the DN and
 * objectClasses of an entry. If no specific modification
 * template is available, simply return 'default'. The caller
 * should append '.php' and prepend 'templates/modification/'
 * to the returned string to get the file name.
 */

function get_template( $server_id, $dn )
{
    // fetch and lowercase all the objectClasses in an array
    $object_classes = get_object_attr( $server_id, $dn, 'objectClass', true );

    if( $object_classes === null || $object_classes === false)
        return 'default';

    foreach( $object_classes as $i => $class )
        $object_classes[$i] = strtolower( $class );

    $rdn = get_rdn( $dn );
    if( in_array( 'groupofnames', $object_classes ) || 
            in_array( 'groupofuniquenames', $object_classes ) )
        return 'group_of_names';
    /*
       if( in_array( 'person', $object_classes ) &&
       in_array( 'posixaccount', $object_classes ) )
       return 'user';
     */
    // TODO: Write other templates and criteria therefor
    // else if ...
    //    return 'some other template';
    // else if ...
    //    return 'some other template';
    // etc.

    return 'default';
}

/**
 * Return the domains info
 *  
 */

function get_samba3_domains(){
  global $samba3_domains;
  
  // do the search for the sambadomainname object here
  // In the meantime, just return the domains defined in this config file
  check_samba_setting();
  return $samba3_domains;
}


/**
 * Utily class to get the samba passwords.
 */

class MkntPasswdUtil{


  var $clearPassword = NULL;
  var $sambaPassword ;
  function MkntPasswdUtil(){
    $sambaPassword = array("sambaLMPassword" => NULL,
			   "sambaNTPassword" => NULL);
  }
  
  function createSambaPasswords($password){
    global $mkntpwdCommand, $lang;
    $this->clearPassword = $password;
    file_exists ( $mkntpwdCommand ) && is_executable ( $mkntpwdCommand ) or pla_error( $lang['unable_smb_passwords'] );
    $sambaPassCommand = $mkntpwdCommand . " " . $password;
    if($sambaPassCommandOutput = shell_exec($sambaPassCommand)){
      $this->sambaPassword['sambaLMPassword'] = trim( substr( $sambaPassCommandOutput , 0 , strPos( $sambaPassCommandOutput,':' ) ) );
      $this->sambaPassword['sambaNTPassword'] = trim( substr( $sambaPassCommandOutput, strPos( $sambaPassCommandOutput ,':' ) +1 ) );
      return true;
    }
    else{
      return false;
    }
  }

  function getSambaLMPassword(){
    return $this->sambaPassword['sambaLMPassword'];
  }

  function getSambaNTPassword(){
    return $this->sambaPassword['sambaNTPassword'];
  }
  
  function getSambaClearPassword(){
    return $this->clearPassword;
  }
  
  function valueOf($key){
    return  $this->sambaPassword[$key];
  }

}

function check_samba_setting(){
  global $samba3_domains;
  
  // check if the samba3_domains exist and is a array
  ( isset($samba3_domains ) && is_array( $samba3_domains ) ) or pla_error("Error: You have an error in your samba confguration.");
  
  // no definition for the samba domain
  if(empty($samba3_domains))
    pla_error("Error: A name and a sid for your samba domain need to be provided.");
  else{
    // check if there is name or a sid declared for each domains
    foreach($samba3_domains as $samba3_domain){
      isset($samba3_domain['name']) or pla_error("Error: No name provided for samba domain.");
      isset($samba3_domain['sid']) or pla_error("Error: No sid provided for samba domain.");
    }
  }
}

?>