634 lines
24 KiB
PHP
634 lines
24 KiB
PHP
<?php
|
|
|
|
namespace MailPoet\Config;
|
|
|
|
use MailPoet\Entities\FormEntity;
|
|
use MailPoet\Models\Newsletter;
|
|
use MailPoet\Models\Subscriber;
|
|
use MailPoet\Settings\SettingsController;
|
|
use MailPoet\Util\Helpers;
|
|
|
|
// The "created_at" column must be NULL in some tables to avoid "there can be only one
|
|
// TIMESTAMP column with CURRENT_TIMESTAMP" error on MySQL version < 5.6.5 that occurs
|
|
// even when other timestamp is simply "NOT NULL".
|
|
class Migrator {
|
|
|
|
public $prefix;
|
|
private $charsetCollate;
|
|
private $models;
|
|
private $settings;
|
|
|
|
public function __construct() {
|
|
$this->settings = SettingsController::getInstance();
|
|
$this->prefix = Env::$dbPrefix;
|
|
$this->charsetCollate = Env::$dbCharsetCollate;
|
|
$this->models = [
|
|
'segments',
|
|
'settings',
|
|
'custom_fields',
|
|
'scheduled_tasks',
|
|
'stats_notifications',
|
|
'scheduled_task_subscribers',
|
|
'sending_queues',
|
|
'subscribers',
|
|
'subscriber_segment',
|
|
'subscriber_custom_field',
|
|
'subscriber_ips',
|
|
'newsletters',
|
|
'newsletter_templates',
|
|
'newsletter_option_fields',
|
|
'newsletter_option',
|
|
'newsletter_segment',
|
|
'newsletter_links',
|
|
'newsletter_posts',
|
|
'forms',
|
|
'statistics_newsletters',
|
|
'statistics_clicks',
|
|
'statistics_opens',
|
|
'statistics_unsubscribes',
|
|
'statistics_forms',
|
|
'statistics_woocommerce_purchases',
|
|
'mapping_to_external_entities',
|
|
'log',
|
|
'user_flags',
|
|
'feature_flags',
|
|
'dynamic_segment_filters',
|
|
];
|
|
}
|
|
|
|
public function up() {
|
|
global $wpdb;
|
|
// Ensure dbDelta function
|
|
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
|
$output = [];
|
|
foreach ($this->models as $model) {
|
|
$modelMethod = Helpers::underscoreToCamelCase($model);
|
|
$output = array_merge(dbDelta($this->$modelMethod()), $output);
|
|
}
|
|
$this->updateNullInUnsubscribeStats();
|
|
$this->fixScheduledTasksSubscribersTimestampColumns();
|
|
return $output;
|
|
}
|
|
|
|
public function down() {
|
|
global $wpdb;
|
|
|
|
$_this = $this;
|
|
$dropTable = function($model) use($wpdb, $_this) {
|
|
$table = $_this->prefix . $model;
|
|
$wpdb->query("DROP TABLE {$table}");
|
|
};
|
|
|
|
array_map($dropTable, $this->models);
|
|
}
|
|
|
|
public function segments() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'name varchar(90) NOT NULL,',
|
|
'type varchar(90) NOT NULL DEFAULT "default",',
|
|
'description varchar(250) NOT NULL DEFAULT "",',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'deleted_at timestamp NULL,',
|
|
'average_engagement_score FLOAT unsigned NULL,',
|
|
'average_engagement_score_updated_at timestamp NULL,',
|
|
'PRIMARY KEY (id),',
|
|
'UNIQUE KEY name (name),',
|
|
'KEY average_engagement_score_updated_at (average_engagement_score_updated_at)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function settings() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'name varchar(50) NOT NULL,',
|
|
'value longtext,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'UNIQUE KEY name (name)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function customFields() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'name varchar(90) NOT NULL,',
|
|
'type varchar(90) NOT NULL,',
|
|
'params longtext NOT NULL,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'UNIQUE KEY name (name)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function scheduledTasks() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'type varchar(90) NULL DEFAULT NULL,',
|
|
'status varchar(12) NULL DEFAULT NULL,',
|
|
'priority mediumint(9) NOT NULL DEFAULT 0,',
|
|
'scheduled_at timestamp NULL,',
|
|
'processed_at timestamp NULL,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'deleted_at timestamp NULL,',
|
|
'in_progress int(1),',
|
|
'reschedule_count int(11) NOT NULL DEFAULT 0,',
|
|
'meta longtext,',
|
|
'PRIMARY KEY (id),',
|
|
'KEY type (type),',
|
|
'KEY status (status)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function statsNotifications() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'newsletter_id int(11) unsigned NOT NULL,',
|
|
'task_id int(11) unsigned NOT NULL,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'UNIQUE KEY newsletter_id_task_id (newsletter_id, task_id),',
|
|
'KEY task_id (task_id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function scheduledTaskSubscribers() {
|
|
$attributes = [
|
|
'task_id int(11) unsigned NOT NULL,',
|
|
'subscriber_id int(11) unsigned NOT NULL,',
|
|
'processed int(1) NOT NULL,',
|
|
'failed smallint(1) NOT NULL DEFAULT 0,',
|
|
'error text NULL,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (task_id, subscriber_id),',
|
|
'KEY subscriber_id (subscriber_id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function sendingQueues() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'task_id int(11) unsigned NOT NULL,',
|
|
'newsletter_id int(11) unsigned NOT NULL,',
|
|
'newsletter_rendered_body longtext,',
|
|
'newsletter_rendered_subject varchar(250) NULL DEFAULT NULL,',
|
|
'subscribers longtext,',
|
|
'count_total int(11) unsigned NOT NULL DEFAULT 0,',
|
|
'count_processed int(11) unsigned NOT NULL DEFAULT 0,',
|
|
'count_to_process int(11) unsigned NOT NULL DEFAULT 0,',
|
|
'meta longtext,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'deleted_at timestamp NULL,',
|
|
'PRIMARY KEY (id),',
|
|
'KEY task_id (task_id),',
|
|
'KEY newsletter_id (newsletter_id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function subscribers() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'wp_user_id bigint(20) NULL,',
|
|
'is_woocommerce_user int(1) NOT NULL DEFAULT 0,',
|
|
'first_name varchar(255) NOT NULL DEFAULT "",',
|
|
'last_name varchar(255) NOT NULL DEFAULT "",',
|
|
'email varchar(150) NOT NULL,',
|
|
'status varchar(12) NOT NULL DEFAULT "' . Subscriber::STATUS_UNCONFIRMED . '",',
|
|
'subscribed_ip varchar(45) NULL,',
|
|
'confirmed_ip varchar(45) NULL,',
|
|
'confirmed_at timestamp NULL,',
|
|
'last_subscribed_at timestamp NULL,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'deleted_at timestamp NULL,',
|
|
'unconfirmed_data longtext,',
|
|
"source enum('form','imported','administrator','api','wordpress_user','woocommerce_user','woocommerce_checkout','unknown') DEFAULT 'unknown',",
|
|
'count_confirmations int(11) unsigned NOT NULL DEFAULT 0,',
|
|
'unsubscribe_token char(15) NULL,',
|
|
'link_token char(32) NULL,',
|
|
'engagement_score FLOAT unsigned NULL,',
|
|
'engagement_score_updated_at timestamp NULL,',
|
|
'PRIMARY KEY (id),',
|
|
'UNIQUE KEY email (email),',
|
|
'UNIQUE KEY unsubscribe_token (unsubscribe_token),',
|
|
'KEY wp_user_id (wp_user_id),',
|
|
'KEY updated_at (updated_at),',
|
|
'KEY status_deleted_at (status,deleted_at),',
|
|
'KEY last_subscribed_at (last_subscribed_at),',
|
|
'KEY engagement_score_updated_at (engagement_score_updated_at),',
|
|
'KEY link_token (link_token)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function subscriberSegment() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'subscriber_id int(11) unsigned NOT NULL,',
|
|
'segment_id int(11) unsigned NOT NULL,',
|
|
'status varchar(12) NOT NULL DEFAULT "' . Subscriber::STATUS_SUBSCRIBED . '",',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'UNIQUE KEY subscriber_segment (subscriber_id,segment_id),',
|
|
'KEY segment_id (segment_id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function subscriberCustomField() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'subscriber_id int(11) unsigned NOT NULL,',
|
|
'custom_field_id int(11) unsigned NOT NULL,',
|
|
'value text NOT NULL,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'UNIQUE KEY subscriber_id_custom_field_id (subscriber_id,custom_field_id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function subscriberIps() {
|
|
$attributes = [
|
|
'ip varchar(45) NOT NULL,',
|
|
'created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (created_at, ip),',
|
|
'KEY ip (ip)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function newsletters() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'hash varchar(150) NULL DEFAULT NULL,',
|
|
'parent_id int(11) unsigned NULL,',
|
|
'subject varchar(250) NOT NULL DEFAULT "",',
|
|
'type varchar(20) NOT NULL DEFAULT "standard",',
|
|
'sender_address varchar(150) NOT NULL DEFAULT "",',
|
|
'sender_name varchar(150) NOT NULL DEFAULT "",',
|
|
'status varchar(20) NOT NULL DEFAULT "' . Newsletter::STATUS_DRAFT . '",',
|
|
'reply_to_address varchar(150) NOT NULL DEFAULT "",',
|
|
'reply_to_name varchar(150) NOT NULL DEFAULT "",',
|
|
'preheader varchar(250) NOT NULL DEFAULT "",',
|
|
'body longtext,',
|
|
'sent_at timestamp NULL,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'deleted_at timestamp NULL,',
|
|
'unsubscribe_token char(15) NULL,',
|
|
'ga_campaign varchar(250) NOT NULL DEFAULT "",',
|
|
'PRIMARY KEY (id),',
|
|
'UNIQUE KEY unsubscribe_token (unsubscribe_token),',
|
|
'KEY type_status (type,status)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function newsletterTemplates() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'newsletter_id int(11) NULL DEFAULT 0,',
|
|
'name varchar(250) NOT NULL,',
|
|
'categories varchar(250) NOT NULL DEFAULT "[]",',
|
|
'description varchar(255) NOT NULL DEFAULT "",',
|
|
'body longtext,',
|
|
'thumbnail longtext,',
|
|
'readonly tinyint(1) DEFAULT 0,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function newsletterOptionFields() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'name varchar(90) NOT NULL,',
|
|
'newsletter_type varchar(90) NOT NULL,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'UNIQUE KEY name_newsletter_type (newsletter_type,name)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function newsletterOption() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'newsletter_id int(11) unsigned NOT NULL,',
|
|
'option_field_id int(11) unsigned NOT NULL,',
|
|
'value longtext,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'UNIQUE KEY newsletter_id_option_field_id (newsletter_id,option_field_id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function newsletterSegment() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'newsletter_id int(11) unsigned NOT NULL,',
|
|
'segment_id int(11) unsigned NOT NULL,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'UNIQUE KEY newsletter_segment (newsletter_id,segment_id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function newsletterLinks() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'newsletter_id int(11) unsigned NOT NULL,',
|
|
'queue_id int(11) unsigned NOT NULL,',
|
|
'url varchar(2083) NOT NULL,',
|
|
'hash varchar(20) NOT NULL,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'KEY newsletter_id (newsletter_id),',
|
|
'KEY queue_id (queue_id),',
|
|
'KEY url (url(100))',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function newsletterPosts() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'newsletter_id int(11) unsigned NOT NULL,',
|
|
'post_id int(11) unsigned NOT NULL,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'KEY newsletter_id (newsletter_id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function forms() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'name varchar(90) NOT NULL,', // should be null but db_delta can't handle this change
|
|
'status varchar(20) NOT NULL DEFAULT "' . FormEntity::STATUS_ENABLED . '",',
|
|
'body longtext,',
|
|
'settings longtext,',
|
|
'styles longtext,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'deleted_at timestamp NULL,',
|
|
'PRIMARY KEY (id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function statisticsNewsletters() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'newsletter_id int(11) unsigned NOT NULL,',
|
|
'subscriber_id int(11) unsigned NOT NULL,',
|
|
'queue_id int(11) unsigned NOT NULL,',
|
|
'sent_at timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'KEY newsletter_id (newsletter_id),',
|
|
'KEY subscriber_id (subscriber_id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function statisticsClicks() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'newsletter_id int(11) unsigned NOT NULL,',
|
|
'subscriber_id int(11) unsigned NOT NULL,',
|
|
'queue_id int(11) unsigned NOT NULL,',
|
|
'link_id int(11) unsigned NOT NULL,',
|
|
'count int(11) unsigned NOT NULL,',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'KEY newsletter_id_subscriber_id (newsletter_id, subscriber_id),',
|
|
'KEY queue_id (queue_id),',
|
|
'KEY subscriber_id (subscriber_id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function statisticsOpens() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'newsletter_id int(11) unsigned NOT NULL,',
|
|
'subscriber_id int(11) unsigned NOT NULL,',
|
|
'queue_id int(11) unsigned NOT NULL,',
|
|
'created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'KEY newsletter_id_subscriber_id (newsletter_id, subscriber_id),',
|
|
'KEY queue_id (queue_id),',
|
|
'KEY subscriber_id (subscriber_id),',
|
|
'KEY created_at (created_at),',
|
|
'KEY subscriber_id_created_at (subscriber_id, created_at)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function statisticsUnsubscribes() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'newsletter_id int(11) unsigned NULL,',
|
|
'subscriber_id int(11) unsigned NOT NULL,',
|
|
'queue_id int(11) unsigned NULL,',
|
|
'created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,',
|
|
"source varchar(255) DEFAULT 'unknown',",
|
|
'meta varchar(255) NULL,',
|
|
'PRIMARY KEY (id),',
|
|
'KEY newsletter_id_subscriber_id (newsletter_id, subscriber_id),',
|
|
'KEY queue_id (queue_id),',
|
|
'KEY subscriber_id (subscriber_id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function statisticsForms() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'form_id int(11) unsigned NOT NULL,',
|
|
'subscriber_id int(11) unsigned NOT NULL,',
|
|
'created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'UNIQUE KEY form_subscriber (form_id,subscriber_id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function statisticsWoocommercePurchases() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'newsletter_id int(11) unsigned NOT NULL,',
|
|
'subscriber_id int(11) unsigned NOT NULL,',
|
|
'queue_id int(11) unsigned NOT NULL,',
|
|
'click_id int(11) unsigned NOT NULL,',
|
|
'order_id bigint(20) unsigned NOT NULL,',
|
|
'order_currency char(3) NOT NULL,',
|
|
'order_price_total float NOT NULL COMMENT "With shipping and taxes in order_currency",',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'KEY newsletter_id (newsletter_id),',
|
|
'KEY queue_id (queue_id),',
|
|
'KEY subscriber_id (subscriber_id),',
|
|
'UNIQUE KEY click_id_order_id (click_id, order_id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function mappingToExternalEntities() {
|
|
$attributes = [
|
|
'old_id int(11) unsigned NOT NULL,',
|
|
'type varchar(50) NOT NULL,',
|
|
'new_id int(11) unsigned NOT NULL,',
|
|
'created_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (old_id, type),',
|
|
'KEY new_id (new_id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function log() {
|
|
$attributes = [
|
|
'id bigint(20) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'name varchar(255),',
|
|
'level int(11),',
|
|
'message longtext,',
|
|
'created_at timestamp DEFAULT CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function userFlags() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'user_id bigint(20) NOT NULL,',
|
|
'name varchar(50) NOT NULL,',
|
|
'value varchar(255),',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'UNIQUE KEY user_id_name (user_id, name)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function featureFlags() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'name varchar(100) NOT NULL,',
|
|
'value tinyint(1),',
|
|
'created_at timestamp NULL,', // must be NULL, see comment at the top
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'PRIMARY KEY (id),',
|
|
'UNIQUE KEY name (name)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
public function dynamicSegmentFilters() {
|
|
$attributes = [
|
|
'id int(11) unsigned NOT NULL AUTO_INCREMENT,',
|
|
'segment_id int(11) unsigned NOT NULL,',
|
|
'created_at timestamp NULL,',
|
|
'updated_at timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,',
|
|
'filter_data longblob,',
|
|
'PRIMARY KEY (id),',
|
|
'KEY segment_id (segment_id)',
|
|
];
|
|
return $this->sqlify(__FUNCTION__, $attributes);
|
|
}
|
|
|
|
private function sqlify($model, $attributes) {
|
|
$table = $this->prefix . Helpers::camelCaseToUnderscore($model);
|
|
|
|
$sql = [];
|
|
$sql[] = "CREATE TABLE " . $table . " (";
|
|
$sql = array_merge($sql, $attributes);
|
|
$sql[] = ") " . $this->charsetCollate . ";";
|
|
|
|
return implode("\n", $sql);
|
|
}
|
|
|
|
private function updateNullInUnsubscribeStats() {
|
|
global $wpdb;
|
|
// perform once for versions below or equal to 3.47.6
|
|
if (version_compare($this->settings->get('db_version', '3.47.6'), '3.47.6', '>')) {
|
|
return false;
|
|
}
|
|
$query = "
|
|
ALTER TABLE `{$this->prefix}statistics_unsubscribes`
|
|
CHANGE `newsletter_id` `newsletter_id` int(11) unsigned NULL,
|
|
CHANGE `queue_id` `queue_id` int(11) unsigned NULL;
|
|
";
|
|
$wpdb->query($query);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* This method adds updated_at column to scheduled_task_subscribers for users with old MySQL..
|
|
* Updated_at was added after created_at column and created_at used to have default CURRENT_TIMESTAMP.
|
|
* Since MySQL versions below 5.6.5 allow only one column with CURRENT_TIMESTAMP as default per table
|
|
* and db_delta doesn't remove default values we need to perform this change manually..
|
|
* @return bool
|
|
*/
|
|
private function fixScheduledTasksSubscribersTimestampColumns() {
|
|
// skip the migration if the DB version is higher than 3.63.0 or is not set (a new install)
|
|
if (version_compare($this->settings->get('db_version', '3.63.1'), '3.63.0', '>')) {
|
|
return false;
|
|
}
|
|
|
|
global $wpdb;
|
|
$scheduledTasksSubscribersTable = "{$this->prefix}scheduled_task_subscribers";
|
|
// Remove default CURRENT_TIMESTAMP from created_at
|
|
$updateCreatedAtQuery = "
|
|
ALTER TABLE `$scheduledTasksSubscribersTable`
|
|
CHANGE `created_at` `created_at` timestamp NULL;
|
|
";
|
|
$wpdb->query($updateCreatedAtQuery);
|
|
|
|
// Add updated_at column in case it doesn't exist
|
|
$updatedAtColumnExists = $wpdb->get_results("
|
|
SELECT COLUMN_NAME
|
|
FROM INFORMATION_SCHEMA.COLUMNS
|
|
WHERE table_name = '$scheduledTasksSubscribersTable' AND column_name = 'updated_at';
|
|
");
|
|
if (empty($updatedAtColumnExists)) {
|
|
$addUpdatedAtQuery = "
|
|
ALTER TABLE `$scheduledTasksSubscribersTable`
|
|
ADD `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP;
|
|
";
|
|
$wpdb->query($addUpdatedAtQuery);
|
|
}
|
|
return true;
|
|
}
|
|
}
|