Save.php
2.22 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
<?php
namespace AC\Controller\ListScreen;
use AC\Column\LabelEncoder;
use AC\ListScreenRepository\Storage;
use AC\ListScreenTypes;
use AC\Request;
use AC\Type\ListScreenId;
class Save {
/**
* @var Storage
*/
private $storage;
/**
* @var Sanitize\FormData
*/
private $sanitizer;
public function __construct( Storage $storage ) {
$this->storage = $storage;
$this->sanitizer = new Sanitize\FormData();
}
public function request( Request $request ) {
$data = json_decode( $request->get( 'data' ), true );
if ( ! isset( $data['columns'] ) ) {
wp_send_json_error( [ 'message' => __( 'You need at least one column', 'codepress-admin-columns' ) ] );
}
$list_screen = ListScreenTypes::instance()->get_list_screen_by_key( $data['list_screen'] );
if ( ! $list_screen ) {
wp_send_json_error( [ 'message' => 'List screen not found' ] );
}
$list_id = isset( $data['list_screen_id'] ) && ListScreenId::is_valid_id( $data['list_screen_id'] )
? new ListScreenId( $data['list_screen_id'] )
: ListScreenId::generate();
$data = $this->sanitizer->sanitize( $data );
$list_screen->set_title( ! empty( $data['title'] ) ? $data['title'] : $list_screen->get_label() )
->set_settings( isset( $data['columns'] ) ? $this->maybe_encode_urls( $data['columns'] ) : [] )
->set_layout_id( $list_id->get_id() )
->set_preferences( ! empty( $data['settings'] ) ? $data['settings'] : [] );
$this->storage->save( $list_screen );
do_action( 'ac/columns_stored', $list_screen );
wp_send_json_success( [
'message' => sprintf(
'%s %s',
sprintf(
__( 'Settings for %s updated successfully.', 'codepress-admin-columns' ),
sprintf( '<strong>%s</strong>', esc_html( $list_screen->get_title() ) )
),
ac_helper()->html->link( $list_screen->get_screen_link(), sprintf( __( 'View %s screen', 'codepress-admin-columns' ), $list_screen->get_label() ) )
),
'list_id' => $list_id->get_id(),
]
);
}
private function maybe_encode_urls( array $columndata ) {
foreach ( $columndata as $name => $data ) {
if ( isset( $data['label'] ) ) {
$columndata[ $name ]['label'] = ( new LabelEncoder() )->encode( $data['label'] );
}
}
return $columndata;
}
}