-
Notifications
You must be signed in to change notification settings - Fork 2
/
configurador.php
405 lines (398 loc) · 20.6 KB
/
configurador.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
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
<?php
/**
* Gerenciador Clínico Odontológico
* Copyright (C) 2006 - 2009
* Autores: Ivis Silva Andrade - Engenharia e Design(ivis@expandweb.com)
* Pedro Henrique Braga Moreira - Engenharia e Programação(ikkinet@gmail.com)
*
* Este arquivo é parte do programa Gerenciador Clínico Odontológico
*
* Gerenciador Clínico Odontológico é um software livre; você pode
* redistribuí-lo e/ou modificá-lo dentro dos termos da Licença
* Pública Geral GNU como publicada pela Fundação do Software Livre
* (FSF); na versão 2 da Licença invariavelmente.
*
* Este programa é distribuído na esperança que possa ser útil,
* mas SEM NENHUMA GARANTIA; sem uma garantia implícita de ADEQUAÇÂO
* a qualquer MERCADO ou APLICAÇÃO EM PARTICULAR. Veja a
* Licença Pública Geral GNU para maiores detalhes.
*
* Você recebeu uma cópia da Licença Pública Geral GNU,
* que está localizada na raíz do programa no arquivo COPYING ou COPYING.TXT
* junto com este programa. Se não, visite o endereço para maiores informações:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html (Inglês)
* http://www.magnux.org/doc/GPL-pt_BR.txt (Português - Brasil)
*
* Em caso de dúvidas quanto ao software ou quanto à licença, visite o
* endereço eletrônico ou envie-nos um e-mail:
*
* http://www.smileodonto.com.br/gco
* smile@smileodonto.com.br
*
* Ou envie sua carta para o endereço:
*
* Smile Odontolóogia
* Rua Laudemira Maria de Jesus, 51 - Lourdes
* Arcos - MG - CEP 35588-000
*
*
*/
header("Content-type: text/html; charset=ISO-8859-1", true);
if(!isset($_GET['idioma'])) {
$_GET['idioma'] = 'pt_br';
}
require_once('lang/'.$_GET['idioma'].'.php');
function extraiSQL($arquivo) {
$file = file($arquivo);
$sql = array();
$j = 0;
$sql[$j] = "";
for($i = 0; $i < count($file); $i++) {
$file[$i] = trim($file[$i]);
if(substr($file[$i], 0, 1) != '#' && substr($file[$i], 0, 2) != '--') {
$sql[$j] .= $file[$i];
}
if(substr($file[$i], -1) == ';' ||substr($file[$i], -2) == '$$') {
$sql[$j] = trim($sql[$j], " ;\n");
$j++;
$sql[$j] = "";
}
}
array_pop($sql);
return($sql);
}
$caminho = 'lib/config.inc.php';
require_once ( $caminho );
if(isset($_POST['send'])) {
if(is_writable($caminho)) {
$conn = @mysql_connect($_POST['server'], $_POST['user'], $_POST['pass']);
$myerro = 0;
if(mysql_errno() == 1045) {
$myerro++;
$r[4] = ' color="#FF0000"';
$msg[] = $LANG['config']['err_access_denied_to_the_database_server'];
//Acesso negado
} elseif(mysql_errno() == 2005) {
$myerro++;
$r[3] = ' color="#FF0000"';
$msg[] = $LANG['config']['err_database_server_not_found'];
//Servidor não encontrado
}
if($_POST['versao'] == 'novo') {
if(!empty($_POST['senha']) && !empty($_POST['fantasia']) && $_POST['senha'] == $_POST['resenha'] && strlen($_POST['senha']) >= 6 && $myerro === 0) {
$config = file($caminho);
$config[51] = " \$server = '".$_POST['server']."';\n";
$config[52] = " \$user = '".$_POST['user']."';\n";
$config[53] = " \$pass = '".$_POST['pass']."';\n";
$config[54] = " \$bd = '".$_POST['bd']."';\n";
$config[64] = " \$install = true;\n";
file_put_contents($caminho, $config);
mysql_query("CREATE DATABASE IF NOT EXISTS ".$_POST['bd']) or die('Criação da base: '.mysql_error());
mysql_select_db($_POST['bd'], $conn) or die('Seleção da base: '.mysql_error());
$sqls = extraiSQL('bases/bd_novo.sql');
foreach($sqls as $sql) {
mysql_query($sql) or die('Importação nova: '.mysql_error());
}
$sql = "UPDATE funcionarios SET senha = MD5('".$_POST['senha']."') WHERE cpf = '11111111111'";
mysql_query($sql) or die('Alteração de senha: '.mysql_error());
$sql = "UPDATE dados_clinica SET cnpj = '".$_POST['cnpj']."', razaosocial = '".$_POST['razaosocial']."', fantasia = '".$_POST['fantasia']."', proprietario = '".$_POST['proprietario']."', endereco = '".$_POST['endereco']."', ";
$sql .= "bairro = '".$_POST['bairro']."', cidade = '".$_POST['cidade']."', estado = '".$_POST['estado']."', cep = '".$_POST['cep']."', fundacao = '".$_POST['fundacao']."', telefone1 = '".$_POST['telefone1']."', telefone2 = '".$_POST['telefone2']."', ";
$sql .= "fax = '".$_POST['fax']."', email = '".$_POST['email']."', web = '".$_POST['web']."', idioma = '".$_GET['idioma']."'";
mysql_query($sql) or die('Alteração de dados da clínica: '.mysql_error());
header('Location: ./');
} else {
if(empty($_POST['senha']) || $_POST['senha'] != $_POST['resenha'] || strlen($_POST['senha']) < 6) {
$r[0] = ' color="#FF0000"';
$msg[] = $LANG['config']['err_password_must_have_at_least_6_characters_and_must_be_retyped'];
}
if(empty($_POST['fantasia'])) {
$r[1] = ' color="#FF0000"';
$msg[] = $LANG['config']['err_name_shall_be_filled'];
}
}
} else {
if($myerro === 0) {
mysql_select_db($_POST['bd'], $conn) or die('Seleção da base: '.mysql_error());
$sqls = extraiSQL('bases/bd_atu_'.$_POST['versao'].'.sql');
foreach($sqls as $sql) {
mysql_query($sql) or die('Importação Atualização: '.mysql_error().' - '.$sql);
}
$config = file($caminho);
$config[51] = " \$server = '".$_POST['server']."';\n";
$config[52] = " \$user = '".$_POST['user']."';\n";
$config[53] = " \$pass = '".$_POST['pass']."';\n";
$config[54] = " \$bd = '".$_POST['bd']."';\n";
$config[64] = " \$install = true;\n";
file_put_contents($caminho, $config);
header('Location: ./');
}
}
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>GCO :: <?php echo $LANG['config']['configuration_wizard']?></title>
<script language="javascript" type="text/javascript" src="lib/script.js"></script>
<link href="css/smile.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
}
-->
</style></head>
<body>
<table width="770" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td><img src="imagens/top_gerenciador_smile.jpg" alt="Topo Gerenciador" width="770" height="40" /></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><table width="100%" border="0" cellpadding="0" cellspacing="0" class="conteudo">
<tr>
<td width="74%"> <img src="sobre/img/sobre.png" alt="Sobre" /> <span class="h3"><?php echo $LANG['config']['configuration_wizard']?></span></td>
<td width="7%" valign="bottom"> </td>
<td width="19%" valign="bottom"> </td>
</tr>
</table></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td>
<form method="POST" action="configurador.php?idioma=<?php echo $_GET['idioma']?>">
<div class="conteudo" id="table dados">
<?php
if(count($msg) > 0) {
?>
<div class="sobre" id="div5">
<fieldset>
<legend><strong><?php echo $LANG['config']['errors']?></strong></legend>
<p><?php echo $LANG['config']['below_follow_the_errors_found_in_the_system']?></p>
<p align="left">
<?php
foreach($msg as $erro) {
echo ' - '.$erro."<br />\n";
}
?>
</p>
</fieldset>
</div>
<?php
}
?>
<br />
<div class="sobre" id="div5">
<fieldset>
<legend><strong><?php echo $LANG['config']['language']?></strong></legend>
<p><?php echo $LANG['config']['select_your_language']?></p>
<p align="center">
<?php
$handle = opendir('./lang');
while ($file = readdir($handle)) {
if(strpos($file, '.') !== 0) {
$nome_file = explode('.', $file);
$idiomas[] = '<a href="?idioma='.$nome_file[0].'">'.$nome_file[0].'</a>';
}
}
$idiomas = implode(' | ', $idiomas);
echo $idiomas;
?>
</p>
</fieldset>
</div>
<br />
<div class="sobre" id="div5">
<fieldset>
<legend><strong><?php echo $LANG['config']['initial_information']?></strong></legend>
<p><?php echo $LANG['config']['wellcome']?><br />
<br />
<?php echo $LANG['config']['in_case_unix']?>:<br />
/configurador.php<?php echo is_writable('configurador.php')?' - <i><font color="#009900">'.$LANG['config']['you_have_pemission_to_write_in_this_file'].'</font></i>':' - <i><font color="#FF0000">'.$LANG['config']['you_dont_have_permission_to_write_in_this_files'].'</font></i>'?><br />
/lib/config.inc.php<?php echo is_writable('lib/config.inc.php')?' - <i><font color="#009900">'.$LANG['config']['you_have_pemission_to_write_in_this_file'].'</font></i>':' - <i><font color="#FF0000">'.$LANG['config']['you_dont_have_permission_to_write_in_this_files'].'</font></i>'?></p>
<p><?php echo $LANG['config']['in_case_windows']?><br />
</p>
</fieldset>
</div>
<br />
<div class="sobre" id="sobre">
<fieldset>
<legend><strong><?php echo $LANG['config']['installation_type']?> </strong></legend>
<p><?php echo $LANG['config']['is_it_your_first_time']?></p>
<p align="center">
<select name="versao" id="versao" class="forms" onchange="if(this.selectedIndex==0) {document.getElementById('info').style.display='block'} else {document.getElementById('info').style.display='none'}">
<?php
$versoes = array();
$versoes[] = $LANG['config']['new_installation'];
$versoes[] = $LANG['config']['update_from_0_18_to_current'] . ' ' . $version;
$versoes[] = $LANG['config']['update_from_1_0_to_current'] . ' ' . $version;
$versoes[] = $LANG['config']['update_from_2_0_to_current'] . ' ' . $version;
$versoes[] = $LANG['config']['update_from_2_2_to_current'] . ' ' . $version;
$versoes[] = $LANG['config']['update_from_3_0_to_current'] . ' ' . $version;
$versoes[] = $LANG['config']['update_from_3_5_to_current'] . ' ' . $version;
$versoes[] = $LANG['config']['update_from_4_0_to_current'] . ' ' . $version;
$versoes[] = $LANG['config']['update_from_5_0_to_current'] . ' ' . $version;
$valores = array();
$valores[] = 'novo';
$valores[] = '0_18';
$valores[] = '1_0';
$valores[] = '2_0';
$valores[] = '2_2';
$valores[] = '3_0';
$valores[] = '3_5';
$valores[] = '4_0';
$valores[] = '5_0';
for($i=0; $i<count($versoes); $i++) {
echo '<option value="'.$valores[$i].'"'.(($_POST['versao'] == $valores[$i])?' selected':'').'>'.$versoes[$i].'</option>';
}
?>
</select>
<br />
</p>
</fieldset></div>
<br />
<div class="sobre" id="mysql">
<fieldset>
<legend><strong><?php echo $LANG['config']['mysql_information']?> </strong> </legend>
<p><?php echo $LANG['config']['to_install_gco']?></p>
<p align="center"><span class="texto"><font<?php echo $r[3]?>><?php echo $LANG['config']['server']?></font><br />
<input name="server" type="text" class="forms" id="server" value="<?php echo ((empty($_POST['server']))?'localhost':$_POST['server'])?>" />
<br />
<br />
<?php echo $LANG['config']['database']?><br />
<input name="bd" type="text" class="forms" id="bd" value="<?php echo ((empty($_POST['bd']))?'gerenciador':$_POST['bd'])?>" />
<br />
<br />
<font<?php echo $r[4]?>><?php echo $LANG['config']['user']?></font><br />
<input name="user" type="text" class="forms" id="user" value="<?php echo ((empty($_POST['user']))?'root':$_POST['user'])?>" />
<br />
<br />
<font<?php echo $r[4]?>><?php echo $LANG['config']['password']?></font><br />
<input name="pass" type="text" class="forms" id="pass" value="<?php echo ((empty($_POST['pass']))?'':$_POST['pass'])?>" />
<br /></span>
</p>
</fieldset>
</div>
<br />
<div class="sobre" id="info">
<fieldset>
<legend><strong><?php echo $LANG['config']['admin_information']?></strong> </legend>
<p><?php echo $LANG['config']['the_admin_user']?></p>
<p align="center"><?php echo $LANG['config']['username']?>: <strong>admin </strong><br />
<br />
<br />
<span class="texto"><font<?php echo $r[0]?>>* <?php echo $LANG['config']['new_password']?>:</font><br />
<input name="senha" type="password" class="forms" id="senha" />
<br />
<br />
<font<?php echo $r[0]?>>* <?php echo $LANG['config']['retype_new_password']?>: </font><br />
<input name="resenha" type="password" class="forms" id="resenha" />
<br /></span>
</p>
</fieldset>
<br />
<fieldset>
<legend><strong><?php echo $LANG['config']['clinic_information']?></strong> </legend>
<p><?php echo $LANG['config']['as_it_is_your_first']?></p>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0" class="texto">
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td><span class="texto"><font<?php echo $r[0]?>>* <?php echo $LANG['config']['company_name']?></font><br />
<label>
<input name="fantasia" value="<?php echo $_POST['fantasia']?>" type="text" class="forms" id="fantasia" size="45" maxlength="80" />
</label>
<br />
<label></label></td>
<td width="210"><font<?php echo $r[2]?> class="texto">
<?php echo $LANG['config']['document1']?></font>
<br />
<input name="cnpj" value="<?php echo $_POST['cnpj']?>" type="text" class="forms" id="cnpj" size="30" maxlength="18" />
</td>
</tr>
<tr>
<td><?php echo $LANG['config']['legal_name']?> <br />
<input name="razaosocial" value="<?php echo $_POST['razaosocial']?>" type="text" class="forms" id="razaosocial" size="45" /></td>
<td><?php echo $LANG['config']['owner']?><br />
<input name="proprietario" value="<?php echo $_POST['proprietario']?>" type="text" class="forms" id="proprietario" size="40" /></td>
</tr>
<tr>
<td><?php echo $LANG['config']['address1']?><br />
<input name="endereco" value="<?php echo $_POST['endereco']?>" type="text" class="forms" id="endereco" size="45" maxlength="150" /></td>
<td><?php echo $LANG['config']['address2']?><br />
<input name="bairro" value="<?php echo $_POST['bairro']?>" type="text" class="forms" id="bairro" /></td>
</tr>
<tr>
<td><?php echo $LANG['config']['city']?><br />
<input name="cidade" value="<?php echo $_POST['cidade']?>" type="text" class="forms" id="cidade" size="30" maxlength="50" />
<br /></td>
<td><?php echo $LANG['config']['state']?><br />
<input name="estado" value="<?php echo $_POST['estado']?>" type="text" class="forms" id="estado" /></td>
</tr>
<tr>
<td><?php echo $LANG['config']['country']?><br />
<input name="pais" value="<?php echo $_POST['pais']?>" type="text" class="forms" id="pais" size="30" maxlength="50" />
<br /></td>
<td> </td>
</tr>
<tr>
<td><?php echo $LANG['config']['zip']?><br />
<input name="cep" value="<?php echo $_POST['cep']?>" type="text" class="forms" id="cep" size="10" maxlength="9" onkeypress="return Ajusta_CEP(this, event);" /></td>
<td><?php echo $LANG['config']['year_of_foundation']?><br />
<input name="fundacao" value="<?php echo $_POST['fundacao']?>" type="text" class="forms" id="fundacao" maxlength="4" /></td>
</tr>
<tr>
<td><?php echo $LANG['config']['phone1']?><br />
<input name="telefone1" value="<?php echo $_POST['telefone1']?>" type="text" class="forms" id="telefone1" maxlength="13" onkeypress="return Ajusta_Telefone(this, event);" /></td>
<td><?php echo $LANG['config']['phone_2']?><br />
<input name="telefone2" value="<?php echo $_POST['telefone2']?>" type="text" class="forms" id="telefone2" maxlength="13" onkeypress="return Ajusta_Telefone(this, event);" /></td>
</tr>
<tr>
<td><?php echo $LANG['config']['fax']?> <br />
<input name="fax" value="<?php echo $_POST['fax']?>" type="text" class="forms" id="fax" size="25" maxlength="13" onkeypress="return Ajusta_Telefone(this, event);" /></td>
<td><?php echo $LANG['config']['website']?><br />
<input name="web" value="<?php echo $_POST['web']?>" type="text" class="forms" id="web" size="40" /></td>
</tr>
<tr>
<td><?php echo $LANG['config']['email']?><br />
<input name="email" value="<?php echo $_POST['email']?>" type="text" class="forms" id="email" size="40" /></td>
<td> </td>
</tr>
</table>
<p align="left"><?php echo $LANG['config']['to_more_customization']?><br />
</p>
</fieldset>
</div>
<br />
<div class="sobre" id="div4">
<fieldset>
<legend><strong><?php echo $LANG['config']['finishing_and_saving_information']?> </strong> </legend>
<p><?php echo $LANG['config']['after_filling_all_fields']?></p>
<p><?php echo $LANG['config']['installing_gco_you_agree']?></p><br />
<p align="center">
<input name="send" type="submit" class="forms" id="enviar" value="<?php echo $LANG['config']['i_agree_install_gco_smile']?>" />
</p>
</fieldset>
</div>
</div>
</div></form></td>
</tr>
</table>
<script>
if(document.getElementById('versao').selectedIndex==0) {
document.getElementById('info').style.display='block';
} else {
document.getElementById('info').style.display='none';
}
</script>
</body>
</html>