Completed
Push — master ( 7f194b...f212c6 )
by Morris
18:03 queued 13s
created

DirectMapper::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
declare(strict_types=1);
3
/**
4
 * @copyright 2018, Roeland Jago Douma <[email protected]>
5
 *
6
 * @author Roeland Jago Douma <[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\DAV\Db;
26
27
use OCP\AppFramework\Db\DoesNotExistException;
28
use OCP\AppFramework\Db\Mapper;
29
use OCP\IDBConnection;
30
31
class DirectMapper extends Mapper {
32
33
	public function __construct(IDBConnection $db) {
34
		parent::__construct($db, 'directlink', Direct::class);
35
	}
36
37
	/**
38
	 * @param string $token
39
	 * @return Direct
40
	 * @throws DoesNotExistException
41
	 */
42 View Code Duplication
	public function getByToken(string $token): Direct {
43
		$qb = $this->db->getQueryBuilder();
44
45
		$qb->select('*')
46
			->from('directlink')
47
			->where(
48
				$qb->expr()->eq('token', $qb->createNamedParameter($token))
49
			);
50
51
		$cursor = $qb->execute();
52
		$data = $cursor->fetch();
53
		$cursor->closeCursor();
54
55
		if ($data === false) {
56
			throw new DoesNotExistException('Direct link with token does not exist');
57
		}
58
59
		return Direct::fromRow($data);
60
	}
61
62 View Code Duplication
	public function deleteExpired(int $expiration) {
63
		$qb = $this->db->getQueryBuilder();
64
65
		$qb->delete('directlink')
66
			->where(
67
				$qb->expr()->lt('expiration', $qb->createNamedParameter($expiration))
68
			);
69
70
		$qb->execute();
71
	}
72
}
73