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: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292: 293: 294: 295: 296: 297: 298: 299: 300: 301: 302: 303: 304: 305: 306: 307: 308: 309: 310: 311: 312: 313: 314: 315: 316: 317: 318: 319: 320: 321: 322: 323: 324: 325: 326: 327: 328: 329: 330: 331: 332: 333: 334: 335: 336: 337: 338: 339: 340: 341: 342: 343: 344: 345: 346: 347: 348: 349: 350: 351: 352: 353: 354: 355: 356: 357: 358: 359: 360: 361: 362: 363: 364: 365: 366: 367: 368: 369: 370: 371: 372: 373: 374: 375: 376: 377: 378: 379: 380: 381: 382: 383: 384: 385: 386: 387: 388: 389: 390: 391: 392: 393: 394: 395: 396: 397: 398: 399: 400: 401: 402: 403: 404: 405: 406: 407: 408: 409: 410: 411: 412: 413: 414: 415: 416: 417: 418: 419: 420: 421: 422: 423: 424: 425: 426: 427: 428: 429: 430: 431: 432: 433: 434: 435: 436: 437: 438: 439: 440: 441: 442: 443:
<?php
if ( !class_exists('Inbound_Mailer_Template_Manager') ) {
class Inbound_Mailer_Template_Manager {
public function __construct() {
self::add_hooks();
}
public static function add_hooks() {
add_action( 'admin_enqueue_scripts' , array( __CLASS__ , 'enqueue_scripts' ) );
add_action( 'admin_footer' , array( __CLASS__ , 'load_inline_js_css' ) );
add_action('admin_menu', array( __CLASS__ , 'add_pages') );
}
public static function add_pages() {
if ( !current_user_can('manage_options') ) {
return;
}
global $_registered_pages;
$hookname = get_plugin_page_hookname('inbound_email_manage_templates', 'edit.php?post_type=inbound-email');
if (!empty($hookname)) {
add_action( $hookname , array( __CLASS__ , 'display_management_page') );
}
$_registered_pages[$hookname] = true;
global $_registered_pages;
$hookname = get_plugin_page_hookname('inbound_email_templates_upload', 'edit.php?post_type=inbound-email');
if (!empty($hookname)) {
add_action( $hookname , array( __CLASS__ , 'display_upload_page') );
}
$_registered_pages[$hookname] = true;
global $_registered_pages;
$hookname = get_plugin_page_hookname('inbound_email_store', 'edit.php?post_type=inbound-email');
if (!empty($hookname)) {
add_action( $hookname , array( __CLASS__ , 'display_store_search') );
}
$_registered_pages[$hookname] = true;
}
public static function enqueue_scripts() {
$screen = get_current_screen();
if ( ( isset($screen) && $screen->base == 'inbound-email_page_inbound_email_templates_upload' ) ){
wp_enqueue_script('mailer-js-templates-upload', INBOUND_EMAIL_URLPATH . 'assets/js/admin/admin.templates-upload.js');
}
if ( ( isset($screen) && $screen->base == 'inbound-email_page_inbound_email_manage_templates' ) ){
wp_enqueue_style('mailer-css-templates', INBOUND_EMAIL_URLPATH . 'assets/css/admin-templates.css');
wp_enqueue_script('mailer-js-templates', INBOUND_EMAIL_URLPATH . 'assets/js/admin/admin.templates.js');
}
}
public static function load_inline_js_css() {
$screen = get_current_screen();
if ( $screen->base != 'inbound-email_page_inbound_email_manage_templates' ) {
return;
}
?>
<script type='text/javascript' >
jQuery( document ).ready( function() {
jQuery( '.search-box' ).hide();
});
</script>
<?php
}
public static function run_management_actions() {
if (!isset($_REQUEST['action'])) {
return;
}
switch ($_REQUEST['action']):
case 'upgrade':
if (count($_REQUEST['template'])>0)
{
foreach ($_REQUEST['template'] as $key=>$slug)
{
self::api_upgrade_template($slug);
}
}
break;
case 'delete':
if (count($_REQUEST['template'])>0)
{
foreach ($_REQUEST['template'] as $key=>$slug)
{
self::api_delete_template( INBOUND_EMAIL_PATH.'templates/'.$slug , $slug );
}
}
break;
endswitch;
}
public static function run_upload_commands() {
if (!$_FILES) {
return;
}
$name = $_FILES['templatezip']['name'];
$name = preg_replace('/\((.*?)\)/','',$name);
$name = str_replace(array(' ','.zip'),'',$name);
$name = trim($name);
if (!wp_verify_nonce($_POST["inbound_email_wpnonce"], 'mailer-nonce')) {
return NULL;
}
include_once( ABSPATH . 'wp-admin/includes/class-pclzip.php');
$zip = new PclZip( $_FILES['templatezip']["tmp_name"]);
if ( !is_dir( INBOUND_EMAIL_UPLOADS_PATH ) )
{
wp_mkdir_p( INBOUND_EMAIL_UPLOADS_PATH );
}
if (($list = $zip->listContent()) == 0)
{
die(__('There was a problem. Please try again!' , 'inbound-pro' ));
}
$is_template = false;
foreach ($list as $key=>$val)
{
foreach ($val as $k=>$val)
{
if (strstr($val,'/config.php'))
{
$is_template = true;
break;
}
else if($is_template==true)
{
break;
}
}
}
if (!$is_template) {
echo "<br><br><br><br>";
die(__( 'WARNING! This zip file does not seem to be a call to action template file! If you are trying to install an inbound now extension please use the Plugin\'s upload section! Please press the back button and try again!' , 'inbound-pro' ));
}
if ($result = $zip->extract(PCLZIP_OPT_PATH, INBOUND_EMAIL_UPLOADS_PATH , PCLZIP_OPT_REPLACE_NEWER ) == 0) {
die(__( 'There was a problem. Please try again!' , 'inbound-pro' ));
} else {
unlink( $_FILES['templatezip']["tmp_name"]);
echo '<div class="updated"><p>'. __( 'Template uploaded successfully!' , 'inbound-pro' ) .'</div>';
}
}
public static function api_request( $item ) {
$api_params = array(
'edd_action' => 'get_version',
'license' => '',
'name' => $item['name'],
'slug' => $item['ID'],
'nature' => 'template',
);
$request = wp_remote_post( INBOUND_EMAIL_STORE_URL, array( 'timeout' => 15, 'sslverify' => false, 'body' => $api_params ) );
if ( !is_wp_error( $request ) ):
$request = json_decode( wp_remote_retrieve_body( $request ), true );
if( $request ) {
$request['sections'] = maybe_unserialize( $request['sections'] );
}
return $request;
else:
return false;
endif;
}
public static function api_check_template_for_updates( $item ) {
$version = $item['version'];
$api_response = self::api_request( $item );
if( false !== $api_response ) {
if( version_compare( $version, $api_response['new_version'], '<' ) ) {
$template_page = INBOUND_EMAIL_STORE_URL."/downloads/".$item['ID']."/";
$html = '<div class="update-message">'.$item['version'].' <font class="update-available">Version '.$api_response['new_version'].' available.</font><br> <a title="'.$item['name'].'" class="thickbox" href="'.$template_page.'" target="_blank">View template details</a> ';
$html .= 'or <a href="?post_type=inbound-email&page=inbound_email_manage_templates&action=upgrade&template%5B%5D='.$item['ID'].'">update now</a>.</div>';
return $html;
} else {
return $item['version'];
}
} else {
return $item['version'];
}
}
public static function api_upgrade_template( $slug ) {
$Inbound_Mailer_Load_Extensions = Inbound_Mailer_Load_Extensions();
$inbound_email_data = $Inbound_Mailer_Load_Extensions->template_definitions;
$data = $inbound_email_data[$slug];
$item['ID'] = $slug;
$item['template'] = $slug;
$item['name'] = $data['label'];
$item['category'] = $data['category'];
$item['description'] = $data['description'];
$response = self::api_request( $item );
$package = $response['package'];
IF (!isset($package)||empty($package)) {
return;
}
$zip_array = wp_remote_get($package,null);
($zip_array['response']['code']==200) ? $zip = $zip_array['body'] : die("<div class='error'><p>{$slug}: Invalid download location (Version control not provided).</p></div>");
$uploads = wp_upload_dir();
$uploads_dir = $uploads['path'];
$temp = ini_get('upload_tmp_dir');
if (empty($temp))
{
$temp = "/tmp";
}
$file_path = $temp . "/".$slug.".zip";
file_put_contents($file_path, $zip);
include_once(ABSPATH . 'wp-admin/includes/class-pclzip.php');
$zip = new PclZip( $file_path );
$uploads = wp_upload_dir();
$uploads_path = $uploads['basedir'];
$extended_path = $uploads_path.'/inbound-emails/templates/';
if (!is_dir($extended_path)) {
wp_mkdir_p( $extended_path );
}
$result = $zip->extract(PCLZIP_OPT_PATH, $extended_path , PCLZIP_OPT_REPLACE_NEWER );
if (!$result){
die("There was a problem. Please try again!");
} else {
unlink($file_path);
echo '<div class="updated"><p>'.$data['label'].' upgraded successfully!</div>';
}
}
public static function api_delete_template( $dir , $slug) {
if (!file_exists($dir)) {
return true;
}
$Inbound_Mailer_Load_Extensions = Inbound_Mailer_Load_Extensions();
$data = $Inbound_Mailer_Load_Extensions->template_definitions;
if (!is_dir($dir) || is_link($dir)) return unlink($dir);
foreach (scandir($dir) as $item) {
if ($item == '.' || $item == '..') continue;
if (!self::api_delete_template($dir . "/" . $item , $slug)) {
chmod($dir . "/" . $item, 0777);
if (!self::api_delete_template($dir . "/" . $item , $slug)) return false;
};
}
rmdir($dir);
echo '<div class="updated"><p>'.$data['label'].' deleted successfully!</div>';
}
public static function display_upload_page() {
$screen = get_current_screen();
if ( ( isset($screen) && $screen->base != 'inbound-email_page_inbound_email_templates_upload' ) ){
return;
}
self::run_upload_commands();
self::display_upload_form();
}
public static function display_upload_form() {
?>
<div class="wrap templates_upload">
<div class="icon32" id="icon-plugins"><br></div><h2><?php _e( 'Install Templates' , 'inbound-pro' ); ?></h2>
<ul class="subsubsub">
<li class="plugin-install-upload"><a class="current" href="#upload" id='menu_upload'><?php _e( 'Upload' , 'inbound-pro' ) ; ?></a> </li>
</ul>
<br class="clear">
<h4><?php _e( 'Install Inbound Email Component template by uploading them here in .zip format' , 'inbound-pro' ) ; ?></h4>
<p class="install-help"><?php _e( 'Warning: Only upload email template zip files downloaded from Inbound Now here.' , 'inbound-pro' ) ; ?>
</p>
<form action="" class="wp-upload-form" enctype="multipart/form-data" method="post">
<input type="hidden" value="<?php echo wp_create_nonce('mailer-nonce'); ?>" name="inbound_email_wpnonce" id="_wpnonce">
<input type="hidden" value="/wp-admin/plugin-install.php?tab=upload" name="_wp_http_referer">
<label for="pluginzip" class="screen-reader-text"><?php _e('Template zip file' , 'inbound-pro' ) ; ?></label>
<input type="file" name="templatezip" id="templatezip">
<input type="submit" value="<?php _e('Install Now' , 'inbound-pro' ) ; ?>" class="button" id="install-template-submit" name="install-template-submit" disabled="">
</form>
</div>
<?php
}
public static function display_management_page() {
self::run_management_actions();
$title = __('Manage Templates');
echo '<div class="wrap">';
screen_icon();
?>
<h2><?php echo esc_html( $title ); ?>
<a href="edit.php?post_type=inbound-email&page=inbound_email_templates_upload" class="add-new-h2"><?php echo esc_html_x('Add New Template', 'template'); ?></a>
</h2>
<?php
$myListTable = new Inbound_Mailer_Template_Manager_List();
$myListTable->prepare_items();
?>
<form method="post" >
<input type="hidden" name="page" value="my_list_test" />
<?php $myListTable->search_box('search', 'search_id'); ?>
</form>
<form method="post" id='bulk_actions'>
<?php
$myListTable->display();
echo '</div></form>';
}
}
function load_Inbound_Mailer_Template_Manager() {
$Inbound_Mailer_Template_Manager = new Inbound_Mailer_Template_Manager;
}
add_action( 'init' , 'load_Inbound_Mailer_Template_Manager' );
}