Passed
Push — imaginary ( eaed66...5e9e61 )
by Matias
06:36 queued 12s
created

FaceMapper::find()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 2.0625

Importance

Changes 0
Metric Value
cc 2
eloc 8
c 0
b 0
f 0
nc 2
nop 1
dl 0
loc 9
ccs 6
cts 8
cp 0.75
crap 2.0625
rs 10
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;
0 ignored issues
show
Bug introduced by
The type OC\DB\QueryBuilder\Literal was not found. Maybe you did not declare it correctly or list all dependencies?

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:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
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
			->andWhere($qb->expr()->eq('id', $qb->createNamedParameter($faceId)));
45
		try {
46 1
			return $this->findEntity($qb);
0 ignored issues
show
Bug Best Practice introduced by
The expression return $this->findEntity($qb) returns the type OCP\AppFramework\Db\Entity which includes types incompatible with the type-hinted return OCA\FaceRecognition\Db\Face|null.
Loading history...
47
		} catch (DoesNotExistException $e) {
48
			return null;
49
		}
50
	}
51
52
	/**
53
	 * Based on a given fileId, takes all faces that belong to that file
54
	 * and return an array with that.
55
	 *
56
	 * @param string $userId ID of the user that faces belong to
57
	 * @param int $modelId ID of the model that faces belgon to
58
	 * @param int $fileId ID of file for which to search faces.
59
	 *
60
	 * @return Face[]
61
	 */
62
	public function findFromFile(string $userId, int $modelId, int $fileId): array {
63
		$qb = $this->db->getQueryBuilder();
64
		$qb->select('f.id', 'x', 'y', 'width', 'height', 'person', 'confidence', 'creation_time')
65
			->from($this->getTableName(), 'f')
66
			->innerJoin('f', 'facerecog_images' ,'i', $qb->expr()->eq('f.image', 'i.id'))
67
			->where($qb->expr()->eq('i.user', $qb->createParameter('user_id')))
68
			->andWhere($qb->expr()->eq('model', $qb->createParameter('model_id')))
69
			->andWhere($qb->expr()->eq('file', $qb->createParameter('file_id')))
70
			->setParameter('user_id', $userId)
71
			->setParameter('model_id', $modelId)
72
			->setParameter('file_id', $fileId)
73
			->orderBy('confidence', 'DESC');
74
		return $this->findEntities($qb);
75
	}
76
77
	/**
78
	 * Counts all the faces that belong to images of a given user, created using given model
79
	 *
80
	 * @param string $userId User to which faces and associated images belongs to
81
	 * @param int $model Model ID
82
	 * @param bool $onlyWithoutPersons True if we need to count only faces which are not having person associated for it.
83
	 * If false, all faces are counted.
84
	 */
85 14
	public function countFaces(string $userId, int $model, bool $onlyWithoutPersons=false): int {
86 14
		$qb = $this->db->getQueryBuilder();
87 14
		$qb = $qb
88 14
			->select($qb->createFunction('COUNT(' . $qb->getColumnName('f.id') . ')'))
89 14
			->from($this->getTableName(), 'f')
90 14
			->innerJoin('f', 'facerecog_images' ,'i', $qb->expr()->eq('f.image', 'i.id'))
91 14
			->where($qb->expr()->eq('user', $qb->createParameter('user')))
92 14
			->andWhere($qb->expr()->eq('model', $qb->createParameter('model')));
93 14
		if ($onlyWithoutPersons) {
94
			$qb = $qb->andWhere($qb->expr()->isNull('person'));
95
		}
96 14
		$query = $qb
97 14
			->setParameter('user', $userId)
98 14
			->setParameter('model', $model);
99 14
		$resultStatement = $query->execute();
0 ignored issues
show
Deprecated Code introduced by
The function OCP\DB\QueryBuilder\IQueryBuilder::execute() has been deprecated: 22.0.0 Use executeQuery or executeStatement ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

99
		$resultStatement = /** @scrutinizer ignore-deprecated */ $query->execute();

This function has been deprecated. The supplier of the function has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.

Loading history...
100 14
		$data = $resultStatement->fetch(\PDO::FETCH_NUM);
101 14
		$resultStatement->closeCursor();
102
103 14
		return (int)$data[0];
104
	}
