1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* @copyright Copyright (c) 2017-2020, Matias De lellis <[email protected]> |
4
|
|
|
* @copyright Copyright (c) 2018-2019, Branko Kokanovic <[email protected]> |
5
|
|
|
* |
6
|
|
|
* @author Matias De lellis <[email protected]> |
7
|
|
|
* |
8
|
|
|
* @license GNU AGPL version 3 or any later version |
9
|
|
|
* |
10
|
|
|
* This program is free software: you can redistribute it and/or modify |
11
|
|
|
* it under the terms of the GNU Affero General Public License as |
12
|
|
|
* published by the Free Software Foundation, either version 3 of the |
13
|
|
|
* License, or (at your option) any later version. |
14
|
|
|
* |
15
|
|
|
* This program is distributed in the hope that it will be useful, |
16
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
17
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
18
|
|
|
* GNU Affero General Public License for more details. |
19
|
|
|
* |
20
|
|
|
* You should have received a copy of the GNU Affero General Public License |
21
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
22
|
|
|
* |
23
|
|
|
*/ |
24
|
|
|
|
25
|
|
|
namespace OCA\FaceRecognition\Db; |
26
|
|
|
|
27
|
|
|
use OC\DB\QueryBuilder\Literal; |
|
|
|
|
28
|
|
|
|
29
|
|
|
use OCP\IDBConnection; |
30
|
|
|
use OCP\AppFramework\Db\QBMapper; |
31
|
|
|
use OCP\AppFramework\Db\DoesNotExistException; |
32
|
|
|
use OCP\DB\QueryBuilder\IQueryBuilder; |
33
|
|
|
|
34
|
|
|
class FaceMapper extends QBMapper { |
35
|
|
|
|
36
|
1 |
|
public function __construct(IDBConnection $db) { |
37
|
1 |
|
parent::__construct($db, 'facerecog_faces', '\OCA\FaceRecognition\Db\Face'); |
38
|
|
|
} |
39
|
|
|
|
40
|
1 |
|
public function find (int $faceId): ?Face { |
41
|
1 |
|
$qb = $this->db->getQueryBuilder(); |
42
|
1 |
|
$qb->select('id', 'image', 'person', 'x', 'y', 'width', 'height', 'landmarks', 'descriptor', 'confidence') |
43
|
1 |
|
->from($this->getTableName(), 'f') |
44
|
1 |
|
->where($qb->expr()->eq('id', $qb->createNamedParameter($faceId))); |
45
|
|
|
try { |
46
|
1 |
|
return $this->findEntity($qb); |
|
|
|
|
47
|
|
|
} catch (DoesNotExistException $e) { |
48
|
|
|
return null; |
49
|
|
|
} |
50
|
|
|
} |
51
|
|
|
|
52
|
1 |
|
public function findDescriptorsBathed (array $faceIds): array { |
53
|
1 |
|
$qb = $this->db->getQueryBuilder(); |
54
|
1 |
|
$qb->select('id', 'descriptor') |
55
|
1 |
|
->from($this->getTableName(), 'f') |
56
|
1 |
|
->where($qb->expr()->in('id', $qb->createParameter('face_ids'))); |
57
|
1 |
|
$qb->setParameter('face_ids', $faceIds, IQueryBuilder::PARAM_INT_ARRAY); |
58
|
1 |
|
return $this->findEntities($qb); |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
/** |
62
|
|
|
* Based on a given fileId, takes all faces that belong to that file |
63
|
|
|
* and return an array with that. |
64
|
|
|
* |
65
|
|
|
* @param string $userId ID of the user that faces belong to |
66
|
|
|
* @param int $modelId ID of the model that faces belgon to |
67
|
|
|
* @param int $fileId ID of file for which to search faces. |
68
|
|
|
* |
69
|
|
|
* @return Face[] |
70
|
|
|
*/ |
71
|
|
|
public function findFromFile(string $userId, int $modelId, int $fileId): array { |
72
|
|
|
$qb = $this->db->getQueryBuilder(); |
73
|
|
|
$qb->select('f.id', 'x', 'y', 'width', 'height', 'person', 'confidence', 'creation_time') |
74
|
|
|
->from($this->getTableName(), 'f') |
75
|
|
|
->innerJoin('f', 'facerecog_images' ,'i', $qb->expr()->eq('f.image', 'i.id')) |
76
|
|
|
->where($qb->expr()->eq('i.user', $qb->createParameter('user_id'))) |
77
|
|
|
->andWhere($qb->expr()->eq('model', $qb->createParameter('model_id'))) |
78
|
|
|
->andWhere($qb->expr()->eq('file', $qb->createParameter('file_id'))) |
79
|
|
|
->setParameter('user_id', $userId) |
80
|
|
|
->setParameter('model_id', $modelId) |
81
|
|
|
->setParameter('file_id', $fileId) |
82
|
|
|
->orderBy('confidence', 'DESC'); |
83
|
|
|
return $this->findEntities($qb); |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
/** |
87
|
|
|
* Counts all the faces that belong to images of a given user, created using given model |
88
|
|
|
* |
89
|
|
|
* @param string $userId User to which faces and associated images belongs to |
90
|
|
|
* @param int $model Model ID |
91
|
|
|
* @param bool $onlyWithoutPersons True if we need to count only faces which are not having person associated for it. |
92
|
|
|
* If false, all faces are counted. |
93
|
|
|
*/ |
94
|
14 |
|
public function countFaces(string $userId, int $model, bool $onlyWithoutPersons=false): int { |
95
|
14 |
|
$qb = $this->db->getQueryBuilder(); |
96
|
14 |
|
$qb = $qb |
97
|
14 |
|
->select($qb->createFunction('COUNT(' . $qb->getColumnName('f.id') . ')')) |
98
|
14 |
|
->from($this->getTableName(), 'f') |
99
|
14 |
|
->innerJoin('f', 'facerecog_images' ,'i', $qb->expr()->eq('f.image', 'i.id')) |
100
|
14 |
|
->where($qb->expr()->eq('user', $qb->createParameter('user'))) |
101
|
14 |
|
->andWhere($qb->expr()->eq('model', $qb->createParameter('model'))); |
102
|
14 |
|
if ($onlyWithoutPersons) { |
103
|
|
|
$qb = $qb->andWhere($qb->expr()->isNull('person')); |
104
|
|
|
} |
105
|
14 |
|
$query = $qb |
106
|
14 |
|
->setParameter('user', $userId) |
107
|
14 |
|
->setParameter('model', $model); |
108
|
14 |
|
$resultStatement = $query->execute(); |
|
|
|
|
109
|
14 |
|
$data = $resultStatement->fetch(\PDO::FETCH_NUM); |
110
|
14 |
|
$resultStatement->closeCursor(); |
111
|
|
|
|
112
|
14 |
|
return (int)$data[0]; |
113
|
|
|
} |
114
|
|
|
|
115
|
|
|
/** |
116
|
|
|
* Gets oldest created face from database, for a given user and model, that is not associated with a person. |
117
|
|
|
* |
118
|
|
|
* @param string $userId User to which faces and associated images belongs to |
119
|
|
|
* @param int $model Model ID |
120
|
|
|
* |
121
|
|
|
* @return Face Oldest face, if any is found |
122
|
|
|
* @throws DoesNotExistException If there is no faces in database without person for a given user and model. |
123
|
|
|
*/ |
124
|
|
|
public function getOldestCreatedFaceWithoutPerson(string $userId, int $model) { |
125
|
|
|
$qb = $this->db->getQueryBuilder(); |
126
|
|
|
$qb |
127
|
|
|
->select('f.id', 'f.creation_time') |
128
|
|
|
->from($this->getTableName(), 'f') |
129
|
|
|
->innerJoin('f', 'facerecog_images' ,'i', $qb->expr()->eq('f.image', 'i.id')) |
130
|
|
|
->where($qb->expr()->eq('user', $qb->createNamedParameter($userId))) |
131
|
|
|
->andWhere($qb->expr()->eq('model', $qb->createNamedParameter($model))) |
132
|
|
|
->andWhere($qb->expr()->isNull('person')) |
133
|
|
|
->orderBy('f.creation_time', 'ASC'); |
134
|
|
|
$cursor = $qb->execute(); |
|
|
|
|
135
|
|
|
$row = $cursor->fetch(); |
136
|
|
|
if($row === false) { |
137
|
|
|
$cursor->closeCursor(); |
138
|
|
|
throw new DoesNotExistException("No faces found and we should have at least one"); |
139
|
|
|
} |
140
|
|
|
$face = $this->mapRowToEntity($row); |
141
|
|
|
$cursor->closeCursor(); |
142
|
|
|
return $face; |
143
|
|
|
} |
144
|
|
|
|
145
|
17 |
|
public function getFaces(string $userId, int $model): array { |
146
|
17 |
|
$qb = $this->db->getQueryBuilder(); |
147
|
17 |
|
$qb->select('f.id', 'f.person', 'f.x', 'f.y', 'f.width', 'f.height', 'f.confidence', 'f.descriptor', 'f.is_groupable') |
148
|
17 |
|
->from($this->getTableName(), 'f') |
149
|
17 |
|
->innerJoin('f', 'facerecog_images' ,'i', $qb->expr()->eq('f.image', 'i.id')) |
150
|
17 |
|
->where($qb->expr()->eq('user', $qb->createParameter('user'))) |
151
|
17 |
|
->andWhere($qb->expr()->eq('model', $qb->createParameter('model'))) |
152
|
17 |
|
->setParameter('user', $userId) |
153
|
17 |
|
->setParameter('model', $model); |
154
|
17 |
|
return $this->findEntities($qb); |
155
|
|
|
} |
156
|
|
|
|
157
|
1 |
|
public function getGroupableFaces(string $userId, int $model, int $minSize, float $minConfidence): array { |
158
|
1 |
|
$qb = $this->db->getQueryBuilder(); |
159
|
1 |
|
$qb->select('f.id', 'f.person') |
160
|
1 |
|
->from($this->getTableName(), 'f') |
161
|
1 |
|
->innerJoin('f', 'facerecog_images' ,'i', $qb->expr()->eq('f.image', 'i.id')) |
162
|
1 |
|
->where($qb->expr()->eq('user', $qb->createParameter('user'))) |
163
|
1 |
|
->andWhere($qb->expr()->eq('model', $qb->createParameter('model'))) |
164
|
1 |
|
->andWhere($qb->expr()->gte('width', $qb->createParameter('min_size'))) |
165
|
1 |
|
->andWhere($qb->expr()->gte('height', $qb->createParameter('min_size'))) |
166
|
1 |
|
->andWhere($qb->expr()->gte('confidence', $qb->createParameter('min_confidence'))) |
167
|
1 |
|
->andWhere($qb->expr()->eq('is_groupable', $qb->createParameter('is_groupable'))) |
168
|
1 |
|
->setParameter('user', $userId) |
169
|
1 |
|
->setParameter('model', $model) |
170
|
1 |
|
->setParameter('min_size', $minSize) |
171
|
1 |
|
->setParameter('min_confidence', $minConfidence) |
172
|
1 |
|
->setParameter('is_groupable', true, IQueryBuilder::PARAM_BOOL); |
173
|
1 |
|
return $this->findEntities($qb); |
174
|
|
|
} |
175
|
|
|
|
176
|
1 |
|
public function getNonGroupableFaces(string $userId, int $model, int $minSize, float $minConfidence): array { |
177
|
1 |
|
$qb = $this->db->getQueryBuilder(); |
178
|
1 |
|
$qb->select('f.id', 'f.person') |
179
|
1 |
|
->from($this->getTableName(), 'f') |
180
|
1 |
|
->innerJoin('f', 'facerecog_images' ,'i', $qb->expr()->eq('f.image', 'i.id')) |
181
|
1 |
|
->where($qb->expr()->eq('user', $qb->createParameter('user'))) |
182
|
1 |
|
->andWhere($qb->expr()->eq('model', $qb->createParameter('model'))) |
183
|
1 |
|
->andWhere($qb->expr()->orX( |
184
|
1 |
|
$qb->expr()->lt('width', $qb->createParameter('min_size')), |
185
|
1 |
|
$qb->expr()->lt('height', $qb->createParameter('min_size')), |
186
|
1 |
|
$qb->expr()->lt('confidence', $qb->createParameter('min_confidence')), |
187
|
1 |
|
$qb->expr()->eq('is_groupable', $qb->createParameter('is_groupable')) |
188
|
1 |
|
)) |
189
|
1 |
|
->setParameter('user', $userId) |
190
|
1 |
|
->setParameter('model', $model) |
191
|
1 |
|
->setParameter('min_size', $minSize) |
192
|
1 |
|
->setParameter('min_confidence', $minConfidence) |
193
|
1 |
|
->setParameter('is_groupable', false, IQueryBuilder::PARAM_BOOL); |
194
|
1 |
|
return $this->findEntities($qb); |
195
|
|
|
} |
196
|
|
|
|
197
|
|
|
/** |
198
|
|
|
* @param int|null $limit |
199
|
|
|
*/ |
200
|
13 |
|
public function findFromCluster(string $userId, int $clusterId, int $model, ?int $limit = null, $offset = null): array { |
201
|
13 |
|
$qb = $this->db->getQueryBuilder(); |
202
|
13 |
|
$qb->select('f.id', 'f.image', 'f.person') |
203
|
13 |
|
->from($this->getTableName(), 'f') |
204
|
13 |
|
->innerJoin('f', 'facerecog_images' ,'i', $qb->expr()->eq('f.image', 'i.id')) |
205
|
13 |
|
->where($qb->expr()->eq('user', $qb->createNamedParameter($userId))) |
206
|
13 |
|
->andWhere($qb->expr()->eq('person', $qb->createNamedParameter($clusterId))) |
207
|
13 |
|
->andWhere($qb->expr()->eq('model', $qb->createNamedParameter($model))); |
208
|
|
|
|
209
|
13 |
|
$qb->setMaxResults($limit); |
210
|
13 |
|
$qb->setFirstResult($offset); |
211
|
|
|
|
212
|
13 |
|
$faces = $this->findEntities($qb); |
213
|
13 |
|
return $faces; |
214
|
|
|
} |
215
|
|
|
|
216
|
|
|
/** |
217
|
|
|
* @param int|null $limit |
218
|
|
|
*/ |
219
|
|
|
public function findFromPerson(string $userId, string $personId, int $model, ?int $limit = null, $offset = null): array { |
220
|
|
|
$qb = $this->db->getQueryBuilder(); |
221
|
|
|
$qb->select('f.id') |
222
|
|
|
->from($this->getTableName(), 'f') |
223
|
|
|
->innerJoin('f', 'facerecog_images' ,'i', $qb->expr()->eq('f.image', 'i.id')) |
224
|
|
|
->innerJoin('f', 'facerecog_persons' ,'p', $qb->expr()->eq('f.person', 'p.id')) |
225
|
|
|
->where($qb->expr()->eq('p.user', $qb->createNamedParameter($userId))) |
226
|
|
|
->andWhere($qb->expr()->eq('name', $qb->createNamedParameter($personId))) |
227
|
|
|
->andWhere($qb->expr()->eq('model', $qb->createNamedParameter($model))) |
228
|
|
|
->orderBy('i.file', 'DESC'); |
229
|
|
|
|
230
|
|
|
$qb->setMaxResults($limit); |
231
|
|
|
$qb->setFirstResult($offset); |
232
|
|
|
|
233
|
|
|
$faces = $this->findEntities($qb); |
234
|
|
|
|
235
|
|
|
return $faces; |
236
|
|
|
} |
237
|
|
|
|
238
|
|
|
/** |
239
|
|
|
* Finds all faces contained in one image |
240
|
|
|
* Note that this is independent of any Model |
241
|
|
|
* |
242
|
|
|
* @param int $imageId Image for which to find all faces for |
243
|
|
|
* |
244
|
|
|
*/ |
245
|
|
|
public function findByImage(int $imageId): array { |
246
|
|
|
$qb = $this->db->getQueryBuilder(); |
247
|
|
|
$qb->select('id', 'image', 'person') |
248
|
|
|
->from($this->getTableName()) |
249
|
|
|
->where($qb->expr()->eq('image', $qb->createNamedParameter($imageId))); |
250
|
|
|
$faces = $this->findEntities($qb); |
251
|
|
|
return $faces; |
252
|
|
|
} |
253
|
|
|
|
254
|
|
|
/** |
255
|
|
|
* Removes all faces contained in one image. |
256
|
|
|
* Note that this is independent of any Model |
257
|
|
|
* |
258
|
|
|
* @param int $imageId Image for which to delete faces for |
259
|
|
|
* |
260
|
|
|
* @return void |
261
|
|
|
*/ |
262
|
2 |
|
public function removeFromImage(int $imageId): void { |
263
|
2 |
|
$qb = $this->db->getQueryBuilder(); |
264
|
2 |
|
$qb->delete($this->getTableName()) |
|
|
|
|
265
|
2 |
|
->where($qb->expr()->eq('image', $qb->createNamedParameter($imageId))) |
266
|
2 |
|
->execute(); |
267
|
|
|
} |
268
|
|
|
|
269
|
|
|
/** |
270
|
|
|
* Deletes all faces from that user. |
271
|
|
|
* |
272
|
|
|
* @param string $userId User to drop faces from table. |
273
|
|
|
* |
274
|
|
|
* @return void |
275
|
|
|
*/ |
276
|
28 |
|
public function deleteUserFaces(string $userId): void { |
277
|
28 |
|
$sub = $this->db->getQueryBuilder(); |
278
|
28 |
|
$sub->select(new Literal('1')); |
279
|
28 |
|
$sub->from('facerecog_images', 'i') |
280
|
28 |
|
->where($sub->expr()->eq('i.id', '*PREFIX*' . $this->getTableName() .'.image')) |
281
|
28 |
|
->andWhere($sub->expr()->eq('i.user', $sub->createParameter('user'))); |
282
|
|
|
|
283
|
28 |
|
$qb = $this->db->getQueryBuilder(); |
284
|
28 |
|
$qb->delete($this->getTableName()) |
|
|
|
|
285
|
28 |
|
->where('EXISTS (' . $sub->getSQL() . ')') |
286
|
28 |
|
->setParameter('user', $userId) |
287
|
28 |
|
->execute(); |
288
|
|
|
} |
289
|
|
|
|
290
|
|
|
/** |
291
|
|
|
* Deletes all faces from that user and model |
292
|
|
|
* |
293
|
|
|
* @param string $userId User to drop faces from table. |
294
|
|
|
* @param int $modelId model to drop faces from table. |
295
|
|
|
* |
296
|
|
|
* @return void |
297
|
|
|
*/ |
298
|
|
|
public function deleteUserModel(string $userId, $modelId): void { |
299
|
|
|
$sub = $this->db->getQueryBuilder(); |
300
|
|
|
$sub->select(new Literal('1')); |
301
|
|
|
$sub->from('facerecog_images', 'i') |
302
|
|
|
->where($sub->expr()->eq('i.id', '*PREFIX*' . $this->getTableName() .'.image')) |
303
|
|
|
->andWhere($sub->expr()->eq('i.user', $sub->createParameter('user'))) |
304
|
|
|
->andWhere($sub->expr()->eq('i.model', $sub->createParameter('model'))); |
305
|
|
|
|
306
|
|
|
$qb = $this->db->getQueryBuilder(); |
307
|
|
|
$qb->delete($this->getTableName()) |
|
|
|
|
308
|
|
|
->where('EXISTS (' . $sub->getSQL() . ')') |
309
|
|
|
->setParameter('user', $userId) |
310
|
|
|
->setParameter('model', $modelId) |
311
|
|
|
->execute(); |
312
|
|
|
} |
313
|
|
|
|
314
|
|
|
/** |
315
|
|
|
* Unset relation beetwen faces and persons from that user in order to reset clustering |
316
|
|
|
* |
317
|
|
|
* @param string $userId User to drop fo unset relation. |
318
|
|
|
* |
319
|
|
|
* @return void |
320
|
|
|
*/ |
321
|
|
|
public function unsetPersonsRelationForUser(string $userId, int $model): void { |
322
|
|
|
$sub = $this->db->getQueryBuilder(); |
323
|
|
|
$sub->select(new Literal('1')); |
324
|
|
|
$sub->from('facerecog_images', 'i') |
325
|
|
|
->where($sub->expr()->eq('i.id', '*PREFIX*' . $this->getTableName() .'.image')) |
326
|
|
|
->andWhere($sub->expr()->eq('i.model', $sub->createParameter('model'))) |
327
|
|
|
->andWhere($sub->expr()->eq('i.user', $sub->createParameter('user'))); |
328
|
|
|
|
329
|
|
|
$qb = $this->db->getQueryBuilder(); |
330
|
|
|
$qb->update($this->getTableName()) |
|
|
|
|
331
|
|
|
->set("person", $qb->createNamedParameter(null)) |
332
|
|
|
->where('EXISTS (' . $sub->getSQL() . ')') |
333
|
|
|
->setParameter('model', $model) |
334
|
|
|
->setParameter('user', $userId) |
335
|
|
|
->execute(); |
336
|
|
|
} |
337
|
|
|
|
338
|
|
|
/** |
339
|
|
|
* Insert one face to database. |
340
|
|
|
* Note: only reason we are not using (idiomatic) QBMapper method is |
341
|
|
|
* because "QueryBuilder::PARAM_DATE" cannot be set there |
342
|
|
|
* |
343
|
|
|
* @param Face $face Face to insert |
344
|
|
|
* @param IDBConnection $db Existing connection, if we need to reuse it. Null if we commit immediatelly. |
345
|
|
|
* |
346
|
|
|
* @return Face |
347
|
|
|
*/ |
348
|
15 |
|
public function insertFace(Face $face, IDBConnection $db = null): Face { |
349
|
15 |
|
if ($db !== null) { |
350
|
1 |
|
$qb = $db->getQueryBuilder(); |
351
|
|
|
} else { |
352
|
14 |
|
$qb = $this->db->getQueryBuilder(); |
353
|
|
|
} |
354
|
|
|
|
355
|
15 |
|
$qb->insert($this->getTableName()) |
|
|
|
|
356
|
15 |
|
->values([ |
357
|
15 |
|
'image' => $qb->createNamedParameter($face->image), |
358
|
15 |
|
'person' => $qb->createNamedParameter($face->person), |
359
|
15 |
|
'x' => $qb->createNamedParameter($face->x), |
360
|
15 |
|
'y' => $qb->createNamedParameter($face->y), |
361
|
15 |
|
'width' => $qb->createNamedParameter($face->width), |
362
|
15 |
|
'height' => $qb->createNamedParameter($face->height), |
363
|
15 |
|
'confidence' => $qb->createNamedParameter($face->confidence), |
364
|
15 |
|
'landmarks' => $qb->createNamedParameter(json_encode($face->landmarks)), |
365
|
15 |
|
'descriptor' => $qb->createNamedParameter(json_encode($face->descriptor)), |
366
|
15 |
|
'creation_time' => $qb->createNamedParameter($face->creationTime, IQueryBuilder::PARAM_DATE), |
|
|
|
|
367
|
15 |
|
]) |
368
|
15 |
|
->execute(); |
369
|
|
|
|
370
|
15 |
|
$face->setId($qb->getLastInsertId()); |
371
|
|
|
|
372
|
15 |
|
return $face; |
373
|
|
|
} |
374
|
|
|
} |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths