require_block_css();
add_action('rest_api_init', array($this, 'save_block_css_callback'));
}
/**
* REST API Action
*
* @since v.1.0.0
* @return NULL
*/
public function save_block_css_callback(){
register_rest_route(
'ultp/v1',
'/save_block_css/',
array(
array(
'methods' => 'POST',
'callback' => array( $this, 'save_block_content_css'),
'permission_callback' => function () {
return current_user_can( 'edit_posts' );
},
'args' => array()
)
)
);
register_rest_route(
'ultp/v1',
'/get_posts/',
array(
array(
'methods' => 'POST',
'callback' => array($this, 'get_posts_call'),
'permission_callback' => function () {
return current_user_can('edit_posts');
},
'args' => array()
)
)
);
register_rest_route(
'ultp/v1',
'/appened_css/',
array(
array(
'methods' => 'POST',
'callback' => array($this, 'appened_css_call'),
'permission_callback' => function () {
return current_user_can('edit_posts');
},
'args' => array()
)
)
);
register_rest_route(
'ultp/v1',
'/action_option/',
array(
array(
'methods' => 'POST',
'callback' => array($this, 'global_settings_action'),
'permission_callback' => function () {
return current_user_can('edit_posts');
},
'args' => array()
)
)
);
}
/**
* Get and Set PostX Global Settings
*
* @since v.2.4.24
* @param OBJECT | Request Param of the REST API
* @return ARRAY | Array of the Custom Message
*/
public function global_settings_action($server) {
$post = $server->get_params();
if (isset($post['type'])) {
if ($post['type'] == 'set') {
update_option('postx_global', $post['data']);
return ['success' => true];
} else {
return ['success' => true, 'data' => get_option('postx_global', [])];
}
} else {
return ['success' => false];
}
}
/**
* Save Import CSS in the top of the File
*
* @since v.1.0.0
* @param OBJECT | Request Param of the REST API
* @return ARRAY/Exception | Array of the Custom Message
*/
public function appened_css_call($server) {
global $wp_filesystem;
if ( ! $wp_filesystem ) {
require_once( ABSPATH . 'wp-admin/includes/file.php' );
}
$post = $server->get_params();
$css = $post['inner_css'];
$post_id = (int) sanitize_text_field($post['post_id']);
if ($post_id) {
$upload_dir_url = wp_upload_dir();
$filename = "ultp-css-{$post_id}.css";
$dir = trailingslashit($upload_dir_url['basedir']).'ultimate-post/';
update_post_meta($post_id, '_wopb_css', $css);
WP_Filesystem( false, $upload_dir_url['basedir'], true );
if( ! $wp_filesystem->is_dir( $dir ) ) {
$wp_filesystem->mkdir( $dir );
}
if ( ! $wp_filesystem->put_contents( $dir . $filename, $css ) ) {
throw new Exception(__('CSS can not be saved due to permission!!!', 'ultimate-post' ));
}
wp_send_json_success(array('success' => true, 'message' => __('Data retrive done', 'ultimate-post')));
} else {
return array('success' => false, 'message' => __('Data not found!!', 'ultimate-post'));
}
}
/**
* Save Import CSS in the top of the File
*
* @since v.1.0.0
* @param OBJECT | Request Param of the REST API
* @return ARRAY/Exception | Array of the Custom Message
*/
public function get_posts_call($server) {
$post = $server->get_params();
if (isset($post['postId'])) {
return array('success' => true, 'data'=> get_post($post['postId'])->post_content, 'message' => __('Data retrive done', 'ultimate-post'));
} else {
return array('success' => false, 'message' => __('Data not found!!', 'ultimate-post'));
}
}
/**
* Save Import CSS in the top of the File
*
* @since v.1.0.0
* @param OBJECT | Request Param of the REST API
* @return ARRAY/Exception | Array of the Custom Message
*/
public function save_block_content_css($request){
try{
global $wp_filesystem;
if ( ! $wp_filesystem ) {
require_once( ABSPATH . 'wp-admin/includes/file.php' );
}
$params = $request->get_params();
$post_id = sanitize_text_field($params['post_id']);
if ($post_id == 'ultp-widget' && $params['has_block']) {
update_option($post_id, $params['block_css']);
return ['success' => true, 'message' => __('Widget CSS Saved', 'ultimate-post')];
}
$post_id = (int) $post_id;
$filename = "ultp-css-{$post_id}.css";
$upload_dir_url = wp_upload_dir();
$dir = trailingslashit($upload_dir_url['basedir']) . 'ultimate-post/';
if ($params['has_block']) {
update_post_meta($post_id, '_ultp_active', 'yes');
$ultp_block_css = $this->set_top_css($params['block_css']);
// Preview Check
if ($params['preview']) {
set_transient('_ultp_preview_'.$post_id, $ultp_block_css , 60*60);
return ['success' => true];
}
WP_Filesystem( false, $upload_dir_url['basedir'], true );
if( ! $wp_filesystem->is_dir( $dir ) ) {
$wp_filesystem->mkdir( $dir );
}
if ( ! $wp_filesystem->put_contents( $dir . $filename, $ultp_block_css ) ) {
throw new Exception(__('CSS can not be saved due to permission!!!', 'ultimate-post'));
}
update_post_meta($post_id, '_ultp_css', $ultp_block_css);
return ['success'=>true, 'message'=>__('PostX css file has been updated.', 'ultimate-post')];
} else {
delete_post_meta($post_id, '_ultp_active');
if (file_exists($dir.$filename)) {
unlink($dir.$filename);
}
delete_post_meta($post_id, '_ultp_css');
return ['success' => true, 'message' => __('Data Delete Done', 'ultimate-post')];
}
}catch(Exception $e){
return [ 'success'=> false, 'message'=> $e->getMessage() ];
}
}
/**
* Save Import CSS in the top of the File
*
* @since v.1.0.0
* @param STRING | CSS (STRING)
* @return STRING | Generated CSS
*/
public function set_top_css($get_css = ''){
$css_url = "@import url('https://fonts.googleapis.com/css?family=";
$font_exists = substr_count($get_css, $css_url);
if ($font_exists){
$pattern = sprintf('/%s(.+?)%s/ims', preg_quote($css_url, '/'), preg_quote("');", '/'));
if (preg_match_all($pattern, $get_css, $matches)) {
$fonts = $matches[0];
$get_css = str_replace($fonts, '', $get_css);
if( preg_match_all( '/font-weight[ ]?:[ ]?[\d]{3}[ ]?;/' , $get_css, $matche_weight ) ){
$weight = array_map( function($val){
$process = trim( str_replace( array( 'font-weight',':',';' ) , '', $val ) );
if( is_numeric( $process ) ){
return $process;
}
}, $matche_weight[0] );
foreach ( $fonts as $key => $val ) {
$fonts[$key] = str_replace( "');",'', $val ).':'.implode( ',',$weight )."');";
}
}
$fonts = array_unique($fonts);
$get_css = implode('', $fonts).$get_css;
}
}
return $get_css;
}
/**
* Enqueue CSS in HEAD or as a File
*
* @since v.1.0.0
* @return NULL
*/
public function require_block_css(){
$save_as = ultimate_post()->get_setting('css_save_as');
$save_as = $save_as ? $save_as : '';
if (isset($_GET['preview_id']) && isset($_GET['preview_nonce'])) {
add_action('wp_head', array( $this, 'add_block_inline_css' ), 100);
} else if ($save_as === 'filesystem') {
add_action('wp_enqueue_scripts', array($this, 'add_block_css_file'));
} else {
add_action('wp_head', array( $this, 'add_block_inline_css' ), 100);
}
add_action('wp_enqueue_scripts', array($this, 'postx_global_css'));
add_action('admin_enqueue_scripts', array($this, 'postx_global_css'));
}
/**
* Set Global Color Codes
*
* @since v.1.0.0
* @return NULL
*/
public function postx_global_css() {
// Preset CSS
$global = get_option('postx_global', []);
$custom_css = ':root {
--preset-color1: '.(isset($global['presetColor1'])?$global['presetColor1']:'#037fff').';
--preset-color2: '.(isset($global['presetColor2'])?$global['presetColor2']:'#026fe0').';
--preset-color3: '.(isset($global['presetColor3'])?$global['presetColor3']:'#071323').';
--preset-color4: '.(isset($global['presetColor4'])?$global['presetColor4']:'#132133').';
--preset-color5: '.(isset($global['presetColor5'])?$global['presetColor5']:'#34495e').';
--preset-color6: '.(isset($global['presetColor6'])?$global['presetColor6']:'#787676').';
--preset-color7: '.(isset($global['presetColor7'])?$global['presetColor7']:'#f0f2f3').';
--preset-color8: '.(isset($global['presetColor8'])?$global['presetColor8']:'#f8f9fa').';
--preset-color9: '.(isset($global['presetColor9'])?$global['presetColor9']:'#ffffff').';
}';
wp_register_style( 'wpxpo-global-style', false );
wp_enqueue_style( 'wpxpo-global-style' );
wp_add_inline_style( 'wpxpo-global-style', $custom_css );
}
/**
* Set CSS as File
*
* @since v.1.0.0
* @return NULL
*/
public function add_block_css_file() {
ultimate_post()->set_css_style( ultimate_post()->get_ID() );
}
/**
* Set Inline CSS in Head
*
* @since v.1.0.0
* @return NULL
*/
public function add_block_inline_css(){
$post_id = ultimate_post()->get_ID();
if( $post_id ){
$upload_dir_url = wp_get_upload_dir();
$upload_css_dir_url = trailingslashit( $upload_dir_url['basedir'] );
$css_dir_path = $upload_css_dir_url."ultimate-post/ultp-css-{$post_id}.css";
// Reusable CSS
$reusable_css = '';
$reusable_id = ultimate_post()->reusable_id($post_id);
foreach ( $reusable_id as $id ) {
$reusable_dir_path = $upload_css_dir_url."ultimate-post/ultp-css-{$id}.css";
if (file_exists( $reusable_dir_path )) {
$reusable_css .= file_get_contents($reusable_dir_path);
} else {
$reusable_css .= get_post_meta($id, '_ultp_css', true);
}
}
if (isset($_GET['preview_id']) && isset($_GET['preview_nonce'])) {
$css = get_transient('_ultp_preview_'.$post_id, true);
if (!$css) {
$css = get_post_meta($post_id, '_ultp_css', true);
}
if ($css) {
if ($reusable_css) {
$css = $this->set_top_css($css.$reusable_css);
}
echo '';
}
} else if (file_exists( $css_dir_path )) {
$css = file_get_contents($css_dir_path);
if ($reusable_css) {
$css = $this->set_top_css($css.$reusable_css);
}
if ($css) {
echo '';
}
} else {
$css = get_post_meta($post_id, '_ultp_css', true);
if ($reusable_css) {
$css = $this->set_top_css($css.$reusable_css);
}
if ($css) {
echo '';
}
}
}
}
}