105
106
	/**
107
	 * Gets oldest created face from database, for a given user and model, that is not associated with a person.
108
	 *
109
	 * @param string $userId User to which faces and associated images belongs to
110
	 * @param int $model Model ID
111
	 *
112
	 * @return Face Oldest face, if any is found
113
	 * @throws DoesNotExistException If there is no faces in database without person for a given user and model.
114
	 */
115
	public function getOldestCreatedFaceWithoutPerson(string $userId, int $model) {
116
		$qb = $this->db->getQueryBuilder();
117
		$qb
118
			->select('f.id', 'f.creation_time')
119
			->from($this->getTableName(), 'f')
120
			->innerJoin('f', 'facerecog_images' ,'i', $qb->expr()->eq('f.image', 'i.id'))
121
			->where($qb->expr()->eq('user', $qb->createNamedParameter($userId)))
122
			->andWhere($qb->expr()->eq('model', $qb->createNamedParameter($model)))
123
			->andWhere($qb->expr()->isNull('person'))
124
			->orderBy('f.creation_time', 'ASC');
125
		$cursor = $qb->execute();
0 ignored issues
show
Deprecated Code introduced by
The function OCP\DB\QueryBuilder\IQueryBuilder::execute() has been deprecated: 22.0.0 Use executeQuery or executeStatement ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

125
		$cursor = /** @scrutinizer ignore-deprecated */ $qb->execute();

This function has been deprecated. The supplier of the function has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.

Loading history...
126
		$row = $cursor->fetch();
127
		if($row === false) {
128
			$cursor->closeCursor();
129
			throw new DoesNotExistException("No faces found and we should have at least one");
130
		}
131
		$face = $this->mapRowToEntity($row);
132
		$cursor->closeCursor();
133
		return $face;
134
	}
135
136 17
	public function getFaces(string $userId, int $model): array {
137 17
		$qb = $this->db->getQueryBuilder();
138 17
		$qb->select('f.id', 'f.person', 'f.x', 'f.y', 'f.width', 'f.height', 'f.confidence', 'f.descriptor', 'f.is_groupable')
139 17
			->from($this->getTableName(), 'f')
140 17
			->innerJoin('f', 'facerecog_images' ,'i', $qb->expr()->eq('f.image', 'i.id'))
141 17
			->where($qb->expr()->eq('user', $qb->createParameter('user')))
142 17
			->andWhere($qb->expr()->eq('model', $qb->createParameter('model')))
143 17
			->setParameter('user', $userId)
144 17
			->setParameter('model', $model);
145 17
		return $this->findEntities($qb);
146
	}
147
148
	/**
149
	 * @param int|null $limit
150
	 */
151 13
	public function findFromCluster(string $userId, int $clusterId, int $model, ?int $limit = null, $offset = null): array {
152 13
		$qb = $this->db->getQueryBuilder();
153 13
		$qb->select('f.id', 'f.image', 'f.person')
154 13
			->from($this->getTableName(), 'f')
155 13
			->innerJoin('f', 'facerecog_images' ,'i', $qb->expr()->eq('f.image', 'i.id'))
156 13
			->where($qb->expr()->eq('user', $qb->createNamedParameter($userId)))
157 13
			->andWhere($qb->expr()->eq('person', $qb->createNamedParameter($clusterId)))
158 13
			->andWhere($qb->expr()->eq('model', $qb->createNamedParameter($model)));
159
160 13
		$qb->setMaxResults($limit);
161 13
		$qb->setFirstResult($offset);
162
163 13
		$faces = $this->findEntities($qb);
164 13
		return $faces;
165
	}
166
167
	/**
168
	 * @param int|null $limit
169
	 */
