first commit
This commit is contained in:
349
wp-content/plugins/brizy/admin/fonts/manager.php
Normal file
349
wp-content/plugins/brizy/admin/fonts/manager.php
Normal file
@@ -0,0 +1,349 @@
|
||||
<?php
|
||||
|
||||
|
||||
class Brizy_Admin_Fonts_Manager {
|
||||
|
||||
|
||||
/**
|
||||
* Get all fonts as arrays
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function getAllFonts() {
|
||||
global $wpdb;
|
||||
|
||||
$fonts = get_posts( array(
|
||||
'post_type' => Brizy_Admin_Fonts_Main::CP_FONT,
|
||||
'post_status' => 'publish',
|
||||
'numberposts' => - 1,
|
||||
'orderby' => 'ID',
|
||||
'order' => 'ASC',
|
||||
) );
|
||||
|
||||
$result = array();
|
||||
|
||||
foreach ( $fonts as $font ) {
|
||||
|
||||
$weights = $wpdb->get_results( $wpdb->prepare(
|
||||
"SELECT m.meta_value FROM {$wpdb->posts} p
|
||||
JOIN {$wpdb->postmeta} m ON m.post_id=p.ID && m.meta_key='brizy-font-weight'
|
||||
WHERE p.post_parent=%d
|
||||
",
|
||||
array( $font->ID ) ), ARRAY_A
|
||||
);
|
||||
|
||||
$result[] = array(
|
||||
'id' => get_post_meta( $font->ID, 'brizy_post_uid', true ),
|
||||
'family' => $font->post_title,
|
||||
'type' => get_post_meta( $font->ID, 'brizy-font-type', true ),
|
||||
'weights' => array_values( array_unique( array_map( function ( $v ) {
|
||||
return $v['meta_value'];
|
||||
}, $weights ) ) )
|
||||
);
|
||||
}
|
||||
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $uid
|
||||
*
|
||||
* @return array|null
|
||||
*/
|
||||
public function getFont( $uid ) {
|
||||
|
||||
global $wpdb;
|
||||
|
||||
$fonts = get_posts( array(
|
||||
'post_type' => Brizy_Admin_Fonts_Main::CP_FONT,
|
||||
'post_status' => 'publish',
|
||||
'meta_key' => 'brizy_post_uid',
|
||||
'meta_value' => $uid,
|
||||
'numberposts' => - 1,
|
||||
'orderby' => 'ID',
|
||||
'order' => 'DESC',
|
||||
) );
|
||||
|
||||
if ( isset( $fonts[0] ) ) {
|
||||
$font = $fonts[0];
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
|
||||
return $this->getFontReturnData( $font );
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param $uid
|
||||
*
|
||||
* @return array|null
|
||||
*/
|
||||
public function getFontForExport( $uid ) {
|
||||
|
||||
global $wpdb;
|
||||
|
||||
$fonts = get_posts( array(
|
||||
'post_type' => Brizy_Admin_Fonts_Main::CP_FONT,
|
||||
'post_status' => 'publish',
|
||||
'meta_key' => 'brizy_post_uid',
|
||||
'meta_value' => $uid,
|
||||
'numberposts' => - 1,
|
||||
'orderby' => 'ID',
|
||||
'order' => 'DESC',
|
||||
) );
|
||||
|
||||
if ( isset( $fonts[0] ) ) {
|
||||
$font = $fonts[0];
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
|
||||
$fontData = $this->getFontReturnData( $font );
|
||||
|
||||
$files = $wpdb->get_results(
|
||||
$wpdb->prepare( "SELECT p.ID FROM {$wpdb->posts} p WHERE p.post_parent=%d", array( $font->ID ) ),
|
||||
ARRAY_A );
|
||||
|
||||
$weightFiles = array();
|
||||
foreach ( $files as $fileId ) {
|
||||
$weight = get_post_meta( $fileId['ID'], 'brizy-font-weight', true );
|
||||
$type = get_post_meta( $fileId['ID'], 'brizy-font-file-type', true );
|
||||
|
||||
$weightFiles[ $weight ][ $type ] = get_attached_file( $fileId['ID'] );
|
||||
}
|
||||
$fontData['weights'] = $weightFiles;
|
||||
|
||||
return $fontData;
|
||||
|
||||
}
|
||||
|
||||
public function getFontByFamily( $uid, $family, $type ) {
|
||||
|
||||
$fonts = get_posts( array(
|
||||
'title' => $family,
|
||||
'post_type' => Brizy_Admin_Fonts_Main::CP_FONT,
|
||||
'post_status' => 'publish',
|
||||
'meta_key' => 'brizy-font-type',
|
||||
'meta_value' => $type,
|
||||
'numberposts' => - 1,
|
||||
'orderby' => 'ID',
|
||||
'order' => 'DESC',
|
||||
) );
|
||||
|
||||
if ( isset( $fonts[0] ) ) {
|
||||
$font = $fonts[0];
|
||||
if ( $uid == get_post_meta( $font->ID, 'brizy_post_uid', true ) ) {
|
||||
return $this->getFontReturnData( $font );
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $uid
|
||||
* @param $family
|
||||
* @param $fontWeights
|
||||
* @param $fontType
|
||||
*
|
||||
* @return int
|
||||
* @throws Exception
|
||||
*/
|
||||
public function createFont( $uid, $family, $fontWeights, $fontType ) {
|
||||
global $wpdb;
|
||||
|
||||
if ( $uid == '' ) {
|
||||
throw new Exception( 'Invalid font uid' );
|
||||
}
|
||||
if ( $family == '' ) {
|
||||
throw new Exception( 'Invalid font family' );
|
||||
}
|
||||
|
||||
if ( $fontType == '' ) {
|
||||
throw new Exception( 'Invalid font type' );
|
||||
}
|
||||
|
||||
if ( ! is_array( $fontWeights ) || empty( $fontWeights ) ) {
|
||||
throw new Exception( 'Invalid font weights' );
|
||||
}
|
||||
|
||||
$font = $this->getFont( $uid );
|
||||
|
||||
if ( $font ) {
|
||||
throw new Brizy_Admin_Fonts_Exception_DuplicateFont( 'This font already exists' );
|
||||
}
|
||||
|
||||
// Need to require these files
|
||||
if ( ! function_exists( 'media_handle_upload' ) ) {
|
||||
require_once( ABSPATH . "wp-admin" . '/includes/image.php' );
|
||||
require_once( ABSPATH . "wp-admin" . '/includes/file.php' );
|
||||
require_once( ABSPATH . "wp-admin" . '/includes/media.php' );
|
||||
}
|
||||
|
||||
try {
|
||||
$wpdb->query( 'START TRANSACTION' );
|
||||
// create font post
|
||||
$fontId = wp_insert_post( [
|
||||
'post_title' => $family,
|
||||
'post_name' => $family,
|
||||
'post_type' => Brizy_Admin_Fonts_Main::CP_FONT,
|
||||
'post_status' => 'publish',
|
||||
|
||||
] );
|
||||
|
||||
if ( ! $fontId || is_wp_error( $fontId ) ) {
|
||||
throw new Exception( 'Unable to create font' );
|
||||
}
|
||||
|
||||
update_post_meta( $fontId, 'brizy_post_uid', $uid );
|
||||
update_post_meta( $fontId, 'brizy-font-type', $fontType );
|
||||
|
||||
// create font attachments
|
||||
foreach ( $fontWeights as $weight => $weightType ) {
|
||||
|
||||
if ( count( $weightType ) == 0 ) {
|
||||
throw new Exception( 'No font files provided' );
|
||||
}
|
||||
|
||||
foreach ( $weightType as $type => $file ) {
|
||||
|
||||
$id = media_handle_sideload( $file, $fontId, "Attached font file" );
|
||||
|
||||
if ( ! $id || is_wp_error( $id ) ) {
|
||||
Brizy_Logger::instance()->critical( 'Unable to handle font sideload', [ $id ] );
|
||||
throw new Exception( 'Unable to handle font side load' );
|
||||
}
|
||||
|
||||
update_post_meta( $id, 'brizy-font-weight', $weight );
|
||||
update_post_meta( $id, 'brizy-font-file-type', $type );
|
||||
}
|
||||
}
|
||||
|
||||
$wpdb->query( 'COMMIT' );
|
||||
|
||||
return (int) $fontId;
|
||||
|
||||
} catch ( Exception $e ) {
|
||||
$wpdb->query( 'ROLLBACK' );
|
||||
Brizy_Logger::instance()->critical( 'Create font ERROR', [ $e->getMessage() ] );
|
||||
throw new Exception( 'Unable to create font' );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $fontUid
|
||||
*
|
||||
* @return bool
|
||||
* @throws Exception
|
||||
*/
|
||||
public function deleteFont( $fontUid ) {
|
||||
global $wpdb;
|
||||
|
||||
if ( ! $fontUid ) {
|
||||
throw new Exception( 'Invalid font uid' );
|
||||
}
|
||||
|
||||
$font = get_posts( [
|
||||
'post_type' => Brizy_Admin_Fonts_Main::CP_FONT,
|
||||
'meta_query' => array(
|
||||
array(
|
||||
'key' => 'brizy_post_uid',
|
||||
'value' => $fontUid
|
||||
)
|
||||
),
|
||||
'posts_per_page' => - 1,
|
||||
'orderby' => 'ID',
|
||||
'order' => 'DESC',
|
||||
] );
|
||||
|
||||
if ( count( $font ) > 0 ) {
|
||||
$font = $font[0];
|
||||
} else {
|
||||
$font = null;
|
||||
}
|
||||
|
||||
if ( ! $font ) {
|
||||
throw new Exception( 'Font not found', 404 );
|
||||
}
|
||||
|
||||
|
||||
try {
|
||||
$wpdb->query( 'START TRANSACTION ' );
|
||||
// delete all attachments first
|
||||
|
||||
$attachments = get_attached_media( '', $font->ID );
|
||||
|
||||
foreach ( $attachments as $attachment ) {
|
||||
wp_delete_attachment( $attachment->ID, 'true' );
|
||||
}
|
||||
|
||||
// delete font
|
||||
wp_delete_post( $font->ID );
|
||||
|
||||
$wpdb->query( 'COMMIT' );
|
||||
|
||||
} catch ( Exception $e ) {
|
||||
$wpdb->query( 'ROLLBACK' );
|
||||
Brizy_Logger::instance()->debug( 'Delete font ERROR', [ $e ] );
|
||||
throw new Exception( 'Failed to delete font', 400 );
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param wpdb $wpdb
|
||||
* @param $font
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
private function getFontReturnData( $font ) {
|
||||
global $wpdb;
|
||||
|
||||
$weights = $wpdb->get_results( $wpdb->prepare(
|
||||
"SELECT DISTINCT m.meta_value FROM {$wpdb->posts} p
|
||||
JOIN {$wpdb->postmeta} m ON m.post_id=p.ID && p.post_parent=%d && m.meta_key='brizy-font-weight'
|
||||
",
|
||||
array( $font->ID ) ), ARRAY_A
|
||||
);
|
||||
|
||||
|
||||
return array(
|
||||
'id' => get_post_meta( $font->ID, 'brizy_post_uid', true ),
|
||||
'family' => $font->post_title,
|
||||
'type' => get_post_meta( $font->ID, 'brizy-font-type', true ),
|
||||
'weights' => array_map( function ( $v ) {
|
||||
return $v['meta_value'];
|
||||
}, $weights )
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param wpdb $wpdb
|
||||
* @param $font
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
private function getFontReturnDataForExport( $font ) {
|
||||
global $wpdb;
|
||||
|
||||
$weights = $wpdb->get_results( $wpdb->prepare(
|
||||
"SELECT DISTINCT m.meta_value FROM {$wpdb->posts} p
|
||||
JOIN {$wpdb->postmeta} m ON m.post_id=p.ID && p.post_parent=%d && m.meta_key='brizy-font-weight'
|
||||
",
|
||||
array( $font->ID ) ), ARRAY_A
|
||||
);
|
||||
|
||||
|
||||
return array(
|
||||
'id' => get_post_meta( $font->ID, 'brizy_post_uid', true ),
|
||||
'family' => $font->post_title,
|
||||
'type' => get_post_meta( $font->ID, 'brizy-font-type', true ),
|
||||
'weights' => array_map( function ( $v ) {
|
||||
return $v['meta_value'];
|
||||
}, $weights )
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user