164 lines
5.0 KiB
PHP
164 lines
5.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Class Brizy_Admin_Cloud_BlockUploader
|
|
*/
|
|
class Brizy_Admin_Cloud_PopupBridge extends Brizy_Admin_Cloud_AbstractBridge
|
|
{
|
|
|
|
|
|
/**
|
|
* @param Brizy_Editor_Block $popup
|
|
*
|
|
* @return mixed|void
|
|
* @throws Exception
|
|
*/
|
|
public function export($popup)
|
|
{
|
|
|
|
// check if the assets are uploaded in cloud
|
|
// upload them if needed
|
|
// create the block in cloud
|
|
|
|
$media = json_decode($popup->getMedia());
|
|
|
|
if (!$media || !isset($media->fonts)) {
|
|
throw new Exception('No fonts property in media object');
|
|
}
|
|
|
|
if (!$media || !isset($media->images)) {
|
|
throw new Exception('No images property in media object');
|
|
}
|
|
|
|
$bridge = new Brizy_Admin_Cloud_MediaBridge($this->client);
|
|
foreach ($media->images as $uid) {
|
|
try {
|
|
$bridge->export($uid);
|
|
} catch (Exception $e) {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
$bridge = new Brizy_Admin_Cloud_MediaUploadsBridge($this->client);
|
|
foreach ($media->uploads as $uid) {
|
|
try {
|
|
$bridge->export($uid);
|
|
} catch (Exception $e) {
|
|
Brizy_Logger::instance()->critical('Failed to export popup uploads: ' . $e->getMessage(), [$e]);
|
|
}
|
|
}
|
|
|
|
$bridge = new Brizy_Admin_Cloud_FontBridge($this->client);
|
|
foreach ($media->fonts as $fontUid) {
|
|
try {
|
|
$bridge->export($fontUid);
|
|
} catch (Exception $e) {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
$popupObject = $this->client->createOrUpdatePopup($popup);
|
|
|
|
if ($popupObject) {
|
|
$popup->setSynchronized($this->getCurrentCloudAccountId(), $popupObject->uid);
|
|
}
|
|
$popup->saveStorage();
|
|
}
|
|
|
|
/**
|
|
* @param $popupId
|
|
*
|
|
* @return mixed|void
|
|
* @throws Exception
|
|
*/
|
|
public function import($popupId)
|
|
{
|
|
global $wpdb;
|
|
|
|
$popups = $this->client->getPopups(['uid' => $popupId]);
|
|
|
|
if (!isset($popups[0])) {
|
|
return;
|
|
}
|
|
|
|
$popup = $popups[0];
|
|
try {
|
|
$wpdb->query('START TRANSACTION ');
|
|
$name = md5(time());
|
|
$post = wp_insert_post(array(
|
|
'post_title' => $name,
|
|
'post_name' => $name,
|
|
'post_status' => 'publish',
|
|
'post_type' => Brizy_Admin_Popups_Main::CP_POPUP
|
|
));
|
|
|
|
if ($post) {
|
|
$brizyPost = Brizy_Editor_Popup::get($post, $popup['uid']);
|
|
$brizyPost->setMeta($popup['meta']);
|
|
$brizyPost->setCloudId($popup['id']);
|
|
$brizyPost->set_editor_data($popup['data']);
|
|
$brizyPost->set_uses_editor(true);
|
|
$brizyPost->set_needs_compile(true);
|
|
$brizyPost->setDataVersion(1);
|
|
$brizyPost->save();
|
|
|
|
|
|
// import fonts
|
|
if (isset($layout['media'])) {
|
|
$blockMedia = json_decode($popup['media']);
|
|
|
|
$fontBridge = new Brizy_Admin_Cloud_FontBridge($this->client);
|
|
if (isset($blockMedia->fonts)) {
|
|
foreach ($blockMedia->fonts as $cloudFontUid) {
|
|
try {
|
|
$fontBridge->import($cloudFontUid);
|
|
} catch (Exception $e) {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
$mediaBridge = new Brizy_Admin_Cloud_MediaBridge($this->client);
|
|
$mediaBridge->setBlockId($post);
|
|
if (isset($blockMedia->images)) {
|
|
foreach ($blockMedia->images as $mediaUid) {
|
|
try {
|
|
$mediaBridge->import($mediaUid);
|
|
} catch (Exception $e) {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
$mediaUploadBridge = new Brizy_Admin_Cloud_MediaUploadsBridge($this->client);
|
|
$mediaUploadBridge->setBlockId($post);
|
|
if (isset($blockMedia->uploads)) {
|
|
foreach ($blockMedia->uploads as $mediaUid) {
|
|
try {
|
|
$mediaUploadBridge->import($mediaUid);
|
|
} catch (Exception $e) {
|
|
Brizy_Logger::instance()->critical('Failed to import layout uploads: ' . $e->getMessage(), [$e]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
$wpdb->query('COMMIT');
|
|
} catch (Exception $e) {
|
|
$wpdb->query('ROLLBACK');
|
|
Brizy_Logger::instance()->critical('Importing layout ' . $popupId . ' failed', [$e]);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param Brizy_Editor_Block $layout
|
|
*
|
|
* @return mixed|void
|
|
* @throws Exception
|
|
*/
|
|
public function delete($layout)
|
|
{
|
|
$this->client->deletePopup($layout->getCloudId());
|
|
}
|
|
}
|