-
Notifications
You must be signed in to change notification settings - Fork 316
Expand file tree
/
Copy pathInternalAddressMapper.php
More file actions
114 lines (94 loc) · 2.93 KB
/
InternalAddressMapper.php
File metadata and controls
114 lines (94 loc) · 2.93 KB
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
<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Mail\Db;
use OCP\AppFramework\Db\DoesNotExistException;
use OCP\AppFramework\Db\QBMapper;
use OCP\DB\Exception;
use OCP\IDBConnection;
/**
* @template-extends QBMapper<InternalAddress>
*/
class InternalAddressMapper extends QBMapper {
public function __construct(IDBConnection $db) {
parent::__construct($db, 'mail_internal_address');
}
public function exists(string $uid, string $address): bool {
$emailObject = new \Horde_Mail_Rfc822_Address($address);
$host = $emailObject->host;
$qb = $this->db->getQueryBuilder();
$select = $qb->select('*')
->from($this->getTableName())
->where(
$qb->expr()->orX(
$qb->expr()->andX(
$qb->expr()->eq('address', $qb->createNamedParameter($address)),
$qb->expr()->eq('type', $qb->createNamedParameter('individual'))
),
$qb->expr()->andX(
$qb->expr()->eq('address', $qb->createNamedParameter($host)),
$qb->expr()->eq('type', $qb->createNamedParameter('domain'))
)
),
$qb->expr()->eq('user_id', $qb->createNamedParameter($uid))
);
$rows = $this->findEntities($select);
return $rows !== [];
}
public function create(string $uid, string $address, string $type): int {
$address = InternalAddress::fromParams([
'userId' => $uid,
'address' => $address,
'type' => $type,
]);
$result = $this->insert($address);
return $result->getId();
}
public function remove(string $uid, string $address, string $type): void {
$qb = $this->db->getQueryBuilder();
$delete = $qb->delete($this->getTableName())
->where(
$qb->expr()->eq('user_id', $qb->createNamedParameter($uid)),
$qb->expr()->eq('address', $qb->createNamedParameter($address)),
$qb->expr()->eq('type', $qb->createNamedParameter($type))
);
$delete->executeStatement();
}
/**
* @param string $uid
* @return InternalAddress[]
*/
public function findAll(string $uid): array {
$qb = $this->db->getQueryBuilder();
$select = $qb->select('*')
->from($this->getTableName())
->where($qb->expr()->eq('user_id', $qb->createNamedParameter($uid)));
return $this->findEntities($select);
}
public function find(string $uid, string $address): ?InternalAddress {
$qb = $this->db->getQueryBuilder();
$select = $qb->select('*')
->from($this->getTableName())
->where(
$qb->expr()->eq('user_id', $qb->createNamedParameter($uid)),
$qb->expr()->eq('address', $qb->createNamedParameter($address))
);
try {
return $this->findEntity($select);
} catch (DoesNotExistException $e) {
return null;
}
}
/**
* @throws Exception
*/
public function removeAll(string $uid) : void {
$qb = $this->db->getQueryBuilder();
$delete = $qb->delete($this->getTableName())
->where($qb->expr()->eq('user_id', $qb->createNamedParameter($uid)));
$delete->executeStatement();
}
}