summaryrefslogtreecommitdiff
blob: c67ac3e487f6a131ff60188e5ad89bbdf9bdbe14 (plain)
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
<?php
/**
 * Custom Css update endpoint
 *
 * https://public-api.wordpress.com/rest/v1.1/sites/$site/customcss/
 */

new WPCOM_JSON_API_Update_CustomCss_Endpoint( array (
	'description'      => 'Set custom-css data for a site.',
	'group'            => '__do_not_document',
	'stat'             => 'customcss:1:update',
	'method'           => 'POST',
	'min_version'      => '1.1',
	'path'             => '/sites/%s/customcss',
	'path_labels'      => array(
		'$site' => '(string) Site ID or domain.',
	),
	'request_format'  => array(
		'css' => '(string) Optional. The raw CSS.',
		'preprocessor' => '(string) Optional. The name of the preprocessor if any.',
		'add_to_existing' => '(bool) Optional. False to skip the existing styles.',
	),
	'response_format'  => array(
		'css' => '(string) The raw CSS.',
		'preprocessor' => '(string) The name of the preprocessor if any.',
		'add_to_existing' => '(bool) False to skip the existing styles.',
	),
	'example_request'  => 'https://public-api.wordpress.com/rest/v1.1/sites/12345678/customcss',
	'example_request_data' => array(
		'headers' => array( 'authorization' => 'Bearer YOUR_API_TOKEN' ),
		'body' => array(
			'css' => '.stie-title { color: #fff; }',
			'preprocessor' => 'sass'
		),
	),
	'example_response' => '
	{
		"css": ".site-title { color: #fff; }",
		"preprocessor": "sass",
		"add_to_existing": "true"
	}'
) );

class WPCOM_JSON_API_Update_CustomCss_Endpoint extends WPCOM_JSON_API_Endpoint {
	/**
	 * API callback.
	 */
	function callback( $path = '', $blog_id = 0 ) {
		// Switch to the given blog.
		$blog_id = $this->api->switch_to_blog_and_validate_user( $this->api->get_blog_id( $blog_id ) );
		if ( is_wp_error( $blog_id ) ) {
			return $blog_id;
		}

		if ( ! current_user_can( 'edit_theme_options' ) ) {
			return new WP_Error( 'unauthorized', 'User is not authorized to access custom css', 403 );
		}

		$args = $this->input();
		if ( empty( $args ) || ! is_array( $args ) ) {
			return new WP_Error( 'no_data', 'No data was provided.', 400 );
		}
		$save_args = array(
			'css' => $args['css'],
			'preprocessor' => $args['preprocessor'],
			'add_to_existing' => $args['add_to_existing'],
		);
		Jetpack_Custom_CSS::save( $save_args );

		$current = array(
			'css' => Jetpack_Custom_CSS::get_css(),
			'preprocessor' => Jetpack_Custom_CSS::get_preprocessor_key(),
			'add_to_existing' => ! Jetpack_Custom_CSS::skip_stylesheet(),
		);

		$defaults = array(
			'css' => '',
			'preprocessor' => '',
			'add_to_existing' => true,
		);
		return wp_parse_args( $current, $defaults );
	}
}