PopulatorData
2 months ago
AccessControl.php
2 years ago
Activator.php
2 months ago
AssetsLoader.php
2 weeks ago
Capabilities.php
2 months ago
Changelog.php
2 months ago
DeactivationPoll.php
3 years ago
DeferredAdminNotices.php
2 months ago
Env.php
6 months ago
Hooks.php
4 weeks ago
HooksWooCommerce.php
1 month ago
Initializer.php
4 weeks ago
Installer.php
10 months ago
Localizer.php
3 years ago
Menu.php
1 month ago
PersonalDataErasers.php
1 month ago
PersonalDataExporters.php
1 month ago
PluginActivatedHook.php
3 years ago
Populator.php
2 weeks ago
PrivacyPolicy.php
1 month ago
Renderer.php
1 year ago
RendererFactory.php
3 years ago
RequirementsChecker.php
2 months ago
Router.php
2 months ago
ServicesChecker.php
3 years ago
Shortcodes.php
1 month ago
SilentUpgraderSkin.php
3 years ago
SubscriberChangesNotifier.php
2 months ago
TranslationUpdater.php
3 months ago
TwigEnvironment.php
1 year ago
TwigFileSystemCache.php
3 years ago
Updater.php
4 days ago
index.php
3 years ago
HooksWooCommerce.php
254 lines
| 1 | <?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing |
| 2 | |
| 3 | namespace MailPoet\Config; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | use Automattic\WooCommerce\Admin\Features\OnboardingTasks\Task; |
| 9 | use Automattic\WooCommerce\Admin\Features\OnboardingTasks\TaskLists; |
| 10 | use MailPoet\Logging\LoggerFactory; |
| 11 | use MailPoet\Segments\WooCommerce as WooCommerceSegment; |
| 12 | use MailPoet\Statistics\Track\WooCommercePurchases; |
| 13 | use MailPoet\Subscription\Registration; |
| 14 | use MailPoet\WooCommerce\MailPoetTask; |
| 15 | use MailPoet\WooCommerce\MultichannelMarketing\MPMarketingChannelController; |
| 16 | use MailPoet\WooCommerce\OrderAttributionWriter; |
| 17 | use MailPoet\WooCommerce\Settings as WooCommerceSettings; |
| 18 | use MailPoet\WooCommerce\SubscriberEngagement; |
| 19 | use MailPoet\WooCommerce\Subscription as WooCommerceSubscription; |
| 20 | use MailPoet\WooCommerce\Tracker; |
| 21 | |
| 22 | class HooksWooCommerce { |
| 23 | /** @var WooCommerceSubscription */ |
| 24 | private $woocommerceSubscription; |
| 25 | |
| 26 | /** @var WooCommerceSegment */ |
| 27 | private $woocommerceSegment; |
| 28 | |
| 29 | /** @var WooCommerceSettings */ |
| 30 | private $woocommerceSettings; |
| 31 | |
| 32 | /** @var WooCommercePurchases */ |
| 33 | private $woocommercePurchases; |
| 34 | |
| 35 | /** @var Registration */ |
| 36 | private $subscriberRegistration; |
| 37 | |
| 38 | /** @var LoggerFactory */ |
| 39 | private $loggerFactory; |
| 40 | |
| 41 | /** @var SubscriberEngagement */ |
| 42 | private $subscriberEngagement; |
| 43 | |
| 44 | /** @var Tracker */ |
| 45 | private $tracker; |
| 46 | |
| 47 | /** @var MPMarketingChannelController */ |
| 48 | private $marketingChannelController; |
| 49 | |
| 50 | /** @var OrderAttributionWriter */ |
| 51 | private $orderAttributionWriter; |
| 52 | |
| 53 | public function __construct( |
| 54 | WooCommerceSubscription $woocommerceSubscription, |
| 55 | WooCommerceSegment $woocommerceSegment, |
| 56 | WooCommerceSettings $woocommerceSettings, |
| 57 | WooCommercePurchases $woocommercePurchases, |
| 58 | Registration $subscriberRegistration, |
| 59 | LoggerFactory $loggerFactory, |
| 60 | Tracker $tracker, |
| 61 | SubscriberEngagement $subscriberEngagement, |
| 62 | MPMarketingChannelController $marketingChannelController, |
| 63 | OrderAttributionWriter $orderAttributionWriter |
| 64 | ) { |
| 65 | $this->woocommerceSubscription = $woocommerceSubscription; |
| 66 | $this->woocommerceSegment = $woocommerceSegment; |
| 67 | $this->woocommerceSettings = $woocommerceSettings; |
| 68 | $this->woocommercePurchases = $woocommercePurchases; |
| 69 | $this->loggerFactory = $loggerFactory; |
| 70 | $this->subscriberRegistration = $subscriberRegistration; |
| 71 | $this->tracker = $tracker; |
| 72 | $this->subscriberEngagement = $subscriberEngagement; |
| 73 | $this->marketingChannelController = $marketingChannelController; |
| 74 | $this->orderAttributionWriter = $orderAttributionWriter; |
| 75 | } |
| 76 | |
| 77 | public function extendWooCommerceCheckoutForm() { |
| 78 | try { |
| 79 | $this->woocommerceSubscription->extendWooCommerceCheckoutForm(); |
| 80 | } catch (\Throwable $e) { |
| 81 | $this->logError($e, 'WooCommerce Subscription'); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | public function hideAutomateWooOptinCheckbox() { |
| 86 | try { |
| 87 | $this->woocommerceSubscription->hideAutomateWooOptinCheckbox(); |
| 88 | } catch (\Throwable $e) { |
| 89 | $this->logError($e, 'WooCommerce Subscription'); |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | public function subscribeOnCheckout($orderId, $data) { |
| 94 | try { |
| 95 | $this->woocommerceSubscription->subscribeOnCheckout($orderId, $data); |
| 96 | } catch (\Throwable $e) { |
| 97 | $this->logError($e, 'WooCommerce Subscription'); |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | public function subscribeOnOrderPay($orderId) { |
| 102 | try { |
| 103 | $this->woocommerceSubscription->subscribeOnOrderPay($orderId); |
| 104 | } catch (\Throwable $e) { |
| 105 | $this->logError($e, 'WooCommerce Subscription'); |
| 106 | } |
| 107 | } |
| 108 | |
| 109 | public function disableWooCommerceSettings() { |
| 110 | try { |
| 111 | $this->woocommerceSettings->disableWooCommerceSettings(); |
| 112 | } catch (\Throwable $e) { |
| 113 | $this->logError($e, 'WooCommerce Settings'); |
| 114 | } |
| 115 | } |
| 116 | |
| 117 | public function synchronizeRegisteredCustomer($wpUserId, $currentFilter = null) { |
| 118 | try { |
| 119 | $this->woocommerceSegment->synchronizeRegisteredCustomer($wpUserId, $currentFilter); |
| 120 | } catch (\Throwable $e) { |
| 121 | $this->logError($e, 'WooCommerce Sync'); |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | public function synchronizeGuestCustomer($orderId) { |
| 126 | try { |
| 127 | $this->woocommerceSegment->synchronizeGuestCustomer($orderId); |
| 128 | } catch (\Throwable $e) { |
| 129 | $this->logError($e, 'WooCommerce Sync'); |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | public function trackPurchase($id, $useCookies = true) { |
| 134 | try { |
| 135 | $this->woocommercePurchases->trackPurchase($id, $useCookies); |
| 136 | } catch (\Throwable $e) { |
| 137 | $this->logError($e, 'WooCommerce Purchases'); |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | public function markAttributionWritesStarted() { |
| 142 | try { |
| 143 | $this->orderAttributionWriter->markWritesStartedIfActive(); |
| 144 | } catch (\Throwable $e) { |
| 145 | $this->logError($e, 'WooCommerce Order Attribution'); |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | public function writeOrderAttribution($order) { |
| 150 | try { |
| 151 | $this->orderAttributionWriter->writeForOrder($order); |
| 152 | } catch (\Throwable $e) { |
| 153 | $this->logError($e, 'WooCommerce Order Attribution'); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | public function writeOrderAttributionForNewOrder($order) { |
| 158 | try { |
| 159 | $this->orderAttributionWriter->writeForNewOrder($order); |
| 160 | } catch (\Throwable $e) { |
| 161 | $this->logError($e, 'WooCommerce Order Attribution'); |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | public function trackRefund($id) { |
| 166 | try { |
| 167 | $this->woocommercePurchases->trackRefund($id); |
| 168 | } catch (\Throwable $e) { |
| 169 | $this->logError($e, 'WooCommerce Purchases Refund'); |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | public function extendForm() { |
| 174 | try { |
| 175 | $this->subscriberRegistration->extendForm(); |
| 176 | } catch (\Throwable $e) { |
| 177 | $this->logError($e, 'WooCommerce Extend Form'); |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | public function onRegister($errors, string $userLogin, ?string $userEmail = null) { |
| 182 | try { |
| 183 | if (empty($errors->errors)) { |
| 184 | $this->subscriberRegistration->onRegister($errors, $userLogin, $userEmail); |
| 185 | } |
| 186 | } catch (\Throwable $e) { |
| 187 | $this->logError($e, 'WooCommerce on Register'); |
| 188 | } |
| 189 | return $errors; |
| 190 | } |
| 191 | |
| 192 | public function updateSubscriberEngagement($orderId) { |
| 193 | try { |
| 194 | $this->subscriberEngagement->updateSubscriberEngagement($orderId); |
| 195 | } catch (\Throwable $e) { |
| 196 | $this->logError($e, 'WooCommerce Update Subscriber Engagement'); |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | public function updateSubscriberLastPurchase($orderId) { |
| 201 | try { |
| 202 | $this->subscriberEngagement->updateSubscriberLastPurchase($orderId); |
| 203 | } catch (\Throwable $e) { |
| 204 | $this->logError($e, 'WooCommerce Update Subscriber Last Purchase'); |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | public function declareWooCompatibility() { |
| 209 | |
| 210 | if (!class_exists('\Automattic\WooCommerce\Utilities\FeaturesUtil')) { |
| 211 | return; |
| 212 | } |
| 213 | try { |
| 214 | \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility('custom_order_tables', Env::$pluginPath); |
| 215 | \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility('cart_checkout_blocks', Env::$pluginPath); |
| 216 | } catch (\Throwable $e) { |
| 217 | $this->logError($e, 'WooCommerce Compatibility'); |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | public function addTrackingData($data) { |
| 222 | if (!is_array($data)) { |
| 223 | return $data; |
| 224 | } |
| 225 | return $this->tracker->addTrackingData($data); |
| 226 | } |
| 227 | |
| 228 | public function addMailPoetTaskToWooHomePage() { |
| 229 | try { |
| 230 | if (class_exists(TaskLists::class) && class_exists(Task::class)) { |
| 231 | TaskLists::add_task('extended', new MailPoetTask()); |
| 232 | } |
| 233 | } catch (\Throwable $e) { |
| 234 | $this->logError($e, 'Unable to add MailPoet task to WooCommerce homepage'); |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | public function addMailPoetMarketingMultiChannel($registeredMarketingChannels) { |
| 239 | if (!is_array($registeredMarketingChannels)) { |
| 240 | return $registeredMarketingChannels; |
| 241 | } |
| 242 | |
| 243 | return $this->marketingChannelController->registerMarketingChannel($registeredMarketingChannels); |
| 244 | } |
| 245 | |
| 246 | private function logError(\Throwable $e, $name) { |
| 247 | $logger = $this->loggerFactory->getLogger($name); |
| 248 | $logger->error($e->getMessage(), [ |
| 249 | 'file' => $e->getFile(), |
| 250 | 'line' => $e->getLine(), |
| 251 | ]); |
| 252 | } |
| 253 | } |
| 254 |