-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsync.php
355 lines (310 loc) · 13.6 KB
/
sync.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
<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
if (file_exists(__DIR__.'/configuration.local.php')) {
require __DIR__ . '/configuration.local.php';
} else {
require __DIR__ . '/configuration.php';
}
$requiredConstants = ['KIMAI_API_URL', 'KIMAI_API_TOKEN', 'DATABASE_CONNECTION', 'DATABASE_USER', 'DATABASE_PASSWORD', 'DATABASE_COLUMN', 'DATABASE_DATETIME_FORMAT'];
foreach ($requiredConstants as $constant) {
if (!defined($constant)) {
throw new Exception('Missing constant: '. $constant);
}
}
require __DIR__.'/vendor/autoload.php';
use GuzzleHttp\Client;
use GuzzleHttp\Exception\ClientException;
use Symfony\Component\Console\Helper\ProgressBar;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\SingleCommandApplication;
use Symfony\Component\Console\Style\SymfonyStyle;
(new SingleCommandApplication())
->setName('Sync Kimai data via API')
->setVersion('1.0')
->addOption('timesheets', null, InputOption::VALUE_NONE, 'Only sync timesheets (for hourly cronjob)')
->addOption('modified', null, InputOption::VALUE_REQUIRED, 'Only timesheets that were modified after this date will be synced, by default latest 24 hours. Format: 2022-01-14 13:45:47')
->setCode(function (InputInterface $input, OutputInterface $output) {
$io = new SymfonyStyle($input, $output);
$since = $input->getOption('modified');
if ($since === null) {
$since = new DateTimeImmutable('-24 hours');
} else {
try {
$since = new DateTimeImmutable($since);
} catch (Exception $ex) {
$io->error('Invalid "since" date given, please check your format.');
return 1;
}
}
$dateConverter = function($fieldName, $date) {
$converted = null;
if ($date !== null) {
$tmp = new DateTimeImmutable($date);
$converted = $tmp->format(DATABASE_DATETIME_FORMAT);
}
return [$fieldName, $converted];
};
$connection = new PDO(DATABASE_CONNECTION, DATABASE_USER, DATABASE_PASSWORD);
$clientOptions = [
'base_uri' => KIMAI_API_URL,
'verify' => false,
'headers' => ['Authorization' => 'Bearer ' . KIMAI_API_TOKEN]
];
if (defined('PROXY_URL') && !empty(PROXY_URL)) {
$clientOptions['proxy'] = PROXY_URL;
}
$client = new Client($clientOptions);
$doGet = function (Client $client, string $endpoint) {
$response = $client->get($endpoint);
if ($response->getStatusCode() === 404) {
return false;
}
return json_decode($response->getBody()->getContents(), true);
};
$syncEndpoint = function ($title, $settings) use ($io, $connection, $client, $doGet) {
$apiEntities = [];
$existingEntities = []; // mapping local id to kimai id in local database
$localColumns = []; // column names on local side to prepare SQL statements
// fetch the API result
$results = $doGet($client, $settings['endpoint']);
if ($results === false) {
$io->error(sprintf('Failed to sync data for endpoint: %s', $settings['endpoint']));
}
// prepare the array of all entities for the local database by mapping columns
foreach ($results as $entity) {
$newEntity = [];
foreach ($settings['mapping'] as $kimaiField => $localField) {
$key = $localField;
$value = $entity[$kimaiField];
// some values need to be converted to local format (eg. datetime)
if (is_callable($localField)) {
$tmp = call_user_func($localField, $entity, $kimaiField);
$key = $tmp[0];
$value = $tmp[1];
}
$newEntity[$key] = $value;
}
if (count($localColumns) === 0) {
$localColumns = array_keys($newEntity);
}
$apiEntities[$entity['id']] = $newEntity;
}
unset($results);
if (count($apiEntities) === 0) {
$io->success('No data found to sync: ' . $title);
return;
}
// a lambda function to escape the column name for MSSQL
$formatColumnName = function(string $columnName) {
return sprintf(DATABASE_COLUMN, $columnName);
};
$localColumns = array_map($formatColumnName, $localColumns);
// some local variable names to make it easier
$tableName = $settings['table'];
// fetch all existing entries to decide if we update or insert
$sql = sprintf('SELECT id, kimai_id FROM %s WHERE kimai_id IN (%s)', $tableName, implode(',', array_keys($apiEntities)));
$stmt = $connection->prepare($sql);
try {
if ($stmt->execute() === false) {
$io->error($sql);
}
} catch (Exception $ex) {
$io->error($sql . PHP_EOL . $ex->getMessage());
}
$existing = $stmt->fetchAll();
foreach ($existing as $existingValues) {
$existingEntities[$existingValues['kimai_id']] = $existingValues['id'];
}
// prepare the insert statement
$columnsReplacer = [];
for ($i = 0; $i < count($localColumns); $i++) {
$columnsReplacer[] = '?';
}
$sqlInsert = sprintf('INSERT INTO %s (%s) VALUES (%s)', $tableName, implode(',', $localColumns), implode(',', $columnsReplacer));
$stmtInsert = $connection->prepare($sqlInsert);
// prepare the update statement
$columnsReplacer = [];
foreach ($localColumns as $localField) {
$columnsReplacer[] = $localField . ' = ?';
}
$sqlUpdate = sprintf('UPDATE %s SET %s WHERE id = ?', $tableName, implode(',', $columnsReplacer));
$stmtUpdate = $connection->prepare($sqlUpdate);
foreach ($apiEntities as $kimaiId => $values) {
if (array_key_exists($kimaiId, $existingEntities)) {
$values[] = $existingEntities[$kimaiId];
if ($stmtUpdate->execute(array_values($values)) === false) {
$io->error(sprintf('Failed updating "%s" for ID "%s" with: %s', $tableName, $existingEntities[$kimaiId], $stmtUpdate->errorInfo()[2]));
}
} else {
if ($stmtInsert->execute(array_values($values)) === false) {
$io->error(sprintf('Failed inserting into "%s" with: %s', $tableName, $stmtInsert->errorInfo()[2]));
}
}
}
$io->success('Synced ' . $title . ': ' . count($apiEntities));
};
$syncConfig = [
'Customer' => [
'table' => 'customer',
'endpoint' => 'customers',
'mapping' => [
'id' => 'kimai_id',
'name' => 'name',
'number' => 'number',
],
],
'Projects' => [
'table' => 'project',
'endpoint' => 'projects',
'mapping' => [
'id' => 'kimai_id',
'customer' => 'customer',
'name' => 'name',
'start' => function ($entity, $fieldName) use ($dateConverter) {
return $dateConverter('start', $entity[$fieldName]);
},
'end' => function ($entity, $fieldName) use ($dateConverter) {
return $dateConverter('end', $entity[$fieldName]);
},
],
],
'Activities' => [
'table' => 'activity',
'endpoint' => 'activities',
'mapping' => [
'id' => 'kimai_id',
'project' => 'project',
'name' => 'name',
],
],
'Users' => [
'table' => 'user',
'endpoint' => 'users',
'mapping' => [
'id' => 'kimai_id',
'alias' => 'alias',
'username' => 'username',
],
],
'Teams' => [
'table' => 'team',
'endpoint' => 'teams',
'mapping' => [
'id' => 'kimai_id',
'name' => 'name',
],
],
];
$onlyTimesheets = $input->getOption('timesheets');
if ($onlyTimesheets) {
$syncConfig = [];
}
$syncConfig['Timesheets'] = [
'table' => 'timesheet',
'endpoint' => 'timesheets?user=all&modified_after=' . $since->format('Y-m-d\TH:i:s') . '&size=' . PHP_INT_MAX,
'mapping' => [
'id' => 'kimai_id',
'activity' => 'activity',
'project' => 'project',
'user' => 'user',
'begin' => function ($entity, $fieldName) use ($dateConverter) {
return $dateConverter('begin', $entity[$fieldName]);
},
'end' => function ($entity, $fieldName) use ($dateConverter) {
return $dateConverter('end', $entity[$fieldName]);
},
'duration' => 'duration',
'description' => function ($entity, $fieldName) {
$value = $entity[$fieldName];
if ($value !== null && mb_strlen($value) > 200) {
$value = mb_substr($value, 0, 200);
}
return ['description', $value];
},
'rate' => 'rate',
'internalRate' => 'internalRate',
'billable' => function ($entity, $fieldName) {
$value = 1;
if (!$entity[$fieldName]) {
$value = 0;
}
return ['billable', $value];
},
],
];
foreach ($syncConfig as $title => $settings)
{
$syncEndpoint($title, $settings);
}
if ($onlyTimesheets) {
return 0;
}
// SPECIAL HANDLING FOR TEAMS
$stmt = $connection->prepare('SELECT id, kimai_id FROM team');
$stmt->execute();
$teams = $stmt->fetchAll(PDO::FETCH_ASSOC);
$teamProjects = [];
$teamUsers = [];
$deleteIds = [];
$io->writeln('Syncing teams, user and project links ...');
$progress = new ProgressBar($output, count($teams));
foreach ($teams as $team) {
$kimaiTeamId = $team['kimai_id'];
$teamId = $team['id'];
try {
$team = $doGet($client, 'teams/' . $kimaiTeamId);
} catch (ClientException $ex) {
if ($ex->getResponse()->getStatusCode() === 404) {
$deleteIds[] = $teamId;
continue;
}
}
foreach ($team['members'] as $member) {
$teamUsers[$kimaiTeamId][] = $member['user']['id'];
}
foreach ($team['projects'] as $project) {
$teamProjects[$kimaiTeamId][] = $project['id'];
}
usleep(500); // be polite and do not overstress remote Server/API
$progress->advance();
}
$progress->finish();
if (count($deleteIds) > 0) {
foreach ($deleteIds as $deleteId) {
// make sure table is always empty before inserting the relations between user and team
$stmt = $connection->prepare('DELETE FROM team WHERE id = ' . $deleteId);
$stmt->execute();
}
}
// make sure table is always empty before inserting the relations between user and team
$stmt = $connection->prepare('TRUNCATE team_user');
$stmt->execute();
$stmt = $connection->prepare('INSERT INTO team_user (team_kimai_id, user_kimai_id) VALUES (?, ?)');
foreach ($teamUsers as $kimaiTeamId => $kimaiUserIds) {
foreach ($kimaiUserIds as $kimaiUserId) {
if ($stmt->execute([$kimaiTeamId, $kimaiUserId]) === false) {
$io->error(sprintf('Failed inserting into "team_user" with: %s', $stmt->errorInfo()[2]));
}
}
}
// make sure table is always empty before inserting the relations between project and team
$stmt = $connection->prepare('TRUNCATE team_project');
$stmt->execute();
$stmt = $connection->prepare('INSERT INTO team_project (team_kimai_id, project_kimai_id) VALUES (?, ?)');
foreach ($teamProjects as $kimaiTeamId => $kimaiProjectIds) {
foreach ($kimaiProjectIds as $kimaiProjectId) {
if ($stmt->execute([$kimaiTeamId, $kimaiProjectId]) === false) {
$io->error(sprintf('Failed inserting into "team_project" with: %s', $stmt->errorInfo()[2]));
}
}
}
return 0;
})
->run();