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
|
<?php
/**
*
*/
class kolab_api_service_users extends kolab_api_service
{
public $list_attribs = array(
'uid',
'cn',
'displayname',
'sn',
'givenname',
'mail',
'objectclass',
'uidnumber',
'gidnumber',
'mailhost',
);
public function capabilities($domain)
{
return array(
'list' => 'r',
);
}
public function users_list($get, $post)
{
$auth = Auth::get_instance();
// returned attributes
if (!empty($post['attributes']) && is_array($post['attributes'])) {
// get only supported attributes
$attributes = array_intersect($this->list_attribs, $post['attributes']);
// need to fix array keys
$attributes = array_values($attributes);
}
if (empty($attributes)) {
$attributes = (array)$this->list_attribs[0];
}
$search = array();
$params = array();
// searching
if (!empty($post['search']) && is_array($post['search'])) {
$params = $post['search'];
foreach ($params as $idx => $param) {
// get only supported attributes
if (!in_array($idx, $this->list_attribs)) {
unset($params[$idx]);
continue;
}
// search string
if (empty($param['value'])) {
unset($params[$idx]);
continue;
}
}
$search['params'] = $params;
if (!empty($post['search_operator'])) {
$search['operator'] = $post['search_operator'];
}
}
if (!empty($post['sort_by'])) {
// check if sort attribute is supported
if (in_array($post['sort_by'], $this->list_attribs)) {
$params['sort_by'] = $post['sort_by'];
}
}
if (!empty($post['sort_order'])) {
$params['sort_order'] = $post['sort_order'] == 'DESC' ? 'DESC' : 'ASC';
}
$users = $auth->list_users(null, $attributes, $search, $params);
$count = count($users);
// pagination
if (!empty($post['page_size']) && $count) {
$size = (int) $post['page_size'];
$page = !empty($post['page']) ? $post['page'] : 1;
$page = max(1, (int) $page);
$offset = ($page - 1) * $size;
$users = array_slice($users, $offset, $size, true);
}
return array(
'list' => $users,
'count' => $count,
);
}
}
|