Users.php
1.82 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
<?php
namespace ACP\Editing\Service;
use AC\Request;
use ACP;
use ACP\Editing;
use ACP\Editing\PaginatedOptions;
use ACP\Editing\Service;
use ACP\Editing\Storage;
class Users implements Service, PaginatedOptions {
/**
* @var Editing\View\AjaxSelect
*/
private $view;
/**
* @var Storage
*/
protected $storage;
/**
* @var Editing\PaginatedOptionsFactory
*/
private $options_factory;
public function __construct( Editing\View\AjaxSelect $view, Storage $storage, Editing\PaginatedOptionsFactory $options_factory ) {
$this->view = $view;
$this->storage = $storage;
$this->options_factory = $options_factory;
}
public function get_view( $context ) {
$view = $this->view;
if ( $context === self::CONTEXT_BULK ) {
$view->has_methods( true );
}
return $view;
}
public function get_value( $id ) {
$ids = $this->storage->get( $id );
if ( empty( $ids ) || ! is_array( $ids ) ) {
return false;
}
if ( is_scalar( $ids ) ) {
$ids = [ $ids ];
}
$values = [];
foreach ( $ids as $_id ) {
$values[ $_id ] = ac_helper()->user->get_display_name( $_id );
}
return $values;
}
public function update( Request $request ) {
$params = $request->get( 'value' );
$id = (int) $request->get( 'id' );
if ( ! isset( $params['method'] ) ) {
$params = [
'method' => 'replace',
'value' => $params,
];
}
switch ( $params['method'] ) {
case 'add':
$ids = array_merge( array_keys( $this->get_value( $id ) ), $params['value'] );
break;
case 'remove':
$ids = array_diff( array_keys( $this->get_value( $id ) ), $params['value'] );
break;
default:
$ids = $params['value'];
}
return $this->storage->update( $id, $ids );
}
public function get_paginated_options( $s, $paged, $id = null ) {
return $this->options_factory->create( $s, $paged, $id );
}
}