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
|
<?php
namespace Kanboard\Model;
/**
* Group Member Model
*
* @package model
* @author Frederic Guillot
*/
class GroupMember extends Base
{
/**
* SQL table name
*
* @var string
*/
const TABLE = 'group_has_users';
/**
* Get query to fetch all users
*
* @access public
* @param integer $group_id
* @return \PicoDb\Table
*/
public function getQuery($group_id)
{
return $this->db->table(self::TABLE)
->join(User::TABLE, 'id', 'user_id')
->eq('group_id', $group_id);
}
/**
* Get all users
*
* @access public
* @param integer $group_id
* @return array
*/
public function getMembers($group_id)
{
return $this->getQuery($group_id)->findAll();
}
/**
* Get all not members
*
* @access public
* @param integer $group_id
* @return array
*/
public function getNotMembers($group_id)
{
$subquery = $this->db->table(self::TABLE)
->columns('user_id')
->eq('group_id', $group_id);
return $this->db->table(User::TABLE)
->notInSubquery('id', $subquery)
->findAll();
}
/**
* Add user to a group
*
* @access public
* @param integer $group_id
* @param integer $user_id
* @return boolean
*/
public function addUser($group_id, $user_id)
{
return $this->db->table(self::TABLE)->insert(array(
'group_id' => $group_id,
'user_id' => $user_id,
));
}
/**
* Remove user from a group
*
* @access public
* @param integer $group_id
* @param integer $user_id
* @return boolean
*/
public function removeUser($group_id, $user_id)
{
return $this->db->table(self::TABLE)
->eq('group_id', $group_id)
->eq('user_id', $user_id)
->remove();
}
/**
* Check if a user is member
*
* @access public
* @param integer $group_id
* @param integer $user_id
* @return boolean
*/
public function isMember($group_id, $user_id)
{
return $this->db->table(self::TABLE)
->eq('group_id', $group_id)
->eq('user_id', $user_id)
->exists();
}
}
|