-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinit.php
220 lines (173 loc) · 6.68 KB
/
init.php
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
<?php
/* generate default config */
include('modules/common.inc.php');
class GUI {
function debug($txt) {
if($txt == '') return;
//fwrite(STDERR, "D: ".print_r($txt, true)." \n");
}
function debuga($txt) {
if($txt == '') return;
//fwrite(STDERR, "D: ".print_r($txt, true)." \n");
}
function session_info($txt) {
$this->debug("SESSION INFO: ".$txt);
}
function session_error($txt) {
$this->debug("SESSION ERROR:".$txt);
}
}
$LDAP_BASEDN=readLDAPFile('/etc/ldap.conf', 'base');
define('LDAP_BASEDN', $LDAP_BASEDN);
$LDAP_BINDDN=readLDAPFile('/etc/ldap.conf', 'rootbinddn');
define('LDAP_BINDDN', $LDAP_BINDDN);
$LDAP_BINDPW=file_get_contents('/etc/ldap.secret');
define('LDAP_BINDPW', $LDAP_BINDPW);
include('conf.inc.php.init');
// entidades organizativas del dominio
// para EBOX estas son las que se usan por defecto
define("LDAP_OU_COMPUTERS", "ou=Computers,$LDAP_BASEDN");
define("LDAP_OU_USERS", "ou=Users,$LDAP_BASEDN");
define("LDAP_OU_GROUPS", "ou=Groups,$LDAP_BASEDN");
// Domain Admins
define("LDAP_OU_DADMINS", "cn=Domain Admins,ou=Groups,$LDAP_BASEDN");
// Administrators
define("LDAP_OU_ADMINS", "cn=Administrators,ou=Groups,$LDAP_BASEDN");
// si no existe crearlo con EBOX
define("TEACHERS", "Teachers");
define("LDAP_OU_TEACHERS", "cn=Teachers,ou=Groups,$LDAP_BASEDN");
define("LDAP_OU_DUSERS", "cn=Domain Users,ou=Groups,$LDAP_BASEDN");
define("TICS", "CoordinadoresTIC");
define("LDAP_OU_TICS", "cn=CoordinadoresTIC,ou=Groups,$LDAP_BASEDN");
define("INSTALLATORS", "Instaladores");
define("LDAP_OU_INSTALLATORS", "cn=Instaladores,ou=Groups,$LDAP_BASEDN");
$gui = new GUI();
include("classes/ldap.class.php");
/* usuario creado por max-control */
define('LDAP_ADMIN', '$LDAP_ADMIN');
define('LDAP_PASS', '$LDAP_PASS');
//exec("net getdomainsid | grep domain", $output);
//$parts = preg_split ("/\s+/", $output[0]);
//$LDAP_DOMAIN=preg_replace('/"/', '', $parts[3]);
exec("samba-tool domain info 127.0.0.1 2>/dev/null | grep ^Domain| awk '{print \$NF}'", $output);
$LDAP_DOMAIN=$output[0];
define('LDAP_DOMAIN', "$LDAP_DOMAIN");
$LDAP_ADMIN='max-control';
$LDAP_PASS=createPassword();
$ldap=new LDAP();
// crear grupo de profesores
$teachers=$ldap->get_groups(TEACHERS, $include_system=true);
if ( ! isset($teachers[0]) ) {
$group = new GROUP( array('cn' => TEACHERS ) );
/* newGroup($createshared, $readonly, $grouptype=2) */
$group->newGroup('0', '0');
$group->description="Profesores no-borrar";
$group->ldapdata['description']="Profesores no-borrar";
$group->save( array('description') );
echo " * Creado grupo Teachers (profesores).\n";
}
else {
$teachers[0]->description="Profesores no-borrar";
$teachers[0]->ldapdata['description']="Profesores no-borrar";
$teachers[0]->save( array('description') );
echo " * El grupo Teachers (profesores) ya existe.\n";
}
// crear grupo de TICS
$tics=$ldap->get_groups(TICS, $include_system=true);
if ( ! isset($tics[0]) ) {
$group = new GROUP( array('cn' => TICS ) );
/* newGroup($createshared, $readonly, $grouptype=2) */
$group->newGroup('0', '0');
$group->description="Coordinadores TIC no-borrar";
$group->ldapdata['description']="Coordinadores TIC no-borrar";
$group->save( array('description') );
echo " * Creado grupo Coordinadores TIC (TICS).\n";
}
else {
/*$tics[0]->description="Coordinadores TIC no-borrar";
$tics[0]->ldapdata['description']="Coordinadores TIC no-borrar";
$tics[0]->save( array('description') );*/
echo " * El grupo Coordinadores TIC (TICS) ya existe.\n";
}
// crear grupo de TICS
$installators=$ldap->get_groups(INSTALLATORS, $include_system=true);
if ( ! isset($installators[0]) ) {
$group = new GROUP( array('cn' => INSTALLATORS ) );
/* newGroup($createshared, $readonly, $grouptype=2) */
$group->newGroup('0', '0');
$group->description="Instaladores no-borrar";
$group->ldapdata['description']="Instaladores no-borrar";
$group->save( array('description') );
echo " * Creado grupo Instaladores (INSTALLATORS).\n";
}
else {
/*$installators[0]->description="Instaladores no-borrar";
$installators[0]->ldapdata['description']="Instaladores no-borrar";
$installators[0]->save( array('description') );*/
echo " * El grupo Instaladores (INSTALLATORS) ya existe.\n";
}
// crear max-control
$user=$ldap->get_user($LDAP_ADMIN);
if ( ! $user ) {
// user not exists, create it
$new=array(
"uid" => $LDAP_ADMIN,
"cn" => $LDAP_ADMIN,
"sn" => "admin-no-borrar",
"description" => "Usuario administrador creado para uso del panel max-control",
"password" => $LDAP_PASS,
"role" => "admin",
"loginshell" => "/bin/bash"
);
$user = new USER( $new );
$user->newUser();
echo " * Usuario 'max-control' creado.\n";
}
else {
//change password
echo " * Usuario 'max-control' actualizado.\n";
//$gui->debuga( $user->show() );
$user->update_password($LDAP_PASS, $LDAP_ADMIN);
// forzar a ser admin para estar en INSTALLATORS
$user->set_role("admin");
}
$extra=file_get_contents('conf.inc.php.init');
$extra = str_replace ( "<?php" , "" , $extra );
$extra = str_replace ( "<?" , "" , $extra );
$extra = str_replace ( "?>" , "" , $extra );
$out="<?php
/* file autogenerated with init.php */
/* domain (net getdomainsid) */
define('LDAP_DOMAIN', '$LDAP_DOMAIN');
/* ldap admin from /etc/ldap.conf and /etc/ldap.secret */
define('LDAP_BINDDN', '$LDAP_BINDDN');
define('LDAP_BINDPW', '$LDAP_BINDPW');
/* usuario creado por max-control */
define('LDAP_ADMIN', '$LDAP_ADMIN');
define('LDAP_PASS', '$LDAP_PASS');
define('LDAP_BASEDN', '$LDAP_BASEDN');
define('CONFIGURED', True);
/********************************************/
// entidades organizativas del dominio
// para EBOX estas son las que se usan por defecto
define('LDAP_OU_COMPUTERS', 'ou=Computers,$LDAP_BASEDN');
define('LDAP_OU_USERS', 'ou=Users,$LDAP_BASEDN');
define('LDAP_OU_GROUPS', 'ou=Groups,$LDAP_BASEDN');
// Domain Admins
define('LDAP_OU_DADMINS', 'cn=Domain Admins,ou=Groups,$LDAP_BASEDN');
// Administrators
define('LDAP_OU_ADMINS', 'cn=Administrators,ou=Groups,$LDAP_BASEDN');
// si no existe crearlo con EBOX
define('TEACHERS', 'Teachers');
define('LDAP_OU_TEACHERS', 'cn=Teachers,ou=Groups,$LDAP_BASEDN');
define('LDAP_OU_DUSERS', 'cn=Domain Users,ou=Groups,$LDAP_BASEDN');
define('TICS', 'CoordinadoresTIC');
define('LDAP_OU_TICS', 'cn=CoordinadoresTIC,ou=Groups,$LDAP_BASEDN');
define('INSTALLATORS', 'Instaladores');
define('LDAP_OU_INSTALLATORS', 'cn=Instaladores,ou=Groups,$LDAP_BASEDN');
$extra
?>";
$config = "/etc/max-control/conf.inc.php";
$fh = fopen($config, 'w');
fwrite($fh, $out);
fclose($fh);