170
	public function findFromPerson(string $userId, string $personId, int $model, ?int $limit = null, $offset = null): array {
171
		$qb = $this->db->getQueryBuilder();
172
		$qb->select('f.id')
173
			->from($this->getTableName(), 'f')
174
			->innerJoin('f', 'facerecog_images' ,'i', $qb->expr()->eq('f.image', 'i.id'))
175
			->innerJoin('f', 'facerecog_persons' ,'p', $qb->expr()->eq('f.person', 'p.id'))
176
			->where($qb->expr()->eq('p.user', $qb->createNamedParameter($userId)))
177
			->andWhere($qb->expr()->eq('name', $qb->createNamedParameter($personId)))
178
			->andWhere($qb->expr()->eq('model', $qb->createNamedParameter($model)))
179
			->orderBy('i.file', 'DESC');
180
181
		$qb->setMaxResults($limit);
182
		$qb->setFirstResult($offset);
183
184
		$faces = $this->findEntities($qb);
185
186
		return $faces;
187
	}
188
189
	/**
190
	 * Finds all faces contained in one image
191
	 * Note that this is independent of any Model
192
	 *
193
	 * @param int $imageId Image for which to find all faces for
194
	 *
195
	 */
196
	public function findByImage(int $imageId): array {
197
		$qb = $this->db->getQueryBuilder();
198
		$qb->select('id', 'image', 'person')
199
			->from($this->getTableName())
200
			->where($qb->expr()->eq('image', $qb->createNamedParameter($imageId)));
201
		$faces = $this->findEntities($qb);
202
		return $faces;
203
	}
204
205
	/**
206
	 * Removes all faces contained in one image.
207
	 * Note that this is independent of any Model
208
	 *
209
	 * @param int $imageId Image for which to delete faces for
210
	 *
211
	 * @return void
212
	 */
213 2
	public function removeFromImage(int $imageId): void {
214 2
		$qb = $this->db->getQueryBuilder();
215 2
		$qb->delete($this->getTableName())
0 ignored issues
show
Deprecated Code introduced by
The function OCP\DB\QueryBuilder\IQueryBuilder::execute() has been deprecated: 22.0.0 Use executeQuery or executeStatement ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

215
		/** @scrutinizer ignore-deprecated */ $qb->delete($this->getTableName())

This function has been deprecated. The supplier of the function has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.

Loading history...
216 2
			->where($qb->expr()->eq('image', $qb->createNamedParameter($imageId)))
217 2
			->execute();
218
	}
219
220
	/**
221
	 * Deletes all faces from that user.
222
	 *
223
	 * @param string $userId User to drop faces from table.
224
	 *
225
	 * @return void
226
	 */
227 28
	public function deleteUserFaces(string $userId): void {
228 28
		$sub = $this->db->getQueryBuilder();
229 28
		$sub->select(new Literal('1'));
230 28
		$sub->from('facerecog_images', 'i')
231 28
			->where($sub->expr()->eq('i.id', '*PREFIX*' . $this->getTableName() .'.image'))
232 28
			->andWhere($sub->expr()->eq('i.user', $sub->createParameter('user')));
233
234 28
		$qb = $this->db->getQueryBuilder();
235 28
		$qb->delete($this->getTableName())
0 ignored issues
show
Deprecated Code introduced by
The function OCP\DB\QueryBuilder\IQueryBuilder::execute() has been deprecated: 22.0.0 Use executeQuery or executeStatement ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

235
		/** @scrutinizer ignore-deprecated */ $qb->delete($this->getTableName())

This function has been deprecated. The supplier of the function has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.

Loading history...
236 28
			->where('EXISTS (' . $sub->getSQL() . ')')
237 28
			->setParameter('user', $userId)
238 28
			->execute();
239
	}
240
241
	/**
242
	 * Deletes all faces from that user and model
243
	 *
244
	 * @param string $userId User to drop faces from table.
245
	 * @param int $modelId model to drop faces from table.
246
	 *
247
	 * @return void
248
	 */
