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
<?php
class WC_Braintree_Meta_Box_Subscription_Order_Data {
private static $processing_update = false;
private static $calculating_totals = false;
private static $_new_order_item = false;
private static $current_order = null;
public static function init() {
add_action( 'woocommerce_process_shop_order_meta', array( __CLASS__, 'save' ), 60, 2 );
add_action( 'woocommerce_order_before_calculate_taxes', array( __CLASS__, 'before_calculate_totals' ), 10, 2 );
add_action( 'woocommerce_order_after_calculate_totals', array( __CLASS__, 'after_calculate_totals' ) );
add_action( 'woocommerce_order_before_calculate_totals', array( __CLASS__, 'before_calculate_totals' ), 10, 2 );
add_action( 'woocommerce_ajax_add_order_item_meta', array( __CLASS__, 'validate_order_item' ), 10, 3 );
add_action( 'add_meta_boxes', array( __CLASS__, 'add_meta_boxes' ), 40, 2 );
add_action( 'woocommerce_new_order_item', array( __CLASS__, 'new_order_item' ), 10, 3 );
add_action( 'woocommerce_update_order_item', array( __CLASS__, 'update_order_item' ), 10, 3 );
add_action( 'woocommerce_before_delete_order_item', array( __CLASS__, 'delete_order_item' ) );
}
public static function add_meta_boxes( $post_type, $post ) {
if ( $post_type === 'bfwc_subscription' ) {
add_meta_box( 'wcs-braintree-related-orders', __( 'Related Orders', 'woo-payment-gateway' ), array( __CLASS__, 'subscription_related_orders_view' ), 'bfwc_subscription', 'normal', 'default' );
}
if ( $post_type === 'shop_order' ) {
add_meta_box( 'wcs-braintree-related-orders', __( 'Related Subscriptions', 'woo-payment-gateway' ), array( __CLASS__, 'related_orders_view' ), 'shop_order', 'normal', 'default' );
}
add_filter( 'wc_order_statuses', array( __CLASS__, 'order_statuses' ) );
}
public static function subscription_related_orders_view( $post ) {
$subscription = wcs_braintree_get_subscription( $post->ID );
$orders = wcs_braintree_get_related_orders( $subscription );
include 'views/html-subscription-related-orders.php';
}
public static function related_orders_view( $post ) {
$order = wc_get_order( $post->ID );
$subscription_id = $order->get_meta( '_subscription_id', true );
if ( wcs_braintree_order_contains_subscription( $order ) || $subscription_id ) {
$subscriptions = wcs_braintree_get_subscriptions_for_order( $order );
if ( empty( $subscriptions ) ) {
$subscriptions[] = wcs_braintree_get_subscription( $subscription_id );
}
include 'views/html-related-orders.php';
}
}
public static function order_statuses( $statuses ) {
if ( self::is_subscription_type() ) {
$statuses = array_merge( $statuses, wcs_braintree_get_subscription_statuses() );
}
return $statuses;
}
private static function is_subscription_type() {
$screen = get_current_screen();
$screen_id = $screen ? $screen->id : '';
return $screen_id === 'bfwc_subscription';
}
private static function order_is_subscription( $order ) {
return $order && 'bfwc_subscription' === $order->get_type();
}
public static function before_calculate_totals( $and_taxes, $order ) {
self::$calculating_totals = true;
self::$current_order = $order;
add_filter( 'woocommerce_order_item_get_total', array( __CLASS__, 'get_item_total' ), 10, 2 );
add_filter( 'woocommerce_order_item_get_subtotal', array( __CLASS__, 'get_item_total' ), 10, 2 );
}
public static function after_calculate_totals() {
self::$calculating_totals = false;
remove_filter( 'woocommerce_order_item_get_total', array( __CLASS__, 'get_item_total' ) );
remove_filter( 'woocommerce_order_item_get_subtotal', array( __CLASS__, 'get_item_total' ) );
}
public static function get_item_total( $total, $item ) {
if ( 'line_item' === $item->get_type() ) {
if ( ! self::order_is_subscription( $item->get_order() ) ) {
$product = $item->get_product();
if ( wcs_braintree_product_is_subscription( $product ) ) {
if ( $product->has_trial() ) {
$total = 0;
}
}
}
}
return $total;
}
public static function save( $post_id, $post ) {
$shop_order = wc_get_order( $post_id );
if ( self::order_is_subscription( $shop_order ) ) {
$subscription = wcs_braintree_get_subscription( $post_id );
if ( ! $subscription->is_created() ) {
$order_id = $subscription->get_parent_id();
if ( ! $order_id ) {
$order = wc_create_order(
array(
'created_via' => 'admin',
'customer_id' => $subscription->get_customer_id(),
)
);
$order->set_address( $subscription->get_address( 'billing' ), 'billing' );
$order->set_address( $subscription->get_address( 'shipping' ), 'shipping' );
$order->set_status( wc_clean( $_POST['order_status'] ) );
$subscription->set_parent_id( $order->get_id() );
$subscription->save();
} else {
$order = wc_get_order( $order_id );
}
}
} else {
if ( wcs_braintree_order_contains_subscription( $shop_order ) ) {
foreach ( wcs_braintree_get_subscriptions_for_order( $shop_order ) as $subscription ) {
if ( $subscription->has_status( array( 'pending' ) ) ) {
WC_Meta_Box_Order_Data::save( $subscription->get_id() );
}
}
}
}
}
private static function add_subscription_props( $subscription, $item ) {
$product = $item->get_product();
$start_date = wcs_braintree_calculate_start_date();
$first_payment_date = wcs_braintree_calculate_first_payment_date( $product->get_subscription_trial_period(), $product->get_subscription_trial_length() );
$next_payment_date = $product->has_trial() ? $first_payment_date : wcs_braintree_calculate_next_payment_date( $first_payment_date, $product->get_subscription_period(), $product->get_subscription_period_interval() );
$end_date = wcs_braintree_calculate_end_date( $product->get_subscription_length(), $product->get_subscription_period(), $product->get_subscription_trial_period(), $product->get_subscription_trial_length() );
$subscription->set_props(
array(
'recurring_cart_key' => wcs_braintree_get_recurring_cart_key( $product ),
'start_date' => $start_date,
'next_payment_date' => $next_payment_date,
'first_payment_date' => $first_payment_date,
'end_date' => $end_date,
'trial_end_date' => $first_payment_date,
'subscription_trial_length' => $product->get_subscription_trial_length(),
'subscription_trial_period' => $product->get_subscription_trial_period(),
'braintree_plan' => wcs_braintree_get_plan_from_product( $product ),
'subscription_period' => $product->get_subscription_period(),
'subscription_period_interval' => $product->get_subscription_period_interval(),
'subscription_length' => $product->get_subscription_length(),
'merchant_account_id' => wc_braintree_get_merchant_account(),
'created_in_braintree' => false,
)
);
}
public static function validate_order_item( $item_id, $item, $order ) {
try {
if ( self::order_is_subscription( $order ) ) {
foreach ( $order->get_items( 'line_item' ) as $line_item ) {
$keys = array(
wcs_braintree_get_recurring_cart_key( $item->get_product() ),
wcs_braintree_get_recurring_cart_key( $line_item->get_product() ),
);
if ( count( array_unique( $keys ) ) > 1 ) {
throw new Exception( sprintf( __( 'Product %1$s cannot be assigned to this subscription. Reason: the products do not have the same billing schedule.', 'woo-payment-gateway' ), $item->get_product()->get_name() ) );
}
}
}
} catch ( Exception $e ) {
wc_delete_order_item( $item_id );
throw new Exception( $e->getMessage() );
}
}
public static function new_order_item( $item_id, $item, $order_id ) {
if ( ! self::$_new_order_item && 'line_item' === $item->get_type() ) {
self::$_new_order_item = true;
$shop_order = wc_get_order( $order_id );
$item_order_id = 0;
if ( self::order_is_subscription( $shop_order ) ) {
if ( ( $order = wc_get_order( $shop_order->get_parent_id() ) ) == false ) {
$order = wc_create_order( array( 'customer_id' => $shop_order->get_customer_id() ) );
$shop_order->set_parent_id( $order->get_id() );
$shop_order->save();
}
self::add_subscription_props( $shop_order, $item );
$shop_order->save();
$item_order_id = $order->get_id();
} elseif ( is_a( $shop_order, 'WC_Order' ) ) {
if ( wcs_braintree_product_is_subscription( $item->get_product() ) ) {
$cart_key = wcs_braintree_get_recurring_cart_key( $item->get_product() );
$subscription = wcs_braintree_get_subscription_from_recurring_cart_key( $cart_key, $shop_order->get_id() );
if ( ! $subscription ) {
$subscription = new WC_Braintree_Subscription();
$subscription->set_customer_id( $shop_order->get_customer_id() );
$subscription->set_parent_id( $shop_order->get_id() );
$subscription->set_recurring_cart_key( $cart_key );
self::add_subscription_props( $subscription, $item );
$subscription->save();
}
$item_order_id = $subscription->get_id();
}
}
if ( $item_order_id ) {
$data_store = WC_Data_Store::load( 'order-item' );
$new_item = clone $item;
$new_item->set_id( 0 );
$new_item->set_order_id( $item_order_id );
$new_item->add_meta_data( '_reference_item', $item->get_id() );
$new_item->save();
$data_store->update_metadata( $item_id, '_reference_item', $new_item->get_id() );
$shop_order->calculate_totals();
wc_get_order( $item_order_id )->calculate_totals();
}
self::$_new_order_item = false;
}
}
public static function update_order_item( $item_id, $item, $order_id ) {
if ( self::$processing_update ) {
return;
}
self::$processing_update = true;
$shop_order = wc_get_order( $order_id );
$reference_item = WC_Order_Factory::get_order_item( $item->get_meta( '_reference_item' ), true );
if ( 'line_item' === $item->get_type() && $reference_item ) {
$reference_item->set_props(
array(
'quantity' => $item->get_quantity(),
'subtotal' => $item->get_subtotal(),
'total' => $item->get_total(),
)
);
$reference_item->save();
$reference_item->get_order()->calculate_totals();
}
self::$processing_update = false;
}
public static function delete_order_item( $item_id ) {
$data_store = WC_Data_Store::load( 'order-item' );
$item = WC_Order_Factory::get_order_item( $item_id );
if ( false === $item ) {
return;
}
$shop_order = $item->get_order();
$reference_item_id = $item->get_meta( '_reference_item', true );
if ( $reference_item_id ) {
$reference_item = WC_Order_Factory::get_order_item( $reference_item_id );
$order = $reference_item->get_order();
if ( self::order_is_subscription( $order ) ) {
$order->set_recurring_cart_key( '' );
$order->save();
}
$data_store->delete_order_item( $reference_item_id );
}
if ( self::order_is_subscription( $shop_order ) ) {
$shop_order->set_recurring_cart_key( '' );
$shop_order->save();
}
}
}
WC_Braintree_Meta_Box_Subscription_Order_Data::init();