-
Notifications
You must be signed in to change notification settings - Fork 0
/
criar-usuario-glpi.php
314 lines (264 loc) · 11.7 KB
/
criar-usuario-glpi.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
<?php
// config.php
define('API_URL', 'http://enderecodoseuglpi/apirest.php');
define('API_TOKEN', 'sua api token');
define('APP_TOKEN', 'seu app token');
define('SESSION_TOKEN', 'seu session token');
// Função para registrar logs
function writeLog($message) {
$logFile = 'user_creation.log';
$timestamp = date('Y-m-d H:i:s');
file_put_contents($logFile, "[$timestamp] $message\n", FILE_APPEND);
}
// Função para adicionar o perfil ao usuário
function addUserProfile($userId) {
try {
$url = API_URL . '/Profile_User/';
$headers = [
'Content-Type: application/json',
'Authorization: Bearer ' . API_TOKEN,
'App-Token: ' . APP_TOKEN,
'Session-Token: ' . SESSION_TOKEN
];
$data = [
'input' => [
'profiles_id' => 176,
'users_id' => $userId,
'entities_id' => 0, // Entidade raiz
'is_recursive' => 1
]
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if (curl_errno($ch)) {
throw new Exception('Curl error ao adicionar perfil: ' . curl_error($ch));
}
curl_close($ch);
if ($httpCode >= 200 && $httpCode < 300) {
writeLog("Perfil ID 176 adicionado com sucesso para o usuário ID: $userId");
return true;
} else {
$errorMessage = json_decode($response, true);
writeLog("Erro ao adicionar perfil para usuário ID $userId: " . json_encode($errorMessage));
throw new Exception('Erro ao adicionar perfil: ' . ($errorMessage['message'] ?? 'Erro desconhecido'));
}
} catch (Exception $e) {
writeLog("Exceção ao adicionar perfil: " . $e->getMessage());
throw $e;
}
}
// Função para adicionar telefone do usuário
function updateUserPhone($userId, $phone) {
try {
$url = API_URL . '/User/' . $userId;
$headers = [
'Content-Type: application/json',
'Authorization: Bearer ' . API_TOKEN,
'App-Token: ' . APP_TOKEN,
'Session-Token: ' . SESSION_TOKEN
];
$data = [
'input' => [
'id' => $userId,
'phone' => $phone
]
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if (curl_errno($ch)) {
throw new Exception('Curl error ao adicionar telefone: ' . curl_error($ch));
}
curl_close($ch);
if ($httpCode >= 200 && $httpCode < 300) {
writeLog("Telefone adicionado com sucesso para o usuário ID: $userId");
return true;
} else {
$errorMessage = json_decode($response, true);
writeLog("Erro ao adicionar telefone para usuário ID $userId: " . json_encode($errorMessage));
throw new Exception('Erro ao adicionar telefone: ' . ($errorMessage['message'] ?? 'Erro desconhecido'));
}
} catch (Exception $e) {
writeLog("Exceção ao adicionar telefone: " . $e->getMessage());
throw $e;
}
}
// Função para adicionar email do usuário
function addUserEmail($userId, $email) {
try {
$url = API_URL . '/UserEmail/';
$headers = [
'Content-Type: application/json',
'Authorization: Bearer ' . API_TOKEN,
'App-Token: ' . APP_TOKEN,
'Session-Token: ' . SESSION_TOKEN
];
$data = [
'input' => [
'users_id' => $userId,
'email' => $email,
'is_default' => 1,
'is_dynamic' => 0
]
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if (curl_errno($ch)) {
throw new Exception('Curl error ao adicionar email: ' . curl_error($ch));
}
curl_close($ch);
if ($httpCode >= 200 && $httpCode < 300) {
writeLog("Email adicionado com sucesso para o usuário ID: $userId");
return true;
} else {
$errorMessage = json_decode($response, true);
writeLog("Erro ao adicionar email para usuário ID $userId: " . json_encode($errorMessage));
throw new Exception('Erro ao adicionar email: ' . ($errorMessage['message'] ?? 'Erro desconhecido'));
}
} catch (Exception $e) {
writeLog("Exceção ao adicionar email: " . $e->getMessage());
throw $e;
}
}
// Função para criar usuário via API
function createUser($userData) {
try {
$url = API_URL . '/User/';
$headers = [
'Content-Type: application/json',
'Authorization: Bearer ' . API_TOKEN,
'App-Token: ' . APP_TOKEN,
'Session-Token: ' . SESSION_TOKEN
];
$data = [
'input' => [
'name' => $userData['username'],
'realname' => $userData['realname'],
'firstname' => $userData['firstname'],
'password' => $userData['password'],
'password2' => $userData['password'],
'is_active' => 1
]
];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if (curl_errno($ch)) {
throw new Exception('Curl error: ' . curl_error($ch));
}
curl_close($ch);
$responseData = json_decode($response, true);
if ($httpCode >= 200 && $httpCode < 300) {
// Pegar o ID do usuário criado
$userId = $responseData['id'] ?? $responseData['data']['id'] ?? null;
if (!$userId) {
throw new Exception('ID do usuário não encontrado na resposta');
}
// Adicionar email do usuário
addUserEmail($userId, $userData['email']);
// Adicionar telefone do usuário
updateUserPhone($userId, $userData['phone']);
// Adicionar perfil do usuário
addUserProfile($userId);
writeLog("Usuário criado com sucesso: " . $userData['username'] . " (ID: $userId)");
return ['success' => true, 'message' => 'Usuário criado com sucesso!'];
} else {
$errorMessage = isset($responseData['message']) ? $responseData['message'] : 'Erro desconhecido';
writeLog("Erro ao criar usuário: " . $userData['username'] . " - " . $errorMessage);
return ['success' => false, 'message' => $errorMessage];
}
} catch (Exception $e) {
writeLog("Exceção ao criar usuário: " . $e->getMessage());
return ['success' => false, 'message' => 'Erro: ' . $e->getMessage()];
}
}
// Processar o formulário
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$result = createUser($_POST);
$message = $result['message'];
$success = $result['success'];
}
?>
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Criar Usuário GLPI</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div class="card-header">
<h3><a href="sua_pagina_de_criacao_de_usuario.php" style="display: flex; justify-content: center; margin-bottom: 20px;">
<img src="sua logo" alt="Criar Novo Usuário GLPI" style="max-width: 100%; height: auto;" />
</a>
</h3>
</div>
<div class="card-body">
<?php if (isset($message)): ?>
<div class="alert alert-<?php echo $success ? 'success' : 'danger'; ?>">
<?php echo htmlspecialchars($message); ?>
</div>
<?php endif; ?>
<form method="POST">
<div class="mb-3">
<label for="username" class="form-label">Nome de Usuário*</label>
<input type="text" class="form-control" id="username" name="username" required>
</div>
<div class="mb-3">
<label for="realname" class="form-label">Nome Completo*</label>
<input type="text" class="form-control" id="realname" name="realname" required>
</div>
<div class="mb-3">
<label for="firstname" class="form-label">Primeiro Nome*</label>
<input type="text" class="form-control" id="firstname" name="firstname" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">E-mail*</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="mb-3">
<label for="phone" class="form-label">Telefone*</label>
<input type="tel" class="form-control" id="phone" name="phone" required
pattern="[0-9]{10,11}" title="Digite um telefone válido (10 ou 11 dígitos)">
</div>
<div class="mb-3">
<label for="password" class="form-label">Senha*</label>
<input type="password" class="form-control" id="password" name="password" required>
</div>
<button type="submit" class="btn btn-primary">Criar Usuário</button>
</form>
</div>
</div>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
</body>
</html>