249
	public function deleteUserModel(string $userId, $modelId): void {
250
		$sub = $this->db->getQueryBuilder();
251
		$sub->select(new Literal('1'));
252
		$sub->from('facerecog_images', 'i')
253
			->where($sub->expr()->eq('i.id', '*PREFIX*' . $this->getTableName() .'.image'))
254
			->andWhere($sub->expr()->eq('i.user', $sub->createParameter('user')))
255
			->andWhere($sub->expr()->eq('i.model', $sub->createParameter('model')));
256
257
		$qb = $this->db->getQueryBuilder();
258
		$qb->delete($this->getTableName())
0 ignored issues
show
Deprecated Code introduced by
The function OCP\DB\QueryBuilder\IQueryBuilder::execute() has been deprecated: 22.0.0 Use executeQuery or executeStatement ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

258
		/** @scrutinizer ignore-deprecated */ $qb->delete($this->getTableName())

This function has been deprecated. The supplier of the function has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.

Loading history...
259
			->where('EXISTS (' . $sub->getSQL() . ')')
260
			->setParameter('user', $userId)
261
			->setParameter('model', $modelId)
262
			->execute();
263
	}
264
265
	/**
266
	 * Unset relation beetwen faces and persons from that user in order to reset clustering
267
	 *
268
	 * @param string $userId User to drop fo unset relation.
269
	 *
270
	 * @return void
271
	 */
272
	public function unsetPersonsRelationForUser(string $userId, int $model): void {
273
		$sub = $this->db->getQueryBuilder();
274
		$sub->select(new Literal('1'));
275
		$sub->from('facerecog_images', 'i')
276
			->where($sub->expr()->eq('i.id', '*PREFIX*' . $this->getTableName() .'.image'))
277
			->andWhere($sub->expr()->eq('i.model', $sub->createParameter('model')))
278
			->andWhere($sub->expr()->eq('i.user', $sub->createParameter('user')));
279
280
		$qb = $this->db->getQueryBuilder();
281
		$qb->update($this->getTableName())
0 ignored issues
show
Deprecated Code introduced by
The function OCP\DB\QueryBuilder\IQueryBuilder::execute() has been deprecated: 22.0.0 Use executeQuery or executeStatement ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

281
		/** @scrutinizer ignore-deprecated */ $qb->update($this->getTableName())

This function has been deprecated. The supplier of the function has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.

Loading history...
282
			->set("person", $qb->createNamedParameter(null))
283
			->where('EXISTS (' . $sub->getSQL() . ')')
284
			->setParameter('model', $model)
285
			->setParameter('user', $userId)
286
			->execute();
287
	}
288
289
	/**
290
	 * Insert one face to database.
291
	 * Note: only reason we are not using (idiomatic) QBMapper method is
292
	 * because "QueryBuilder::PARAM_DATE" cannot be set there
293
	 *
294
	 * @param Face $face Face to insert
295
	 * @param IDBConnection $db Existing connection, if we need to reuse it. Null if we commit immediatelly.
296
	 *
297
	 * @return Face
298
	 */
299 15
	public function insertFace(Face $face, IDBConnection $db = null): Face {
300 15
		if ($db !== null) {
301 1
			$qb = $db->getQueryBuilder();
302
		} else {
303 14
			$qb = $this->db->getQueryBuilder();
304
		}
305
306 15
		$qb->insert($this->getTableName())
0 ignored issues
show
Deprecated Code introduced by
The function OCP\DB\QueryBuilder\IQueryBuilder::execute() has been deprecated: 22.0.0 Use executeQuery or executeStatement ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

306
		/** @scrutinizer ignore-deprecated */ $qb->insert($this->getTableName())

This function has been deprecated. The supplier of the function has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.

Loading history...
307 15
			->values([
308 15
				'image' => $qb->createNamedParameter($face->image),
309 15
				'person' => $qb->createNamedParameter($face->person),
310 15
				'x' => $qb->createNamedParameter($face->x),
311 15
				'y' => $qb->createNamedParameter($face->y),
312 15
				'width' => $qb->createNamedParameter($face->width),
313 15
				'height' => $qb->createNamedParameter($face->height),
314 15
				'confidence' => $qb->createNamedParameter($face->confidence),
315 15
				'landmarks' => $qb->createNamedParameter(json_encode($face->landmarks)),
316 15
				'descriptor' => $qb->createNamedParameter(json_encode($face->descriptor)),
317 15
				'creation_time' => $qb->createNamedParameter($face->creationTime, IQueryBuilder::PARAM_DATE),
318 15
			])
319 15
			->execute();
320
321 15
		$face->setId($qb->getLastInsertId());
322
323 15
		return $face;
324
	}
325
}