@@ -15,125 +15,125 @@ discard block |
||
| 15 | 15 | */ |
| 16 | 16 | class WPInv_Subscription extends GetPaid_Data { |
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * Which data store to load. |
|
| 20 | - * |
|
| 21 | - * @var string |
|
| 22 | - */ |
|
| 23 | - protected $data_store_name = 'subscription'; |
|
| 24 | - |
|
| 25 | - /** |
|
| 26 | - * This is the name of this object type. |
|
| 27 | - * |
|
| 28 | - * @var string |
|
| 29 | - */ |
|
| 30 | - protected $object_type = 'subscription'; |
|
| 31 | - |
|
| 32 | - /** |
|
| 33 | - * Item Data array. This is the core item data exposed in APIs. |
|
| 34 | - * |
|
| 35 | - * @since 1.0.19 |
|
| 36 | - * @var array |
|
| 37 | - */ |
|
| 38 | - protected $data = array( |
|
| 39 | - 'customer_id' => 0, |
|
| 40 | - 'frequency' => 1, |
|
| 41 | - 'period' => 'D', |
|
| 42 | - 'initial_amount' => null, |
|
| 43 | - 'recurring_amount' => null, |
|
| 44 | - 'bill_times' => 0, |
|
| 45 | - 'transaction_id' => '', |
|
| 46 | - 'parent_payment_id' => null, |
|
| 47 | - 'product_id' => 0, |
|
| 48 | - 'created' => '0000-00-00 00:00:00', |
|
| 49 | - 'expiration' => '0000-00-00 00:00:00', |
|
| 50 | - 'trial_period' => '', |
|
| 51 | - 'status' => 'pending', |
|
| 52 | - 'profile_id' => '', |
|
| 53 | - 'gateway' => '', |
|
| 54 | - 'customer' => '', |
|
| 55 | - ); |
|
| 56 | - |
|
| 57 | - /** |
|
| 58 | - * Stores the status transition information. |
|
| 59 | - * |
|
| 60 | - * @since 1.0.19 |
|
| 61 | - * @var bool |
|
| 62 | - */ |
|
| 63 | - protected $status_transition = false; |
|
| 64 | - |
|
| 65 | - /** |
|
| 66 | - * Get the subscription if ID is passed, otherwise the subscription is new and empty. |
|
| 67 | - * |
|
| 68 | - * @param int|string|object|WPInv_Subscription $subscription Subscription id, profile_id, or object to read. |
|
| 69 | - * @param bool $deprecated |
|
| 70 | - */ |
|
| 71 | - function __construct( $subscription = 0, $deprecated = false ) { |
|
| 72 | - |
|
| 73 | - parent::__construct( $subscription ); |
|
| 74 | - |
|
| 75 | - if ( ! $deprecated && ! empty( $subscription ) && is_numeric( $subscription ) ) { |
|
| 76 | - $this->set_id( $subscription ); |
|
| 77 | - } elseif ( $subscription instanceof self ) { |
|
| 78 | - $this->set_id( $subscription->get_id() ); |
|
| 79 | - } elseif ( $deprecated && $subscription_id = self::get_subscription_id_by_field( $subscription, 'profile_id' ) ) { |
|
| 80 | - $this->set_id( $subscription_id ); |
|
| 81 | - } elseif ( ! empty( $subscription->id ) ) { |
|
| 82 | - $this->set_id( $subscription->id ); |
|
| 83 | - } else { |
|
| 84 | - $this->set_object_read( true ); |
|
| 85 | - } |
|
| 86 | - |
|
| 87 | - // Load the datastore. |
|
| 88 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 89 | - |
|
| 90 | - if ( $this->get_id() > 0 ) { |
|
| 91 | - $this->data_store->read( $this ); |
|
| 92 | - } |
|
| 93 | - |
|
| 94 | - } |
|
| 95 | - |
|
| 96 | - /** |
|
| 97 | - * Given an invoice id, profile id, transaction id, it returns the subscription's id. |
|
| 98 | - * |
|
| 99 | - * |
|
| 100 | - * @static |
|
| 101 | - * @param string $value |
|
| 102 | - * @param string $field Either invoice_id, transaction_id or profile_id. |
|
| 103 | - * @since 1.0.19 |
|
| 104 | - * @return int |
|
| 105 | - */ |
|
| 106 | - public static function get_subscription_id_by_field( $value, $field = 'profile_id' ) { |
|
| 18 | + /** |
|
| 19 | + * Which data store to load. |
|
| 20 | + * |
|
| 21 | + * @var string |
|
| 22 | + */ |
|
| 23 | + protected $data_store_name = 'subscription'; |
|
| 24 | + |
|
| 25 | + /** |
|
| 26 | + * This is the name of this object type. |
|
| 27 | + * |
|
| 28 | + * @var string |
|
| 29 | + */ |
|
| 30 | + protected $object_type = 'subscription'; |
|
| 31 | + |
|
| 32 | + /** |
|
| 33 | + * Item Data array. This is the core item data exposed in APIs. |
|
| 34 | + * |
|
| 35 | + * @since 1.0.19 |
|
| 36 | + * @var array |
|
| 37 | + */ |
|
| 38 | + protected $data = array( |
|
| 39 | + 'customer_id' => 0, |
|
| 40 | + 'frequency' => 1, |
|
| 41 | + 'period' => 'D', |
|
| 42 | + 'initial_amount' => null, |
|
| 43 | + 'recurring_amount' => null, |
|
| 44 | + 'bill_times' => 0, |
|
| 45 | + 'transaction_id' => '', |
|
| 46 | + 'parent_payment_id' => null, |
|
| 47 | + 'product_id' => 0, |
|
| 48 | + 'created' => '0000-00-00 00:00:00', |
|
| 49 | + 'expiration' => '0000-00-00 00:00:00', |
|
| 50 | + 'trial_period' => '', |
|
| 51 | + 'status' => 'pending', |
|
| 52 | + 'profile_id' => '', |
|
| 53 | + 'gateway' => '', |
|
| 54 | + 'customer' => '', |
|
| 55 | + ); |
|
| 56 | + |
|
| 57 | + /** |
|
| 58 | + * Stores the status transition information. |
|
| 59 | + * |
|
| 60 | + * @since 1.0.19 |
|
| 61 | + * @var bool |
|
| 62 | + */ |
|
| 63 | + protected $status_transition = false; |
|
| 64 | + |
|
| 65 | + /** |
|
| 66 | + * Get the subscription if ID is passed, otherwise the subscription is new and empty. |
|
| 67 | + * |
|
| 68 | + * @param int|string|object|WPInv_Subscription $subscription Subscription id, profile_id, or object to read. |
|
| 69 | + * @param bool $deprecated |
|
| 70 | + */ |
|
| 71 | + function __construct( $subscription = 0, $deprecated = false ) { |
|
| 72 | + |
|
| 73 | + parent::__construct( $subscription ); |
|
| 74 | + |
|
| 75 | + if ( ! $deprecated && ! empty( $subscription ) && is_numeric( $subscription ) ) { |
|
| 76 | + $this->set_id( $subscription ); |
|
| 77 | + } elseif ( $subscription instanceof self ) { |
|
| 78 | + $this->set_id( $subscription->get_id() ); |
|
| 79 | + } elseif ( $deprecated && $subscription_id = self::get_subscription_id_by_field( $subscription, 'profile_id' ) ) { |
|
| 80 | + $this->set_id( $subscription_id ); |
|
| 81 | + } elseif ( ! empty( $subscription->id ) ) { |
|
| 82 | + $this->set_id( $subscription->id ); |
|
| 83 | + } else { |
|
| 84 | + $this->set_object_read( true ); |
|
| 85 | + } |
|
| 86 | + |
|
| 87 | + // Load the datastore. |
|
| 88 | + $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
| 89 | + |
|
| 90 | + if ( $this->get_id() > 0 ) { |
|
| 91 | + $this->data_store->read( $this ); |
|
| 92 | + } |
|
| 93 | + |
|
| 94 | + } |
|
| 95 | + |
|
| 96 | + /** |
|
| 97 | + * Given an invoice id, profile id, transaction id, it returns the subscription's id. |
|
| 98 | + * |
|
| 99 | + * |
|
| 100 | + * @static |
|
| 101 | + * @param string $value |
|
| 102 | + * @param string $field Either invoice_id, transaction_id or profile_id. |
|
| 103 | + * @since 1.0.19 |
|
| 104 | + * @return int |
|
| 105 | + */ |
|
| 106 | + public static function get_subscription_id_by_field( $value, $field = 'profile_id' ) { |
|
| 107 | 107 | global $wpdb; |
| 108 | 108 | |
| 109 | - // Trim the value. |
|
| 110 | - $value = trim( $value ); |
|
| 109 | + // Trim the value. |
|
| 110 | + $value = trim( $value ); |
|
| 111 | 111 | |
| 112 | - if ( empty( $value ) ) { |
|
| 113 | - return 0; |
|
| 114 | - } |
|
| 112 | + if ( empty( $value ) ) { |
|
| 113 | + return 0; |
|
| 114 | + } |
|
| 115 | 115 | |
| 116 | - if ( 'invoice_id' == $field ) { |
|
| 117 | - $field = 'parent_payment_id'; |
|
| 118 | - } |
|
| 116 | + if ( 'invoice_id' == $field ) { |
|
| 117 | + $field = 'parent_payment_id'; |
|
| 118 | + } |
|
| 119 | 119 | |
| 120 | 120 | // Valid fields. |
| 121 | 121 | $fields = array( |
| 122 | - 'parent_payment_id', |
|
| 123 | - 'transaction_id', |
|
| 124 | - 'profile_id', |
|
| 125 | - ); |
|
| 126 | - |
|
| 127 | - // Ensure a field has been passed. |
|
| 128 | - if ( empty( $field ) || ! in_array( $field, $fields ) ) { |
|
| 129 | - return 0; |
|
| 130 | - } |
|
| 131 | - |
|
| 132 | - // Maybe retrieve from the cache. |
|
| 133 | - $subscription_id = wp_cache_get( $value, "getpaid_subscription_{$field}s_to_subscription_ids" ); |
|
| 134 | - if ( ! empty( $subscription_id ) ) { |
|
| 135 | - return $subscription_id; |
|
| 136 | - } |
|
| 122 | + 'parent_payment_id', |
|
| 123 | + 'transaction_id', |
|
| 124 | + 'profile_id', |
|
| 125 | + ); |
|
| 126 | + |
|
| 127 | + // Ensure a field has been passed. |
|
| 128 | + if ( empty( $field ) || ! in_array( $field, $fields ) ) { |
|
| 129 | + return 0; |
|
| 130 | + } |
|
| 131 | + |
|
| 132 | + // Maybe retrieve from the cache. |
|
| 133 | + $subscription_id = wp_cache_get( $value, "getpaid_subscription_{$field}s_to_subscription_ids" ); |
|
| 134 | + if ( ! empty( $subscription_id ) ) { |
|
| 135 | + return $subscription_id; |
|
| 136 | + } |
|
| 137 | 137 | |
| 138 | 138 | // Fetch from the db. |
| 139 | 139 | $table = $wpdb->prefix . 'wpinv_subscriptions'; |
@@ -141,34 +141,34 @@ discard block |
||
| 141 | 141 | $wpdb->prepare( "SELECT `id` FROM $table WHERE `$field`=%s LIMIT 1", $value ) |
| 142 | 142 | ); |
| 143 | 143 | |
| 144 | - if ( empty( $subscription_id ) ) { |
|
| 145 | - return 0; |
|
| 146 | - } |
|
| 144 | + if ( empty( $subscription_id ) ) { |
|
| 145 | + return 0; |
|
| 146 | + } |
|
| 147 | 147 | |
| 148 | - // Update the cache with our data. |
|
| 149 | - wp_cache_set( $value, $subscription_id, "getpaid_subscription_{$field}s_to_subscription_ids" ); |
|
| 148 | + // Update the cache with our data. |
|
| 149 | + wp_cache_set( $value, $subscription_id, "getpaid_subscription_{$field}s_to_subscription_ids" ); |
|
| 150 | 150 | |
| 151 | - return $subscription_id; |
|
| 152 | - } |
|
| 151 | + return $subscription_id; |
|
| 152 | + } |
|
| 153 | 153 | |
| 154 | - /** |
|
| 154 | + /** |
|
| 155 | 155 | * Clears the subscription's cache. |
| 156 | 156 | */ |
| 157 | 157 | public function clear_cache() { |
| 158 | - wp_cache_delete( $this->get_parent_payment_id(), 'getpaid_subscription_parent_payment_ids_to_subscription_ids' ); |
|
| 159 | - wp_cache_delete( $this->get_transaction_id(), 'getpaid_subscription_transaction_ids_to_subscription_ids' ); |
|
| 160 | - wp_cache_delete( $this->get_profile_id(), 'getpaid_subscription_profile_ids_to_subscription_ids' ); |
|
| 161 | - wp_cache_delete( $this->get_id(), 'getpaid_subscriptions' ); |
|
| 162 | - } |
|
| 158 | + wp_cache_delete( $this->get_parent_payment_id(), 'getpaid_subscription_parent_payment_ids_to_subscription_ids' ); |
|
| 159 | + wp_cache_delete( $this->get_transaction_id(), 'getpaid_subscription_transaction_ids_to_subscription_ids' ); |
|
| 160 | + wp_cache_delete( $this->get_profile_id(), 'getpaid_subscription_profile_ids_to_subscription_ids' ); |
|
| 161 | + wp_cache_delete( $this->get_id(), 'getpaid_subscriptions' ); |
|
| 162 | + } |
|
| 163 | 163 | |
| 164 | - /** |
|
| 164 | + /** |
|
| 165 | 165 | * Checks if a subscription key is set. |
| 166 | 166 | */ |
| 167 | 167 | public function _isset( $key ) { |
| 168 | 168 | return isset( $this->data[ $key ] ) || method_exists( $this, "get_$key" ); |
| 169 | - } |
|
| 169 | + } |
|
| 170 | 170 | |
| 171 | - /* |
|
| 171 | + /* |
|
| 172 | 172 | |-------------------------------------------------------------------------- |
| 173 | 173 | | CRUD methods |
| 174 | 174 | |-------------------------------------------------------------------------- |
@@ -177,57 +177,57 @@ discard block |
||
| 177 | 177 | | |
| 178 | 178 | */ |
| 179 | 179 | |
| 180 | - /* |
|
| 180 | + /* |
|
| 181 | 181 | |-------------------------------------------------------------------------- |
| 182 | 182 | | Getters |
| 183 | 183 | |-------------------------------------------------------------------------- |
| 184 | 184 | */ |
| 185 | 185 | |
| 186 | - /** |
|
| 187 | - * Get customer id. |
|
| 188 | - * |
|
| 189 | - * @since 1.0.19 |
|
| 190 | - * @param string $context View or edit context. |
|
| 191 | - * @return int |
|
| 192 | - */ |
|
| 193 | - public function get_customer_id( $context = 'view' ) { |
|
| 194 | - return (int) $this->get_prop( 'customer_id', $context ); |
|
| 195 | - } |
|
| 196 | - |
|
| 197 | - /** |
|
| 198 | - * Get customer information. |
|
| 199 | - * |
|
| 200 | - * @since 1.0.19 |
|
| 201 | - * @param string $context View or edit context. |
|
| 202 | - * @return WP_User|false WP_User object on success, false on failure. |
|
| 203 | - */ |
|
| 204 | - public function get_customer( $context = 'view' ) { |
|
| 205 | - return get_userdata( $this->get_customer_id( $context ) ); |
|
| 206 | - } |
|
| 207 | - |
|
| 208 | - /** |
|
| 209 | - * Get parent invoice id. |
|
| 210 | - * |
|
| 211 | - * @since 1.0.19 |
|
| 212 | - * @param string $context View or edit context. |
|
| 213 | - * @return int |
|
| 214 | - */ |
|
| 215 | - public function get_parent_invoice_id( $context = 'view' ) { |
|
| 216 | - return (int) $this->get_prop( 'parent_payment_id', $context ); |
|
| 217 | - } |
|
| 218 | - |
|
| 219 | - /** |
|
| 220 | - * Alias for self::get_parent_invoice_id(). |
|
| 221 | - * |
|
| 222 | - * @since 1.0.19 |
|
| 223 | - * @param string $context View or edit context. |
|
| 224 | - * @return int |
|
| 225 | - */ |
|
| 186 | + /** |
|
| 187 | + * Get customer id. |
|
| 188 | + * |
|
| 189 | + * @since 1.0.19 |
|
| 190 | + * @param string $context View or edit context. |
|
| 191 | + * @return int |
|
| 192 | + */ |
|
| 193 | + public function get_customer_id( $context = 'view' ) { |
|
| 194 | + return (int) $this->get_prop( 'customer_id', $context ); |
|
| 195 | + } |
|
| 196 | + |
|
| 197 | + /** |
|
| 198 | + * Get customer information. |
|
| 199 | + * |
|
| 200 | + * @since 1.0.19 |
|
| 201 | + * @param string $context View or edit context. |
|
| 202 | + * @return WP_User|false WP_User object on success, false on failure. |
|
| 203 | + */ |
|
| 204 | + public function get_customer( $context = 'view' ) { |
|
| 205 | + return get_userdata( $this->get_customer_id( $context ) ); |
|
| 206 | + } |
|
| 207 | + |
|
| 208 | + /** |
|
| 209 | + * Get parent invoice id. |
|
| 210 | + * |
|
| 211 | + * @since 1.0.19 |
|
| 212 | + * @param string $context View or edit context. |
|
| 213 | + * @return int |
|
| 214 | + */ |
|
| 215 | + public function get_parent_invoice_id( $context = 'view' ) { |
|
| 216 | + return (int) $this->get_prop( 'parent_payment_id', $context ); |
|
| 217 | + } |
|
| 218 | + |
|
| 219 | + /** |
|
| 220 | + * Alias for self::get_parent_invoice_id(). |
|
| 221 | + * |
|
| 222 | + * @since 1.0.19 |
|
| 223 | + * @param string $context View or edit context. |
|
| 224 | + * @return int |
|
| 225 | + */ |
|
| 226 | 226 | public function get_parent_payment_id( $context = 'view' ) { |
| 227 | 227 | return $this->get_parent_invoice_id( $context ); |
| 228 | - } |
|
| 228 | + } |
|
| 229 | 229 | |
| 230 | - /** |
|
| 230 | + /** |
|
| 231 | 231 | * Alias for self::get_parent_invoice_id(). |
| 232 | 232 | * |
| 233 | 233 | * @since 1.0.0 |
@@ -237,484 +237,484 @@ discard block |
||
| 237 | 237 | return $this->get_parent_invoice_id( $context ); |
| 238 | 238 | } |
| 239 | 239 | |
| 240 | - /** |
|
| 241 | - * Get parent invoice. |
|
| 242 | - * |
|
| 243 | - * @since 1.0.19 |
|
| 244 | - * @param string $context View or edit context. |
|
| 245 | - * @return WPInv_Invoice |
|
| 246 | - */ |
|
| 247 | - public function get_parent_invoice( $context = 'view' ) { |
|
| 248 | - return new WPInv_Invoice( $this->get_parent_invoice_id( $context ) ); |
|
| 249 | - } |
|
| 250 | - |
|
| 251 | - /** |
|
| 252 | - * Alias for self::get_parent_invoice(). |
|
| 253 | - * |
|
| 254 | - * @since 1.0.19 |
|
| 255 | - * @param string $context View or edit context. |
|
| 256 | - * @return WPInv_Invoice |
|
| 257 | - */ |
|
| 258 | - public function get_parent_payment( $context = 'view' ) { |
|
| 259 | - return $this->get_parent_invoice( $context ); |
|
| 260 | - } |
|
| 261 | - |
|
| 262 | - /** |
|
| 263 | - * Get subscription's product id. |
|
| 264 | - * |
|
| 265 | - * @since 1.0.19 |
|
| 266 | - * @param string $context View or edit context. |
|
| 267 | - * @return int |
|
| 268 | - */ |
|
| 269 | - public function get_product_id( $context = 'view' ) { |
|
| 270 | - return (int) $this->get_prop( 'product_id', $context ); |
|
| 271 | - } |
|
| 272 | - |
|
| 273 | - /** |
|
| 274 | - * Get the subscription product. |
|
| 275 | - * |
|
| 276 | - * @since 1.0.19 |
|
| 277 | - * @param string $context View or edit context. |
|
| 278 | - * @return WPInv_Item |
|
| 279 | - */ |
|
| 280 | - public function get_product( $context = 'view' ) { |
|
| 281 | - return new WPInv_Item( $this->get_product_id( $context ) ); |
|
| 282 | - } |
|
| 283 | - |
|
| 284 | - /** |
|
| 285 | - * Get parent invoice's gateway. |
|
| 286 | - * |
|
| 287 | - * Here for backwards compatibility. |
|
| 288 | - * |
|
| 289 | - * @since 1.0.19 |
|
| 290 | - * @param string $context View or edit context. |
|
| 291 | - * @return string |
|
| 292 | - */ |
|
| 293 | - public function get_gateway( $context = 'view' ) { |
|
| 294 | - return $this->get_parent_invoice( $context )->get_gateway(); |
|
| 295 | - } |
|
| 296 | - |
|
| 297 | - /** |
|
| 298 | - * Get the period of a renewal. |
|
| 299 | - * |
|
| 300 | - * @since 1.0.19 |
|
| 301 | - * @param string $context View or edit context. |
|
| 302 | - * @return string |
|
| 303 | - */ |
|
| 304 | - public function get_period( $context = 'view' ) { |
|
| 305 | - return $this->get_prop( 'period', $context ); |
|
| 306 | - } |
|
| 307 | - |
|
| 308 | - /** |
|
| 309 | - * Get number of periods each renewal is valid for. |
|
| 310 | - * |
|
| 311 | - * @since 1.0.19 |
|
| 312 | - * @param string $context View or edit context. |
|
| 313 | - * @return int |
|
| 314 | - */ |
|
| 315 | - public function get_frequency( $context = 'view' ) { |
|
| 316 | - return (int) $this->get_prop( 'frequency', $context ); |
|
| 317 | - } |
|
| 318 | - |
|
| 319 | - /** |
|
| 320 | - * Get the initial amount for the subscription. |
|
| 321 | - * |
|
| 322 | - * @since 1.0.19 |
|
| 323 | - * @param string $context View or edit context. |
|
| 324 | - * @return float |
|
| 325 | - */ |
|
| 326 | - public function get_initial_amount( $context = 'view' ) { |
|
| 327 | - return (float) wpinv_sanitize_amount( $this->get_prop( 'initial_amount', $context ) ); |
|
| 328 | - } |
|
| 329 | - |
|
| 330 | - /** |
|
| 331 | - * Get the recurring amount for the subscription. |
|
| 332 | - * |
|
| 333 | - * @since 1.0.19 |
|
| 334 | - * @param string $context View or edit context. |
|
| 335 | - * @return float |
|
| 336 | - */ |
|
| 337 | - public function get_recurring_amount( $context = 'view' ) { |
|
| 338 | - return (float) wpinv_sanitize_amount( $this->get_prop( 'recurring_amount', $context ) ); |
|
| 339 | - } |
|
| 340 | - |
|
| 341 | - /** |
|
| 342 | - * Get number of times that this subscription can be renewed. |
|
| 343 | - * |
|
| 344 | - * @since 1.0.19 |
|
| 345 | - * @param string $context View or edit context. |
|
| 346 | - * @return int |
|
| 347 | - */ |
|
| 348 | - public function get_bill_times( $context = 'view' ) { |
|
| 349 | - return (int) $this->get_prop( 'bill_times', $context ); |
|
| 350 | - } |
|
| 351 | - |
|
| 352 | - /** |
|
| 353 | - * Get transaction id of this subscription's parent invoice. |
|
| 354 | - * |
|
| 355 | - * @since 1.0.19 |
|
| 356 | - * @param string $context View or edit context. |
|
| 357 | - * @return string |
|
| 358 | - */ |
|
| 359 | - public function get_transaction_id( $context = 'view' ) { |
|
| 360 | - return $this->get_prop( 'transaction_id', $context ); |
|
| 361 | - } |
|
| 362 | - |
|
| 363 | - /** |
|
| 364 | - * Get the date that the subscription was created. |
|
| 365 | - * |
|
| 366 | - * @since 1.0.19 |
|
| 367 | - * @param string $context View or edit context. |
|
| 368 | - * @return string |
|
| 369 | - */ |
|
| 370 | - public function get_created( $context = 'view' ) { |
|
| 371 | - return $this->get_prop( 'created', $context ); |
|
| 372 | - } |
|
| 373 | - |
|
| 374 | - /** |
|
| 375 | - * Alias for self::get_created(). |
|
| 376 | - * |
|
| 377 | - * @since 1.0.19 |
|
| 378 | - * @param string $context View or edit context. |
|
| 379 | - * @return string |
|
| 380 | - */ |
|
| 381 | - public function get_date_created( $context = 'view' ) { |
|
| 382 | - return $this->get_created( $context ); |
|
| 383 | - } |
|
| 384 | - |
|
| 385 | - /** |
|
| 386 | - * Retrieves the creation date in a timestamp |
|
| 387 | - * |
|
| 388 | - * @since 1.0.0 |
|
| 389 | - * @return int |
|
| 390 | - */ |
|
| 391 | - public function get_time_created() { |
|
| 392 | - $created = $this->get_date_created(); |
|
| 393 | - return empty( $created ) ? current_time( 'timestamp' ) : strtotime( $created, current_time( 'timestamp' ) ); |
|
| 394 | - } |
|
| 395 | - |
|
| 396 | - /** |
|
| 397 | - * Get GMT date when the subscription was created. |
|
| 398 | - * |
|
| 399 | - * @since 1.0.19 |
|
| 400 | - * @param string $context View or edit context. |
|
| 401 | - * @return string |
|
| 402 | - */ |
|
| 403 | - public function get_date_created_gmt( $context = 'view' ) { |
|
| 404 | - $date = $this->get_date_created( $context ); |
|
| 240 | + /** |
|
| 241 | + * Get parent invoice. |
|
| 242 | + * |
|
| 243 | + * @since 1.0.19 |
|
| 244 | + * @param string $context View or edit context. |
|
| 245 | + * @return WPInv_Invoice |
|
| 246 | + */ |
|
| 247 | + public function get_parent_invoice( $context = 'view' ) { |
|
| 248 | + return new WPInv_Invoice( $this->get_parent_invoice_id( $context ) ); |
|
| 249 | + } |
|
| 250 | + |
|
| 251 | + /** |
|
| 252 | + * Alias for self::get_parent_invoice(). |
|
| 253 | + * |
|
| 254 | + * @since 1.0.19 |
|
| 255 | + * @param string $context View or edit context. |
|
| 256 | + * @return WPInv_Invoice |
|
| 257 | + */ |
|
| 258 | + public function get_parent_payment( $context = 'view' ) { |
|
| 259 | + return $this->get_parent_invoice( $context ); |
|
| 260 | + } |
|
| 261 | + |
|
| 262 | + /** |
|
| 263 | + * Get subscription's product id. |
|
| 264 | + * |
|
| 265 | + * @since 1.0.19 |
|
| 266 | + * @param string $context View or edit context. |
|
| 267 | + * @return int |
|
| 268 | + */ |
|
| 269 | + public function get_product_id( $context = 'view' ) { |
|
| 270 | + return (int) $this->get_prop( 'product_id', $context ); |
|
| 271 | + } |
|
| 272 | + |
|
| 273 | + /** |
|
| 274 | + * Get the subscription product. |
|
| 275 | + * |
|
| 276 | + * @since 1.0.19 |
|
| 277 | + * @param string $context View or edit context. |
|
| 278 | + * @return WPInv_Item |
|
| 279 | + */ |
|
| 280 | + public function get_product( $context = 'view' ) { |
|
| 281 | + return new WPInv_Item( $this->get_product_id( $context ) ); |
|
| 282 | + } |
|
| 283 | + |
|
| 284 | + /** |
|
| 285 | + * Get parent invoice's gateway. |
|
| 286 | + * |
|
| 287 | + * Here for backwards compatibility. |
|
| 288 | + * |
|
| 289 | + * @since 1.0.19 |
|
| 290 | + * @param string $context View or edit context. |
|
| 291 | + * @return string |
|
| 292 | + */ |
|
| 293 | + public function get_gateway( $context = 'view' ) { |
|
| 294 | + return $this->get_parent_invoice( $context )->get_gateway(); |
|
| 295 | + } |
|
| 296 | + |
|
| 297 | + /** |
|
| 298 | + * Get the period of a renewal. |
|
| 299 | + * |
|
| 300 | + * @since 1.0.19 |
|
| 301 | + * @param string $context View or edit context. |
|
| 302 | + * @return string |
|
| 303 | + */ |
|
| 304 | + public function get_period( $context = 'view' ) { |
|
| 305 | + return $this->get_prop( 'period', $context ); |
|
| 306 | + } |
|
| 307 | + |
|
| 308 | + /** |
|
| 309 | + * Get number of periods each renewal is valid for. |
|
| 310 | + * |
|
| 311 | + * @since 1.0.19 |
|
| 312 | + * @param string $context View or edit context. |
|
| 313 | + * @return int |
|
| 314 | + */ |
|
| 315 | + public function get_frequency( $context = 'view' ) { |
|
| 316 | + return (int) $this->get_prop( 'frequency', $context ); |
|
| 317 | + } |
|
| 318 | + |
|
| 319 | + /** |
|
| 320 | + * Get the initial amount for the subscription. |
|
| 321 | + * |
|
| 322 | + * @since 1.0.19 |
|
| 323 | + * @param string $context View or edit context. |
|
| 324 | + * @return float |
|
| 325 | + */ |
|
| 326 | + public function get_initial_amount( $context = 'view' ) { |
|
| 327 | + return (float) wpinv_sanitize_amount( $this->get_prop( 'initial_amount', $context ) ); |
|
| 328 | + } |
|
| 329 | + |
|
| 330 | + /** |
|
| 331 | + * Get the recurring amount for the subscription. |
|
| 332 | + * |
|
| 333 | + * @since 1.0.19 |
|
| 334 | + * @param string $context View or edit context. |
|
| 335 | + * @return float |
|
| 336 | + */ |
|
| 337 | + public function get_recurring_amount( $context = 'view' ) { |
|
| 338 | + return (float) wpinv_sanitize_amount( $this->get_prop( 'recurring_amount', $context ) ); |
|
| 339 | + } |
|
| 340 | + |
|
| 341 | + /** |
|
| 342 | + * Get number of times that this subscription can be renewed. |
|
| 343 | + * |
|
| 344 | + * @since 1.0.19 |
|
| 345 | + * @param string $context View or edit context. |
|
| 346 | + * @return int |
|
| 347 | + */ |
|
| 348 | + public function get_bill_times( $context = 'view' ) { |
|
| 349 | + return (int) $this->get_prop( 'bill_times', $context ); |
|
| 350 | + } |
|
| 351 | + |
|
| 352 | + /** |
|
| 353 | + * Get transaction id of this subscription's parent invoice. |
|
| 354 | + * |
|
| 355 | + * @since 1.0.19 |
|
| 356 | + * @param string $context View or edit context. |
|
| 357 | + * @return string |
|
| 358 | + */ |
|
| 359 | + public function get_transaction_id( $context = 'view' ) { |
|
| 360 | + return $this->get_prop( 'transaction_id', $context ); |
|
| 361 | + } |
|
| 362 | + |
|
| 363 | + /** |
|
| 364 | + * Get the date that the subscription was created. |
|
| 365 | + * |
|
| 366 | + * @since 1.0.19 |
|
| 367 | + * @param string $context View or edit context. |
|
| 368 | + * @return string |
|
| 369 | + */ |
|
| 370 | + public function get_created( $context = 'view' ) { |
|
| 371 | + return $this->get_prop( 'created', $context ); |
|
| 372 | + } |
|
| 373 | + |
|
| 374 | + /** |
|
| 375 | + * Alias for self::get_created(). |
|
| 376 | + * |
|
| 377 | + * @since 1.0.19 |
|
| 378 | + * @param string $context View or edit context. |
|
| 379 | + * @return string |
|
| 380 | + */ |
|
| 381 | + public function get_date_created( $context = 'view' ) { |
|
| 382 | + return $this->get_created( $context ); |
|
| 383 | + } |
|
| 384 | + |
|
| 385 | + /** |
|
| 386 | + * Retrieves the creation date in a timestamp |
|
| 387 | + * |
|
| 388 | + * @since 1.0.0 |
|
| 389 | + * @return int |
|
| 390 | + */ |
|
| 391 | + public function get_time_created() { |
|
| 392 | + $created = $this->get_date_created(); |
|
| 393 | + return empty( $created ) ? current_time( 'timestamp' ) : strtotime( $created, current_time( 'timestamp' ) ); |
|
| 394 | + } |
|
| 395 | + |
|
| 396 | + /** |
|
| 397 | + * Get GMT date when the subscription was created. |
|
| 398 | + * |
|
| 399 | + * @since 1.0.19 |
|
| 400 | + * @param string $context View or edit context. |
|
| 401 | + * @return string |
|
| 402 | + */ |
|
| 403 | + public function get_date_created_gmt( $context = 'view' ) { |
|
| 404 | + $date = $this->get_date_created( $context ); |
|
| 405 | + |
|
| 406 | + if ( $date ) { |
|
| 407 | + $date = get_gmt_from_date( $date ); |
|
| 408 | + } |
|
| 409 | + return $date; |
|
| 410 | + } |
|
| 411 | + |
|
| 412 | + /** |
|
| 413 | + * Get the date that the subscription will renew. |
|
| 414 | + * |
|
| 415 | + * @since 1.0.19 |
|
| 416 | + * @param string $context View or edit context. |
|
| 417 | + * @return string |
|
| 418 | + */ |
|
| 419 | + public function get_next_renewal_date( $context = 'view' ) { |
|
| 420 | + return $this->get_prop( 'expiration', $context ); |
|
| 421 | + } |
|
| 422 | + |
|
| 423 | + /** |
|
| 424 | + * Alias for self::get_next_renewal_date(). |
|
| 425 | + * |
|
| 426 | + * @since 1.0.19 |
|
| 427 | + * @param string $context View or edit context. |
|
| 428 | + * @return string |
|
| 429 | + */ |
|
| 430 | + public function get_expiration( $context = 'view' ) { |
|
| 431 | + return $this->get_next_renewal_date( $context ); |
|
| 432 | + } |
|
| 433 | + |
|
| 434 | + /** |
|
| 435 | + * Retrieves the expiration date in a timestamp |
|
| 436 | + * |
|
| 437 | + * @since 1.0.0 |
|
| 438 | + * @return int |
|
| 439 | + */ |
|
| 440 | + public function get_expiration_time() { |
|
| 441 | + $expiration = $this->get_expiration(); |
|
| 442 | + |
|
| 443 | + if ( empty( $expiration ) || '0000-00-00 00:00:00' == $expiration ) { |
|
| 444 | + return current_time( 'timestamp' ); |
|
| 445 | + } |
|
| 446 | + |
|
| 447 | + $expiration = strtotime( $expiration, current_time( 'timestamp' ) ); |
|
| 448 | + return $expiration < current_time( 'timestamp' ) ? current_time( 'timestamp' ) : $expiration; |
|
| 449 | + } |
|
| 450 | + |
|
| 451 | + /** |
|
| 452 | + * Get GMT date when the subscription will renew. |
|
| 453 | + * |
|
| 454 | + * @since 1.0.19 |
|
| 455 | + * @param string $context View or edit context. |
|
| 456 | + * @return string |
|
| 457 | + */ |
|
| 458 | + public function get_next_renewal_date_gmt( $context = 'view' ) { |
|
| 459 | + $date = $this->get_next_renewal_date( $context ); |
|
| 460 | + |
|
| 461 | + if ( $date ) { |
|
| 462 | + $date = get_gmt_from_date( $date ); |
|
| 463 | + } |
|
| 464 | + return $date; |
|
| 465 | + } |
|
| 466 | + |
|
| 467 | + /** |
|
| 468 | + * Get the subscription's trial period. |
|
| 469 | + * |
|
| 470 | + * @since 1.0.19 |
|
| 471 | + * @param string $context View or edit context. |
|
| 472 | + * @return string |
|
| 473 | + */ |
|
| 474 | + public function get_trial_period( $context = 'view' ) { |
|
| 475 | + return $this->get_prop( 'trial_period', $context ); |
|
| 476 | + } |
|
| 477 | + |
|
| 478 | + /** |
|
| 479 | + * Get the subscription's status. |
|
| 480 | + * |
|
| 481 | + * @since 1.0.19 |
|
| 482 | + * @param string $context View or edit context. |
|
| 483 | + * @return string |
|
| 484 | + */ |
|
| 485 | + public function get_status( $context = 'view' ) { |
|
| 486 | + return $this->get_prop( 'status', $context ); |
|
| 487 | + } |
|
| 488 | + |
|
| 489 | + /** |
|
| 490 | + * Get the subscription's profile id. |
|
| 491 | + * |
|
| 492 | + * @since 1.0.19 |
|
| 493 | + * @param string $context View or edit context. |
|
| 494 | + * @return string |
|
| 495 | + */ |
|
| 496 | + public function get_profile_id( $context = 'view' ) { |
|
| 497 | + return $this->get_prop( 'profile_id', $context ); |
|
| 498 | + } |
|
| 499 | + |
|
| 500 | + /* |
|
| 501 | + |-------------------------------------------------------------------------- |
|
| 502 | + | Setters |
|
| 503 | + |-------------------------------------------------------------------------- |
|
| 504 | + */ |
|
| 505 | + |
|
| 506 | + /** |
|
| 507 | + * Set customer id. |
|
| 508 | + * |
|
| 509 | + * @since 1.0.19 |
|
| 510 | + * @param int $value The customer's id. |
|
| 511 | + */ |
|
| 512 | + public function set_customer_id( $value ) { |
|
| 513 | + $this->set_prop( 'customer_id', (int) $value ); |
|
| 514 | + } |
|
| 515 | + |
|
| 516 | + /** |
|
| 517 | + * Set parent invoice id. |
|
| 518 | + * |
|
| 519 | + * @since 1.0.19 |
|
| 520 | + * @param int $value The parent invoice id. |
|
| 521 | + */ |
|
| 522 | + public function set_parent_invoice_id( $value ) { |
|
| 523 | + $this->set_prop( 'parent_payment_id', (int) $value ); |
|
| 524 | + } |
|
| 525 | + |
|
| 526 | + /** |
|
| 527 | + * Alias for self::set_parent_invoice_id(). |
|
| 528 | + * |
|
| 529 | + * @since 1.0.19 |
|
| 530 | + * @param int $value The parent invoice id. |
|
| 531 | + */ |
|
| 532 | + public function set_parent_payment_id( $value ) { |
|
| 533 | + $this->set_parent_invoice_id( $value ); |
|
| 534 | + } |
|
| 535 | + |
|
| 536 | + /** |
|
| 537 | + * Alias for self::set_parent_invoice_id(). |
|
| 538 | + * |
|
| 539 | + * @since 1.0.19 |
|
| 540 | + * @param int $value The parent invoice id. |
|
| 541 | + */ |
|
| 542 | + public function set_original_payment_id( $value ) { |
|
| 543 | + $this->set_parent_invoice_id( $value ); |
|
| 544 | + } |
|
| 545 | + |
|
| 546 | + /** |
|
| 547 | + * Set subscription's product id. |
|
| 548 | + * |
|
| 549 | + * @since 1.0.19 |
|
| 550 | + * @param int $value The subscription product id. |
|
| 551 | + */ |
|
| 552 | + public function set_product_id( $value ) { |
|
| 553 | + $this->set_prop( 'product_id', (int) $value ); |
|
| 554 | + } |
|
| 555 | + |
|
| 556 | + /** |
|
| 557 | + * Set the period of a renewal. |
|
| 558 | + * |
|
| 559 | + * @since 1.0.19 |
|
| 560 | + * @param string $value The renewal period. |
|
| 561 | + */ |
|
| 562 | + public function set_period( $value ) { |
|
| 563 | + $this->set_prop( 'period', $value ); |
|
| 564 | + } |
|
| 565 | + |
|
| 566 | + /** |
|
| 567 | + * Set number of periods each renewal is valid for. |
|
| 568 | + * |
|
| 569 | + * @since 1.0.19 |
|
| 570 | + * @param int $value The subscription frequency. |
|
| 571 | + */ |
|
| 572 | + public function set_frequency( $value ) { |
|
| 573 | + $value = empty( $value ) ? 1 : (int) $value; |
|
| 574 | + $this->set_prop( 'frequency', absint( $value ) ); |
|
| 575 | + } |
|
| 576 | + |
|
| 577 | + /** |
|
| 578 | + * Set the initial amount for the subscription. |
|
| 579 | + * |
|
| 580 | + * @since 1.0.19 |
|
| 581 | + * @param float $value The initial subcription amount. |
|
| 582 | + */ |
|
| 583 | + public function set_initial_amount( $value ) { |
|
| 584 | + $this->set_prop( 'initial_amount', wpinv_sanitize_amount( $value ) ); |
|
| 585 | + } |
|
| 586 | + |
|
| 587 | + /** |
|
| 588 | + * Set the recurring amount for the subscription. |
|
| 589 | + * |
|
| 590 | + * @since 1.0.19 |
|
| 591 | + * @param float $value The recurring subcription amount. |
|
| 592 | + */ |
|
| 593 | + public function set_recurring_amount( $value ) { |
|
| 594 | + $this->set_prop( 'recurring_amount', wpinv_sanitize_amount( $value ) ); |
|
| 595 | + } |
|
| 596 | + |
|
| 597 | + /** |
|
| 598 | + * Set number of times that this subscription can be renewed. |
|
| 599 | + * |
|
| 600 | + * @since 1.0.19 |
|
| 601 | + * @param int $value Bill times. |
|
| 602 | + */ |
|
| 603 | + public function set_bill_times( $value ) { |
|
| 604 | + $this->set_prop( 'bill_times', (int) $value ); |
|
| 605 | + } |
|
| 606 | + |
|
| 607 | + /** |
|
| 608 | + * Get transaction id of this subscription's parent invoice. |
|
| 609 | + * |
|
| 610 | + * @since 1.0.19 |
|
| 611 | + * @param string $value Bill times. |
|
| 612 | + */ |
|
| 613 | + public function set_transaction_id( $value ) { |
|
| 614 | + $this->set_prop( 'transaction_id', sanitize_text_field( $value ) ); |
|
| 615 | + } |
|
| 616 | + |
|
| 617 | + /** |
|
| 618 | + * Set date when this subscription started. |
|
| 619 | + * |
|
| 620 | + * @since 1.0.19 |
|
| 621 | + * @param string $value strtotime compliant date. |
|
| 622 | + */ |
|
| 623 | + public function set_created( $value ) { |
|
| 624 | + $date = strtotime( $value ); |
|
| 405 | 625 | |
| 406 | - if ( $date ) { |
|
| 407 | - $date = get_gmt_from_date( $date ); |
|
| 626 | + if ( $date && $value !== '0000-00-00 00:00:00' ) { |
|
| 627 | + $this->set_prop( 'created', date( 'Y-m-d H:i:s', $date ) ); |
|
| 628 | + return; |
|
| 408 | 629 | } |
| 409 | - return $date; |
|
| 410 | - } |
|
| 411 | - |
|
| 412 | - /** |
|
| 413 | - * Get the date that the subscription will renew. |
|
| 414 | - * |
|
| 415 | - * @since 1.0.19 |
|
| 416 | - * @param string $context View or edit context. |
|
| 417 | - * @return string |
|
| 418 | - */ |
|
| 419 | - public function get_next_renewal_date( $context = 'view' ) { |
|
| 420 | - return $this->get_prop( 'expiration', $context ); |
|
| 421 | - } |
|
| 422 | - |
|
| 423 | - /** |
|
| 424 | - * Alias for self::get_next_renewal_date(). |
|
| 425 | - * |
|
| 426 | - * @since 1.0.19 |
|
| 427 | - * @param string $context View or edit context. |
|
| 428 | - * @return string |
|
| 429 | - */ |
|
| 430 | - public function get_expiration( $context = 'view' ) { |
|
| 431 | - return $this->get_next_renewal_date( $context ); |
|
| 432 | - } |
|
| 433 | - |
|
| 434 | - /** |
|
| 435 | - * Retrieves the expiration date in a timestamp |
|
| 436 | - * |
|
| 437 | - * @since 1.0.0 |
|
| 438 | - * @return int |
|
| 439 | - */ |
|
| 440 | - public function get_expiration_time() { |
|
| 441 | - $expiration = $this->get_expiration(); |
|
| 442 | - |
|
| 443 | - if ( empty( $expiration ) || '0000-00-00 00:00:00' == $expiration ) { |
|
| 444 | - return current_time( 'timestamp' ); |
|
| 445 | - } |
|
| 446 | - |
|
| 447 | - $expiration = strtotime( $expiration, current_time( 'timestamp' ) ); |
|
| 448 | - return $expiration < current_time( 'timestamp' ) ? current_time( 'timestamp' ) : $expiration; |
|
| 449 | - } |
|
| 450 | - |
|
| 451 | - /** |
|
| 452 | - * Get GMT date when the subscription will renew. |
|
| 453 | - * |
|
| 454 | - * @since 1.0.19 |
|
| 455 | - * @param string $context View or edit context. |
|
| 456 | - * @return string |
|
| 457 | - */ |
|
| 458 | - public function get_next_renewal_date_gmt( $context = 'view' ) { |
|
| 459 | - $date = $this->get_next_renewal_date( $context ); |
|
| 460 | 630 | |
| 461 | - if ( $date ) { |
|
| 462 | - $date = get_gmt_from_date( $date ); |
|
| 463 | - } |
|
| 464 | - return $date; |
|
| 465 | - } |
|
| 466 | - |
|
| 467 | - /** |
|
| 468 | - * Get the subscription's trial period. |
|
| 469 | - * |
|
| 470 | - * @since 1.0.19 |
|
| 471 | - * @param string $context View or edit context. |
|
| 472 | - * @return string |
|
| 473 | - */ |
|
| 474 | - public function get_trial_period( $context = 'view' ) { |
|
| 475 | - return $this->get_prop( 'trial_period', $context ); |
|
| 476 | - } |
|
| 477 | - |
|
| 478 | - /** |
|
| 479 | - * Get the subscription's status. |
|
| 480 | - * |
|
| 481 | - * @since 1.0.19 |
|
| 482 | - * @param string $context View or edit context. |
|
| 483 | - * @return string |
|
| 484 | - */ |
|
| 485 | - public function get_status( $context = 'view' ) { |
|
| 486 | - return $this->get_prop( 'status', $context ); |
|
| 487 | - } |
|
| 488 | - |
|
| 489 | - /** |
|
| 490 | - * Get the subscription's profile id. |
|
| 491 | - * |
|
| 492 | - * @since 1.0.19 |
|
| 493 | - * @param string $context View or edit context. |
|
| 494 | - * @return string |
|
| 495 | - */ |
|
| 496 | - public function get_profile_id( $context = 'view' ) { |
|
| 497 | - return $this->get_prop( 'profile_id', $context ); |
|
| 498 | - } |
|
| 499 | - |
|
| 500 | - /* |
|
| 501 | - |-------------------------------------------------------------------------- |
|
| 502 | - | Setters |
|
| 503 | - |-------------------------------------------------------------------------- |
|
| 504 | - */ |
|
| 631 | + $this->set_prop( 'created', '' ); |
|
| 505 | 632 | |
| 506 | - /** |
|
| 507 | - * Set customer id. |
|
| 508 | - * |
|
| 509 | - * @since 1.0.19 |
|
| 510 | - * @param int $value The customer's id. |
|
| 511 | - */ |
|
| 512 | - public function set_customer_id( $value ) { |
|
| 513 | - $this->set_prop( 'customer_id', (int) $value ); |
|
| 514 | - } |
|
| 515 | - |
|
| 516 | - /** |
|
| 517 | - * Set parent invoice id. |
|
| 518 | - * |
|
| 519 | - * @since 1.0.19 |
|
| 520 | - * @param int $value The parent invoice id. |
|
| 521 | - */ |
|
| 522 | - public function set_parent_invoice_id( $value ) { |
|
| 523 | - $this->set_prop( 'parent_payment_id', (int) $value ); |
|
| 524 | - } |
|
| 525 | - |
|
| 526 | - /** |
|
| 527 | - * Alias for self::set_parent_invoice_id(). |
|
| 528 | - * |
|
| 529 | - * @since 1.0.19 |
|
| 530 | - * @param int $value The parent invoice id. |
|
| 531 | - */ |
|
| 532 | - public function set_parent_payment_id( $value ) { |
|
| 533 | - $this->set_parent_invoice_id( $value ); |
|
| 534 | - } |
|
| 633 | + } |
|
| 535 | 634 | |
| 536 | - /** |
|
| 537 | - * Alias for self::set_parent_invoice_id(). |
|
| 635 | + /** |
|
| 636 | + * Alias for self::set_created(). |
|
| 538 | 637 | * |
| 539 | 638 | * @since 1.0.19 |
| 540 | - * @param int $value The parent invoice id. |
|
| 639 | + * @param string $value strtotime compliant date. |
|
| 541 | 640 | */ |
| 542 | - public function set_original_payment_id( $value ) { |
|
| 543 | - $this->set_parent_invoice_id( $value ); |
|
| 544 | - } |
|
| 545 | - |
|
| 546 | - /** |
|
| 547 | - * Set subscription's product id. |
|
| 548 | - * |
|
| 549 | - * @since 1.0.19 |
|
| 550 | - * @param int $value The subscription product id. |
|
| 551 | - */ |
|
| 552 | - public function set_product_id( $value ) { |
|
| 553 | - $this->set_prop( 'product_id', (int) $value ); |
|
| 554 | - } |
|
| 555 | - |
|
| 556 | - /** |
|
| 557 | - * Set the period of a renewal. |
|
| 558 | - * |
|
| 559 | - * @since 1.0.19 |
|
| 560 | - * @param string $value The renewal period. |
|
| 561 | - */ |
|
| 562 | - public function set_period( $value ) { |
|
| 563 | - $this->set_prop( 'period', $value ); |
|
| 564 | - } |
|
| 565 | - |
|
| 566 | - /** |
|
| 567 | - * Set number of periods each renewal is valid for. |
|
| 568 | - * |
|
| 569 | - * @since 1.0.19 |
|
| 570 | - * @param int $value The subscription frequency. |
|
| 571 | - */ |
|
| 572 | - public function set_frequency( $value ) { |
|
| 573 | - $value = empty( $value ) ? 1 : (int) $value; |
|
| 574 | - $this->set_prop( 'frequency', absint( $value ) ); |
|
| 575 | - } |
|
| 576 | - |
|
| 577 | - /** |
|
| 578 | - * Set the initial amount for the subscription. |
|
| 579 | - * |
|
| 580 | - * @since 1.0.19 |
|
| 581 | - * @param float $value The initial subcription amount. |
|
| 582 | - */ |
|
| 583 | - public function set_initial_amount( $value ) { |
|
| 584 | - $this->set_prop( 'initial_amount', wpinv_sanitize_amount( $value ) ); |
|
| 585 | - } |
|
| 586 | - |
|
| 587 | - /** |
|
| 588 | - * Set the recurring amount for the subscription. |
|
| 589 | - * |
|
| 590 | - * @since 1.0.19 |
|
| 591 | - * @param float $value The recurring subcription amount. |
|
| 592 | - */ |
|
| 593 | - public function set_recurring_amount( $value ) { |
|
| 594 | - $this->set_prop( 'recurring_amount', wpinv_sanitize_amount( $value ) ); |
|
| 595 | - } |
|
| 596 | - |
|
| 597 | - /** |
|
| 598 | - * Set number of times that this subscription can be renewed. |
|
| 599 | - * |
|
| 600 | - * @since 1.0.19 |
|
| 601 | - * @param int $value Bill times. |
|
| 602 | - */ |
|
| 603 | - public function set_bill_times( $value ) { |
|
| 604 | - $this->set_prop( 'bill_times', (int) $value ); |
|
| 605 | - } |
|
| 606 | - |
|
| 607 | - /** |
|
| 608 | - * Get transaction id of this subscription's parent invoice. |
|
| 609 | - * |
|
| 610 | - * @since 1.0.19 |
|
| 611 | - * @param string $value Bill times. |
|
| 612 | - */ |
|
| 613 | - public function set_transaction_id( $value ) { |
|
| 614 | - $this->set_prop( 'transaction_id', sanitize_text_field( $value ) ); |
|
| 615 | - } |
|
| 616 | - |
|
| 617 | - /** |
|
| 618 | - * Set date when this subscription started. |
|
| 619 | - * |
|
| 620 | - * @since 1.0.19 |
|
| 621 | - * @param string $value strtotime compliant date. |
|
| 622 | - */ |
|
| 623 | - public function set_created( $value ) { |
|
| 641 | + public function set_date_created( $value ) { |
|
| 642 | + $this->set_created( $value ); |
|
| 643 | + } |
|
| 644 | + |
|
| 645 | + /** |
|
| 646 | + * Set the date that the subscription will renew. |
|
| 647 | + * |
|
| 648 | + * @since 1.0.19 |
|
| 649 | + * @param string $value strtotime compliant date. |
|
| 650 | + */ |
|
| 651 | + public function set_next_renewal_date( $value ) { |
|
| 624 | 652 | $date = strtotime( $value ); |
| 625 | 653 | |
| 626 | 654 | if ( $date && $value !== '0000-00-00 00:00:00' ) { |
| 627 | - $this->set_prop( 'created', date( 'Y-m-d H:i:s', $date ) ); |
|
| 655 | + $this->set_prop( 'expiration', date( 'Y-m-d H:i:s', $date ) ); |
|
| 628 | 656 | return; |
| 629 | 657 | } |
| 630 | 658 | |
| 631 | - $this->set_prop( 'created', '' ); |
|
| 659 | + $this->set_prop( 'expiration', '' ); |
|
| 632 | 660 | |
| 633 | - } |
|
| 661 | + } |
|
| 634 | 662 | |
| 635 | - /** |
|
| 636 | - * Alias for self::set_created(). |
|
| 637 | - * |
|
| 638 | - * @since 1.0.19 |
|
| 639 | - * @param string $value strtotime compliant date. |
|
| 640 | - */ |
|
| 641 | - public function set_date_created( $value ) { |
|
| 642 | - $this->set_created( $value ); |
|
| 663 | + /** |
|
| 664 | + * Alias for self::set_next_renewal_date(). |
|
| 665 | + * |
|
| 666 | + * @since 1.0.19 |
|
| 667 | + * @param string $value strtotime compliant date. |
|
| 668 | + */ |
|
| 669 | + public function set_expiration( $value ) { |
|
| 670 | + $this->set_next_renewal_date( $value ); |
|
| 643 | 671 | } |
| 644 | 672 | |
| 645 | - /** |
|
| 646 | - * Set the date that the subscription will renew. |
|
| 647 | - * |
|
| 648 | - * @since 1.0.19 |
|
| 649 | - * @param string $value strtotime compliant date. |
|
| 650 | - */ |
|
| 651 | - public function set_next_renewal_date( $value ) { |
|
| 652 | - $date = strtotime( $value ); |
|
| 673 | + /** |
|
| 674 | + * Set the subscription's trial period. |
|
| 675 | + * |
|
| 676 | + * @since 1.0.19 |
|
| 677 | + * @param string $value trial period e.g 1 year. |
|
| 678 | + */ |
|
| 679 | + public function set_trial_period( $value ) { |
|
| 680 | + $this->set_prop( 'trial_period', $value ); |
|
| 681 | + } |
|
| 653 | 682 | |
| 654 | - if ( $date && $value !== '0000-00-00 00:00:00' ) { |
|
| 655 | - $this->set_prop( 'expiration', date( 'Y-m-d H:i:s', $date ) ); |
|
| 683 | + /** |
|
| 684 | + * Set the subscription's status. |
|
| 685 | + * |
|
| 686 | + * @since 1.0.19 |
|
| 687 | + * @param string $new_status New subscription status. |
|
| 688 | + */ |
|
| 689 | + public function set_status( $new_status ) { |
|
| 690 | + |
|
| 691 | + // Abort if this is not a valid status; |
|
| 692 | + if ( ! array_key_exists( $new_status, getpaid_get_subscription_statuses() ) ) { |
|
| 656 | 693 | return; |
| 657 | - } |
|
| 658 | - |
|
| 659 | - $this->set_prop( 'expiration', '' ); |
|
| 660 | - |
|
| 661 | - } |
|
| 662 | - |
|
| 663 | - /** |
|
| 664 | - * Alias for self::set_next_renewal_date(). |
|
| 665 | - * |
|
| 666 | - * @since 1.0.19 |
|
| 667 | - * @param string $value strtotime compliant date. |
|
| 668 | - */ |
|
| 669 | - public function set_expiration( $value ) { |
|
| 670 | - $this->set_next_renewal_date( $value ); |
|
| 671 | - } |
|
| 672 | - |
|
| 673 | - /** |
|
| 674 | - * Set the subscription's trial period. |
|
| 675 | - * |
|
| 676 | - * @since 1.0.19 |
|
| 677 | - * @param string $value trial period e.g 1 year. |
|
| 678 | - */ |
|
| 679 | - public function set_trial_period( $value ) { |
|
| 680 | - $this->set_prop( 'trial_period', $value ); |
|
| 681 | - } |
|
| 682 | - |
|
| 683 | - /** |
|
| 684 | - * Set the subscription's status. |
|
| 685 | - * |
|
| 686 | - * @since 1.0.19 |
|
| 687 | - * @param string $new_status New subscription status. |
|
| 688 | - */ |
|
| 689 | - public function set_status( $new_status ) { |
|
| 690 | - |
|
| 691 | - // Abort if this is not a valid status; |
|
| 692 | - if ( ! array_key_exists( $new_status, getpaid_get_subscription_statuses() ) ) { |
|
| 693 | - return; |
|
| 694 | - } |
|
| 695 | - |
|
| 696 | - $old_status = ! empty( $this->status_transition['from'] ) ? $this->status_transition['from'] : $this->get_status(); |
|
| 697 | - if ( true === $this->object_read && $old_status !== $new_status ) { |
|
| 698 | - $this->status_transition = array( |
|
| 699 | - 'from' => $old_status, |
|
| 700 | - 'to' => $new_status, |
|
| 701 | - ); |
|
| 702 | - } |
|
| 703 | - |
|
| 704 | - $this->set_prop( 'status', $new_status ); |
|
| 705 | - } |
|
| 706 | - |
|
| 707 | - /** |
|
| 708 | - * Set the subscription's (remote) profile id. |
|
| 709 | - * |
|
| 710 | - * @since 1.0.19 |
|
| 711 | - * @param string $value the remote profile id. |
|
| 712 | - */ |
|
| 713 | - public function set_profile_id( $value ) { |
|
| 714 | - $this->set_prop( 'profile_id', sanitize_text_field( $value ) ); |
|
| 715 | - } |
|
| 716 | - |
|
| 717 | - /* |
|
| 694 | + } |
|
| 695 | + |
|
| 696 | + $old_status = ! empty( $this->status_transition['from'] ) ? $this->status_transition['from'] : $this->get_status(); |
|
| 697 | + if ( true === $this->object_read && $old_status !== $new_status ) { |
|
| 698 | + $this->status_transition = array( |
|
| 699 | + 'from' => $old_status, |
|
| 700 | + 'to' => $new_status, |
|
| 701 | + ); |
|
| 702 | + } |
|
| 703 | + |
|
| 704 | + $this->set_prop( 'status', $new_status ); |
|
| 705 | + } |
|
| 706 | + |
|
| 707 | + /** |
|
| 708 | + * Set the subscription's (remote) profile id. |
|
| 709 | + * |
|
| 710 | + * @since 1.0.19 |
|
| 711 | + * @param string $value the remote profile id. |
|
| 712 | + */ |
|
| 713 | + public function set_profile_id( $value ) { |
|
| 714 | + $this->set_prop( 'profile_id', sanitize_text_field( $value ) ); |
|
| 715 | + } |
|
| 716 | + |
|
| 717 | + /* |
|
| 718 | 718 | |-------------------------------------------------------------------------- |
| 719 | 719 | | Boolean methods |
| 720 | 720 | |-------------------------------------------------------------------------- |
@@ -723,55 +723,55 @@ discard block |
||
| 723 | 723 | | |
| 724 | 724 | */ |
| 725 | 725 | |
| 726 | - /** |
|
| 726 | + /** |
|
| 727 | 727 | * Checks if the subscription has a given status. |
| 728 | - * |
|
| 729 | - * @param string|array String or array of strings to check for. |
|
| 730 | - * @return bool |
|
| 728 | + * |
|
| 729 | + * @param string|array String or array of strings to check for. |
|
| 730 | + * @return bool |
|
| 731 | 731 | */ |
| 732 | 732 | public function has_status( $status ) { |
| 733 | 733 | return in_array( $this->get_status(), wpinv_clean( wpinv_parse_list( $status ) ) ); |
| 734 | - } |
|
| 734 | + } |
|
| 735 | 735 | |
| 736 | - /** |
|
| 736 | + /** |
|
| 737 | 737 | * Checks if the subscription has a trial period. |
| 738 | - * |
|
| 739 | - * @return bool |
|
| 738 | + * |
|
| 739 | + * @return bool |
|
| 740 | 740 | */ |
| 741 | 741 | public function has_trial_period() { |
| 742 | - $period = $this->get_trial_period(); |
|
| 742 | + $period = $this->get_trial_period(); |
|
| 743 | 743 | return ! empty( $period ); |
| 744 | - } |
|
| 745 | - |
|
| 746 | - /** |
|
| 747 | - * Is the subscription active? |
|
| 748 | - * |
|
| 749 | - * @return bool |
|
| 750 | - */ |
|
| 751 | - public function is_active() { |
|
| 752 | - return $this->has_status( 'active trialling' ) && ! $this->is_expired(); |
|
| 753 | - } |
|
| 754 | - |
|
| 755 | - /** |
|
| 756 | - * Is the subscription expired? |
|
| 757 | - * |
|
| 758 | - * @return bool |
|
| 759 | - */ |
|
| 760 | - public function is_expired() { |
|
| 761 | - return $this->has_status( 'expired' ) || ( $this->has_status( 'active cancelled trialling' ) && $this->get_expiration_time() < current_time( 'timestamp' ) ); |
|
| 762 | - } |
|
| 763 | - |
|
| 764 | - /** |
|
| 765 | - * Is this the last renewals? |
|
| 766 | - * |
|
| 767 | - * @return bool |
|
| 768 | - */ |
|
| 769 | - public function is_last_renewal() { |
|
| 770 | - $max_bills = $this->get_bill_times(); |
|
| 771 | - return ! empty( $max_bills ) && $max_bills <= $this->get_times_billed(); |
|
| 772 | - } |
|
| 773 | - |
|
| 774 | - /* |
|
| 744 | + } |
|
| 745 | + |
|
| 746 | + /** |
|
| 747 | + * Is the subscription active? |
|
| 748 | + * |
|
| 749 | + * @return bool |
|
| 750 | + */ |
|
| 751 | + public function is_active() { |
|
| 752 | + return $this->has_status( 'active trialling' ) && ! $this->is_expired(); |
|
| 753 | + } |
|
| 754 | + |
|
| 755 | + /** |
|
| 756 | + * Is the subscription expired? |
|
| 757 | + * |
|
| 758 | + * @return bool |
|
| 759 | + */ |
|
| 760 | + public function is_expired() { |
|
| 761 | + return $this->has_status( 'expired' ) || ( $this->has_status( 'active cancelled trialling' ) && $this->get_expiration_time() < current_time( 'timestamp' ) ); |
|
| 762 | + } |
|
| 763 | + |
|
| 764 | + /** |
|
| 765 | + * Is this the last renewals? |
|
| 766 | + * |
|
| 767 | + * @return bool |
|
| 768 | + */ |
|
| 769 | + public function is_last_renewal() { |
|
| 770 | + $max_bills = $this->get_bill_times(); |
|
| 771 | + return ! empty( $max_bills ) && $max_bills <= $this->get_times_billed(); |
|
| 772 | + } |
|
| 773 | + |
|
| 774 | + /* |
|
| 775 | 775 | |-------------------------------------------------------------------------- |
| 776 | 776 | | Additional methods |
| 777 | 777 | |-------------------------------------------------------------------------- |
@@ -780,27 +780,27 @@ discard block |
||
| 780 | 780 | | |
| 781 | 781 | */ |
| 782 | 782 | |
| 783 | - /** |
|
| 784 | - * Backwards compatibilty. |
|
| 785 | - */ |
|
| 786 | - public function create( $data = array() ) { |
|
| 783 | + /** |
|
| 784 | + * Backwards compatibilty. |
|
| 785 | + */ |
|
| 786 | + public function create( $data = array() ) { |
|
| 787 | 787 | |
| 788 | - // Set the properties. |
|
| 789 | - if ( is_array( $data ) ) { |
|
| 790 | - $this->set_props( $data ); |
|
| 791 | - } |
|
| 788 | + // Set the properties. |
|
| 789 | + if ( is_array( $data ) ) { |
|
| 790 | + $this->set_props( $data ); |
|
| 791 | + } |
|
| 792 | 792 | |
| 793 | - // Save the item. |
|
| 794 | - return $this->save(); |
|
| 793 | + // Save the item. |
|
| 794 | + return $this->save(); |
|
| 795 | 795 | |
| 796 | - } |
|
| 796 | + } |
|
| 797 | 797 | |
| 798 | - /** |
|
| 799 | - * Backwards compatibilty. |
|
| 800 | - */ |
|
| 801 | - public function update( $args = array() ) { |
|
| 802 | - return $this->create( $args ); |
|
| 803 | - } |
|
| 798 | + /** |
|
| 799 | + * Backwards compatibilty. |
|
| 800 | + */ |
|
| 801 | + public function update( $args = array() ) { |
|
| 802 | + return $this->create( $args ); |
|
| 803 | + } |
|
| 804 | 804 | |
| 805 | 805 | /** |
| 806 | 806 | * Retrieve renewal payments for a subscription |
@@ -810,22 +810,22 @@ discard block |
||
| 810 | 810 | */ |
| 811 | 811 | public function get_child_payments( $hide_pending = true ) { |
| 812 | 812 | |
| 813 | - $statuses = array( 'publish', 'wpi-processing', 'wpi-renewal' ); |
|
| 813 | + $statuses = array( 'publish', 'wpi-processing', 'wpi-renewal' ); |
|
| 814 | 814 | |
| 815 | - if ( ! $hide_pending ) { |
|
| 816 | - $statuses = array_keys( wpinv_get_invoice_statuses() ); |
|
| 817 | - } |
|
| 815 | + if ( ! $hide_pending ) { |
|
| 816 | + $statuses = array_keys( wpinv_get_invoice_statuses() ); |
|
| 817 | + } |
|
| 818 | 818 | |
| 819 | 819 | return get_posts( |
| 820 | - array( |
|
| 821 | - 'post_parent' => $this->get_parent_payment_id(), |
|
| 822 | - 'numberposts' => -1, |
|
| 823 | - 'post_status' => $statuses, |
|
| 824 | - 'orderby' => 'ID', |
|
| 825 | - 'order' => 'ASC', |
|
| 826 | - 'post_type' => 'wpi_invoice', |
|
| 827 | - ) |
|
| 828 | - ); |
|
| 820 | + array( |
|
| 821 | + 'post_parent' => $this->get_parent_payment_id(), |
|
| 822 | + 'numberposts' => -1, |
|
| 823 | + 'post_status' => $statuses, |
|
| 824 | + 'orderby' => 'ID', |
|
| 825 | + 'order' => 'ASC', |
|
| 826 | + 'post_type' => 'wpi_invoice', |
|
| 827 | + ) |
|
| 828 | + ); |
|
| 829 | 829 | } |
| 830 | 830 | |
| 831 | 831 | /** |
@@ -835,7 +835,7 @@ discard block |
||
| 835 | 835 | * @return int |
| 836 | 836 | */ |
| 837 | 837 | public function get_total_payments() { |
| 838 | - return getpaid_count_subscription_invoices( $this->get_parent_invoice_id(), $this->get_id() ); |
|
| 838 | + return getpaid_count_subscription_invoices( $this->get_parent_invoice_id(), $this->get_id() ); |
|
| 839 | 839 | } |
| 840 | 840 | |
| 841 | 841 | /** |
@@ -859,56 +859,56 @@ discard block |
||
| 859 | 859 | * |
| 860 | 860 | * @since 2.4 |
| 861 | 861 | * @param array $args Array of values for the payment, including amount and transaction ID |
| 862 | - * @param WPInv_Invoice $invoice If adding an existing invoice. |
|
| 862 | + * @param WPInv_Invoice $invoice If adding an existing invoice. |
|
| 863 | 863 | * @return bool |
| 864 | 864 | */ |
| 865 | 865 | public function add_payment( $args = array(), $invoice = false ) { |
| 866 | 866 | |
| 867 | - // Process each payment once. |
|
| 867 | + // Process each payment once. |
|
| 868 | 868 | if ( ! empty( $args['transaction_id'] ) && $this->payment_exists( $args['transaction_id'] ) ) { |
| 869 | 869 | return false; |
| 870 | 870 | } |
| 871 | 871 | |
| 872 | - // Are we creating a new invoice? |
|
| 873 | - if ( empty( $invoice ) ) { |
|
| 874 | - $invoice = $this->create_payment(); |
|
| 872 | + // Are we creating a new invoice? |
|
| 873 | + if ( empty( $invoice ) ) { |
|
| 874 | + $invoice = $this->create_payment(); |
|
| 875 | 875 | |
| 876 | - if ( empty( $invoice ) ) { |
|
| 877 | - return false; |
|
| 878 | - } |
|
| 876 | + if ( empty( $invoice ) ) { |
|
| 877 | + return false; |
|
| 878 | + } |
|
| 879 | 879 | } |
| 880 | 880 | |
| 881 | - $invoice->set_status( 'wpi-renewal' ); |
|
| 881 | + $invoice->set_status( 'wpi-renewal' ); |
|
| 882 | 882 | |
| 883 | - // Maybe set a transaction id. |
|
| 884 | - if ( ! empty( $args['transaction_id'] ) ) { |
|
| 885 | - $invoice->set_transaction_id( $args['transaction_id'] ); |
|
| 886 | - } |
|
| 883 | + // Maybe set a transaction id. |
|
| 884 | + if ( ! empty( $args['transaction_id'] ) ) { |
|
| 885 | + $invoice->set_transaction_id( $args['transaction_id'] ); |
|
| 886 | + } |
|
| 887 | 887 | |
| 888 | - // Set the completed date. |
|
| 889 | - $invoice->set_completed_date( current_time( 'mysql' ) ); |
|
| 888 | + // Set the completed date. |
|
| 889 | + $invoice->set_completed_date( current_time( 'mysql' ) ); |
|
| 890 | 890 | |
| 891 | - // And the gateway. |
|
| 892 | - if ( ! empty( $args['gateway'] ) ) { |
|
| 893 | - $invoice->set_gateway( $args['gateway'] ); |
|
| 894 | - } |
|
| 891 | + // And the gateway. |
|
| 892 | + if ( ! empty( $args['gateway'] ) ) { |
|
| 893 | + $invoice->set_gateway( $args['gateway'] ); |
|
| 894 | + } |
|
| 895 | 895 | |
| 896 | - $invoice->save(); |
|
| 896 | + $invoice->save(); |
|
| 897 | 897 | |
| 898 | - if ( ! $invoice->exists() ) { |
|
| 899 | - return false; |
|
| 900 | - } |
|
| 898 | + if ( ! $invoice->exists() ) { |
|
| 899 | + return false; |
|
| 900 | + } |
|
| 901 | 901 | |
| 902 | - do_action( 'getpaid_after_create_subscription_renewal_invoice', $invoice, $this ); |
|
| 903 | - do_action( 'wpinv_recurring_add_subscription_payment', $invoice, $this ); |
|
| 902 | + do_action( 'getpaid_after_create_subscription_renewal_invoice', $invoice, $this ); |
|
| 903 | + do_action( 'wpinv_recurring_add_subscription_payment', $invoice, $this ); |
|
| 904 | 904 | do_action( 'wpinv_recurring_record_payment', $invoice->get_id(), $this->get_parent_invoice_id(), $invoice->get_recurring_total(), $invoice->get_transaction_id() ); |
| 905 | 905 | |
| 906 | 906 | update_post_meta( $invoice->get_id(), '_wpinv_subscription_id', $this->id ); |
| 907 | 907 | |
| 908 | 908 | return $invoice->get_id(); |
| 909 | - } |
|
| 909 | + } |
|
| 910 | 910 | |
| 911 | - /** |
|
| 911 | + /** |
|
| 912 | 912 | * Creates a new invoice and returns it. |
| 913 | 913 | * |
| 914 | 914 | * @since 1.0.19 |
@@ -916,124 +916,124 @@ discard block |
||
| 916 | 916 | */ |
| 917 | 917 | public function create_payment() { |
| 918 | 918 | |
| 919 | - $parent_invoice = $this->get_parent_payment(); |
|
| 920 | - |
|
| 921 | - if ( ! $parent_invoice->exists() ) { |
|
| 922 | - return false; |
|
| 923 | - } |
|
| 924 | - |
|
| 925 | - // Duplicate the parent invoice. |
|
| 926 | - $invoice = getpaid_duplicate_invoice( $parent_invoice ); |
|
| 927 | - $invoice->set_parent_id( $parent_invoice->get_id() ); |
|
| 928 | - $invoice->set_subscription_id( $this->get_id() ); |
|
| 929 | - $invoice->set_remote_subscription_id( $this->get_profile_id() ); |
|
| 930 | - |
|
| 931 | - // Set invoice items. |
|
| 932 | - $subscription_group = getpaid_get_invoice_subscription_group( $parent_invoice->get_id(), $this->get_id() ); |
|
| 933 | - $allowed_items = empty( $subscription_group ) ? array( $this->get_product_id() ) : array_keys( $subscription_group['items'] ); |
|
| 934 | - $invoice_items = array(); |
|
| 935 | - |
|
| 936 | - foreach ( $invoice->get_items() as $item ) { |
|
| 937 | - if ( in_array( $item->get_id(), $allowed_items ) ) { |
|
| 938 | - $invoice_items[] = $item; |
|
| 939 | - } |
|
| 940 | - } |
|
| 941 | - |
|
| 942 | - $invoice->set_items( $invoice_items ); |
|
| 943 | - |
|
| 944 | - if ( ! empty( $subscription_group['fees'] ) ) { |
|
| 945 | - $invoice->set_fees( $subscription_group['fees'] ); |
|
| 946 | - } |
|
| 947 | - |
|
| 948 | - // Maybe recalculate discount (Pre-GetPaid Fix). |
|
| 949 | - $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
| 950 | - if ( $discount->exists() && $discount->is_recurring() && 0 == $invoice->get_total_discount() ) { |
|
| 951 | - $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
| 952 | - } |
|
| 953 | - |
|
| 954 | - $invoice->recalculate_total(); |
|
| 955 | - $invoice->set_status( 'wpi-pending' ); |
|
| 956 | - $invoice->save(); |
|
| 957 | - |
|
| 958 | - return $invoice->exists() ? $invoice : false; |
|
| 959 | - } |
|
| 960 | - |
|
| 961 | - /** |
|
| 962 | - * Renews or completes a subscription |
|
| 963 | - * |
|
| 964 | - * @since 1.0.0 |
|
| 965 | - * @return int The subscription's id |
|
| 966 | - */ |
|
| 967 | - public function renew() { |
|
| 968 | - |
|
| 969 | - // Complete subscription if applicable |
|
| 970 | - if ( $this->is_last_renewal() ) { |
|
| 971 | - return $this->complete(); |
|
| 972 | - } |
|
| 973 | - |
|
| 974 | - // Calculate new expiration |
|
| 975 | - $frequency = $this->get_frequency(); |
|
| 976 | - $period = $this->get_period(); |
|
| 977 | - $new_expiration = strtotime( "+ $frequency $period", $this->get_expiration_time() ); |
|
| 978 | - |
|
| 979 | - $this->set_expiration( date( 'Y-m-d H:i:s', $new_expiration ) ); |
|
| 980 | - $this->set_status( 'active' ); |
|
| 981 | - $this->save(); |
|
| 982 | - |
|
| 983 | - do_action( 'getpaid_subscription_renewed', $this ); |
|
| 984 | - |
|
| 985 | - return $this->get_id(); |
|
| 986 | - } |
|
| 987 | - |
|
| 988 | - /** |
|
| 989 | - * Marks a subscription as completed |
|
| 990 | - * |
|
| 991 | - * Subscription is completed when the number of payments matches the billing_times field |
|
| 992 | - * |
|
| 993 | - * @since 1.0.0 |
|
| 994 | - * @return int|bool Subscription id or false if the subscription is cancelled. |
|
| 995 | - */ |
|
| 996 | - public function complete() { |
|
| 997 | - |
|
| 998 | - // Only mark a subscription as complete if it's not already cancelled. |
|
| 999 | - if ( $this->has_status( 'cancelled' ) ) { |
|
| 1000 | - return false; |
|
| 1001 | - } |
|
| 1002 | - |
|
| 1003 | - $this->set_status( 'completed' ); |
|
| 1004 | - return $this->save(); |
|
| 1005 | - |
|
| 1006 | - } |
|
| 1007 | - |
|
| 1008 | - /** |
|
| 1009 | - * Marks a subscription as expired |
|
| 1010 | - * |
|
| 1011 | - * @since 1.0.0 |
|
| 1012 | - * @param bool $check_expiration |
|
| 1013 | - * @return int|bool Subscription id or false if $check_expiration is true and expiration date is in the future. |
|
| 1014 | - */ |
|
| 1015 | - public function expire( $check_expiration = false ) { |
|
| 1016 | - |
|
| 1017 | - if ( $check_expiration && $this->get_expiration_time() > current_time( 'timestamp' ) ) { |
|
| 1018 | - // Do not mark as expired since real expiration date is in the future |
|
| 1019 | - return false; |
|
| 1020 | - } |
|
| 1021 | - |
|
| 1022 | - $this->set_status( 'expired' ); |
|
| 1023 | - return $this->save(); |
|
| 1024 | - |
|
| 1025 | - } |
|
| 1026 | - |
|
| 1027 | - /** |
|
| 1028 | - * Marks a subscription as failing |
|
| 1029 | - * |
|
| 1030 | - * @since 2.4.2 |
|
| 1031 | - * @return int Subscription id. |
|
| 1032 | - */ |
|
| 1033 | - public function failing() { |
|
| 1034 | - $this->set_status( 'failing' ); |
|
| 1035 | - return $this->save(); |
|
| 1036 | - } |
|
| 919 | + $parent_invoice = $this->get_parent_payment(); |
|
| 920 | + |
|
| 921 | + if ( ! $parent_invoice->exists() ) { |
|
| 922 | + return false; |
|
| 923 | + } |
|
| 924 | + |
|
| 925 | + // Duplicate the parent invoice. |
|
| 926 | + $invoice = getpaid_duplicate_invoice( $parent_invoice ); |
|
| 927 | + $invoice->set_parent_id( $parent_invoice->get_id() ); |
|
| 928 | + $invoice->set_subscription_id( $this->get_id() ); |
|
| 929 | + $invoice->set_remote_subscription_id( $this->get_profile_id() ); |
|
| 930 | + |
|
| 931 | + // Set invoice items. |
|
| 932 | + $subscription_group = getpaid_get_invoice_subscription_group( $parent_invoice->get_id(), $this->get_id() ); |
|
| 933 | + $allowed_items = empty( $subscription_group ) ? array( $this->get_product_id() ) : array_keys( $subscription_group['items'] ); |
|
| 934 | + $invoice_items = array(); |
|
| 935 | + |
|
| 936 | + foreach ( $invoice->get_items() as $item ) { |
|
| 937 | + if ( in_array( $item->get_id(), $allowed_items ) ) { |
|
| 938 | + $invoice_items[] = $item; |
|
| 939 | + } |
|
| 940 | + } |
|
| 941 | + |
|
| 942 | + $invoice->set_items( $invoice_items ); |
|
| 943 | + |
|
| 944 | + if ( ! empty( $subscription_group['fees'] ) ) { |
|
| 945 | + $invoice->set_fees( $subscription_group['fees'] ); |
|
| 946 | + } |
|
| 947 | + |
|
| 948 | + // Maybe recalculate discount (Pre-GetPaid Fix). |
|
| 949 | + $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
| 950 | + if ( $discount->exists() && $discount->is_recurring() && 0 == $invoice->get_total_discount() ) { |
|
| 951 | + $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
| 952 | + } |
|
| 953 | + |
|
| 954 | + $invoice->recalculate_total(); |
|
| 955 | + $invoice->set_status( 'wpi-pending' ); |
|
| 956 | + $invoice->save(); |
|
| 957 | + |
|
| 958 | + return $invoice->exists() ? $invoice : false; |
|
| 959 | + } |
|
| 960 | + |
|
| 961 | + /** |
|
| 962 | + * Renews or completes a subscription |
|
| 963 | + * |
|
| 964 | + * @since 1.0.0 |
|
| 965 | + * @return int The subscription's id |
|
| 966 | + */ |
|
| 967 | + public function renew() { |
|
| 968 | + |
|
| 969 | + // Complete subscription if applicable |
|
| 970 | + if ( $this->is_last_renewal() ) { |
|
| 971 | + return $this->complete(); |
|
| 972 | + } |
|
| 973 | + |
|
| 974 | + // Calculate new expiration |
|
| 975 | + $frequency = $this->get_frequency(); |
|
| 976 | + $period = $this->get_period(); |
|
| 977 | + $new_expiration = strtotime( "+ $frequency $period", $this->get_expiration_time() ); |
|
| 978 | + |
|
| 979 | + $this->set_expiration( date( 'Y-m-d H:i:s', $new_expiration ) ); |
|
| 980 | + $this->set_status( 'active' ); |
|
| 981 | + $this->save(); |
|
| 982 | + |
|
| 983 | + do_action( 'getpaid_subscription_renewed', $this ); |
|
| 984 | + |
|
| 985 | + return $this->get_id(); |
|
| 986 | + } |
|
| 987 | + |
|
| 988 | + /** |
|
| 989 | + * Marks a subscription as completed |
|
| 990 | + * |
|
| 991 | + * Subscription is completed when the number of payments matches the billing_times field |
|
| 992 | + * |
|
| 993 | + * @since 1.0.0 |
|
| 994 | + * @return int|bool Subscription id or false if the subscription is cancelled. |
|
| 995 | + */ |
|
| 996 | + public function complete() { |
|
| 997 | + |
|
| 998 | + // Only mark a subscription as complete if it's not already cancelled. |
|
| 999 | + if ( $this->has_status( 'cancelled' ) ) { |
|
| 1000 | + return false; |
|
| 1001 | + } |
|
| 1002 | + |
|
| 1003 | + $this->set_status( 'completed' ); |
|
| 1004 | + return $this->save(); |
|
| 1005 | + |
|
| 1006 | + } |
|
| 1007 | + |
|
| 1008 | + /** |
|
| 1009 | + * Marks a subscription as expired |
|
| 1010 | + * |
|
| 1011 | + * @since 1.0.0 |
|
| 1012 | + * @param bool $check_expiration |
|
| 1013 | + * @return int|bool Subscription id or false if $check_expiration is true and expiration date is in the future. |
|
| 1014 | + */ |
|
| 1015 | + public function expire( $check_expiration = false ) { |
|
| 1016 | + |
|
| 1017 | + if ( $check_expiration && $this->get_expiration_time() > current_time( 'timestamp' ) ) { |
|
| 1018 | + // Do not mark as expired since real expiration date is in the future |
|
| 1019 | + return false; |
|
| 1020 | + } |
|
| 1021 | + |
|
| 1022 | + $this->set_status( 'expired' ); |
|
| 1023 | + return $this->save(); |
|
| 1024 | + |
|
| 1025 | + } |
|
| 1026 | + |
|
| 1027 | + /** |
|
| 1028 | + * Marks a subscription as failing |
|
| 1029 | + * |
|
| 1030 | + * @since 2.4.2 |
|
| 1031 | + * @return int Subscription id. |
|
| 1032 | + */ |
|
| 1033 | + public function failing() { |
|
| 1034 | + $this->set_status( 'failing' ); |
|
| 1035 | + return $this->save(); |
|
| 1036 | + } |
|
| 1037 | 1037 | |
| 1038 | 1038 | /** |
| 1039 | 1039 | * Marks a subscription as cancelled |
@@ -1042,19 +1042,19 @@ discard block |
||
| 1042 | 1042 | * @return int Subscription id. |
| 1043 | 1043 | */ |
| 1044 | 1044 | public function cancel() { |
| 1045 | - $this->set_status( 'cancelled' ); |
|
| 1046 | - return $this->save(); |
|
| 1045 | + $this->set_status( 'cancelled' ); |
|
| 1046 | + return $this->save(); |
|
| 1047 | 1047 | } |
| 1048 | 1048 | |
| 1049 | - /** |
|
| 1050 | - * Determines if a subscription can be cancelled both locally and with a payment processor. |
|
| 1051 | - * |
|
| 1052 | - * @since 1.0.0 |
|
| 1053 | - * @return bool |
|
| 1054 | - */ |
|
| 1055 | - public function can_cancel() { |
|
| 1056 | - return apply_filters( 'wpinv_subscription_can_cancel', $this->has_status( $this->get_cancellable_statuses() ), $this ); |
|
| 1057 | - } |
|
| 1049 | + /** |
|
| 1050 | + * Determines if a subscription can be cancelled both locally and with a payment processor. |
|
| 1051 | + * |
|
| 1052 | + * @since 1.0.0 |
|
| 1053 | + * @return bool |
|
| 1054 | + */ |
|
| 1055 | + public function can_cancel() { |
|
| 1056 | + return apply_filters( 'wpinv_subscription_can_cancel', $this->has_status( $this->get_cancellable_statuses() ), $this ); |
|
| 1057 | + } |
|
| 1058 | 1058 | |
| 1059 | 1059 | /** |
| 1060 | 1060 | * Returns an array of subscription statuses that can be cancelled |
@@ -1067,109 +1067,109 @@ discard block |
||
| 1067 | 1067 | return apply_filters( 'wpinv_recurring_cancellable_statuses', array( 'active', 'trialling', 'failing' ) ); |
| 1068 | 1068 | } |
| 1069 | 1069 | |
| 1070 | - /** |
|
| 1071 | - * Retrieves the URL to cancel subscription |
|
| 1072 | - * |
|
| 1073 | - * @since 1.0.0 |
|
| 1074 | - * @return string |
|
| 1075 | - */ |
|
| 1076 | - public function get_cancel_url() { |
|
| 1077 | - $url = getpaid_get_authenticated_action_url( 'subscription_cancel', $this->get_view_url() ); |
|
| 1078 | - return apply_filters( 'wpinv_subscription_cancel_url', $url, $this ); |
|
| 1079 | - } |
|
| 1080 | - |
|
| 1081 | - /** |
|
| 1082 | - * Retrieves the URL to view a subscription |
|
| 1083 | - * |
|
| 1084 | - * @since 1.0.19 |
|
| 1085 | - * @return string |
|
| 1086 | - */ |
|
| 1087 | - public function get_view_url() { |
|
| 1088 | - |
|
| 1089 | - $url = getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ); |
|
| 1090 | - $url = add_query_arg( 'subscription', $this->get_id(), $url ); |
|
| 1091 | - |
|
| 1092 | - return apply_filters( 'getpaid_get_subscription_view_url', $url, $this ); |
|
| 1093 | - } |
|
| 1094 | - |
|
| 1095 | - /** |
|
| 1096 | - * Determines if subscription can be manually renewed |
|
| 1097 | - * |
|
| 1098 | - * This method is filtered by payment gateways in order to return true on subscriptions |
|
| 1099 | - * that can be renewed manually |
|
| 1100 | - * |
|
| 1101 | - * @since 2.5 |
|
| 1102 | - * @return bool |
|
| 1103 | - */ |
|
| 1104 | - public function can_renew() { |
|
| 1105 | - return apply_filters( 'wpinv_subscription_can_renew', true, $this ); |
|
| 1106 | - } |
|
| 1107 | - |
|
| 1108 | - /** |
|
| 1109 | - * Retrieves the URL to renew a subscription |
|
| 1110 | - * |
|
| 1111 | - * @since 2.5 |
|
| 1112 | - * @return string |
|
| 1113 | - */ |
|
| 1114 | - public function get_renew_url() { |
|
| 1115 | - $url = wp_nonce_url( |
|
| 1070 | + /** |
|
| 1071 | + * Retrieves the URL to cancel subscription |
|
| 1072 | + * |
|
| 1073 | + * @since 1.0.0 |
|
| 1074 | + * @return string |
|
| 1075 | + */ |
|
| 1076 | + public function get_cancel_url() { |
|
| 1077 | + $url = getpaid_get_authenticated_action_url( 'subscription_cancel', $this->get_view_url() ); |
|
| 1078 | + return apply_filters( 'wpinv_subscription_cancel_url', $url, $this ); |
|
| 1079 | + } |
|
| 1080 | + |
|
| 1081 | + /** |
|
| 1082 | + * Retrieves the URL to view a subscription |
|
| 1083 | + * |
|
| 1084 | + * @since 1.0.19 |
|
| 1085 | + * @return string |
|
| 1086 | + */ |
|
| 1087 | + public function get_view_url() { |
|
| 1088 | + |
|
| 1089 | + $url = getpaid_get_tab_url( 'gp-subscriptions', get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ); |
|
| 1090 | + $url = add_query_arg( 'subscription', $this->get_id(), $url ); |
|
| 1091 | + |
|
| 1092 | + return apply_filters( 'getpaid_get_subscription_view_url', $url, $this ); |
|
| 1093 | + } |
|
| 1094 | + |
|
| 1095 | + /** |
|
| 1096 | + * Determines if subscription can be manually renewed |
|
| 1097 | + * |
|
| 1098 | + * This method is filtered by payment gateways in order to return true on subscriptions |
|
| 1099 | + * that can be renewed manually |
|
| 1100 | + * |
|
| 1101 | + * @since 2.5 |
|
| 1102 | + * @return bool |
|
| 1103 | + */ |
|
| 1104 | + public function can_renew() { |
|
| 1105 | + return apply_filters( 'wpinv_subscription_can_renew', true, $this ); |
|
| 1106 | + } |
|
| 1107 | + |
|
| 1108 | + /** |
|
| 1109 | + * Retrieves the URL to renew a subscription |
|
| 1110 | + * |
|
| 1111 | + * @since 2.5 |
|
| 1112 | + * @return string |
|
| 1113 | + */ |
|
| 1114 | + public function get_renew_url() { |
|
| 1115 | + $url = wp_nonce_url( |
|
| 1116 | 1116 | add_query_arg( |
| 1117 | 1117 | array( |
| 1118 | - 'getpaid-action' => 'renew_subscription', |
|
| 1119 | - 'sub_id' => $this->get_id, |
|
| 1118 | + 'getpaid-action' => 'renew_subscription', |
|
| 1119 | + 'sub_id' => $this->get_id, |
|
| 1120 | 1120 | ) |
| 1121 | 1121 | ), |
| 1122 | 1122 | 'getpaid-nonce' |
| 1123 | 1123 | ); |
| 1124 | - return apply_filters( 'wpinv_subscription_renew_url', $url, $this ); |
|
| 1125 | - } |
|
| 1126 | - |
|
| 1127 | - /** |
|
| 1128 | - * Determines if subscription can have their payment method updated |
|
| 1129 | - * |
|
| 1130 | - * @since 1.0.0 |
|
| 1131 | - * @return bool |
|
| 1132 | - */ |
|
| 1133 | - public function can_update() { |
|
| 1134 | - return apply_filters( 'wpinv_subscription_can_update', false, $this ); |
|
| 1135 | - } |
|
| 1136 | - |
|
| 1137 | - /** |
|
| 1138 | - * Retrieves the URL to update subscription |
|
| 1139 | - * |
|
| 1140 | - * @since 1.0.0 |
|
| 1141 | - * @return string |
|
| 1142 | - */ |
|
| 1143 | - public function get_update_url() { |
|
| 1144 | - $url = add_query_arg( |
|
| 1124 | + return apply_filters( 'wpinv_subscription_renew_url', $url, $this ); |
|
| 1125 | + } |
|
| 1126 | + |
|
| 1127 | + /** |
|
| 1128 | + * Determines if subscription can have their payment method updated |
|
| 1129 | + * |
|
| 1130 | + * @since 1.0.0 |
|
| 1131 | + * @return bool |
|
| 1132 | + */ |
|
| 1133 | + public function can_update() { |
|
| 1134 | + return apply_filters( 'wpinv_subscription_can_update', false, $this ); |
|
| 1135 | + } |
|
| 1136 | + |
|
| 1137 | + /** |
|
| 1138 | + * Retrieves the URL to update subscription |
|
| 1139 | + * |
|
| 1140 | + * @since 1.0.0 |
|
| 1141 | + * @return string |
|
| 1142 | + */ |
|
| 1143 | + public function get_update_url() { |
|
| 1144 | + $url = add_query_arg( |
|
| 1145 | 1145 | array( |
| 1146 | - 'action' => 'update', |
|
| 1147 | - 'subscription_id' => $this->get_id(), |
|
| 1146 | + 'action' => 'update', |
|
| 1147 | + 'subscription_id' => $this->get_id(), |
|
| 1148 | 1148 | ) |
| 1149 | 1149 | ); |
| 1150 | - return apply_filters( 'wpinv_subscription_update_url', $url, $this ); |
|
| 1151 | - } |
|
| 1152 | - |
|
| 1153 | - /** |
|
| 1154 | - * Retrieves the subscription status label |
|
| 1155 | - * |
|
| 1156 | - * @since 1.0.0 |
|
| 1157 | - * @return string |
|
| 1158 | - */ |
|
| 1159 | - public function get_status_label() { |
|
| 1160 | - return getpaid_get_subscription_status_label( $this->get_status() ); |
|
| 1161 | - } |
|
| 1162 | - |
|
| 1163 | - /** |
|
| 1164 | - * Retrieves the subscription status class |
|
| 1165 | - * |
|
| 1166 | - * @since 1.0.19 |
|
| 1167 | - * @return string |
|
| 1168 | - */ |
|
| 1169 | - public function get_status_class() { |
|
| 1170 | - $statuses = getpaid_get_subscription_status_classes(); |
|
| 1171 | - return isset( $statuses[ $this->get_status() ] ) ? $statuses[ $this->get_status() ] : 'badge-dark'; |
|
| 1172 | - } |
|
| 1150 | + return apply_filters( 'wpinv_subscription_update_url', $url, $this ); |
|
| 1151 | + } |
|
| 1152 | + |
|
| 1153 | + /** |
|
| 1154 | + * Retrieves the subscription status label |
|
| 1155 | + * |
|
| 1156 | + * @since 1.0.0 |
|
| 1157 | + * @return string |
|
| 1158 | + */ |
|
| 1159 | + public function get_status_label() { |
|
| 1160 | + return getpaid_get_subscription_status_label( $this->get_status() ); |
|
| 1161 | + } |
|
| 1162 | + |
|
| 1163 | + /** |
|
| 1164 | + * Retrieves the subscription status class |
|
| 1165 | + * |
|
| 1166 | + * @since 1.0.19 |
|
| 1167 | + * @return string |
|
| 1168 | + */ |
|
| 1169 | + public function get_status_class() { |
|
| 1170 | + $statuses = getpaid_get_subscription_status_classes(); |
|
| 1171 | + return isset( $statuses[ $this->get_status() ] ) ? $statuses[ $this->get_status() ] : 'badge-dark'; |
|
| 1172 | + } |
|
| 1173 | 1173 | |
| 1174 | 1174 | /** |
| 1175 | 1175 | * Retrieves the subscription status label |
@@ -1179,11 +1179,11 @@ discard block |
||
| 1179 | 1179 | */ |
| 1180 | 1180 | public function get_status_label_html() { |
| 1181 | 1181 | |
| 1182 | - $status_label = sanitize_text_field( $this->get_status_label() ); |
|
| 1183 | - $class = esc_attr( $this->get_status_class() ); |
|
| 1184 | - $status = sanitize_html_class( $this->get_status() ); |
|
| 1182 | + $status_label = sanitize_text_field( $this->get_status_label() ); |
|
| 1183 | + $class = esc_attr( $this->get_status_class() ); |
|
| 1184 | + $status = sanitize_html_class( $this->get_status() ); |
|
| 1185 | 1185 | |
| 1186 | - return "<span class='bsui'><span class='badge $class $status'>$status_label</span></span>"; |
|
| 1186 | + return "<span class='bsui'><span class='badge $class $status'>$status_label</span></span>"; |
|
| 1187 | 1187 | } |
| 1188 | 1188 | |
| 1189 | 1189 | /** |
@@ -1194,75 +1194,75 @@ discard block |
||
| 1194 | 1194 | * @return bool |
| 1195 | 1195 | */ |
| 1196 | 1196 | public function payment_exists( $txn_id = '' ) { |
| 1197 | - $invoice_id = WPInv_Invoice::get_invoice_id_by_field( $txn_id, 'transaction_id' ); |
|
| 1197 | + $invoice_id = WPInv_Invoice::get_invoice_id_by_field( $txn_id, 'transaction_id' ); |
|
| 1198 | 1198 | return ! empty( $invoice_id ); |
| 1199 | - } |
|
| 1200 | - |
|
| 1201 | - /** |
|
| 1202 | - * Handle the status transition. |
|
| 1203 | - */ |
|
| 1204 | - protected function status_transition() { |
|
| 1205 | - $status_transition = $this->status_transition; |
|
| 1206 | - |
|
| 1207 | - // Reset status transition variable. |
|
| 1208 | - $this->status_transition = false; |
|
| 1209 | - |
|
| 1210 | - if ( $status_transition ) { |
|
| 1211 | - try { |
|
| 1212 | - |
|
| 1213 | - // Fire a hook for the status change. |
|
| 1214 | - do_action( 'wpinv_subscription_' . $status_transition['to'], $this->get_id(), $this, $status_transition ); |
|
| 1215 | - do_action( 'getpaid_subscription_' . $status_transition['to'], $this, $status_transition ); |
|
| 1216 | - |
|
| 1217 | - if ( ! empty( $status_transition['from'] ) ) { |
|
| 1218 | - |
|
| 1219 | - /* translators: 1: old subscription status 2: new subscription status */ |
|
| 1220 | - $transition_note = sprintf( __( 'Subscription status changed from %1$s to %2$s.', 'invoicing' ), getpaid_get_subscription_status_label( $status_transition['from'] ), getpaid_get_subscription_status_label( $status_transition['to'] ) ); |
|
| 1221 | - |
|
| 1222 | - // Note the transition occurred. |
|
| 1223 | - $this->get_parent_payment()->add_note( $transition_note, false, false, true ); |
|
| 1224 | - |
|
| 1225 | - // Fire another hook. |
|
| 1226 | - do_action( 'getpaid_subscription_status_' . $status_transition['from'] . '_to_' . $status_transition['to'], $this->get_id(), $this ); |
|
| 1227 | - do_action( 'getpaid_subscription_status_changed', $this, $status_transition['from'], $status_transition['to'] ); |
|
| 1228 | - |
|
| 1229 | - } else { |
|
| 1230 | - /* translators: %s: new invoice status */ |
|
| 1231 | - $transition_note = sprintf( __( 'Subscription status set to %s.', 'invoicing' ), getpaid_get_subscription_status_label( $status_transition['to'] ) ); |
|
| 1232 | - |
|
| 1233 | - // Note the transition occurred. |
|
| 1234 | - $this->get_parent_payment()->add_note( $transition_note, false, false, true ); |
|
| 1235 | - |
|
| 1236 | - } |
|
| 1237 | - } catch ( Exception $e ) { |
|
| 1238 | - $this->get_parent_payment()->add_note( __( 'Error during subscription status transition.', 'invoicing' ) . ' ' . $e->getMessage() ); |
|
| 1239 | - } |
|
| 1240 | - } |
|
| 1241 | - |
|
| 1242 | - } |
|
| 1243 | - |
|
| 1244 | - /** |
|
| 1245 | - * Save data to the database. |
|
| 1246 | - * |
|
| 1247 | - * @since 1.0.19 |
|
| 1248 | - * @return int subscription ID |
|
| 1249 | - */ |
|
| 1250 | - public function save() { |
|
| 1251 | - parent::save(); |
|
| 1252 | - $this->status_transition(); |
|
| 1253 | - return $this->get_id(); |
|
| 1254 | - } |
|
| 1255 | - |
|
| 1256 | - /** |
|
| 1257 | - * Activates a subscription. |
|
| 1258 | - * |
|
| 1259 | - * @since 1.0.19 |
|
| 1260 | - * @return int subscription ID |
|
| 1261 | - */ |
|
| 1262 | - public function activate() { |
|
| 1263 | - $status = 'trialling' == $this->get_status() ? 'trialling' : 'active'; |
|
| 1264 | - $this->set_status( $status ); |
|
| 1265 | - return $this->save(); |
|
| 1266 | - } |
|
| 1199 | + } |
|
| 1200 | + |
|
| 1201 | + /** |
|
| 1202 | + * Handle the status transition. |
|
| 1203 | + */ |
|
| 1204 | + protected function status_transition() { |
|
| 1205 | + $status_transition = $this->status_transition; |
|
| 1206 | + |
|
| 1207 | + // Reset status transition variable. |
|
| 1208 | + $this->status_transition = false; |
|
| 1209 | + |
|
| 1210 | + if ( $status_transition ) { |
|
| 1211 | + try { |
|
| 1212 | + |
|
| 1213 | + // Fire a hook for the status change. |
|
| 1214 | + do_action( 'wpinv_subscription_' . $status_transition['to'], $this->get_id(), $this, $status_transition ); |
|
| 1215 | + do_action( 'getpaid_subscription_' . $status_transition['to'], $this, $status_transition ); |
|
| 1216 | + |
|
| 1217 | + if ( ! empty( $status_transition['from'] ) ) { |
|
| 1218 | + |
|
| 1219 | + /* translators: 1: old subscription status 2: new subscription status */ |
|
| 1220 | + $transition_note = sprintf( __( 'Subscription status changed from %1$s to %2$s.', 'invoicing' ), getpaid_get_subscription_status_label( $status_transition['from'] ), getpaid_get_subscription_status_label( $status_transition['to'] ) ); |
|
| 1221 | + |
|
| 1222 | + // Note the transition occurred. |
|
| 1223 | + $this->get_parent_payment()->add_note( $transition_note, false, false, true ); |
|
| 1224 | + |
|
| 1225 | + // Fire another hook. |
|
| 1226 | + do_action( 'getpaid_subscription_status_' . $status_transition['from'] . '_to_' . $status_transition['to'], $this->get_id(), $this ); |
|
| 1227 | + do_action( 'getpaid_subscription_status_changed', $this, $status_transition['from'], $status_transition['to'] ); |
|
| 1228 | + |
|
| 1229 | + } else { |
|
| 1230 | + /* translators: %s: new invoice status */ |
|
| 1231 | + $transition_note = sprintf( __( 'Subscription status set to %s.', 'invoicing' ), getpaid_get_subscription_status_label( $status_transition['to'] ) ); |
|
| 1232 | + |
|
| 1233 | + // Note the transition occurred. |
|
| 1234 | + $this->get_parent_payment()->add_note( $transition_note, false, false, true ); |
|
| 1235 | + |
|
| 1236 | + } |
|
| 1237 | + } catch ( Exception $e ) { |
|
| 1238 | + $this->get_parent_payment()->add_note( __( 'Error during subscription status transition.', 'invoicing' ) . ' ' . $e->getMessage() ); |
|
| 1239 | + } |
|
| 1240 | + } |
|
| 1241 | + |
|
| 1242 | + } |
|
| 1243 | + |
|
| 1244 | + /** |
|
| 1245 | + * Save data to the database. |
|
| 1246 | + * |
|
| 1247 | + * @since 1.0.19 |
|
| 1248 | + * @return int subscription ID |
|
| 1249 | + */ |
|
| 1250 | + public function save() { |
|
| 1251 | + parent::save(); |
|
| 1252 | + $this->status_transition(); |
|
| 1253 | + return $this->get_id(); |
|
| 1254 | + } |
|
| 1255 | + |
|
| 1256 | + /** |
|
| 1257 | + * Activates a subscription. |
|
| 1258 | + * |
|
| 1259 | + * @since 1.0.19 |
|
| 1260 | + * @return int subscription ID |
|
| 1261 | + */ |
|
| 1262 | + public function activate() { |
|
| 1263 | + $status = 'trialling' == $this->get_status() ? 'trialling' : 'active'; |
|
| 1264 | + $this->set_status( $status ); |
|
| 1265 | + return $this->save(); |
|
| 1266 | + } |
|
| 1267 | 1267 | |
| 1268 | 1268 | } |
@@ -109,8 +109,8 @@ discard block |
||
| 109 | 109 | $css = getpaid_get_email_css(); |
| 110 | 110 | |
| 111 | 111 | // include css inliner |
| 112 | - if ( ! class_exists( 'Emogrifier' ) ) { |
|
| 113 | - include_once WPINV_PLUGIN_DIR . 'includes/libraries/class-emogrifier.php'; |
|
| 112 | + if ( ! class_exists( 'Emogrifier' ) ) { |
|
| 113 | + include_once WPINV_PLUGIN_DIR . 'includes/libraries/class-emogrifier.php'; |
|
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | // Inline the css. |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | $message = wpinv_email_style_body( $message ); |
| 190 | 190 | $to = array_merge( wpinv_parse_list( $to ), wpinv_parse_list( $cc ) ); |
| 191 | 191 | |
| 192 | - return $mailer->send( |
|
| 192 | + return $mailer->send( |
|
| 193 | 193 | $to, |
| 194 | 194 | $subject, |
| 195 | 195 | $message, |
@@ -14,70 +14,70 @@ discard block |
||
| 14 | 14 | class WPInv_Ajax { |
| 15 | 15 | |
| 16 | 16 | /** |
| 17 | - * Hook in ajax handlers. |
|
| 18 | - */ |
|
| 19 | - public static function init() { |
|
| 20 | - add_action( 'init', array( __CLASS__, 'define_ajax' ), 0 ); |
|
| 21 | - add_action( 'template_redirect', array( __CLASS__, 'do_wpinv_ajax' ), 0 ); |
|
| 22 | - self::add_ajax_events(); |
|
| 17 | + * Hook in ajax handlers. |
|
| 18 | + */ |
|
| 19 | + public static function init() { |
|
| 20 | + add_action( 'init', array( __CLASS__, 'define_ajax' ), 0 ); |
|
| 21 | + add_action( 'template_redirect', array( __CLASS__, 'do_wpinv_ajax' ), 0 ); |
|
| 22 | + self::add_ajax_events(); |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | /** |
| 26 | - * Set GetPaid AJAX constant and headers. |
|
| 27 | - */ |
|
| 28 | - public static function define_ajax() { |
|
| 29 | - |
|
| 30 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
| 31 | - getpaid_maybe_define_constant( 'DOING_AJAX', true ); |
|
| 32 | - getpaid_maybe_define_constant( 'WPInv_DOING_AJAX', true ); |
|
| 33 | - if ( ! WP_DEBUG || ( WP_DEBUG && ! WP_DEBUG_DISPLAY ) ) { |
|
| 34 | - /** @scrutinizer ignore-unhandled */ @ini_set( 'display_errors', 0 ); |
|
| 35 | - } |
|
| 36 | - $GLOBALS['wpdb']->hide_errors(); |
|
| 37 | - } |
|
| 26 | + * Set GetPaid AJAX constant and headers. |
|
| 27 | + */ |
|
| 28 | + public static function define_ajax() { |
|
| 29 | + |
|
| 30 | + if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
| 31 | + getpaid_maybe_define_constant( 'DOING_AJAX', true ); |
|
| 32 | + getpaid_maybe_define_constant( 'WPInv_DOING_AJAX', true ); |
|
| 33 | + if ( ! WP_DEBUG || ( WP_DEBUG && ! WP_DEBUG_DISPLAY ) ) { |
|
| 34 | + /** @scrutinizer ignore-unhandled */ @ini_set( 'display_errors', 0 ); |
|
| 35 | + } |
|
| 36 | + $GLOBALS['wpdb']->hide_errors(); |
|
| 37 | + } |
|
| 38 | 38 | |
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | /** |
| 42 | - * Send headers for GetPaid Ajax Requests. |
|
| 43 | - * |
|
| 44 | - * @since 1.0.18 |
|
| 45 | - */ |
|
| 46 | - private static function wpinv_ajax_headers() { |
|
| 47 | - if ( ! headers_sent() ) { |
|
| 48 | - send_origin_headers(); |
|
| 49 | - send_nosniff_header(); |
|
| 50 | - nocache_headers(); |
|
| 51 | - header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) ); |
|
| 52 | - header( 'X-Robots-Tag: noindex' ); |
|
| 53 | - status_header( 200 ); |
|
| 54 | - } |
|
| 42 | + * Send headers for GetPaid Ajax Requests. |
|
| 43 | + * |
|
| 44 | + * @since 1.0.18 |
|
| 45 | + */ |
|
| 46 | + private static function wpinv_ajax_headers() { |
|
| 47 | + if ( ! headers_sent() ) { |
|
| 48 | + send_origin_headers(); |
|
| 49 | + send_nosniff_header(); |
|
| 50 | + nocache_headers(); |
|
| 51 | + header( 'Content-Type: text/html; charset=' . get_option( 'blog_charset' ) ); |
|
| 52 | + header( 'X-Robots-Tag: noindex' ); |
|
| 53 | + status_header( 200 ); |
|
| 54 | + } |
|
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | /** |
| 58 | - * Check for GetPaid Ajax request and fire action. |
|
| 59 | - */ |
|
| 60 | - public static function do_wpinv_ajax() { |
|
| 61 | - global $wp_query; |
|
| 58 | + * Check for GetPaid Ajax request and fire action. |
|
| 59 | + */ |
|
| 60 | + public static function do_wpinv_ajax() { |
|
| 61 | + global $wp_query; |
|
| 62 | 62 | |
| 63 | - if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
| 64 | - $wp_query->set( 'wpinv-ajax', sanitize_text_field( wp_unslash( $_GET['wpinv-ajax'] ) ) ); |
|
| 65 | - } |
|
| 63 | + if ( ! empty( $_GET['wpinv-ajax'] ) ) { |
|
| 64 | + $wp_query->set( 'wpinv-ajax', sanitize_text_field( wp_unslash( $_GET['wpinv-ajax'] ) ) ); |
|
| 65 | + } |
|
| 66 | 66 | |
| 67 | - $action = $wp_query->get( 'wpinv-ajax' ); |
|
| 67 | + $action = $wp_query->get( 'wpinv-ajax' ); |
|
| 68 | 68 | |
| 69 | - if ( $action ) { |
|
| 70 | - self::wpinv_ajax_headers(); |
|
| 71 | - $action = sanitize_text_field( $action ); |
|
| 72 | - do_action( 'wpinv_ajax_' . $action ); |
|
| 73 | - wp_die(); |
|
| 74 | - } |
|
| 69 | + if ( $action ) { |
|
| 70 | + self::wpinv_ajax_headers(); |
|
| 71 | + $action = sanitize_text_field( $action ); |
|
| 72 | + do_action( 'wpinv_ajax_' . $action ); |
|
| 73 | + wp_die(); |
|
| 74 | + } |
|
| 75 | 75 | |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | 78 | /** |
| 79 | - * Hook in ajax methods. |
|
| 80 | - */ |
|
| 79 | + * Hook in ajax methods. |
|
| 80 | + */ |
|
| 81 | 81 | public static function add_ajax_events() { |
| 82 | 82 | |
| 83 | 83 | // array( 'event' => is_frontend ) |
@@ -261,18 +261,18 @@ discard block |
||
| 261 | 261 | check_ajax_referer( 'getpaid_form_nonce' ); |
| 262 | 262 | |
| 263 | 263 | // Is the request set up correctly? |
| 264 | - if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) && empty( $_GET['invoice'] ) ) { |
|
| 265 | - echo aui()->alert( |
|
| 266 | - array( |
|
| 267 | - 'type' => 'warning', |
|
| 268 | - 'content' => __( 'No payment form or item provided', 'invoicing' ), |
|
| 269 | - ) |
|
| 264 | + if ( empty( $_GET['form'] ) && empty( $_GET['item'] ) && empty( $_GET['invoice'] ) ) { |
|
| 265 | + echo aui()->alert( |
|
| 266 | + array( |
|
| 267 | + 'type' => 'warning', |
|
| 268 | + 'content' => __( 'No payment form or item provided', 'invoicing' ), |
|
| 269 | + ) |
|
| 270 | 270 | ); |
| 271 | 271 | exit; |
| 272 | 272 | } |
| 273 | 273 | |
| 274 | 274 | // Payment form or button? |
| 275 | - if ( ! empty( $_GET['form'] ) ) { |
|
| 275 | + if ( ! empty( $_GET['form'] ) ) { |
|
| 276 | 276 | $form = sanitize_text_field( urldecode( $_GET['form'] ) ); |
| 277 | 277 | |
| 278 | 278 | if ( false !== strpos( $form, '|' ) ) { |
@@ -325,10 +325,10 @@ discard block |
||
| 325 | 325 | getpaid_display_payment_form( $form ); |
| 326 | 326 | } |
| 327 | 327 | } elseif ( ! empty( $_GET['invoice'] ) ) { |
| 328 | - getpaid_display_invoice_payment_form( (int) urldecode( $_GET['invoice'] ) ); |
|
| 328 | + getpaid_display_invoice_payment_form( (int) urldecode( $_GET['invoice'] ) ); |
|
| 329 | 329 | } else { |
| 330 | - $items = getpaid_convert_items_to_array( sanitize_text_field( urldecode( $_GET['item'] ) ) ); |
|
| 331 | - getpaid_display_item_payment_form( $items ); |
|
| 330 | + $items = getpaid_convert_items_to_array( sanitize_text_field( urldecode( $_GET['item'] ) ) ); |
|
| 331 | + getpaid_display_item_payment_form( $items ); |
|
| 332 | 332 | } |
| 333 | 333 | |
| 334 | 334 | exit; |
@@ -648,7 +648,7 @@ discard block |
||
| 648 | 648 | if ( is_wp_error( $error ) ) { |
| 649 | 649 | $alert = $error->get_error_message(); |
| 650 | 650 | wp_send_json_success( compact( 'alert' ) ); |
| 651 | - } |
|
| 651 | + } |
|
| 652 | 652 | |
| 653 | 653 | // Update totals. |
| 654 | 654 | $invoice->recalculate_total(); |
@@ -1083,12 +1083,12 @@ discard block |
||
| 1083 | 1083 | } |
| 1084 | 1084 | |
| 1085 | 1085 | /** |
| 1086 | - * Handles file uploads. |
|
| 1087 | - * |
|
| 1088 | - * @since 1.0.0 |
|
| 1089 | - * @return void |
|
| 1090 | - */ |
|
| 1091 | - public static function file_upload() { |
|
| 1086 | + * Handles file uploads. |
|
| 1087 | + * |
|
| 1088 | + * @since 1.0.0 |
|
| 1089 | + * @return void |
|
| 1090 | + */ |
|
| 1091 | + public static function file_upload() { |
|
| 1092 | 1092 | |
| 1093 | 1093 | // Check nonce. |
| 1094 | 1094 | check_ajax_referer( 'getpaid_form_nonce' ); |
@@ -1149,7 +1149,7 @@ discard block |
||
| 1149 | 1149 | |
| 1150 | 1150 | wp_send_json_success( $response ); |
| 1151 | 1151 | |
| 1152 | - } |
|
| 1152 | + } |
|
| 1153 | 1153 | |
| 1154 | 1154 | } |
| 1155 | 1155 | |
@@ -12,207 +12,207 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class WPInv_Notes { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Class constructor. |
|
| 17 | - */ |
|
| 18 | - public function __construct() { |
|
| 19 | - |
|
| 20 | - // Filter inovice notes. |
|
| 21 | - add_action( 'pre_get_comments', array( $this, 'set_invoice_note_type' ), 11, 1 ); |
|
| 22 | - add_action( 'comment_feed_where', array( $this, 'wpinv_comment_feed_where' ), 10, 1 ); |
|
| 23 | - |
|
| 24 | - // Delete comments count cache whenever there is a new comment or a comment status changes. |
|
| 25 | - add_action( 'wp_insert_comment', array( $this, 'delete_comments_count_cache' ) ); |
|
| 26 | - add_action( 'wp_set_comment_status', array( $this, 'delete_comments_count_cache' ) ); |
|
| 27 | - |
|
| 28 | - // Count comments. |
|
| 29 | - add_filter( 'wp_count_comments', array( $this, 'wp_count_comments' ), 100, 2 ); |
|
| 30 | - |
|
| 31 | - // Fires after notes are loaded. |
|
| 32 | - do_action( 'wpinv_notes_init', $this ); |
|
| 33 | - } |
|
| 34 | - |
|
| 35 | - /** |
|
| 36 | - * Filters invoice notes query to only include our notes. |
|
| 37 | - * |
|
| 38 | - * @param WP_Comment_Query $query |
|
| 39 | - */ |
|
| 40 | - public function set_invoice_note_type( $query ) { |
|
| 41 | - $post_id = ! empty( $query->query_vars['post_ID'] ) ? $query->query_vars['post_ID'] : $query->query_vars['post_id']; |
|
| 42 | - |
|
| 43 | - if ( $post_id && getpaid_is_invoice_post_type( get_post_type( $post_id ) ) ) { |
|
| 44 | - $query->query_vars['type'] = 'wpinv_note'; |
|
| 45 | - } else { |
|
| 46 | - |
|
| 47 | - if ( empty( $query->query_vars['type__not_in'] ) ) { |
|
| 48 | - $query->query_vars['type__not_in'] = array(); |
|
| 49 | - } |
|
| 50 | - |
|
| 51 | - $query->query_vars['type__not_in'] = wpinv_parse_list( $query->query_vars['type__not_in'] ); |
|
| 52 | - $query->query_vars['type__not_in'] = array_merge( array( 'wpinv_note' ), $query->query_vars['type__not_in'] ); |
|
| 53 | - } |
|
| 54 | - |
|
| 55 | - return $query; |
|
| 56 | - } |
|
| 57 | - |
|
| 58 | - /** |
|
| 59 | - * Exclude notes from the comments feed. |
|
| 60 | - */ |
|
| 61 | - function wpinv_comment_feed_where( $where ) { |
|
| 62 | - return $where . ( $where ? ' AND ' : '' ) . " comment_type != 'wpinv_note' "; |
|
| 63 | - } |
|
| 64 | - |
|
| 65 | - /** |
|
| 66 | - * Delete comments count cache whenever there is |
|
| 67 | - * new comment or the status of a comment changes. Cache |
|
| 68 | - * will be regenerated next time WPInv_Notes::wp_count_comments() |
|
| 69 | - * is called. |
|
| 70 | - */ |
|
| 71 | - public function delete_comments_count_cache() { |
|
| 72 | - delete_transient( 'getpaid_count_comments' ); |
|
| 73 | - } |
|
| 74 | - |
|
| 75 | - /** |
|
| 76 | - * Remove invoice notes from wp_count_comments(). |
|
| 77 | - * |
|
| 78 | - * @since 2.2 |
|
| 79 | - * @param object $stats Comment stats. |
|
| 80 | - * @param int $post_id Post ID. |
|
| 81 | - * @return object |
|
| 82 | - */ |
|
| 83 | - public function wp_count_comments( $stats, $post_id ) { |
|
| 84 | - global $wpdb; |
|
| 85 | - |
|
| 86 | - if ( empty( $post_id ) ) { |
|
| 87 | - $stats = get_transient( 'getpaid_count_comments' ); |
|
| 88 | - |
|
| 89 | - if ( ! $stats ) { |
|
| 90 | - $stats = array( |
|
| 91 | - 'total_comments' => 0, |
|
| 92 | - 'all' => 0, |
|
| 93 | - ); |
|
| 94 | - |
|
| 95 | - $count = $wpdb->get_results( |
|
| 96 | - " |
|
| 15 | + /** |
|
| 16 | + * Class constructor. |
|
| 17 | + */ |
|
| 18 | + public function __construct() { |
|
| 19 | + |
|
| 20 | + // Filter inovice notes. |
|
| 21 | + add_action( 'pre_get_comments', array( $this, 'set_invoice_note_type' ), 11, 1 ); |
|
| 22 | + add_action( 'comment_feed_where', array( $this, 'wpinv_comment_feed_where' ), 10, 1 ); |
|
| 23 | + |
|
| 24 | + // Delete comments count cache whenever there is a new comment or a comment status changes. |
|
| 25 | + add_action( 'wp_insert_comment', array( $this, 'delete_comments_count_cache' ) ); |
|
| 26 | + add_action( 'wp_set_comment_status', array( $this, 'delete_comments_count_cache' ) ); |
|
| 27 | + |
|
| 28 | + // Count comments. |
|
| 29 | + add_filter( 'wp_count_comments', array( $this, 'wp_count_comments' ), 100, 2 ); |
|
| 30 | + |
|
| 31 | + // Fires after notes are loaded. |
|
| 32 | + do_action( 'wpinv_notes_init', $this ); |
|
| 33 | + } |
|
| 34 | + |
|
| 35 | + /** |
|
| 36 | + * Filters invoice notes query to only include our notes. |
|
| 37 | + * |
|
| 38 | + * @param WP_Comment_Query $query |
|
| 39 | + */ |
|
| 40 | + public function set_invoice_note_type( $query ) { |
|
| 41 | + $post_id = ! empty( $query->query_vars['post_ID'] ) ? $query->query_vars['post_ID'] : $query->query_vars['post_id']; |
|
| 42 | + |
|
| 43 | + if ( $post_id && getpaid_is_invoice_post_type( get_post_type( $post_id ) ) ) { |
|
| 44 | + $query->query_vars['type'] = 'wpinv_note'; |
|
| 45 | + } else { |
|
| 46 | + |
|
| 47 | + if ( empty( $query->query_vars['type__not_in'] ) ) { |
|
| 48 | + $query->query_vars['type__not_in'] = array(); |
|
| 49 | + } |
|
| 50 | + |
|
| 51 | + $query->query_vars['type__not_in'] = wpinv_parse_list( $query->query_vars['type__not_in'] ); |
|
| 52 | + $query->query_vars['type__not_in'] = array_merge( array( 'wpinv_note' ), $query->query_vars['type__not_in'] ); |
|
| 53 | + } |
|
| 54 | + |
|
| 55 | + return $query; |
|
| 56 | + } |
|
| 57 | + |
|
| 58 | + /** |
|
| 59 | + * Exclude notes from the comments feed. |
|
| 60 | + */ |
|
| 61 | + function wpinv_comment_feed_where( $where ) { |
|
| 62 | + return $where . ( $where ? ' AND ' : '' ) . " comment_type != 'wpinv_note' "; |
|
| 63 | + } |
|
| 64 | + |
|
| 65 | + /** |
|
| 66 | + * Delete comments count cache whenever there is |
|
| 67 | + * new comment or the status of a comment changes. Cache |
|
| 68 | + * will be regenerated next time WPInv_Notes::wp_count_comments() |
|
| 69 | + * is called. |
|
| 70 | + */ |
|
| 71 | + public function delete_comments_count_cache() { |
|
| 72 | + delete_transient( 'getpaid_count_comments' ); |
|
| 73 | + } |
|
| 74 | + |
|
| 75 | + /** |
|
| 76 | + * Remove invoice notes from wp_count_comments(). |
|
| 77 | + * |
|
| 78 | + * @since 2.2 |
|
| 79 | + * @param object $stats Comment stats. |
|
| 80 | + * @param int $post_id Post ID. |
|
| 81 | + * @return object |
|
| 82 | + */ |
|
| 83 | + public function wp_count_comments( $stats, $post_id ) { |
|
| 84 | + global $wpdb; |
|
| 85 | + |
|
| 86 | + if ( empty( $post_id ) ) { |
|
| 87 | + $stats = get_transient( 'getpaid_count_comments' ); |
|
| 88 | + |
|
| 89 | + if ( ! $stats ) { |
|
| 90 | + $stats = array( |
|
| 91 | + 'total_comments' => 0, |
|
| 92 | + 'all' => 0, |
|
| 93 | + ); |
|
| 94 | + |
|
| 95 | + $count = $wpdb->get_results( |
|
| 96 | + " |
|
| 97 | 97 | SELECT comment_approved, COUNT(*) AS num_comments |
| 98 | 98 | FROM {$wpdb->comments} |
| 99 | 99 | WHERE comment_type NOT IN ('action_log', 'order_note', 'webhook_delivery', 'wpinv_note') |
| 100 | 100 | GROUP BY comment_approved |
| 101 | 101 | ", |
| 102 | - ARRAY_A |
|
| 103 | - ); |
|
| 104 | - |
|
| 105 | - $approved = array( |
|
| 106 | - '0' => 'moderated', |
|
| 107 | - '1' => 'approved', |
|
| 108 | - 'spam' => 'spam', |
|
| 109 | - 'trash' => 'trash', |
|
| 110 | - 'post-trashed' => 'post-trashed', |
|
| 111 | - ); |
|
| 112 | - |
|
| 113 | - foreach ( (array) $count as $row ) { |
|
| 114 | - // Don't count post-trashed toward totals. |
|
| 115 | - if ( ! in_array( $row['comment_approved'], array( 'post-trashed', 'trash', 'spam' ), true ) ) { |
|
| 116 | - $stats['all'] += $row['num_comments']; |
|
| 117 | - $stats['total_comments'] += $row['num_comments']; |
|
| 118 | - } elseif ( ! in_array( $row['comment_approved'], array( 'post-trashed', 'trash' ), true ) ) { |
|
| 119 | - $stats['total_comments'] += $row['num_comments']; |
|
| 120 | - } |
|
| 121 | - if ( isset( $approved[ $row['comment_approved'] ] ) ) { |
|
| 122 | - $stats[ $approved[ $row['comment_approved'] ] ] = $row['num_comments']; |
|
| 123 | - } |
|
| 124 | - } |
|
| 125 | - |
|
| 126 | - foreach ( $approved as $key ) { |
|
| 127 | - if ( empty( $stats[ $key ] ) ) { |
|
| 128 | - $stats[ $key ] = 0; |
|
| 129 | - } |
|
| 130 | - } |
|
| 131 | - |
|
| 132 | - $stats = (object) $stats; |
|
| 133 | - set_transient( 'getpaid_count_comments', $stats ); |
|
| 134 | - } |
|
| 102 | + ARRAY_A |
|
| 103 | + ); |
|
| 104 | + |
|
| 105 | + $approved = array( |
|
| 106 | + '0' => 'moderated', |
|
| 107 | + '1' => 'approved', |
|
| 108 | + 'spam' => 'spam', |
|
| 109 | + 'trash' => 'trash', |
|
| 110 | + 'post-trashed' => 'post-trashed', |
|
| 111 | + ); |
|
| 112 | + |
|
| 113 | + foreach ( (array) $count as $row ) { |
|
| 114 | + // Don't count post-trashed toward totals. |
|
| 115 | + if ( ! in_array( $row['comment_approved'], array( 'post-trashed', 'trash', 'spam' ), true ) ) { |
|
| 116 | + $stats['all'] += $row['num_comments']; |
|
| 117 | + $stats['total_comments'] += $row['num_comments']; |
|
| 118 | + } elseif ( ! in_array( $row['comment_approved'], array( 'post-trashed', 'trash' ), true ) ) { |
|
| 119 | + $stats['total_comments'] += $row['num_comments']; |
|
| 120 | + } |
|
| 121 | + if ( isset( $approved[ $row['comment_approved'] ] ) ) { |
|
| 122 | + $stats[ $approved[ $row['comment_approved'] ] ] = $row['num_comments']; |
|
| 123 | + } |
|
| 124 | + } |
|
| 125 | + |
|
| 126 | + foreach ( $approved as $key ) { |
|
| 127 | + if ( empty( $stats[ $key ] ) ) { |
|
| 128 | + $stats[ $key ] = 0; |
|
| 129 | + } |
|
| 130 | + } |
|
| 131 | + |
|
| 132 | + $stats = (object) $stats; |
|
| 133 | + set_transient( 'getpaid_count_comments', $stats ); |
|
| 134 | + } |
|
| 135 | 135 | } |
| 136 | 136 | |
| 137 | - return $stats; |
|
| 138 | - } |
|
| 139 | - |
|
| 140 | - /** |
|
| 141 | - * Returns an array of invoice notes. |
|
| 142 | - * |
|
| 143 | - * @param int $invoice_id The invoice ID whose notes to retrieve. |
|
| 144 | - * @param string $type Optional. Pass in customer to only return customer notes. |
|
| 145 | - * @return WP_Comment[] |
|
| 146 | - */ |
|
| 147 | - public function get_invoice_notes( $invoice_id = 0, $type = 'all' ) { |
|
| 148 | - |
|
| 149 | - // Default comment args. |
|
| 150 | - $args = array( |
|
| 151 | - 'post_id' => $invoice_id, |
|
| 152 | - 'orderby' => 'comment_ID', |
|
| 153 | - 'order' => 'ASC', |
|
| 154 | - ); |
|
| 155 | - |
|
| 156 | - // Maybe only show customer comments. |
|
| 157 | - if ( $type == 'customer' ) { |
|
| 158 | - $args['meta_key'] = '_wpi_customer_note'; |
|
| 159 | - $args['meta_value'] = 1; |
|
| 160 | - } |
|
| 161 | - |
|
| 162 | - $args = apply_filters( 'wpinv_invoice_notes_args', $args, $this, $invoice_id, $type ); |
|
| 163 | - |
|
| 164 | - return get_comments( $args ); |
|
| 165 | - } |
|
| 166 | - |
|
| 167 | - /** |
|
| 168 | - * Saves an invoice comment. |
|
| 169 | - * |
|
| 170 | - * @param WPInv_Invoice $invoice The invoice to add the comment to. |
|
| 171 | - * @param string $note The note content. |
|
| 172 | - * @param string $note_author The name of the author of the note. |
|
| 173 | - * @param bool $for_customer Whether or not this comment is meant to be sent to the customer. |
|
| 174 | - * @return int|false The new note's ID on success, false on failure. |
|
| 175 | - */ |
|
| 176 | - function add_invoice_note( $invoice, $note, $note_author, $author_email, $for_customer = false ) { |
|
| 177 | - |
|
| 178 | - do_action( 'wpinv_pre_insert_invoice_note', $invoice->get_id(), $note, $for_customer ); |
|
| 179 | - |
|
| 180 | - /** |
|
| 181 | - * Insert the comment. |
|
| 182 | - */ |
|
| 183 | - $note_id = wp_insert_comment( |
|
| 184 | - wp_filter_comment( |
|
| 185 | - array( |
|
| 186 | - 'comment_post_ID' => $invoice->get_id(), |
|
| 187 | - 'comment_content' => $note, |
|
| 188 | - 'comment_agent' => 'Invoicing', |
|
| 189 | - 'user_id' => get_current_user_id(), |
|
| 190 | - 'comment_author' => $note_author, |
|
| 191 | - 'comment_author_IP' => wpinv_get_ip(), |
|
| 192 | - 'comment_author_email' => $author_email, |
|
| 193 | - 'comment_author_url' => $invoice->get_view_url(), |
|
| 194 | - 'comment_type' => 'wpinv_note', |
|
| 195 | - ) |
|
| 196 | - ) |
|
| 197 | - ); |
|
| 198 | - |
|
| 199 | - do_action( 'wpinv_insert_payment_note', $note_id, $invoice->get_id(), $note, $for_customer ); |
|
| 200 | - |
|
| 201 | - // Are we notifying the customer? |
|
| 202 | - if ( empty( $note_id ) || empty( $for_customer ) ) { |
|
| 203 | - return $note_id; |
|
| 204 | - } |
|
| 205 | - |
|
| 206 | - add_comment_meta( $note_id, '_wpi_customer_note', 1 ); |
|
| 207 | - do_action( |
|
| 137 | + return $stats; |
|
| 138 | + } |
|
| 139 | + |
|
| 140 | + /** |
|
| 141 | + * Returns an array of invoice notes. |
|
| 142 | + * |
|
| 143 | + * @param int $invoice_id The invoice ID whose notes to retrieve. |
|
| 144 | + * @param string $type Optional. Pass in customer to only return customer notes. |
|
| 145 | + * @return WP_Comment[] |
|
| 146 | + */ |
|
| 147 | + public function get_invoice_notes( $invoice_id = 0, $type = 'all' ) { |
|
| 148 | + |
|
| 149 | + // Default comment args. |
|
| 150 | + $args = array( |
|
| 151 | + 'post_id' => $invoice_id, |
|
| 152 | + 'orderby' => 'comment_ID', |
|
| 153 | + 'order' => 'ASC', |
|
| 154 | + ); |
|
| 155 | + |
|
| 156 | + // Maybe only show customer comments. |
|
| 157 | + if ( $type == 'customer' ) { |
|
| 158 | + $args['meta_key'] = '_wpi_customer_note'; |
|
| 159 | + $args['meta_value'] = 1; |
|
| 160 | + } |
|
| 161 | + |
|
| 162 | + $args = apply_filters( 'wpinv_invoice_notes_args', $args, $this, $invoice_id, $type ); |
|
| 163 | + |
|
| 164 | + return get_comments( $args ); |
|
| 165 | + } |
|
| 166 | + |
|
| 167 | + /** |
|
| 168 | + * Saves an invoice comment. |
|
| 169 | + * |
|
| 170 | + * @param WPInv_Invoice $invoice The invoice to add the comment to. |
|
| 171 | + * @param string $note The note content. |
|
| 172 | + * @param string $note_author The name of the author of the note. |
|
| 173 | + * @param bool $for_customer Whether or not this comment is meant to be sent to the customer. |
|
| 174 | + * @return int|false The new note's ID on success, false on failure. |
|
| 175 | + */ |
|
| 176 | + function add_invoice_note( $invoice, $note, $note_author, $author_email, $for_customer = false ) { |
|
| 177 | + |
|
| 178 | + do_action( 'wpinv_pre_insert_invoice_note', $invoice->get_id(), $note, $for_customer ); |
|
| 179 | + |
|
| 180 | + /** |
|
| 181 | + * Insert the comment. |
|
| 182 | + */ |
|
| 183 | + $note_id = wp_insert_comment( |
|
| 184 | + wp_filter_comment( |
|
| 185 | + array( |
|
| 186 | + 'comment_post_ID' => $invoice->get_id(), |
|
| 187 | + 'comment_content' => $note, |
|
| 188 | + 'comment_agent' => 'Invoicing', |
|
| 189 | + 'user_id' => get_current_user_id(), |
|
| 190 | + 'comment_author' => $note_author, |
|
| 191 | + 'comment_author_IP' => wpinv_get_ip(), |
|
| 192 | + 'comment_author_email' => $author_email, |
|
| 193 | + 'comment_author_url' => $invoice->get_view_url(), |
|
| 194 | + 'comment_type' => 'wpinv_note', |
|
| 195 | + ) |
|
| 196 | + ) |
|
| 197 | + ); |
|
| 198 | + |
|
| 199 | + do_action( 'wpinv_insert_payment_note', $note_id, $invoice->get_id(), $note, $for_customer ); |
|
| 200 | + |
|
| 201 | + // Are we notifying the customer? |
|
| 202 | + if ( empty( $note_id ) || empty( $for_customer ) ) { |
|
| 203 | + return $note_id; |
|
| 204 | + } |
|
| 205 | + |
|
| 206 | + add_comment_meta( $note_id, '_wpi_customer_note', 1 ); |
|
| 207 | + do_action( |
|
| 208 | 208 | 'wpinv_new_customer_note', |
| 209 | 209 | array( |
| 210 | - 'invoice_id' => $invoice->get_id(), |
|
| 211 | - 'user_note' => $note, |
|
| 210 | + 'invoice_id' => $invoice->get_id(), |
|
| 211 | + 'user_note' => $note, |
|
| 212 | 212 | ) |
| 213 | 213 | ); |
| 214 | - do_action( 'getpaid_new_customer_note', $invoice, $note ); |
|
| 215 | - return $note_id; |
|
| 216 | - } |
|
| 214 | + do_action( 'getpaid_new_customer_note', $invoice, $note ); |
|
| 215 | + return $note_id; |
|
| 216 | + } |
|
| 217 | 217 | |
| 218 | 218 | } |
@@ -17,45 +17,45 @@ discard block |
||
| 17 | 17 | */ |
| 18 | 18 | class BP_GetPaid_Component extends BP_Component { |
| 19 | 19 | |
| 20 | - /** |
|
| 21 | - * Start the component setup process. |
|
| 22 | - * |
|
| 23 | - * @since 2.1.5 |
|
| 24 | - */ |
|
| 25 | - public function __construct() { |
|
| 26 | - parent::start( |
|
| 27 | - 'getpaid', |
|
| 28 | - 'GetPaid', |
|
| 29 | - buddypress()->plugin_dir, |
|
| 30 | - array( |
|
| 31 | - 'adminbar_myaccount_order' => 30, |
|
| 32 | - ) |
|
| 33 | - ); |
|
| 34 | - } |
|
| 20 | + /** |
|
| 21 | + * Start the component setup process. |
|
| 22 | + * |
|
| 23 | + * @since 2.1.5 |
|
| 24 | + */ |
|
| 25 | + public function __construct() { |
|
| 26 | + parent::start( |
|
| 27 | + 'getpaid', |
|
| 28 | + 'GetPaid', |
|
| 29 | + buddypress()->plugin_dir, |
|
| 30 | + array( |
|
| 31 | + 'adminbar_myaccount_order' => 30, |
|
| 32 | + ) |
|
| 33 | + ); |
|
| 34 | + } |
|
| 35 | 35 | |
| 36 | 36 | /** |
| 37 | - * Set up component global variables. |
|
| 38 | - * |
|
| 39 | - * @since 2.1.5 |
|
| 40 | - * |
|
| 41 | - * |
|
| 42 | - * @param array $args { |
|
| 43 | - * All values are optional. |
|
| 44 | - * @type string $slug The component slug. Used to construct certain URLs, such as 'friends' in |
|
| 45 | - * http://example.com/members/joe/friends/. Default: the value of $this->id. |
|
| 46 | - * @type string $root_slug The component root slug. Note that this value is generally unused if the |
|
| 47 | - * component has a root directory (the slug will be overridden by the |
|
| 48 | - * post_name of the directory page). Default: the slug of the directory page |
|
| 49 | - * if one is found, otherwise an empty string. |
|
| 50 | - * @type bool $has_directory Set to true if the component requires an associated WordPress page. |
|
| 51 | - * @type callable $notification_callback Optional. The callable function that formats the component's notifications. |
|
| 52 | - * @type string $search_term Optional. The placeholder text in the component directory search box. Eg, |
|
| 53 | - * 'Search Groups...'. |
|
| 54 | - * @type array $global_tables Optional. An array of database table names. |
|
| 55 | - * @type array $meta_tables Optional. An array of metadata table names. |
|
| 56 | - * } |
|
| 57 | - */ |
|
| 58 | - public function setup_globals( $args = array() ) { |
|
| 37 | + * Set up component global variables. |
|
| 38 | + * |
|
| 39 | + * @since 2.1.5 |
|
| 40 | + * |
|
| 41 | + * |
|
| 42 | + * @param array $args { |
|
| 43 | + * All values are optional. |
|
| 44 | + * @type string $slug The component slug. Used to construct certain URLs, such as 'friends' in |
|
| 45 | + * http://example.com/members/joe/friends/. Default: the value of $this->id. |
|
| 46 | + * @type string $root_slug The component root slug. Note that this value is generally unused if the |
|
| 47 | + * component has a root directory (the slug will be overridden by the |
|
| 48 | + * post_name of the directory page). Default: the slug of the directory page |
|
| 49 | + * if one is found, otherwise an empty string. |
|
| 50 | + * @type bool $has_directory Set to true if the component requires an associated WordPress page. |
|
| 51 | + * @type callable $notification_callback Optional. The callable function that formats the component's notifications. |
|
| 52 | + * @type string $search_term Optional. The placeholder text in the component directory search box. Eg, |
|
| 53 | + * 'Search Groups...'. |
|
| 54 | + * @type array $global_tables Optional. An array of database table names. |
|
| 55 | + * @type array $meta_tables Optional. An array of metadata table names. |
|
| 56 | + * } |
|
| 57 | + */ |
|
| 58 | + public function setup_globals( $args = array() ) { |
|
| 59 | 59 | parent::setup_globals( |
| 60 | 60 | array( |
| 61 | 61 | 'id' => 'getpaid', |
@@ -64,21 +64,21 @@ discard block |
||
| 64 | 64 | 'has_directory' => false, |
| 65 | 65 | ) |
| 66 | 66 | ); |
| 67 | - } |
|
| 68 | - |
|
| 69 | - /** |
|
| 70 | - * Set up component navigation. |
|
| 71 | - * |
|
| 72 | - * @since 2.1.5 |
|
| 73 | - * |
|
| 74 | - * @see BP_Component::setup_nav() for a description of arguments. |
|
| 75 | - * |
|
| 76 | - * @param array $main_nav Optional. See BP_Component::setup_nav() for description. |
|
| 77 | - * @param array $sub_nav Optional. See BP_Component::setup_nav() for description. |
|
| 78 | - */ |
|
| 79 | - public function setup_nav( $main_nav = array(), $sub_nav = array() ) { |
|
| 80 | - |
|
| 81 | - // Abort if the integration is inactive. |
|
| 67 | + } |
|
| 68 | + |
|
| 69 | + /** |
|
| 70 | + * Set up component navigation. |
|
| 71 | + * |
|
| 72 | + * @since 2.1.5 |
|
| 73 | + * |
|
| 74 | + * @see BP_Component::setup_nav() for a description of arguments. |
|
| 75 | + * |
|
| 76 | + * @param array $main_nav Optional. See BP_Component::setup_nav() for description. |
|
| 77 | + * @param array $sub_nav Optional. See BP_Component::setup_nav() for description. |
|
| 78 | + */ |
|
| 79 | + public function setup_nav( $main_nav = array(), $sub_nav = array() ) { |
|
| 80 | + |
|
| 81 | + // Abort if the integration is inactive. |
|
| 82 | 82 | if ( ! getpaid_is_buddypress_integration_active() || ! is_user_logged_in() ) { |
| 83 | 83 | return; |
| 84 | 84 | } |
@@ -88,25 +88,25 @@ discard block |
||
| 88 | 88 | return; |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - // Determine user to use. |
|
| 92 | - $user_domain = bp_loggedin_user_domain(); |
|
| 93 | - $slug = 'getpaid'; |
|
| 94 | - $payments_link = trailingslashit( $user_domain . $slug ); |
|
| 95 | - |
|
| 96 | - // Add 'Payments' to the main navigation. |
|
| 97 | - $main_nav = array( |
|
| 98 | - 'name' => _x( 'Billing', 'BuddyPress profile payments screen nav', 'invoicing' ), |
|
| 99 | - 'slug' => $slug, |
|
| 100 | - 'position' => apply_filters( 'wpinv_bp_nav_position', wpinv_get_option( 'wpinv_menu_position', 91 ), $slug ), |
|
| 101 | - 'screen_function' => array( $this, 'display_current_tab' ), |
|
| 102 | - 'default_subnav_slug' => apply_filters( 'getpaid_default_tab', 'gp-edit-address' ), |
|
| 91 | + // Determine user to use. |
|
| 92 | + $user_domain = bp_loggedin_user_domain(); |
|
| 93 | + $slug = 'getpaid'; |
|
| 94 | + $payments_link = trailingslashit( $user_domain . $slug ); |
|
| 95 | + |
|
| 96 | + // Add 'Payments' to the main navigation. |
|
| 97 | + $main_nav = array( |
|
| 98 | + 'name' => _x( 'Billing', 'BuddyPress profile payments screen nav', 'invoicing' ), |
|
| 99 | + 'slug' => $slug, |
|
| 100 | + 'position' => apply_filters( 'wpinv_bp_nav_position', wpinv_get_option( 'wpinv_menu_position', 91 ), $slug ), |
|
| 101 | + 'screen_function' => array( $this, 'display_current_tab' ), |
|
| 102 | + 'default_subnav_slug' => apply_filters( 'getpaid_default_tab', 'gp-edit-address' ), |
|
| 103 | 103 | 'show_for_displayed_user' => false, |
| 104 | - 'item_css_id' => $this->id, |
|
| 105 | - 'parent_url' => $user_domain, |
|
| 106 | - 'parent_slug' => buddypress()->slug, |
|
| 107 | - ); |
|
| 104 | + 'item_css_id' => $this->id, |
|
| 105 | + 'parent_url' => $user_domain, |
|
| 106 | + 'parent_slug' => buddypress()->slug, |
|
| 107 | + ); |
|
| 108 | 108 | |
| 109 | - // Add the subnav items to the payments nav item if we are using a theme that supports this. |
|
| 109 | + // Add the subnav items to the payments nav item if we are using a theme that supports this. |
|
| 110 | 110 | foreach ( getpaid_get_user_content_tabs() as $_slug => $tab ) { |
| 111 | 111 | |
| 112 | 112 | $sub_nav[] = array( |
@@ -116,8 +116,8 @@ discard block |
||
| 116 | 116 | 'parent_slug' => $slug, |
| 117 | 117 | 'position' => 10, |
| 118 | 118 | 'screen_function' => function() use ( $tab ) { |
| 119 | - $GLOBALS['getpaid_bp_current_tab'] = $tab; |
|
| 120 | - $this->display_current_tab(); |
|
| 119 | + $GLOBALS['getpaid_bp_current_tab'] = $tab; |
|
| 120 | + $this->display_current_tab(); |
|
| 121 | 121 | }, |
| 122 | 122 | 'show_for_displayed_user' => false, |
| 123 | 123 | 'item_css_id' => "getpaid-bp-$_slug", |
@@ -125,27 +125,27 @@ discard block |
||
| 125 | 125 | |
| 126 | 126 | } |
| 127 | 127 | |
| 128 | - parent::setup_nav( $main_nav, $sub_nav ); |
|
| 129 | - } |
|
| 130 | - |
|
| 131 | - /** |
|
| 132 | - * Set up the component entries in the WordPress Admin Bar. |
|
| 133 | - * |
|
| 134 | - * @since 2.1.5 |
|
| 135 | - * |
|
| 136 | - * @see BP_Component::setup_nav() for a description of the $wp_admin_nav |
|
| 137 | - * parameter array. |
|
| 138 | - * |
|
| 139 | - * @param array $wp_admin_nav See BP_Component::setup_admin_bar() for a |
|
| 140 | - * description. |
|
| 141 | - */ |
|
| 142 | - public function setup_admin_bar( $wp_admin_nav = array() ) { |
|
| 128 | + parent::setup_nav( $main_nav, $sub_nav ); |
|
| 129 | + } |
|
| 143 | 130 | |
| 144 | - // Menus for logged in user. |
|
| 145 | - if ( is_user_logged_in() ) { |
|
| 146 | - |
|
| 147 | - // Setup the logged in user variables. |
|
| 148 | - $payments_link = trailingslashit( bp_loggedin_user_domain() . 'getpaid/' ); |
|
| 131 | + /** |
|
| 132 | + * Set up the component entries in the WordPress Admin Bar. |
|
| 133 | + * |
|
| 134 | + * @since 2.1.5 |
|
| 135 | + * |
|
| 136 | + * @see BP_Component::setup_nav() for a description of the $wp_admin_nav |
|
| 137 | + * parameter array. |
|
| 138 | + * |
|
| 139 | + * @param array $wp_admin_nav See BP_Component::setup_admin_bar() for a |
|
| 140 | + * description. |
|
| 141 | + */ |
|
| 142 | + public function setup_admin_bar( $wp_admin_nav = array() ) { |
|
| 143 | + |
|
| 144 | + // Menus for logged in user. |
|
| 145 | + if ( is_user_logged_in() ) { |
|
| 146 | + |
|
| 147 | + // Setup the logged in user variables. |
|
| 148 | + $payments_link = trailingslashit( bp_loggedin_user_domain() . 'getpaid/' ); |
|
| 149 | 149 | |
| 150 | 150 | // Add the "Payments" sub menu. |
| 151 | 151 | $wp_admin_nav[] = array( |
@@ -168,48 +168,48 @@ discard block |
||
| 168 | 168 | } |
| 169 | 169 | } |
| 170 | 170 | |
| 171 | - parent::setup_admin_bar( $wp_admin_nav ); |
|
| 172 | - } |
|
| 173 | - |
|
| 174 | - /** |
|
| 175 | - * Retrieves the current tab. |
|
| 176 | - * |
|
| 177 | - * @since 2.1.5 |
|
| 178 | - */ |
|
| 179 | - public function get_current_tab() { |
|
| 180 | - global $getpaid_bp_current_tab; |
|
| 181 | - |
|
| 182 | - if ( empty( $getpaid_bp_current_tab ) ) { |
|
| 183 | - return array( |
|
| 184 | - 'label' => __( 'Invoices', 'invoicing' ), |
|
| 185 | - 'content' => '[wpinv_history]', |
|
| 186 | - 'icon' => 'fas fa-file-invoice', |
|
| 187 | - ); |
|
| 188 | - } |
|
| 189 | - |
|
| 190 | - return $getpaid_bp_current_tab; |
|
| 191 | - } |
|
| 192 | - |
|
| 193 | - /** |
|
| 194 | - * Displays the current tab. |
|
| 195 | - * |
|
| 196 | - * @since 2.1.5 |
|
| 197 | - */ |
|
| 198 | - public function display_current_tab() { |
|
| 199 | - |
|
| 200 | - add_action( 'bp_template_content', array( $this, 'handle_display_current_tab' ) ); |
|
| 201 | - $template = apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ); |
|
| 171 | + parent::setup_admin_bar( $wp_admin_nav ); |
|
| 172 | + } |
|
| 173 | + |
|
| 174 | + /** |
|
| 175 | + * Retrieves the current tab. |
|
| 176 | + * |
|
| 177 | + * @since 2.1.5 |
|
| 178 | + */ |
|
| 179 | + public function get_current_tab() { |
|
| 180 | + global $getpaid_bp_current_tab; |
|
| 181 | + |
|
| 182 | + if ( empty( $getpaid_bp_current_tab ) ) { |
|
| 183 | + return array( |
|
| 184 | + 'label' => __( 'Invoices', 'invoicing' ), |
|
| 185 | + 'content' => '[wpinv_history]', |
|
| 186 | + 'icon' => 'fas fa-file-invoice', |
|
| 187 | + ); |
|
| 188 | + } |
|
| 189 | + |
|
| 190 | + return $getpaid_bp_current_tab; |
|
| 191 | + } |
|
| 192 | + |
|
| 193 | + /** |
|
| 194 | + * Displays the current tab. |
|
| 195 | + * |
|
| 196 | + * @since 2.1.5 |
|
| 197 | + */ |
|
| 198 | + public function display_current_tab() { |
|
| 199 | + |
|
| 200 | + add_action( 'bp_template_content', array( $this, 'handle_display_current_tab' ) ); |
|
| 201 | + $template = apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ); |
|
| 202 | 202 | |
| 203 | 203 | bp_core_load_template( apply_filters( 'wpinv_bp_core_template_plugin', $template ) ); |
| 204 | - } |
|
| 205 | - |
|
| 206 | - /** |
|
| 207 | - * Handles the actual display of the current tab. |
|
| 208 | - * |
|
| 209 | - * @since 2.1.5 |
|
| 210 | - */ |
|
| 211 | - public function handle_display_current_tab() { |
|
| 212 | - getpaid_prepare_user_content_tab( $this->get_current_tab() ); |
|
| 213 | - } |
|
| 204 | + } |
|
| 205 | + |
|
| 206 | + /** |
|
| 207 | + * Handles the actual display of the current tab. |
|
| 208 | + * |
|
| 209 | + * @since 2.1.5 |
|
| 210 | + */ |
|
| 211 | + public function handle_display_current_tab() { |
|
| 212 | + getpaid_prepare_user_content_tab( $this->get_current_tab() ); |
|
| 213 | + } |
|
| 214 | 214 | |
| 215 | 215 | } |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | * @param string $default_path The root path to the default template. Defaults to invoicing/templates |
| 141 | 141 | */ |
| 142 | 142 | function wpinv_get_template_html( $template_name, $args = array(), $template_path = '', $default_path = '' ) { |
| 143 | - return getpaid_template()->get_template( $template_name, $args, $template_path, $default_path ); |
|
| 143 | + return getpaid_template()->get_template( $template_name, $args, $template_path, $default_path ); |
|
| 144 | 144 | } |
| 145 | 145 | |
| 146 | 146 | /** |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | * @return string |
| 159 | 159 | */ |
| 160 | 160 | function wpinv_get_theme_template_dir_name() { |
| 161 | - return trailingslashit( apply_filters( 'wpinv_templates_dir', 'invoicing' ) ); |
|
| 161 | + return trailingslashit( apply_filters( 'wpinv_templates_dir', 'invoicing' ) ); |
|
| 162 | 162 | } |
| 163 | 163 | |
| 164 | 164 | /** |
@@ -175,125 +175,125 @@ discard block |
||
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | function wpinv_get_template_part( $slug, $name = null, $load = true ) { |
| 178 | - do_action( 'get_template_part_' . $slug, $slug, $name ); |
|
| 178 | + do_action( 'get_template_part_' . $slug, $slug, $name ); |
|
| 179 | 179 | |
| 180 | - // Setup possible parts |
|
| 181 | - $templates = array(); |
|
| 182 | - if ( isset( $name ) ) { |
|
| 183 | - $templates[] = $slug . '-' . $name . '.php'; |
|
| 180 | + // Setup possible parts |
|
| 181 | + $templates = array(); |
|
| 182 | + if ( isset( $name ) ) { |
|
| 183 | + $templates[] = $slug . '-' . $name . '.php'; |
|
| 184 | 184 | } |
| 185 | - $templates[] = $slug . '.php'; |
|
| 185 | + $templates[] = $slug . '.php'; |
|
| 186 | 186 | |
| 187 | - // Allow template parts to be filtered |
|
| 188 | - $templates = apply_filters( 'wpinv_get_template_part', $templates, $slug, $name ); |
|
| 187 | + // Allow template parts to be filtered |
|
| 188 | + $templates = apply_filters( 'wpinv_get_template_part', $templates, $slug, $name ); |
|
| 189 | 189 | |
| 190 | - // Return the part that is found |
|
| 191 | - return wpinv_locate_tmpl( $templates, $load, false ); |
|
| 190 | + // Return the part that is found |
|
| 191 | + return wpinv_locate_tmpl( $templates, $load, false ); |
|
| 192 | 192 | } |
| 193 | 193 | |
| 194 | 194 | function wpinv_locate_tmpl( $template_names, $load = false, $require_once = true ) { |
| 195 | - // No file found yet |
|
| 196 | - $located = false; |
|
| 195 | + // No file found yet |
|
| 196 | + $located = false; |
|
| 197 | 197 | |
| 198 | - // Try to find a template file |
|
| 199 | - foreach ( (array)$template_names as $template_name ) { |
|
| 198 | + // Try to find a template file |
|
| 199 | + foreach ( (array)$template_names as $template_name ) { |
|
| 200 | 200 | |
| 201 | - // Continue if template is empty |
|
| 202 | - if ( empty( $template_name ) ) { |
|
| 203 | - continue; |
|
| 201 | + // Continue if template is empty |
|
| 202 | + if ( empty( $template_name ) ) { |
|
| 203 | + continue; |
|
| 204 | 204 | } |
| 205 | 205 | |
| 206 | - // Trim off any slashes from the template name |
|
| 207 | - $template_name = ltrim( $template_name, '/' ); |
|
| 206 | + // Trim off any slashes from the template name |
|
| 207 | + $template_name = ltrim( $template_name, '/' ); |
|
| 208 | 208 | |
| 209 | - // try locating this template file by looping through the template paths |
|
| 210 | - foreach ( wpinv_get_theme_template_paths() as $template_path ) { |
|
| 209 | + // try locating this template file by looping through the template paths |
|
| 210 | + foreach ( wpinv_get_theme_template_paths() as $template_path ) { |
|
| 211 | 211 | |
| 212 | - if ( file_exists( $template_path . $template_name ) ) { |
|
| 213 | - $located = $template_path . $template_name; |
|
| 214 | - break; |
|
| 215 | - } |
|
| 216 | - } |
|
| 212 | + if ( file_exists( $template_path . $template_name ) ) { |
|
| 213 | + $located = $template_path . $template_name; |
|
| 214 | + break; |
|
| 215 | + } |
|
| 216 | + } |
|
| 217 | 217 | |
| 218 | - if ( ! empty( $located ) ) { |
|
| 219 | - break; |
|
| 220 | - } |
|
| 221 | - } |
|
| 218 | + if ( ! empty( $located ) ) { |
|
| 219 | + break; |
|
| 220 | + } |
|
| 221 | + } |
|
| 222 | 222 | |
| 223 | - if ( ( true == $load ) && ! empty( $located ) ) { |
|
| 224 | - load_template( $located, $require_once ); |
|
| 223 | + if ( ( true == $load ) && ! empty( $located ) ) { |
|
| 224 | + load_template( $located, $require_once ); |
|
| 225 | 225 | } |
| 226 | 226 | |
| 227 | - return $located; |
|
| 227 | + return $located; |
|
| 228 | 228 | } |
| 229 | 229 | |
| 230 | 230 | function wpinv_get_theme_template_paths() { |
| 231 | - $template_dir = wpinv_get_theme_template_dir_name(); |
|
| 231 | + $template_dir = wpinv_get_theme_template_dir_name(); |
|
| 232 | 232 | |
| 233 | - $file_paths = array( |
|
| 234 | - 1 => trailingslashit( get_stylesheet_directory() ) . $template_dir, |
|
| 235 | - 10 => trailingslashit( get_template_directory() ) . $template_dir, |
|
| 236 | - 100 => wpinv_get_templates_dir(), |
|
| 237 | - ); |
|
| 233 | + $file_paths = array( |
|
| 234 | + 1 => trailingslashit( get_stylesheet_directory() ) . $template_dir, |
|
| 235 | + 10 => trailingslashit( get_template_directory() ) . $template_dir, |
|
| 236 | + 100 => wpinv_get_templates_dir(), |
|
| 237 | + ); |
|
| 238 | 238 | |
| 239 | - $file_paths = apply_filters( 'wpinv_template_paths', $file_paths ); |
|
| 239 | + $file_paths = apply_filters( 'wpinv_template_paths', $file_paths ); |
|
| 240 | 240 | |
| 241 | - // sort the file paths based on priority |
|
| 242 | - ksort( $file_paths, SORT_NUMERIC ); |
|
| 241 | + // sort the file paths based on priority |
|
| 242 | + ksort( $file_paths, SORT_NUMERIC ); |
|
| 243 | 243 | |
| 244 | - return array_map( 'trailingslashit', $file_paths ); |
|
| 244 | + return array_map( 'trailingslashit', $file_paths ); |
|
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | function wpinv_checkout_meta_tags() { |
| 248 | 248 | |
| 249 | - $pages = array(); |
|
| 250 | - $pages[] = wpinv_get_option( 'success_page' ); |
|
| 251 | - $pages[] = wpinv_get_option( 'failure_page' ); |
|
| 252 | - $pages[] = wpinv_get_option( 'invoice_history_page' ); |
|
| 253 | - $pages[] = wpinv_get_option( 'invoice_subscription_page' ); |
|
| 249 | + $pages = array(); |
|
| 250 | + $pages[] = wpinv_get_option( 'success_page' ); |
|
| 251 | + $pages[] = wpinv_get_option( 'failure_page' ); |
|
| 252 | + $pages[] = wpinv_get_option( 'invoice_history_page' ); |
|
| 253 | + $pages[] = wpinv_get_option( 'invoice_subscription_page' ); |
|
| 254 | 254 | |
| 255 | - if ( ! wpinv_is_checkout() && ! is_page( $pages ) ) { |
|
| 256 | - return; |
|
| 257 | - } |
|
| 255 | + if ( ! wpinv_is_checkout() && ! is_page( $pages ) ) { |
|
| 256 | + return; |
|
| 257 | + } |
|
| 258 | 258 | |
| 259 | - echo '<meta name="robots" content="noindex,nofollow" />' . "\n"; |
|
| 259 | + echo '<meta name="robots" content="noindex,nofollow" />' . "\n"; |
|
| 260 | 260 | } |
| 261 | 261 | add_action( 'wp_head', 'wpinv_checkout_meta_tags' ); |
| 262 | 262 | |
| 263 | 263 | function wpinv_add_body_classes( $class ) { |
| 264 | - $classes = (array)$class; |
|
| 264 | + $classes = (array)$class; |
|
| 265 | 265 | |
| 266 | - if ( wpinv_is_checkout() ) { |
|
| 267 | - $classes[] = 'wpinv-checkout'; |
|
| 268 | - $classes[] = 'wpinv-page'; |
|
| 269 | - } |
|
| 266 | + if ( wpinv_is_checkout() ) { |
|
| 267 | + $classes[] = 'wpinv-checkout'; |
|
| 268 | + $classes[] = 'wpinv-page'; |
|
| 269 | + } |
|
| 270 | 270 | |
| 271 | - if ( wpinv_is_success_page() ) { |
|
| 272 | - $classes[] = 'wpinv-success'; |
|
| 273 | - $classes[] = 'wpinv-page'; |
|
| 274 | - } |
|
| 271 | + if ( wpinv_is_success_page() ) { |
|
| 272 | + $classes[] = 'wpinv-success'; |
|
| 273 | + $classes[] = 'wpinv-page'; |
|
| 274 | + } |
|
| 275 | 275 | |
| 276 | - if ( wpinv_is_failed_transaction_page() ) { |
|
| 277 | - $classes[] = 'wpinv-failed-transaction'; |
|
| 278 | - $classes[] = 'wpinv-page'; |
|
| 279 | - } |
|
| 276 | + if ( wpinv_is_failed_transaction_page() ) { |
|
| 277 | + $classes[] = 'wpinv-failed-transaction'; |
|
| 278 | + $classes[] = 'wpinv-page'; |
|
| 279 | + } |
|
| 280 | 280 | |
| 281 | - if ( wpinv_is_invoice_history_page() ) { |
|
| 282 | - $classes[] = 'wpinv-history'; |
|
| 283 | - $classes[] = 'wpinv-page'; |
|
| 284 | - } |
|
| 281 | + if ( wpinv_is_invoice_history_page() ) { |
|
| 282 | + $classes[] = 'wpinv-history'; |
|
| 283 | + $classes[] = 'wpinv-page'; |
|
| 284 | + } |
|
| 285 | 285 | |
| 286 | - if ( wpinv_is_subscriptions_history_page() ) { |
|
| 287 | - $classes[] = 'wpinv-subscription'; |
|
| 288 | - $classes[] = 'wpinv-page'; |
|
| 289 | - } |
|
| 286 | + if ( wpinv_is_subscriptions_history_page() ) { |
|
| 287 | + $classes[] = 'wpinv-subscription'; |
|
| 288 | + $classes[] = 'wpinv-page'; |
|
| 289 | + } |
|
| 290 | 290 | |
| 291 | - if ( wpinv_is_test_mode() ) { |
|
| 292 | - $classes[] = 'wpinv-test-mode'; |
|
| 293 | - $classes[] = 'wpinv-page'; |
|
| 294 | - } |
|
| 291 | + if ( wpinv_is_test_mode() ) { |
|
| 292 | + $classes[] = 'wpinv-test-mode'; |
|
| 293 | + $classes[] = 'wpinv-page'; |
|
| 294 | + } |
|
| 295 | 295 | |
| 296 | - return array_unique( $classes ); |
|
| 296 | + return array_unique( $classes ); |
|
| 297 | 297 | } |
| 298 | 298 | add_filter( 'body_class', 'wpinv_add_body_classes' ); |
| 299 | 299 | |
@@ -311,11 +311,11 @@ discard block |
||
| 311 | 311 | |
| 312 | 312 | $output = wpinv_html_select( |
| 313 | 313 | array( |
| 314 | - 'name' => $name, |
|
| 315 | - 'selected' => $selected, |
|
| 316 | - 'options' => $options, |
|
| 317 | - 'show_option_all' => false, |
|
| 318 | - 'show_option_none' => false, |
|
| 314 | + 'name' => $name, |
|
| 315 | + 'selected' => $selected, |
|
| 316 | + 'options' => $options, |
|
| 317 | + 'show_option_all' => false, |
|
| 318 | + 'show_option_none' => false, |
|
| 319 | 319 | ) |
| 320 | 320 | ); |
| 321 | 321 | |
@@ -344,11 +344,11 @@ discard block |
||
| 344 | 344 | |
| 345 | 345 | $output = wpinv_html_select( |
| 346 | 346 | array( |
| 347 | - 'name' => $name, |
|
| 348 | - 'selected' => $selected, |
|
| 349 | - 'options' => $options, |
|
| 350 | - 'show_option_all' => false, |
|
| 351 | - 'show_option_none' => false, |
|
| 347 | + 'name' => $name, |
|
| 348 | + 'selected' => $selected, |
|
| 349 | + 'options' => $options, |
|
| 350 | + 'show_option_all' => false, |
|
| 351 | + 'show_option_none' => false, |
|
| 352 | 352 | ) |
| 353 | 353 | ); |
| 354 | 354 | |
@@ -512,16 +512,16 @@ discard block |
||
| 512 | 512 | |
| 513 | 513 | $output = wpinv_html_select( |
| 514 | 514 | array( |
| 515 | - 'name' => $args['name'], |
|
| 516 | - 'selected' => $args['selected'], |
|
| 517 | - 'id' => $args['id'], |
|
| 518 | - 'class' => $args['class'], |
|
| 519 | - 'options' => $options, |
|
| 520 | - 'multiple' => $args['multiple'], |
|
| 521 | - 'placeholder' => $args['placeholder'], |
|
| 522 | - 'show_option_all' => $args['show_option_all'], |
|
| 523 | - 'show_option_none' => $args['show_option_none'], |
|
| 524 | - 'data' => $args['data'], |
|
| 515 | + 'name' => $args['name'], |
|
| 516 | + 'selected' => $args['selected'], |
|
| 517 | + 'id' => $args['id'], |
|
| 518 | + 'class' => $args['class'], |
|
| 519 | + 'options' => $options, |
|
| 520 | + 'multiple' => $args['multiple'], |
|
| 521 | + 'placeholder' => $args['placeholder'], |
|
| 522 | + 'show_option_all' => $args['show_option_all'], |
|
| 523 | + 'show_option_none' => $args['show_option_none'], |
|
| 524 | + 'data' => $args['data'], |
|
| 525 | 525 | ) |
| 526 | 526 | ); |
| 527 | 527 | |
@@ -822,21 +822,21 @@ discard block |
||
| 822 | 822 | |
| 823 | 823 | $formatted_address = str_ireplace( array_keys( $replacements ), $replacements, $format ); |
| 824 | 824 | |
| 825 | - // Remove unavailable tags. |
|
| 825 | + // Remove unavailable tags. |
|
| 826 | 826 | $formatted_address = preg_replace( '/\{\{\w+\}\}/', '', $formatted_address ); |
| 827 | 827 | |
| 828 | 828 | // Clean up white space. |
| 829 | - $formatted_address = preg_replace( '/ +/', ' ', trim( $formatted_address ) ); |
|
| 829 | + $formatted_address = preg_replace( '/ +/', ' ', trim( $formatted_address ) ); |
|
| 830 | 830 | $formatted_address = preg_replace( '/\n\n+/', "\n", $formatted_address ); |
| 831 | 831 | |
| 832 | 832 | // Break newlines apart and remove empty lines/trim commas and white space. |
| 833 | - $formatted_address = array_filter( array_map( 'wpinv_trim_formatted_address_line', explode( "\n", $formatted_address ) ) ); |
|
| 833 | + $formatted_address = array_filter( array_map( 'wpinv_trim_formatted_address_line', explode( "\n", $formatted_address ) ) ); |
|
| 834 | 834 | |
| 835 | 835 | // Add html breaks. |
| 836 | - $formatted_address = implode( $separator, $formatted_address ); |
|
| 836 | + $formatted_address = implode( $separator, $formatted_address ); |
|
| 837 | 837 | |
| 838 | - // We're done! |
|
| 839 | - return $formatted_address; |
|
| 838 | + // We're done! |
|
| 839 | + return $formatted_address; |
|
| 840 | 840 | |
| 841 | 841 | } |
| 842 | 842 | |
@@ -882,7 +882,7 @@ discard block |
||
| 882 | 882 | function getpaid_display_invoice_subscriptions( $invoice ) { |
| 883 | 883 | |
| 884 | 884 | // Subscriptions. |
| 885 | - $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
| 885 | + $subscriptions = getpaid_get_invoice_subscriptions( $invoice ); |
|
| 886 | 886 | |
| 887 | 887 | if ( empty( $subscriptions ) || ! $invoice->is_recurring() ) { |
| 888 | 888 | return; |
@@ -1094,7 +1094,7 @@ discard block |
||
| 1094 | 1094 | } |
| 1095 | 1095 | |
| 1096 | 1096 | function wpinv_empty_cart_message() { |
| 1097 | - return apply_filters( 'wpinv_empty_cart_message', '<span class="wpinv_empty_cart">' . __( 'Your cart is empty.', 'invoicing' ) . '</span>' ); |
|
| 1097 | + return apply_filters( 'wpinv_empty_cart_message', '<span class="wpinv_empty_cart">' . __( 'Your cart is empty.', 'invoicing' ) . '</span>' ); |
|
| 1098 | 1098 | } |
| 1099 | 1099 | |
| 1100 | 1100 | /** |
@@ -1291,10 +1291,10 @@ discard block |
||
| 1291 | 1291 | |
| 1292 | 1292 | if ( 0 == count( $form->get_items() ) ) { |
| 1293 | 1293 | echo aui()->alert( |
| 1294 | - array( |
|
| 1295 | - 'type' => 'warning', |
|
| 1296 | - 'content' => __( 'No published items found', 'invoicing' ), |
|
| 1297 | - ) |
|
| 1294 | + array( |
|
| 1295 | + 'type' => 'warning', |
|
| 1296 | + 'content' => __( 'No published items found', 'invoicing' ), |
|
| 1297 | + ) |
|
| 1298 | 1298 | ); |
| 1299 | 1299 | return; |
| 1300 | 1300 | } |
@@ -1315,21 +1315,21 @@ discard block |
||
| 1315 | 1315 | $invoice = wpinv_get_invoice( $invoice_id ); |
| 1316 | 1316 | |
| 1317 | 1317 | if ( empty( $invoice ) ) { |
| 1318 | - echo aui()->alert( |
|
| 1319 | - array( |
|
| 1320 | - 'type' => 'warning', |
|
| 1321 | - 'content' => __( 'Invoice not found', 'invoicing' ), |
|
| 1322 | - ) |
|
| 1318 | + echo aui()->alert( |
|
| 1319 | + array( |
|
| 1320 | + 'type' => 'warning', |
|
| 1321 | + 'content' => __( 'Invoice not found', 'invoicing' ), |
|
| 1322 | + ) |
|
| 1323 | 1323 | ); |
| 1324 | 1324 | return; |
| 1325 | 1325 | } |
| 1326 | 1326 | |
| 1327 | 1327 | if ( $invoice->is_paid() ) { |
| 1328 | - echo aui()->alert( |
|
| 1329 | - array( |
|
| 1330 | - 'type' => 'warning', |
|
| 1331 | - 'content' => __( 'Invoice has already been paid', 'invoicing' ), |
|
| 1332 | - ) |
|
| 1328 | + echo aui()->alert( |
|
| 1329 | + array( |
|
| 1330 | + 'type' => 'warning', |
|
| 1331 | + 'content' => __( 'Invoice has already been paid', 'invoicing' ), |
|
| 1332 | + ) |
|
| 1333 | 1333 | ); |
| 1334 | 1334 | return; |
| 1335 | 1335 | } |
@@ -1391,7 +1391,7 @@ discard block |
||
| 1391 | 1391 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-form='$form'>$label</button>"; |
| 1392 | 1392 | } |
| 1393 | 1393 | |
| 1394 | - if ( ! empty( $items ) ) { |
|
| 1394 | + if ( ! empty( $items ) ) { |
|
| 1395 | 1395 | $items = esc_attr( $items ); |
| 1396 | 1396 | return "<button class='btn btn-primary getpaid-payment-button' type='button' data-item='$items'>$label</button>"; |
| 1397 | 1397 | } |
@@ -1577,21 +1577,21 @@ discard block |
||
| 1577 | 1577 | |
| 1578 | 1578 | return aui()->select( |
| 1579 | 1579 | array( |
| 1580 | - 'options' => $states, |
|
| 1581 | - 'name' => esc_attr( $field_name ), |
|
| 1582 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
| 1583 | - 'value' => sanitize_text_field( $state ), |
|
| 1584 | - 'placeholder' => $placeholder, |
|
| 1585 | - 'required' => $required, |
|
| 1586 | - 'label' => wp_kses_post( $label ), |
|
| 1587 | - 'label_type' => 'vertical', |
|
| 1588 | - 'help_text' => $help_text, |
|
| 1589 | - 'class' => 'getpaid-address-field wpinv_state', |
|
| 1590 | - 'wrap_class' => "$wrapper_class getpaid-address-field-wrapper__state", |
|
| 1591 | - 'label_class' => 'getpaid-address-field-label getpaid-address-field-label__state', |
|
| 1592 | - 'extra_attributes' => array( |
|
| 1593 | - 'autocomplete' => 'address-level1', |
|
| 1594 | - ), |
|
| 1580 | + 'options' => $states, |
|
| 1581 | + 'name' => esc_attr( $field_name ), |
|
| 1582 | + 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
| 1583 | + 'value' => sanitize_text_field( $state ), |
|
| 1584 | + 'placeholder' => $placeholder, |
|
| 1585 | + 'required' => $required, |
|
| 1586 | + 'label' => wp_kses_post( $label ), |
|
| 1587 | + 'label_type' => 'vertical', |
|
| 1588 | + 'help_text' => $help_text, |
|
| 1589 | + 'class' => 'getpaid-address-field wpinv_state', |
|
| 1590 | + 'wrap_class' => "$wrapper_class getpaid-address-field-wrapper__state", |
|
| 1591 | + 'label_class' => 'getpaid-address-field-label getpaid-address-field-label__state', |
|
| 1592 | + 'extra_attributes' => array( |
|
| 1593 | + 'autocomplete' => 'address-level1', |
|
| 1594 | + ), |
|
| 1595 | 1595 | ) |
| 1596 | 1596 | ); |
| 1597 | 1597 | |
@@ -15,31 +15,31 @@ discard block |
||
| 15 | 15 | abstract class GetPaid_Authorize_Net_Legacy_Gateway extends GetPaid_Payment_Gateway { |
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | - * Class constructor. |
|
| 19 | - */ |
|
| 20 | - public function __construct() { |
|
| 18 | + * Class constructor. |
|
| 19 | + */ |
|
| 20 | + public function __construct() { |
|
| 21 | 21 | parent::__construct(); |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | 24 | /** |
| 25 | - * Returns the API URL. |
|
| 26 | - * |
|
| 27 | - * |
|
| 28 | - * @param WPInv_Invoice $invoice Invoice. |
|
| 29 | - * @return string |
|
| 30 | - */ |
|
| 31 | - public function get_api_url( $invoice ) { |
|
| 25 | + * Returns the API URL. |
|
| 26 | + * |
|
| 27 | + * |
|
| 28 | + * @param WPInv_Invoice $invoice Invoice. |
|
| 29 | + * @return string |
|
| 30 | + */ |
|
| 31 | + public function get_api_url( $invoice ) { |
|
| 32 | 32 | return $this->is_sandbox( $invoice ) ? 'https://apitest.authorize.net/xml/v1/request.api' : 'https://api.authorize.net/xml/v1/request.api'; |
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | /** |
| 36 | - * Communicates with authorize.net |
|
| 37 | - * |
|
| 38 | - * |
|
| 39 | - * @param array $post Data to post. |
|
| 36 | + * Communicates with authorize.net |
|
| 37 | + * |
|
| 38 | + * |
|
| 39 | + * @param array $post Data to post. |
|
| 40 | 40 | * @param WPInv_Invoice $invoice Invoice. |
| 41 | - * @return stdClass|WP_Error |
|
| 42 | - */ |
|
| 41 | + * @return stdClass|WP_Error |
|
| 42 | + */ |
|
| 43 | 43 | public function post( $post, $invoice ) { |
| 44 | 44 | |
| 45 | 45 | $url = $this->get_api_url( $invoice ); |
@@ -89,12 +89,12 @@ discard block |
||
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | /** |
| 92 | - * Returns the API authentication params. |
|
| 93 | - * |
|
| 94 | - * |
|
| 95 | - * @return array |
|
| 96 | - */ |
|
| 97 | - public function get_auth_params() { |
|
| 92 | + * Returns the API authentication params. |
|
| 93 | + * |
|
| 94 | + * |
|
| 95 | + * @return array |
|
| 96 | + */ |
|
| 97 | + public function get_auth_params() { |
|
| 98 | 98 | |
| 99 | 99 | return array( |
| 100 | 100 | 'name' => $this->get_option( 'login_id' ), |
@@ -104,13 +104,13 @@ discard block |
||
| 104 | 104 | } |
| 105 | 105 | |
| 106 | 106 | /** |
| 107 | - * Cancels a subscription remotely |
|
| 108 | - * |
|
| 109 | - * |
|
| 110 | - * @param WPInv_Subscription $subscription Subscription. |
|
| 107 | + * Cancels a subscription remotely |
|
| 108 | + * |
|
| 109 | + * |
|
| 110 | + * @param WPInv_Subscription $subscription Subscription. |
|
| 111 | 111 | * @param WPInv_Invoice $invoice Invoice. |
| 112 | - */ |
|
| 113 | - public function cancel_subscription( $subscription, $invoice ) { |
|
| 112 | + */ |
|
| 113 | + public function cancel_subscription( $subscription, $invoice ) { |
|
| 114 | 114 | |
| 115 | 115 | // Backwards compatibility. New version do not use authorize.net subscriptions. |
| 116 | 116 | $this->post( |
@@ -126,17 +126,17 @@ discard block |
||
| 126 | 126 | } |
| 127 | 127 | |
| 128 | 128 | /** |
| 129 | - * Processes ipns. |
|
| 130 | - * |
|
| 131 | - * @return void |
|
| 132 | - */ |
|
| 133 | - public function verify_ipn() { |
|
| 129 | + * Processes ipns. |
|
| 130 | + * |
|
| 131 | + * @return void |
|
| 132 | + */ |
|
| 133 | + public function verify_ipn() { |
|
| 134 | 134 | |
| 135 | 135 | $this->maybe_process_old_ipn(); |
| 136 | 136 | |
| 137 | 137 | // Validate the IPN. |
| 138 | 138 | if ( empty( $_POST ) || ! $this->validate_ipn() ) { |
| 139 | - wp_die( 'Authorize.NET IPN Request Failure', 'Authorize.NET IPN', array( 'response' => 200 ) ); |
|
| 139 | + wp_die( 'Authorize.NET IPN Request Failure', 'Authorize.NET IPN', array( 'response' => 200 ) ); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | 142 | // Event type. |
@@ -175,24 +175,24 @@ discard block |
||
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | /** |
| 178 | - * Validates IPN invoices. |
|
| 179 | - * |
|
| 178 | + * Validates IPN invoices. |
|
| 179 | + * |
|
| 180 | 180 | * @param WPInv_Invoice $invoice |
| 181 | 181 | * @param object $payload |
| 182 | - * @return void |
|
| 183 | - */ |
|
| 184 | - public function validate_ipn_invoice( $invoice, $payload ) { |
|
| 182 | + * @return void |
|
| 183 | + */ |
|
| 184 | + public function validate_ipn_invoice( $invoice, $payload ) { |
|
| 185 | 185 | if ( ! $invoice->exists() || $payload->id != $invoice->get_transaction_id() ) { |
| 186 | 186 | exit; |
| 187 | 187 | } |
| 188 | 188 | } |
| 189 | 189 | |
| 190 | 190 | /** |
| 191 | - * Process subscriptio IPNS. |
|
| 192 | - * |
|
| 193 | - * @return void |
|
| 194 | - */ |
|
| 195 | - public function maybe_process_old_ipn() { |
|
| 191 | + * Process subscriptio IPNS. |
|
| 192 | + * |
|
| 193 | + * @return void |
|
| 194 | + */ |
|
| 195 | + public function maybe_process_old_ipn() { |
|
| 196 | 196 | |
| 197 | 197 | $data = wp_kses_post_deep( wp_unslash( $_POST ) ); |
| 198 | 198 | |
@@ -234,11 +234,11 @@ discard block |
||
| 234 | 234 | } |
| 235 | 235 | |
| 236 | 236 | /** |
| 237 | - * Validates the old IPN signature. |
|
| 237 | + * Validates the old IPN signature. |
|
| 238 | 238 | * |
| 239 | 239 | * @param array $posted |
| 240 | - */ |
|
| 241 | - public function validate_old_ipn_signature( $posted ) { |
|
| 240 | + */ |
|
| 241 | + public function validate_old_ipn_signature( $posted ) { |
|
| 242 | 242 | |
| 243 | 243 | $signature = $this->get_option( 'signature_key' ); |
| 244 | 244 | if ( ! empty( $signature ) ) { |
@@ -256,9 +256,9 @@ discard block |
||
| 256 | 256 | } |
| 257 | 257 | |
| 258 | 258 | /** |
| 259 | - * Check Authorize.NET IPN validity. |
|
| 260 | - */ |
|
| 261 | - public function validate_ipn() { |
|
| 259 | + * Check Authorize.NET IPN validity. |
|
| 260 | + */ |
|
| 261 | + public function validate_ipn() { |
|
| 262 | 262 | |
| 263 | 263 | wpinv_error_log( 'Validating Authorize.NET IPN response' ); |
| 264 | 264 | |
@@ -12,473 +12,473 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Paypal_Gateway_IPN_Handler { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Payment method id. |
|
| 17 | - * |
|
| 18 | - * @var string |
|
| 19 | - */ |
|
| 20 | - protected $id = 'paypal'; |
|
| 21 | - |
|
| 22 | - /** |
|
| 23 | - * Payment method object. |
|
| 24 | - * |
|
| 25 | - * @var GetPaid_Paypal_Gateway |
|
| 26 | - */ |
|
| 27 | - protected $gateway; |
|
| 28 | - |
|
| 29 | - /** |
|
| 30 | - * Class constructor. |
|
| 31 | - * |
|
| 32 | - * @param GetPaid_Paypal_Gateway $gateway |
|
| 33 | - */ |
|
| 34 | - public function __construct( $gateway ) { |
|
| 35 | - $this->gateway = $gateway; |
|
| 36 | - $this->verify_ipn(); |
|
| 37 | - } |
|
| 38 | - |
|
| 39 | - /** |
|
| 40 | - * Processes ipns and marks payments as complete. |
|
| 41 | - * |
|
| 42 | - * @return void |
|
| 43 | - */ |
|
| 44 | - public function verify_ipn() { |
|
| 45 | - |
|
| 46 | - wpinv_error_log( 'GetPaid PayPal IPN Handler', false ); |
|
| 47 | - |
|
| 48 | - // Validate the IPN. |
|
| 49 | - if ( empty( $_POST ) || ! $this->validate_ipn() ) { |
|
| 50 | - wp_die( 'PayPal IPN Request Failure', 500 ); |
|
| 51 | - } |
|
| 52 | - |
|
| 53 | - // Process the IPN. |
|
| 54 | - $posted = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
| 55 | - $invoice = $this->get_ipn_invoice( $posted ); |
|
| 56 | - |
|
| 57 | - // Abort if it was not paid by our gateway. |
|
| 58 | - if ( $this->id != $invoice->get_gateway() ) { |
|
| 59 | - wpinv_error_log( 'Aborting, Invoice was not paid via PayPal', false ); |
|
| 60 | - wp_die( 'Invoice not paid via PayPal', 200 ); |
|
| 61 | - } |
|
| 62 | - |
|
| 63 | - $posted['payment_status'] = isset( $posted['payment_status'] ) ? sanitize_key( strtolower( $posted['payment_status'] ) ) : ''; |
|
| 64 | - $posted['txn_type'] = sanitize_key( strtolower( $posted['txn_type'] ) ); |
|
| 65 | - |
|
| 66 | - wpinv_error_log( 'Payment status:' . $posted['payment_status'], false ); |
|
| 67 | - wpinv_error_log( 'IPN Type:' . $posted['txn_type'], false ); |
|
| 68 | - |
|
| 69 | - if ( method_exists( $this, 'ipn_txn_' . $posted['txn_type'] ) ) { |
|
| 70 | - call_user_func( array( $this, 'ipn_txn_' . $posted['txn_type'] ), $invoice, $posted ); |
|
| 71 | - wpinv_error_log( 'Done processing IPN', false ); |
|
| 72 | - wp_die( 'Processed', 200 ); |
|
| 73 | - } |
|
| 74 | - |
|
| 75 | - wpinv_error_log( 'Aborting, Unsupported IPN type:' . $posted['txn_type'], false ); |
|
| 76 | - wp_die( 'Unsupported IPN type', 200 ); |
|
| 77 | - |
|
| 78 | - } |
|
| 79 | - |
|
| 80 | - /** |
|
| 81 | - * Retrieves IPN Invoice. |
|
| 82 | - * |
|
| 83 | - * @param array $posted |
|
| 84 | - * @return WPInv_Invoice |
|
| 85 | - */ |
|
| 86 | - protected function get_ipn_invoice( $posted ) { |
|
| 87 | - |
|
| 88 | - wpinv_error_log( 'Retrieving PayPal IPN Response Invoice', false ); |
|
| 89 | - |
|
| 90 | - if ( ! empty( $posted['custom'] ) ) { |
|
| 91 | - $invoice = new WPInv_Invoice( $posted['custom'] ); |
|
| 92 | - |
|
| 93 | - if ( $invoice->exists() ) { |
|
| 94 | - wpinv_error_log( 'Found invoice #' . $invoice->get_number(), false ); |
|
| 95 | - return $invoice; |
|
| 96 | - } |
|
| 15 | + /** |
|
| 16 | + * Payment method id. |
|
| 17 | + * |
|
| 18 | + * @var string |
|
| 19 | + */ |
|
| 20 | + protected $id = 'paypal'; |
|
| 21 | + |
|
| 22 | + /** |
|
| 23 | + * Payment method object. |
|
| 24 | + * |
|
| 25 | + * @var GetPaid_Paypal_Gateway |
|
| 26 | + */ |
|
| 27 | + protected $gateway; |
|
| 28 | + |
|
| 29 | + /** |
|
| 30 | + * Class constructor. |
|
| 31 | + * |
|
| 32 | + * @param GetPaid_Paypal_Gateway $gateway |
|
| 33 | + */ |
|
| 34 | + public function __construct( $gateway ) { |
|
| 35 | + $this->gateway = $gateway; |
|
| 36 | + $this->verify_ipn(); |
|
| 37 | + } |
|
| 38 | + |
|
| 39 | + /** |
|
| 40 | + * Processes ipns and marks payments as complete. |
|
| 41 | + * |
|
| 42 | + * @return void |
|
| 43 | + */ |
|
| 44 | + public function verify_ipn() { |
|
| 45 | + |
|
| 46 | + wpinv_error_log( 'GetPaid PayPal IPN Handler', false ); |
|
| 47 | + |
|
| 48 | + // Validate the IPN. |
|
| 49 | + if ( empty( $_POST ) || ! $this->validate_ipn() ) { |
|
| 50 | + wp_die( 'PayPal IPN Request Failure', 500 ); |
|
| 51 | + } |
|
| 52 | + |
|
| 53 | + // Process the IPN. |
|
| 54 | + $posted = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
| 55 | + $invoice = $this->get_ipn_invoice( $posted ); |
|
| 56 | + |
|
| 57 | + // Abort if it was not paid by our gateway. |
|
| 58 | + if ( $this->id != $invoice->get_gateway() ) { |
|
| 59 | + wpinv_error_log( 'Aborting, Invoice was not paid via PayPal', false ); |
|
| 60 | + wp_die( 'Invoice not paid via PayPal', 200 ); |
|
| 61 | + } |
|
| 62 | + |
|
| 63 | + $posted['payment_status'] = isset( $posted['payment_status'] ) ? sanitize_key( strtolower( $posted['payment_status'] ) ) : ''; |
|
| 64 | + $posted['txn_type'] = sanitize_key( strtolower( $posted['txn_type'] ) ); |
|
| 65 | + |
|
| 66 | + wpinv_error_log( 'Payment status:' . $posted['payment_status'], false ); |
|
| 67 | + wpinv_error_log( 'IPN Type:' . $posted['txn_type'], false ); |
|
| 68 | + |
|
| 69 | + if ( method_exists( $this, 'ipn_txn_' . $posted['txn_type'] ) ) { |
|
| 70 | + call_user_func( array( $this, 'ipn_txn_' . $posted['txn_type'] ), $invoice, $posted ); |
|
| 71 | + wpinv_error_log( 'Done processing IPN', false ); |
|
| 72 | + wp_die( 'Processed', 200 ); |
|
| 73 | + } |
|
| 74 | + |
|
| 75 | + wpinv_error_log( 'Aborting, Unsupported IPN type:' . $posted['txn_type'], false ); |
|
| 76 | + wp_die( 'Unsupported IPN type', 200 ); |
|
| 77 | + |
|
| 78 | + } |
|
| 79 | + |
|
| 80 | + /** |
|
| 81 | + * Retrieves IPN Invoice. |
|
| 82 | + * |
|
| 83 | + * @param array $posted |
|
| 84 | + * @return WPInv_Invoice |
|
| 85 | + */ |
|
| 86 | + protected function get_ipn_invoice( $posted ) { |
|
| 87 | + |
|
| 88 | + wpinv_error_log( 'Retrieving PayPal IPN Response Invoice', false ); |
|
| 89 | + |
|
| 90 | + if ( ! empty( $posted['custom'] ) ) { |
|
| 91 | + $invoice = new WPInv_Invoice( $posted['custom'] ); |
|
| 92 | + |
|
| 93 | + if ( $invoice->exists() ) { |
|
| 94 | + wpinv_error_log( 'Found invoice #' . $invoice->get_number(), false ); |
|
| 95 | + return $invoice; |
|
| 96 | + } |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - wpinv_error_log( 'Could not retrieve the associated invoice.', false ); |
|
| 100 | - wp_die( 'Could not retrieve the associated invoice.', 200 ); |
|
| 101 | - } |
|
| 102 | - |
|
| 103 | - /** |
|
| 104 | - * Check PayPal IPN validity. |
|
| 105 | - */ |
|
| 106 | - protected function validate_ipn() { |
|
| 99 | + wpinv_error_log( 'Could not retrieve the associated invoice.', false ); |
|
| 100 | + wp_die( 'Could not retrieve the associated invoice.', 200 ); |
|
| 101 | + } |
|
| 102 | + |
|
| 103 | + /** |
|
| 104 | + * Check PayPal IPN validity. |
|
| 105 | + */ |
|
| 106 | + protected function validate_ipn() { |
|
| 107 | 107 | |
| 108 | - wpinv_error_log( 'Validating PayPal IPN response', false ); |
|
| 109 | - |
|
| 110 | - // Retrieve the associated invoice. |
|
| 111 | - $posted = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
| 112 | - $invoice = $this->get_ipn_invoice( $posted ); |
|
| 113 | - |
|
| 114 | - if ( $this->gateway->is_sandbox( $invoice ) ) { |
|
| 115 | - wpinv_error_log( $posted, 'Invoice was processed in sandbox hence logging the posted data', false ); |
|
| 116 | - } |
|
| 117 | - |
|
| 118 | - // Validate the IPN. |
|
| 119 | - $posted['cmd'] = '_notify-validate'; |
|
| 120 | - |
|
| 121 | - // Send back post vars to paypal. |
|
| 122 | - $params = array( |
|
| 123 | - 'body' => $posted, |
|
| 124 | - 'timeout' => 60, |
|
| 125 | - 'httpversion' => '1.1', |
|
| 126 | - 'compress' => false, |
|
| 127 | - 'decompress' => false, |
|
| 128 | - 'user-agent' => 'GetPaid/' . WPINV_VERSION, |
|
| 129 | - ); |
|
| 130 | - |
|
| 131 | - // Post back to get a response. |
|
| 132 | - $response = wp_safe_remote_post( $this->gateway->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr' : 'https://www.paypal.com/cgi-bin/webscr', $params ); |
|
| 133 | - |
|
| 134 | - // Check to see if the request was valid. |
|
| 135 | - if ( ! is_wp_error( $response ) && $response['response']['code'] < 300 && strstr( $response['body'], 'VERIFIED' ) ) { |
|
| 136 | - wpinv_error_log( 'Received valid response from PayPal IPN: ' . $response['body'], false ); |
|
| 137 | - return true; |
|
| 138 | - } |
|
| 108 | + wpinv_error_log( 'Validating PayPal IPN response', false ); |
|
| 109 | + |
|
| 110 | + // Retrieve the associated invoice. |
|
| 111 | + $posted = wp_kses_post_deep( wp_unslash( $_POST ) ); |
|
| 112 | + $invoice = $this->get_ipn_invoice( $posted ); |
|
| 113 | + |
|
| 114 | + if ( $this->gateway->is_sandbox( $invoice ) ) { |
|
| 115 | + wpinv_error_log( $posted, 'Invoice was processed in sandbox hence logging the posted data', false ); |
|
| 116 | + } |
|
| 117 | + |
|
| 118 | + // Validate the IPN. |
|
| 119 | + $posted['cmd'] = '_notify-validate'; |
|
| 120 | + |
|
| 121 | + // Send back post vars to paypal. |
|
| 122 | + $params = array( |
|
| 123 | + 'body' => $posted, |
|
| 124 | + 'timeout' => 60, |
|
| 125 | + 'httpversion' => '1.1', |
|
| 126 | + 'compress' => false, |
|
| 127 | + 'decompress' => false, |
|
| 128 | + 'user-agent' => 'GetPaid/' . WPINV_VERSION, |
|
| 129 | + ); |
|
| 130 | + |
|
| 131 | + // Post back to get a response. |
|
| 132 | + $response = wp_safe_remote_post( $this->gateway->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr' : 'https://www.paypal.com/cgi-bin/webscr', $params ); |
|
| 133 | + |
|
| 134 | + // Check to see if the request was valid. |
|
| 135 | + if ( ! is_wp_error( $response ) && $response['response']['code'] < 300 && strstr( $response['body'], 'VERIFIED' ) ) { |
|
| 136 | + wpinv_error_log( 'Received valid response from PayPal IPN: ' . $response['body'], false ); |
|
| 137 | + return true; |
|
| 138 | + } |
|
| 139 | 139 | |
| 140 | - if ( is_wp_error( $response ) ) { |
|
| 141 | - wpinv_error_log( $response->get_error_message(), 'Received invalid response from PayPal IPN' ); |
|
| 142 | - return false; |
|
| 143 | - } |
|
| 140 | + if ( is_wp_error( $response ) ) { |
|
| 141 | + wpinv_error_log( $response->get_error_message(), 'Received invalid response from PayPal IPN' ); |
|
| 142 | + return false; |
|
| 143 | + } |
|
| 144 | 144 | |
| 145 | - wpinv_error_log( $response['body'], 'Received invalid response from PayPal IPN' ); |
|
| 146 | - return false; |
|
| 145 | + wpinv_error_log( $response['body'], 'Received invalid response from PayPal IPN' ); |
|
| 146 | + return false; |
|
| 147 | 147 | |
| 148 | - } |
|
| 148 | + } |
|
| 149 | 149 | |
| 150 | - /** |
|
| 151 | - * Check currency from IPN matches the invoice. |
|
| 152 | - * |
|
| 153 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 154 | - * @param string $currency currency to validate. |
|
| 155 | - */ |
|
| 156 | - protected function validate_ipn_currency( $invoice, $currency ) { |
|
| 150 | + /** |
|
| 151 | + * Check currency from IPN matches the invoice. |
|
| 152 | + * |
|
| 153 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 154 | + * @param string $currency currency to validate. |
|
| 155 | + */ |
|
| 156 | + protected function validate_ipn_currency( $invoice, $currency ) { |
|
| 157 | 157 | |
| 158 | - if ( strtolower( $invoice->get_currency() ) !== strtolower( $currency ) ) { |
|
| 158 | + if ( strtolower( $invoice->get_currency() ) !== strtolower( $currency ) ) { |
|
| 159 | 159 | |
| 160 | - /* translators: %s: currency code. */ |
|
| 161 | - $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal currencies do not match (code %s).', 'invoicing' ), $currency ) ); |
|
| 160 | + /* translators: %s: currency code. */ |
|
| 161 | + $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal currencies do not match (code %s).', 'invoicing' ), $currency ) ); |
|
| 162 | 162 | |
| 163 | - wpinv_error_log( "Currencies do not match: {$currency} instead of {$invoice->get_currency()}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 164 | - } |
|
| 163 | + wpinv_error_log( "Currencies do not match: {$currency} instead of {$invoice->get_currency()}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 164 | + } |
|
| 165 | 165 | |
| 166 | - wpinv_error_log( $currency, 'Validated IPN Currency', false ); |
|
| 167 | - } |
|
| 166 | + wpinv_error_log( $currency, 'Validated IPN Currency', false ); |
|
| 167 | + } |
|
| 168 | 168 | |
| 169 | - /** |
|
| 170 | - * Check payment amount from IPN matches the invoice. |
|
| 171 | - * |
|
| 172 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 173 | - * @param float $amount amount to validate. |
|
| 174 | - */ |
|
| 175 | - protected function validate_ipn_amount( $invoice, $amount ) { |
|
| 176 | - if ( number_format( $invoice->get_total(), 2, '.', '' ) !== number_format( $amount, 2, '.', '' ) ) { |
|
| 169 | + /** |
|
| 170 | + * Check payment amount from IPN matches the invoice. |
|
| 171 | + * |
|
| 172 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 173 | + * @param float $amount amount to validate. |
|
| 174 | + */ |
|
| 175 | + protected function validate_ipn_amount( $invoice, $amount ) { |
|
| 176 | + if ( number_format( $invoice->get_total(), 2, '.', '' ) !== number_format( $amount, 2, '.', '' ) ) { |
|
| 177 | 177 | |
| 178 | - /* translators: %s: Amount. */ |
|
| 179 | - $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal amounts do not match (gross %s).', 'invoicing' ), $amount ) ); |
|
| 178 | + /* translators: %s: Amount. */ |
|
| 179 | + $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal amounts do not match (gross %s).', 'invoicing' ), $amount ) ); |
|
| 180 | 180 | |
| 181 | - wpinv_error_log( "Amounts do not match: {$amount} instead of {$invoice->get_total()}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 182 | - } |
|
| 181 | + wpinv_error_log( "Amounts do not match: {$amount} instead of {$invoice->get_total()}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 182 | + } |
|
| 183 | 183 | |
| 184 | - wpinv_error_log( $amount, 'Validated IPN Amount', false ); |
|
| 185 | - } |
|
| 184 | + wpinv_error_log( $amount, 'Validated IPN Amount', false ); |
|
| 185 | + } |
|
| 186 | 186 | |
| 187 | - /** |
|
| 188 | - * Verify receiver email from PayPal. |
|
| 189 | - * |
|
| 190 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 191 | - * @param string $receiver_email Email to validate. |
|
| 192 | - */ |
|
| 193 | - protected function validate_ipn_receiver_email( $invoice, $receiver_email ) { |
|
| 194 | - $paypal_email = wpinv_get_option( 'paypal_email' ); |
|
| 187 | + /** |
|
| 188 | + * Verify receiver email from PayPal. |
|
| 189 | + * |
|
| 190 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 191 | + * @param string $receiver_email Email to validate. |
|
| 192 | + */ |
|
| 193 | + protected function validate_ipn_receiver_email( $invoice, $receiver_email ) { |
|
| 194 | + $paypal_email = wpinv_get_option( 'paypal_email' ); |
|
| 195 | 195 | |
| 196 | - if ( strcasecmp( trim( $receiver_email ), trim( $paypal_email ) ) !== 0 ) { |
|
| 197 | - wpinv_record_gateway_error( 'IPN Error', "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}" ); |
|
| 196 | + if ( strcasecmp( trim( $receiver_email ), trim( $paypal_email ) ) !== 0 ) { |
|
| 197 | + wpinv_record_gateway_error( 'IPN Error', "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}" ); |
|
| 198 | 198 | |
| 199 | - /* translators: %s: email address . */ |
|
| 200 | - $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal IPN response from a different email address (%s).', 'invoicing' ), $receiver_email ) ); |
|
| 199 | + /* translators: %s: email address . */ |
|
| 200 | + $invoice->update_status( 'wpi-processing', sprintf( __( 'Validation error: PayPal IPN response from a different email address (%s).', 'invoicing' ), $receiver_email ) ); |
|
| 201 | 201 | |
| 202 | - return wpinv_error_log( "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 203 | - } |
|
| 202 | + return wpinv_error_log( "IPN Response is for another account: {$receiver_email}. Your email is {$paypal_email}", 'IPN Error', __FILE__, __LINE__, true ); |
|
| 203 | + } |
|
| 204 | 204 | |
| 205 | - wpinv_error_log( 'Validated PayPal Email', false ); |
|
| 206 | - } |
|
| 205 | + wpinv_error_log( 'Validated PayPal Email', false ); |
|
| 206 | + } |
|
| 207 | 207 | |
| 208 | - /** |
|
| 209 | - * Handles one time payments. |
|
| 210 | - * |
|
| 211 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 212 | - * @param array $posted Posted data. |
|
| 213 | - */ |
|
| 214 | - protected function ipn_txn_web_accept( $invoice, $posted ) { |
|
| 208 | + /** |
|
| 209 | + * Handles one time payments. |
|
| 210 | + * |
|
| 211 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 212 | + * @param array $posted Posted data. |
|
| 213 | + */ |
|
| 214 | + protected function ipn_txn_web_accept( $invoice, $posted ) { |
|
| 215 | 215 | |
| 216 | - // Collect payment details |
|
| 217 | - $payment_status = strtolower( $posted['payment_status'] ); |
|
| 218 | - $business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] ); |
|
| 216 | + // Collect payment details |
|
| 217 | + $payment_status = strtolower( $posted['payment_status'] ); |
|
| 218 | + $business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] ); |
|
| 219 | 219 | |
| 220 | - $this->validate_ipn_receiver_email( $invoice, $business_email ); |
|
| 221 | - $this->validate_ipn_currency( $invoice, $posted['mc_currency'] ); |
|
| 220 | + $this->validate_ipn_receiver_email( $invoice, $business_email ); |
|
| 221 | + $this->validate_ipn_currency( $invoice, $posted['mc_currency'] ); |
|
| 222 | 222 | |
| 223 | - // Update the transaction id. |
|
| 224 | - if ( ! empty( $posted['txn_id'] ) ) { |
|
| 225 | - $invoice->set_transaction_id( wpinv_clean( $posted['txn_id'] ) ); |
|
| 226 | - $invoice->save(); |
|
| 227 | - } |
|
| 223 | + // Update the transaction id. |
|
| 224 | + if ( ! empty( $posted['txn_id'] ) ) { |
|
| 225 | + $invoice->set_transaction_id( wpinv_clean( $posted['txn_id'] ) ); |
|
| 226 | + $invoice->save(); |
|
| 227 | + } |
|
| 228 | 228 | |
| 229 | - $invoice->add_system_note( __( 'Processing invoice IPN', 'invoicing' ) ); |
|
| 229 | + $invoice->add_system_note( __( 'Processing invoice IPN', 'invoicing' ) ); |
|
| 230 | 230 | |
| 231 | - // Process a refund. |
|
| 232 | - if ( $payment_status == 'refunded' || $payment_status == 'reversed' ) { |
|
| 231 | + // Process a refund. |
|
| 232 | + if ( $payment_status == 'refunded' || $payment_status == 'reversed' ) { |
|
| 233 | 233 | |
| 234 | - update_post_meta( $invoice->get_id(), 'refunded_remotely', 1 ); |
|
| 234 | + update_post_meta( $invoice->get_id(), 'refunded_remotely', 1 ); |
|
| 235 | 235 | |
| 236 | - if ( ! $invoice->is_refunded() ) { |
|
| 237 | - $invoice->update_status( 'wpi-refunded', $posted['reason_code'] ); |
|
| 238 | - } |
|
| 236 | + if ( ! $invoice->is_refunded() ) { |
|
| 237 | + $invoice->update_status( 'wpi-refunded', $posted['reason_code'] ); |
|
| 238 | + } |
|
| 239 | 239 | |
| 240 | - return wpinv_error_log( $posted['reason_code'], false ); |
|
| 241 | - } |
|
| 240 | + return wpinv_error_log( $posted['reason_code'], false ); |
|
| 241 | + } |
|
| 242 | 242 | |
| 243 | - // Process payments. |
|
| 244 | - if ( $payment_status == 'completed' ) { |
|
| 243 | + // Process payments. |
|
| 244 | + if ( $payment_status == 'completed' ) { |
|
| 245 | 245 | |
| 246 | - if ( $invoice->is_paid() && 'wpi_processing' != $invoice->get_status() ) { |
|
| 247 | - return wpinv_error_log( 'Aborting, Invoice #' . $invoice->get_number() . ' is already paid.', false ); |
|
| 248 | - } |
|
| 246 | + if ( $invoice->is_paid() && 'wpi_processing' != $invoice->get_status() ) { |
|
| 247 | + return wpinv_error_log( 'Aborting, Invoice #' . $invoice->get_number() . ' is already paid.', false ); |
|
| 248 | + } |
|
| 249 | 249 | |
| 250 | - $this->validate_ipn_amount( $invoice, $posted['mc_gross'] ); |
|
| 250 | + $this->validate_ipn_amount( $invoice, $posted['mc_gross'] ); |
|
| 251 | 251 | |
| 252 | - $note = ''; |
|
| 252 | + $note = ''; |
|
| 253 | 253 | |
| 254 | - if ( ! empty( $posted['mc_fee'] ) ) { |
|
| 255 | - $note = sprintf( __( 'PayPal Transaction Fee %s.', 'invoicing' ), sanitize_text_field( $posted['mc_fee'] ) ); |
|
| 256 | - } |
|
| 254 | + if ( ! empty( $posted['mc_fee'] ) ) { |
|
| 255 | + $note = sprintf( __( 'PayPal Transaction Fee %s.', 'invoicing' ), sanitize_text_field( $posted['mc_fee'] ) ); |
|
| 256 | + } |
|
| 257 | 257 | |
| 258 | - if ( ! empty( $posted['payer_status'] ) ) { |
|
| 259 | - $note = ' ' . sprintf( __( 'Buyer status %s.', 'invoicing' ), sanitize_text_field( $posted['payer_status'] ) ); |
|
| 260 | - } |
|
| 258 | + if ( ! empty( $posted['payer_status'] ) ) { |
|
| 259 | + $note = ' ' . sprintf( __( 'Buyer status %s.', 'invoicing' ), sanitize_text_field( $posted['payer_status'] ) ); |
|
| 260 | + } |
|
| 261 | 261 | |
| 262 | - $invoice->mark_paid( ( ! empty( $posted['txn_id'] ) ? sanitize_text_field( $posted['txn_id'] ) : '' ), trim( $note ) ); |
|
| 263 | - return wpinv_error_log( 'Invoice marked as paid.', false ); |
|
| 262 | + $invoice->mark_paid( ( ! empty( $posted['txn_id'] ) ? sanitize_text_field( $posted['txn_id'] ) : '' ), trim( $note ) ); |
|
| 263 | + return wpinv_error_log( 'Invoice marked as paid.', false ); |
|
| 264 | 264 | |
| 265 | - } |
|
| 265 | + } |
|
| 266 | 266 | |
| 267 | - // Pending payments. |
|
| 268 | - if ( $payment_status == 'pending' ) { |
|
| 267 | + // Pending payments. |
|
| 268 | + if ( $payment_status == 'pending' ) { |
|
| 269 | 269 | |
| 270 | - /* translators: %s: pending reason. */ |
|
| 271 | - $invoice->update_status( 'wpi-onhold', sprintf( __( 'Payment pending (%s).', 'invoicing' ), $posted['pending_reason'] ) ); |
|
| 270 | + /* translators: %s: pending reason. */ |
|
| 271 | + $invoice->update_status( 'wpi-onhold', sprintf( __( 'Payment pending (%s).', 'invoicing' ), $posted['pending_reason'] ) ); |
|
| 272 | 272 | |
| 273 | - return wpinv_error_log( 'Invoice marked as "payment held".', false ); |
|
| 274 | - } |
|
| 273 | + return wpinv_error_log( 'Invoice marked as "payment held".', false ); |
|
| 274 | + } |
|
| 275 | 275 | |
| 276 | - /* translators: %s: payment status. */ |
|
| 277 | - $invoice->update_status( 'wpi-failed', sprintf( __( 'Payment %s via IPN.', 'invoicing' ), sanitize_text_field( $posted['payment_status'] ) ) ); |
|
| 276 | + /* translators: %s: payment status. */ |
|
| 277 | + $invoice->update_status( 'wpi-failed', sprintf( __( 'Payment %s via IPN.', 'invoicing' ), sanitize_text_field( $posted['payment_status'] ) ) ); |
|
| 278 | 278 | |
| 279 | - } |
|
| 279 | + } |
|
| 280 | 280 | |
| 281 | - /** |
|
| 282 | - * Handles one time payments. |
|
| 283 | - * |
|
| 284 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 285 | - * @param array $posted Posted data. |
|
| 286 | - */ |
|
| 287 | - protected function ipn_txn_cart( $invoice, $posted ) { |
|
| 288 | - $this->ipn_txn_web_accept( $invoice, $posted ); |
|
| 289 | - } |
|
| 281 | + /** |
|
| 282 | + * Handles one time payments. |
|
| 283 | + * |
|
| 284 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 285 | + * @param array $posted Posted data. |
|
| 286 | + */ |
|
| 287 | + protected function ipn_txn_cart( $invoice, $posted ) { |
|
| 288 | + $this->ipn_txn_web_accept( $invoice, $posted ); |
|
| 289 | + } |
|
| 290 | 290 | |
| 291 | - /** |
|
| 292 | - * Handles subscription sign ups. |
|
| 293 | - * |
|
| 294 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 295 | - * @param array $posted Posted data. |
|
| 296 | - */ |
|
| 297 | - protected function ipn_txn_subscr_signup( $invoice, $posted ) { |
|
| 291 | + /** |
|
| 292 | + * Handles subscription sign ups. |
|
| 293 | + * |
|
| 294 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 295 | + * @param array $posted Posted data. |
|
| 296 | + */ |
|
| 297 | + protected function ipn_txn_subscr_signup( $invoice, $posted ) { |
|
| 298 | 298 | |
| 299 | - wpinv_error_log( 'Processing subscription signup', false ); |
|
| 299 | + wpinv_error_log( 'Processing subscription signup', false ); |
|
| 300 | 300 | |
| 301 | - // Make sure the invoice has a subscription. |
|
| 302 | - $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 301 | + // Make sure the invoice has a subscription. |
|
| 302 | + $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 303 | 303 | |
| 304 | - if ( empty( $subscription ) ) { |
|
| 305 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 306 | - } |
|
| 304 | + if ( empty( $subscription ) ) { |
|
| 305 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 306 | + } |
|
| 307 | 307 | |
| 308 | - wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false ); |
|
| 308 | + wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false ); |
|
| 309 | 309 | |
| 310 | - // Validate the IPN. |
|
| 311 | - $business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] ); |
|
| 312 | - $this->validate_ipn_receiver_email( $invoice, $business_email ); |
|
| 313 | - $this->validate_ipn_currency( $invoice, $posted['mc_currency'] ); |
|
| 310 | + // Validate the IPN. |
|
| 311 | + $business_email = isset( $posted['business'] ) && is_email( $posted['business'] ) ? trim( $posted['business'] ) : trim( $posted['receiver_email'] ); |
|
| 312 | + $this->validate_ipn_receiver_email( $invoice, $business_email ); |
|
| 313 | + $this->validate_ipn_currency( $invoice, $posted['mc_currency'] ); |
|
| 314 | 314 | |
| 315 | - // Activate the subscription. |
|
| 316 | - $duration = strtotime( $subscription->get_expiration() ) - strtotime( $subscription->get_date_created() ); |
|
| 317 | - $subscription->set_date_created( current_time( 'mysql' ) ); |
|
| 318 | - $subscription->set_expiration( date( 'Y-m-d H:i:s', ( current_time( 'timestamp' ) + $duration ) ) ); |
|
| 319 | - $subscription->set_profile_id( sanitize_text_field( $posted['subscr_id'] ) ); |
|
| 320 | - $subscription->activate(); |
|
| 315 | + // Activate the subscription. |
|
| 316 | + $duration = strtotime( $subscription->get_expiration() ) - strtotime( $subscription->get_date_created() ); |
|
| 317 | + $subscription->set_date_created( current_time( 'mysql' ) ); |
|
| 318 | + $subscription->set_expiration( date( 'Y-m-d H:i:s', ( current_time( 'timestamp' ) + $duration ) ) ); |
|
| 319 | + $subscription->set_profile_id( sanitize_text_field( $posted['subscr_id'] ) ); |
|
| 320 | + $subscription->activate(); |
|
| 321 | 321 | |
| 322 | - // Set the transaction id. |
|
| 323 | - if ( ! empty( $posted['txn_id'] ) ) { |
|
| 324 | - $invoice->add_note( sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), $posted['txn_id'] ), false, false, true ); |
|
| 325 | - $invoice->set_transaction_id( $posted['txn_id'] ); |
|
| 326 | - } |
|
| 322 | + // Set the transaction id. |
|
| 323 | + if ( ! empty( $posted['txn_id'] ) ) { |
|
| 324 | + $invoice->add_note( sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), $posted['txn_id'] ), false, false, true ); |
|
| 325 | + $invoice->set_transaction_id( $posted['txn_id'] ); |
|
| 326 | + } |
|
| 327 | 327 | |
| 328 | - // Update the payment status. |
|
| 329 | - $invoice->mark_paid(); |
|
| 328 | + // Update the payment status. |
|
| 329 | + $invoice->mark_paid(); |
|
| 330 | 330 | |
| 331 | - $invoice->add_note( sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ), $posted['subscr_id'] ), false, false, true ); |
|
| 331 | + $invoice->add_note( sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ), $posted['subscr_id'] ), false, false, true ); |
|
| 332 | 332 | |
| 333 | - wpinv_error_log( 'Subscription started.', false ); |
|
| 334 | - } |
|
| 333 | + wpinv_error_log( 'Subscription started.', false ); |
|
| 334 | + } |
|
| 335 | 335 | |
| 336 | - /** |
|
| 337 | - * Handles subscription renewals. |
|
| 338 | - * |
|
| 339 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 340 | - * @param array $posted Posted data. |
|
| 341 | - */ |
|
| 342 | - protected function ipn_txn_subscr_payment( $invoice, $posted ) { |
|
| 336 | + /** |
|
| 337 | + * Handles subscription renewals. |
|
| 338 | + * |
|
| 339 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 340 | + * @param array $posted Posted data. |
|
| 341 | + */ |
|
| 342 | + protected function ipn_txn_subscr_payment( $invoice, $posted ) { |
|
| 343 | 343 | |
| 344 | - // Make sure the invoice has a subscription. |
|
| 345 | - $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 344 | + // Make sure the invoice has a subscription. |
|
| 345 | + $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 346 | 346 | |
| 347 | - if ( empty( $subscription ) ) { |
|
| 348 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 349 | - } |
|
| 347 | + if ( empty( $subscription ) ) { |
|
| 348 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 349 | + } |
|
| 350 | 350 | |
| 351 | - wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false ); |
|
| 351 | + wpinv_error_log( 'Found subscription #' . $subscription->get_id(), false ); |
|
| 352 | 352 | |
| 353 | - // PayPal sends a subscr_payment for the first payment too. |
|
| 354 | - $date_completed = getpaid_format_date( $invoice->get_date_completed() ); |
|
| 355 | - $date_created = getpaid_format_date( $invoice->get_date_created() ); |
|
| 356 | - $today_date = getpaid_format_date( current_time( 'mysql' ) ); |
|
| 357 | - $payment_date = getpaid_format_date( $posted['payment_date'] ); |
|
| 358 | - $subscribe_date = getpaid_format_date( $subscription->get_date_created() ); |
|
| 359 | - $dates = array_filter( compact( 'date_completed', 'date_created', 'subscribe_date' ) ); |
|
| 353 | + // PayPal sends a subscr_payment for the first payment too. |
|
| 354 | + $date_completed = getpaid_format_date( $invoice->get_date_completed() ); |
|
| 355 | + $date_created = getpaid_format_date( $invoice->get_date_created() ); |
|
| 356 | + $today_date = getpaid_format_date( current_time( 'mysql' ) ); |
|
| 357 | + $payment_date = getpaid_format_date( $posted['payment_date'] ); |
|
| 358 | + $subscribe_date = getpaid_format_date( $subscription->get_date_created() ); |
|
| 359 | + $dates = array_filter( compact( 'date_completed', 'date_created', 'subscribe_date' ) ); |
|
| 360 | 360 | |
| 361 | - foreach ( $dates as $date ) { |
|
| 361 | + foreach ( $dates as $date ) { |
|
| 362 | 362 | |
| 363 | - if ( $date !== $today_date && $date !== $payment_date ) { |
|
| 364 | - continue; |
|
| 365 | - } |
|
| 363 | + if ( $date !== $today_date && $date !== $payment_date ) { |
|
| 364 | + continue; |
|
| 365 | + } |
|
| 366 | 366 | |
| 367 | - if ( ! empty( $posted['txn_id'] ) ) { |
|
| 368 | - $invoice->set_transaction_id( sanitize_text_field( $posted['txn_id'] ) ); |
|
| 369 | - $invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), sanitize_text_field( $posted['txn_id'] ) ), false, false, true ); |
|
| 370 | - } |
|
| 367 | + if ( ! empty( $posted['txn_id'] ) ) { |
|
| 368 | + $invoice->set_transaction_id( sanitize_text_field( $posted['txn_id'] ) ); |
|
| 369 | + $invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), sanitize_text_field( $posted['txn_id'] ) ), false, false, true ); |
|
| 370 | + } |
|
| 371 | 371 | |
| 372 | - return $invoice->mark_paid(); |
|
| 373 | - |
|
| 374 | - } |
|
| 372 | + return $invoice->mark_paid(); |
|
| 373 | + |
|
| 374 | + } |
|
| 375 | 375 | |
| 376 | - wpinv_error_log( 'Processing subscription renewal payment for the invoice ' . $invoice->get_id(), false ); |
|
| 377 | - |
|
| 378 | - // Abort if the payment is already recorded. |
|
| 379 | - if ( wpinv_get_id_by_transaction_id( $posted['txn_id'] ) ) { |
|
| 380 | - return wpinv_error_log( 'Aborting, Transaction ' . $posted['txn_id'] . ' has already been processed', false ); |
|
| 381 | - } |
|
| 382 | - |
|
| 383 | - $args = array( |
|
| 384 | - 'transaction_id' => $posted['txn_id'], |
|
| 385 | - 'gateway' => $this->id, |
|
| 386 | - ); |
|
| 387 | - |
|
| 388 | - $invoice = wpinv_get_invoice( $subscription->add_payment( $args ) ); |
|
| 376 | + wpinv_error_log( 'Processing subscription renewal payment for the invoice ' . $invoice->get_id(), false ); |
|
| 377 | + |
|
| 378 | + // Abort if the payment is already recorded. |
|
| 379 | + if ( wpinv_get_id_by_transaction_id( $posted['txn_id'] ) ) { |
|
| 380 | + return wpinv_error_log( 'Aborting, Transaction ' . $posted['txn_id'] . ' has already been processed', false ); |
|
| 381 | + } |
|
| 382 | + |
|
| 383 | + $args = array( |
|
| 384 | + 'transaction_id' => $posted['txn_id'], |
|
| 385 | + 'gateway' => $this->id, |
|
| 386 | + ); |
|
| 387 | + |
|
| 388 | + $invoice = wpinv_get_invoice( $subscription->add_payment( $args ) ); |
|
| 389 | 389 | |
| 390 | - if ( empty( $invoice ) ) { |
|
| 391 | - return; |
|
| 392 | - } |
|
| 390 | + if ( empty( $invoice ) ) { |
|
| 391 | + return; |
|
| 392 | + } |
|
| 393 | 393 | |
| 394 | - $invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), $posted['txn_id'] ), false, false, true ); |
|
| 395 | - $invoice->add_note( wp_sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ), $posted['subscr_id'] ), false, false, true ); |
|
| 394 | + $invoice->add_note( wp_sprintf( __( 'PayPal Transaction ID: %s', 'invoicing' ), $posted['txn_id'] ), false, false, true ); |
|
| 395 | + $invoice->add_note( wp_sprintf( __( 'PayPal Subscription ID: %s', 'invoicing' ), $posted['subscr_id'] ), false, false, true ); |
|
| 396 | 396 | |
| 397 | - $subscription->renew(); |
|
| 398 | - wpinv_error_log( 'Subscription renewed.', false ); |
|
| 397 | + $subscription->renew(); |
|
| 398 | + wpinv_error_log( 'Subscription renewed.', false ); |
|
| 399 | 399 | |
| 400 | - } |
|
| 400 | + } |
|
| 401 | 401 | |
| 402 | - /** |
|
| 403 | - * Handles subscription cancelations. |
|
| 404 | - * |
|
| 405 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 406 | - */ |
|
| 407 | - protected function ipn_txn_subscr_cancel( $invoice ) { |
|
| 402 | + /** |
|
| 403 | + * Handles subscription cancelations. |
|
| 404 | + * |
|
| 405 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 406 | + */ |
|
| 407 | + protected function ipn_txn_subscr_cancel( $invoice ) { |
|
| 408 | 408 | |
| 409 | - // Make sure the invoice has a subscription. |
|
| 410 | - $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 411 | - |
|
| 412 | - if ( empty( $subscription ) ) { |
|
| 413 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 414 | - } |
|
| 415 | - |
|
| 416 | - wpinv_error_log( 'Processing subscription cancellation for the invoice ' . $invoice->get_id(), false ); |
|
| 417 | - $subscription->cancel(); |
|
| 418 | - wpinv_error_log( 'Subscription cancelled.', false ); |
|
| 409 | + // Make sure the invoice has a subscription. |
|
| 410 | + $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 411 | + |
|
| 412 | + if ( empty( $subscription ) ) { |
|
| 413 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 414 | + } |
|
| 415 | + |
|
| 416 | + wpinv_error_log( 'Processing subscription cancellation for the invoice ' . $invoice->get_id(), false ); |
|
| 417 | + $subscription->cancel(); |
|
| 418 | + wpinv_error_log( 'Subscription cancelled.', false ); |
|
| 419 | 419 | |
| 420 | - } |
|
| 420 | + } |
|
| 421 | 421 | |
| 422 | - /** |
|
| 423 | - * Handles subscription completions. |
|
| 424 | - * |
|
| 425 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 426 | - * @param array $posted Posted data. |
|
| 427 | - */ |
|
| 428 | - protected function ipn_txn_subscr_eot( $invoice ) { |
|
| 422 | + /** |
|
| 423 | + * Handles subscription completions. |
|
| 424 | + * |
|
| 425 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 426 | + * @param array $posted Posted data. |
|
| 427 | + */ |
|
| 428 | + protected function ipn_txn_subscr_eot( $invoice ) { |
|
| 429 | 429 | |
| 430 | - // Make sure the invoice has a subscription. |
|
| 431 | - $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 430 | + // Make sure the invoice has a subscription. |
|
| 431 | + $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 432 | 432 | |
| 433 | - if ( empty( $subscription ) ) { |
|
| 434 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 435 | - } |
|
| 433 | + if ( empty( $subscription ) ) { |
|
| 434 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 435 | + } |
|
| 436 | 436 | |
| 437 | - wpinv_error_log( 'Processing subscription end of life for the invoice ' . $invoice->get_id(), false ); |
|
| 438 | - $subscription->complete(); |
|
| 439 | - wpinv_error_log( 'Subscription completed.', false ); |
|
| 437 | + wpinv_error_log( 'Processing subscription end of life for the invoice ' . $invoice->get_id(), false ); |
|
| 438 | + $subscription->complete(); |
|
| 439 | + wpinv_error_log( 'Subscription completed.', false ); |
|
| 440 | 440 | |
| 441 | - } |
|
| 441 | + } |
|
| 442 | 442 | |
| 443 | - /** |
|
| 444 | - * Handles subscription fails. |
|
| 445 | - * |
|
| 446 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 447 | - * @param array $posted Posted data. |
|
| 448 | - */ |
|
| 449 | - protected function ipn_txn_subscr_failed( $invoice ) { |
|
| 443 | + /** |
|
| 444 | + * Handles subscription fails. |
|
| 445 | + * |
|
| 446 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 447 | + * @param array $posted Posted data. |
|
| 448 | + */ |
|
| 449 | + protected function ipn_txn_subscr_failed( $invoice ) { |
|
| 450 | 450 | |
| 451 | - // Make sure the invoice has a subscription. |
|
| 452 | - $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 451 | + // Make sure the invoice has a subscription. |
|
| 452 | + $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 453 | 453 | |
| 454 | - if ( empty( $subscription ) ) { |
|
| 455 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 456 | - } |
|
| 454 | + if ( empty( $subscription ) ) { |
|
| 455 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 456 | + } |
|
| 457 | 457 | |
| 458 | - wpinv_error_log( 'Processing subscription payment failure for the invoice ' . $invoice->get_id(), false ); |
|
| 459 | - $subscription->failing(); |
|
| 460 | - wpinv_error_log( 'Subscription marked as failing.', false ); |
|
| 458 | + wpinv_error_log( 'Processing subscription payment failure for the invoice ' . $invoice->get_id(), false ); |
|
| 459 | + $subscription->failing(); |
|
| 460 | + wpinv_error_log( 'Subscription marked as failing.', false ); |
|
| 461 | 461 | |
| 462 | - } |
|
| 462 | + } |
|
| 463 | 463 | |
| 464 | - /** |
|
| 465 | - * Handles subscription suspensions. |
|
| 466 | - * |
|
| 467 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 468 | - * @param array $posted Posted data. |
|
| 469 | - */ |
|
| 470 | - protected function ipn_txn_recurring_payment_suspended_due_to_max_failed_payment( $invoice ) { |
|
| 464 | + /** |
|
| 465 | + * Handles subscription suspensions. |
|
| 466 | + * |
|
| 467 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 468 | + * @param array $posted Posted data. |
|
| 469 | + */ |
|
| 470 | + protected function ipn_txn_recurring_payment_suspended_due_to_max_failed_payment( $invoice ) { |
|
| 471 | 471 | |
| 472 | - // Make sure the invoice has a subscription. |
|
| 473 | - $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 472 | + // Make sure the invoice has a subscription. |
|
| 473 | + $subscription = getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 474 | 474 | |
| 475 | - if ( empty( $subscription ) ) { |
|
| 476 | - return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 477 | - } |
|
| 478 | - |
|
| 479 | - wpinv_error_log( 'Processing subscription cancellation due to max failed payment for the invoice ' . $invoice->get_id(), false ); |
|
| 480 | - $subscription->cancel(); |
|
| 481 | - wpinv_error_log( 'Subscription cancelled.', false ); |
|
| 482 | - } |
|
| 475 | + if ( empty( $subscription ) ) { |
|
| 476 | + return wpinv_error_log( 'Aborting, Subscription for the invoice ' . $invoice->get_id() . ' not found', false ); |
|
| 477 | + } |
|
| 478 | + |
|
| 479 | + wpinv_error_log( 'Processing subscription cancellation due to max failed payment for the invoice ' . $invoice->get_id(), false ); |
|
| 480 | + $subscription->cancel(); |
|
| 481 | + wpinv_error_log( 'Subscription cancelled.', false ); |
|
| 482 | + } |
|
| 483 | 483 | |
| 484 | 484 | } |
@@ -13,96 +13,96 @@ discard block |
||
| 13 | 13 | class GetPaid_Paypal_Gateway extends GetPaid_Payment_Gateway { |
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | - * Payment method id. |
|
| 17 | - * |
|
| 18 | - * @var string |
|
| 19 | - */ |
|
| 16 | + * Payment method id. |
|
| 17 | + * |
|
| 18 | + * @var string |
|
| 19 | + */ |
|
| 20 | 20 | public $id = 'paypal'; |
| 21 | 21 | |
| 22 | 22 | /** |
| 23 | - * An array of features that this gateway supports. |
|
| 24 | - * |
|
| 25 | - * @var array |
|
| 26 | - */ |
|
| 23 | + * An array of features that this gateway supports. |
|
| 24 | + * |
|
| 25 | + * @var array |
|
| 26 | + */ |
|
| 27 | 27 | protected $supports = array( 'subscription', 'sandbox', 'single_subscription_group' ); |
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | - * Payment method order. |
|
| 31 | - * |
|
| 32 | - * @var int |
|
| 33 | - */ |
|
| 30 | + * Payment method order. |
|
| 31 | + * |
|
| 32 | + * @var int |
|
| 33 | + */ |
|
| 34 | 34 | public $order = 1; |
| 35 | 35 | |
| 36 | 36 | /** |
| 37 | - * Stores line items to send to PayPal. |
|
| 38 | - * |
|
| 39 | - * @var array |
|
| 40 | - */ |
|
| 37 | + * Stores line items to send to PayPal. |
|
| 38 | + * |
|
| 39 | + * @var array |
|
| 40 | + */ |
|
| 41 | 41 | protected $line_items = array(); |
| 42 | 42 | |
| 43 | 43 | /** |
| 44 | - * Endpoint for requests from PayPal. |
|
| 45 | - * |
|
| 46 | - * @var string |
|
| 47 | - */ |
|
| 48 | - protected $notify_url; |
|
| 49 | - |
|
| 50 | - /** |
|
| 51 | - * Endpoint for requests to PayPal. |
|
| 52 | - * |
|
| 53 | - * @var string |
|
| 54 | - */ |
|
| 44 | + * Endpoint for requests from PayPal. |
|
| 45 | + * |
|
| 46 | + * @var string |
|
| 47 | + */ |
|
| 48 | + protected $notify_url; |
|
| 49 | + |
|
| 50 | + /** |
|
| 51 | + * Endpoint for requests to PayPal. |
|
| 52 | + * |
|
| 53 | + * @var string |
|
| 54 | + */ |
|
| 55 | 55 | protected $endpoint; |
| 56 | 56 | |
| 57 | 57 | /** |
| 58 | - * Currencies this gateway is allowed for. |
|
| 59 | - * |
|
| 60 | - * @var array |
|
| 61 | - */ |
|
| 62 | - public $currencies = array( 'AUD', 'BRL', 'CAD', 'MXN', 'NZD', 'HKD', 'SGD', 'USD', 'EUR', 'JPY', 'TRY', 'NOK', 'CZK', 'DKK', 'HUF', 'ILS', 'MYR', 'PHP', 'PLN', 'SEK', 'CHF', 'TWD', 'THB', 'GBP', 'RMB', 'RUB', 'INR' ); |
|
| 58 | + * Currencies this gateway is allowed for. |
|
| 59 | + * |
|
| 60 | + * @var array |
|
| 61 | + */ |
|
| 62 | + public $currencies = array( 'AUD', 'BRL', 'CAD', 'MXN', 'NZD', 'HKD', 'SGD', 'USD', 'EUR', 'JPY', 'TRY', 'NOK', 'CZK', 'DKK', 'HUF', 'ILS', 'MYR', 'PHP', 'PLN', 'SEK', 'CHF', 'TWD', 'THB', 'GBP', 'RMB', 'RUB', 'INR' ); |
|
| 63 | 63 | |
| 64 | 64 | /** |
| 65 | - * URL to view a transaction. |
|
| 66 | - * |
|
| 67 | - * @var string |
|
| 68 | - */ |
|
| 65 | + * URL to view a transaction. |
|
| 66 | + * |
|
| 67 | + * @var string |
|
| 68 | + */ |
|
| 69 | 69 | public $view_transaction_url = 'https://www.{sandbox}paypal.com/activity/payment/%s'; |
| 70 | 70 | |
| 71 | 71 | /** |
| 72 | - * URL to view a subscription. |
|
| 73 | - * |
|
| 74 | - * @var string |
|
| 75 | - */ |
|
| 76 | - public $view_subscription_url = 'https://www.{sandbox}paypal.com/cgi-bin/webscr?cmd=_profile-recurring-payments&encrypted_profile_id=%s'; |
|
| 72 | + * URL to view a subscription. |
|
| 73 | + * |
|
| 74 | + * @var string |
|
| 75 | + */ |
|
| 76 | + public $view_subscription_url = 'https://www.{sandbox}paypal.com/cgi-bin/webscr?cmd=_profile-recurring-payments&encrypted_profile_id=%s'; |
|
| 77 | 77 | |
| 78 | 78 | /** |
| 79 | - * Class constructor. |
|
| 80 | - */ |
|
| 81 | - public function __construct() { |
|
| 79 | + * Class constructor. |
|
| 80 | + */ |
|
| 81 | + public function __construct() { |
|
| 82 | 82 | |
| 83 | 83 | $this->title = __( 'PayPal Standard', 'invoicing' ); |
| 84 | 84 | $this->method_title = __( 'PayPal Standard', 'invoicing' ); |
| 85 | 85 | $this->checkout_button_text = __( 'Proceed to PayPal', 'invoicing' ); |
| 86 | 86 | $this->notify_url = wpinv_get_ipn_url( $this->id ); |
| 87 | 87 | |
| 88 | - add_filter( 'getpaid_paypal_args', array( $this, 'process_subscription' ), 10, 2 ); |
|
| 88 | + add_filter( 'getpaid_paypal_args', array( $this, 'process_subscription' ), 10, 2 ); |
|
| 89 | 89 | add_filter( 'getpaid_paypal_sandbox_notice', array( $this, 'sandbox_notice' ) ); |
| 90 | - add_filter( 'getpaid_get_paypal_connect_url', array( $this, 'maybe_get_connect_url' ), 10, 2 ); |
|
| 91 | - add_action( 'getpaid_authenticated_admin_action_connect_paypal', array( $this, 'connect_paypal' ) ); |
|
| 90 | + add_filter( 'getpaid_get_paypal_connect_url', array( $this, 'maybe_get_connect_url' ), 10, 2 ); |
|
| 91 | + add_action( 'getpaid_authenticated_admin_action_connect_paypal', array( $this, 'connect_paypal' ) ); |
|
| 92 | 92 | |
| 93 | - parent::__construct(); |
|
| 93 | + parent::__construct(); |
|
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | /** |
| 97 | - * Process Payment. |
|
| 98 | - * |
|
| 99 | - * |
|
| 100 | - * @param WPInv_Invoice $invoice Invoice. |
|
| 101 | - * @param array $submission_data Posted checkout fields. |
|
| 102 | - * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
| 103 | - * @return array |
|
| 104 | - */ |
|
| 105 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
| 97 | + * Process Payment. |
|
| 98 | + * |
|
| 99 | + * |
|
| 100 | + * @param WPInv_Invoice $invoice Invoice. |
|
| 101 | + * @param array $submission_data Posted checkout fields. |
|
| 102 | + * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
| 103 | + * @return array |
|
| 104 | + */ |
|
| 105 | + public function process_payment( $invoice, $submission_data, $submission ) { |
|
| 106 | 106 | |
| 107 | 107 | // Get redirect url. |
| 108 | 108 | $paypal_redirect = $this->get_request_url( $invoice ); |
@@ -125,15 +125,15 @@ discard block |
||
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | /** |
| 128 | - * Get the PayPal request URL for an invoice. |
|
| 129 | - * |
|
| 130 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 131 | - * @return string |
|
| 132 | - */ |
|
| 133 | - public function get_request_url( $invoice ) { |
|
| 128 | + * Get the PayPal request URL for an invoice. |
|
| 129 | + * |
|
| 130 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 131 | + * @return string |
|
| 132 | + */ |
|
| 133 | + public function get_request_url( $invoice ) { |
|
| 134 | 134 | |
| 135 | 135 | // Endpoint for this request |
| 136 | - $this->endpoint = $this->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr?test_ipn=1&' : 'https://www.paypal.com/cgi-bin/webscr?'; |
|
| 136 | + $this->endpoint = $this->is_sandbox( $invoice ) ? 'https://www.sandbox.paypal.com/cgi-bin/webscr?test_ipn=1&' : 'https://www.paypal.com/cgi-bin/webscr?'; |
|
| 137 | 137 | |
| 138 | 138 | // Retrieve paypal args. |
| 139 | 139 | $paypal_args = map_deep( $this->get_paypal_args( $invoice ), 'urlencode' ); |
@@ -146,45 +146,45 @@ discard block |
||
| 146 | 146 | |
| 147 | 147 | return add_query_arg( $paypal_args, $this->endpoint ); |
| 148 | 148 | |
| 149 | - } |
|
| 149 | + } |
|
| 150 | 150 | |
| 151 | 151 | /** |
| 152 | - * Get PayPal Args for passing to PP. |
|
| 153 | - * |
|
| 154 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 155 | - * @return array |
|
| 156 | - */ |
|
| 157 | - protected function get_paypal_args( $invoice ) { |
|
| 152 | + * Get PayPal Args for passing to PP. |
|
| 153 | + * |
|
| 154 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 155 | + * @return array |
|
| 156 | + */ |
|
| 157 | + protected function get_paypal_args( $invoice ) { |
|
| 158 | 158 | |
| 159 | 159 | // Whether or not to send the line items as one item. |
| 160 | - $force_one_line_item = apply_filters( 'getpaid_paypal_force_one_line_item', true, $invoice ); |
|
| 161 | - |
|
| 162 | - if ( $invoice->is_recurring() || ( wpinv_use_taxes() && wpinv_prices_include_tax() ) ) { |
|
| 163 | - $force_one_line_item = true; |
|
| 164 | - } |
|
| 165 | - |
|
| 166 | - $paypal_args = apply_filters( |
|
| 167 | - 'getpaid_paypal_args', |
|
| 168 | - array_merge( |
|
| 169 | - $this->get_transaction_args( $invoice ), |
|
| 170 | - $this->get_line_item_args( $invoice, $force_one_line_item ) |
|
| 171 | - ), |
|
| 172 | - $invoice |
|
| 173 | - ); |
|
| 174 | - |
|
| 175 | - return $this->fix_request_length( $invoice, $paypal_args ); |
|
| 160 | + $force_one_line_item = apply_filters( 'getpaid_paypal_force_one_line_item', true, $invoice ); |
|
| 161 | + |
|
| 162 | + if ( $invoice->is_recurring() || ( wpinv_use_taxes() && wpinv_prices_include_tax() ) ) { |
|
| 163 | + $force_one_line_item = true; |
|
| 164 | + } |
|
| 165 | + |
|
| 166 | + $paypal_args = apply_filters( |
|
| 167 | + 'getpaid_paypal_args', |
|
| 168 | + array_merge( |
|
| 169 | + $this->get_transaction_args( $invoice ), |
|
| 170 | + $this->get_line_item_args( $invoice, $force_one_line_item ) |
|
| 171 | + ), |
|
| 172 | + $invoice |
|
| 173 | + ); |
|
| 174 | + |
|
| 175 | + return $this->fix_request_length( $invoice, $paypal_args ); |
|
| 176 | 176 | } |
| 177 | 177 | |
| 178 | 178 | /** |
| 179 | - * Get transaction args for paypal request. |
|
| 180 | - * |
|
| 181 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 182 | - * @return array |
|
| 183 | - */ |
|
| 184 | - protected function get_transaction_args( $invoice ) { |
|
| 185 | - |
|
| 186 | - $email = $this->is_sandbox( $invoice ) ? wpinv_get_option( 'paypal_sandbox_email', wpinv_get_option( 'paypal_email', '' ) ) : wpinv_get_option( 'paypal_email', '' ); |
|
| 187 | - return array( |
|
| 179 | + * Get transaction args for paypal request. |
|
| 180 | + * |
|
| 181 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 182 | + * @return array |
|
| 183 | + */ |
|
| 184 | + protected function get_transaction_args( $invoice ) { |
|
| 185 | + |
|
| 186 | + $email = $this->is_sandbox( $invoice ) ? wpinv_get_option( 'paypal_sandbox_email', wpinv_get_option( 'paypal_email', '' ) ) : wpinv_get_option( 'paypal_email', '' ); |
|
| 187 | + return array( |
|
| 188 | 188 | 'cmd' => '_cart', |
| 189 | 189 | 'business' => $email, |
| 190 | 190 | 'no_shipping' => '1', |
@@ -209,16 +209,16 @@ discard block |
||
| 209 | 209 | } |
| 210 | 210 | |
| 211 | 211 | /** |
| 212 | - * Get line item args for paypal request. |
|
| 213 | - * |
|
| 214 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 215 | - * @param bool $force_one_line_item Create only one item for this invoice. |
|
| 216 | - * @return array |
|
| 217 | - */ |
|
| 218 | - protected function get_line_item_args( $invoice, $force_one_line_item = false ) { |
|
| 212 | + * Get line item args for paypal request. |
|
| 213 | + * |
|
| 214 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 215 | + * @param bool $force_one_line_item Create only one item for this invoice. |
|
| 216 | + * @return array |
|
| 217 | + */ |
|
| 218 | + protected function get_line_item_args( $invoice, $force_one_line_item = false ) { |
|
| 219 | 219 | |
| 220 | 220 | // Maybe send invoice as a single item. |
| 221 | - if ( $force_one_line_item ) { |
|
| 221 | + if ( $force_one_line_item ) { |
|
| 222 | 222 | return $this->get_line_item_args_single_item( $invoice ); |
| 223 | 223 | } |
| 224 | 224 | |
@@ -238,129 +238,129 @@ discard block |
||
| 238 | 238 | $line_item_args['discount_amount_cart'] = wpinv_sanitize_amount( (float) $invoice->get_total_discount(), 2 ); |
| 239 | 239 | } |
| 240 | 240 | |
| 241 | - return array_merge( $line_item_args, $this->get_line_items() ); |
|
| 241 | + return array_merge( $line_item_args, $this->get_line_items() ); |
|
| 242 | 242 | |
| 243 | 243 | } |
| 244 | 244 | |
| 245 | 245 | /** |
| 246 | - * Get line item args for paypal request as a single line item. |
|
| 247 | - * |
|
| 248 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 249 | - * @return array |
|
| 250 | - */ |
|
| 251 | - protected function get_line_item_args_single_item( $invoice ) { |
|
| 252 | - $this->delete_line_items(); |
|
| 246 | + * Get line item args for paypal request as a single line item. |
|
| 247 | + * |
|
| 248 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 249 | + * @return array |
|
| 250 | + */ |
|
| 251 | + protected function get_line_item_args_single_item( $invoice ) { |
|
| 252 | + $this->delete_line_items(); |
|
| 253 | 253 | |
| 254 | 254 | $item_name = sprintf( __( 'Invoice #%s', 'invoicing' ), $invoice->get_number() ); |
| 255 | - $this->add_line_item( $item_name, 1, wpinv_round_amount( (float) $invoice->get_total(), 2, true ), $invoice->get_id() ); |
|
| 255 | + $this->add_line_item( $item_name, 1, wpinv_round_amount( (float) $invoice->get_total(), 2, true ), $invoice->get_id() ); |
|
| 256 | 256 | |
| 257 | - return $this->get_line_items(); |
|
| 257 | + return $this->get_line_items(); |
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | 260 | /** |
| 261 | - * Return all line items. |
|
| 262 | - */ |
|
| 263 | - protected function get_line_items() { |
|
| 264 | - return $this->line_items; |
|
| 265 | - } |
|
| 261 | + * Return all line items. |
|
| 262 | + */ |
|
| 263 | + protected function get_line_items() { |
|
| 264 | + return $this->line_items; |
|
| 265 | + } |
|
| 266 | 266 | |
| 267 | 267 | /** |
| 268 | - * Remove all line items. |
|
| 269 | - */ |
|
| 270 | - protected function delete_line_items() { |
|
| 271 | - $this->line_items = array(); |
|
| 268 | + * Remove all line items. |
|
| 269 | + */ |
|
| 270 | + protected function delete_line_items() { |
|
| 271 | + $this->line_items = array(); |
|
| 272 | 272 | } |
| 273 | 273 | |
| 274 | 274 | /** |
| 275 | - * Prepare line items to send to paypal. |
|
| 276 | - * |
|
| 277 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 278 | - */ |
|
| 279 | - protected function prepare_line_items( $invoice ) { |
|
| 280 | - $this->delete_line_items(); |
|
| 281 | - |
|
| 282 | - // Items. |
|
| 283 | - foreach ( $invoice->get_items() as $item ) { |
|
| 284 | - $amount = $item->get_price(); |
|
| 285 | - $quantity = $invoice->get_template() == 'amount' ? 1 : $item->get_quantity(); |
|
| 286 | - $this->add_line_item( $item->get_raw_name(), $quantity, $amount, $item->get_id() ); |
|
| 275 | + * Prepare line items to send to paypal. |
|
| 276 | + * |
|
| 277 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 278 | + */ |
|
| 279 | + protected function prepare_line_items( $invoice ) { |
|
| 280 | + $this->delete_line_items(); |
|
| 281 | + |
|
| 282 | + // Items. |
|
| 283 | + foreach ( $invoice->get_items() as $item ) { |
|
| 284 | + $amount = $item->get_price(); |
|
| 285 | + $quantity = $invoice->get_template() == 'amount' ? 1 : $item->get_quantity(); |
|
| 286 | + $this->add_line_item( $item->get_raw_name(), $quantity, $amount, $item->get_id() ); |
|
| 287 | 287 | } |
| 288 | 288 | |
| 289 | 289 | // Fees. |
| 290 | - foreach ( $invoice->get_fees() as $fee => $data ) { |
|
| 290 | + foreach ( $invoice->get_fees() as $fee => $data ) { |
|
| 291 | 291 | $this->add_line_item( $fee, 1, wpinv_sanitize_amount( $data['initial_fee'] ) ); |
| 292 | 292 | } |
| 293 | 293 | |
| 294 | 294 | } |
| 295 | 295 | |
| 296 | 296 | /** |
| 297 | - * Add PayPal Line Item. |
|
| 298 | - * |
|
| 299 | - * @param string $item_name Item name. |
|
| 300 | - * @param float $quantity Item quantity. |
|
| 301 | - * @param float $amount Amount. |
|
| 302 | - * @param string $item_number Item number. |
|
| 303 | - */ |
|
| 304 | - protected function add_line_item( $item_name, $quantity = 1, $amount = 0.0, $item_number = '' ) { |
|
| 305 | - $index = ( count( $this->line_items ) / 4 ) + 1; |
|
| 306 | - |
|
| 307 | - $item = apply_filters( |
|
| 308 | - 'getpaid_paypal_line_item', |
|
| 309 | - array( |
|
| 310 | - 'item_name' => html_entity_decode( getpaid_limit_length( $item_name ? wp_strip_all_tags( $item_name ) : __( 'Item', 'invoicing' ), 127 ), ENT_NOQUOTES, 'UTF-8' ), |
|
| 311 | - 'quantity' => (float) $quantity, |
|
| 312 | - 'amount' => wpinv_sanitize_amount( (float) $amount, 2 ), |
|
| 313 | - 'item_number' => $item_number, |
|
| 314 | - ), |
|
| 315 | - $item_name, |
|
| 316 | - $quantity, |
|
| 317 | - $amount, |
|
| 318 | - $item_number |
|
| 319 | - ); |
|
| 320 | - |
|
| 321 | - $this->line_items[ 'item_name_' . $index ] = getpaid_limit_length( $item['item_name'], 127 ); |
|
| 297 | + * Add PayPal Line Item. |
|
| 298 | + * |
|
| 299 | + * @param string $item_name Item name. |
|
| 300 | + * @param float $quantity Item quantity. |
|
| 301 | + * @param float $amount Amount. |
|
| 302 | + * @param string $item_number Item number. |
|
| 303 | + */ |
|
| 304 | + protected function add_line_item( $item_name, $quantity = 1, $amount = 0.0, $item_number = '' ) { |
|
| 305 | + $index = ( count( $this->line_items ) / 4 ) + 1; |
|
| 306 | + |
|
| 307 | + $item = apply_filters( |
|
| 308 | + 'getpaid_paypal_line_item', |
|
| 309 | + array( |
|
| 310 | + 'item_name' => html_entity_decode( getpaid_limit_length( $item_name ? wp_strip_all_tags( $item_name ) : __( 'Item', 'invoicing' ), 127 ), ENT_NOQUOTES, 'UTF-8' ), |
|
| 311 | + 'quantity' => (float) $quantity, |
|
| 312 | + 'amount' => wpinv_sanitize_amount( (float) $amount, 2 ), |
|
| 313 | + 'item_number' => $item_number, |
|
| 314 | + ), |
|
| 315 | + $item_name, |
|
| 316 | + $quantity, |
|
| 317 | + $amount, |
|
| 318 | + $item_number |
|
| 319 | + ); |
|
| 320 | + |
|
| 321 | + $this->line_items[ 'item_name_' . $index ] = getpaid_limit_length( $item['item_name'], 127 ); |
|
| 322 | 322 | $this->line_items[ 'quantity_' . $index ] = $item['quantity']; |
| 323 | 323 | |
| 324 | 324 | // The price or amount of the product, service, or contribution, not including shipping, handling, or tax. |
| 325 | - $this->line_items[ 'amount_' . $index ] = $item['amount'] * $item['quantity']; |
|
| 326 | - $this->line_items[ 'item_number_' . $index ] = getpaid_limit_length( $item['item_number'], 127 ); |
|
| 325 | + $this->line_items[ 'amount_' . $index ] = $item['amount'] * $item['quantity']; |
|
| 326 | + $this->line_items[ 'item_number_' . $index ] = getpaid_limit_length( $item['item_number'], 127 ); |
|
| 327 | 327 | } |
| 328 | 328 | |
| 329 | 329 | /** |
| 330 | - * If the default request with line items is too long, generate a new one with only one line item. |
|
| 331 | - * |
|
| 332 | - * https://support.microsoft.com/en-us/help/208427/maximum-url-length-is-2-083-characters-in-internet-explorer. |
|
| 333 | - * |
|
| 334 | - * @param WPInv_Invoice $invoice Invoice to be sent to Paypal. |
|
| 335 | - * @param array $paypal_args Arguments sent to Paypal in the request. |
|
| 336 | - * @return array |
|
| 337 | - */ |
|
| 338 | - protected function fix_request_length( $invoice, $paypal_args ) { |
|
| 339 | - $max_paypal_length = 2083; |
|
| 340 | - $query_candidate = http_build_query( $paypal_args, '', '&' ); |
|
| 341 | - |
|
| 342 | - if ( strlen( $this->endpoint . $query_candidate ) <= $max_paypal_length ) { |
|
| 343 | - return $paypal_args; |
|
| 344 | - } |
|
| 345 | - |
|
| 346 | - return apply_filters( |
|
| 347 | - 'getpaid_paypal_args', |
|
| 348 | - array_merge( |
|
| 349 | - $this->get_transaction_args( $invoice ), |
|
| 350 | - $this->get_line_item_args( $invoice, true ) |
|
| 351 | - ), |
|
| 352 | - $invoice |
|
| 353 | - ); |
|
| 330 | + * If the default request with line items is too long, generate a new one with only one line item. |
|
| 331 | + * |
|
| 332 | + * https://support.microsoft.com/en-us/help/208427/maximum-url-length-is-2-083-characters-in-internet-explorer. |
|
| 333 | + * |
|
| 334 | + * @param WPInv_Invoice $invoice Invoice to be sent to Paypal. |
|
| 335 | + * @param array $paypal_args Arguments sent to Paypal in the request. |
|
| 336 | + * @return array |
|
| 337 | + */ |
|
| 338 | + protected function fix_request_length( $invoice, $paypal_args ) { |
|
| 339 | + $max_paypal_length = 2083; |
|
| 340 | + $query_candidate = http_build_query( $paypal_args, '', '&' ); |
|
| 341 | + |
|
| 342 | + if ( strlen( $this->endpoint . $query_candidate ) <= $max_paypal_length ) { |
|
| 343 | + return $paypal_args; |
|
| 344 | + } |
|
| 345 | + |
|
| 346 | + return apply_filters( |
|
| 347 | + 'getpaid_paypal_args', |
|
| 348 | + array_merge( |
|
| 349 | + $this->get_transaction_args( $invoice ), |
|
| 350 | + $this->get_line_item_args( $invoice, true ) |
|
| 351 | + ), |
|
| 352 | + $invoice |
|
| 353 | + ); |
|
| 354 | 354 | |
| 355 | 355 | } |
| 356 | 356 | |
| 357 | 357 | /** |
| 358 | - * Processes recurring invoices. |
|
| 359 | - * |
|
| 360 | - * @param array $paypal_args PayPal args. |
|
| 361 | - * @param WPInv_Invoice $invoice Invoice object. |
|
| 362 | - */ |
|
| 363 | - public function process_subscription( $paypal_args, $invoice ) { |
|
| 358 | + * Processes recurring invoices. |
|
| 359 | + * |
|
| 360 | + * @param array $paypal_args PayPal args. |
|
| 361 | + * @param WPInv_Invoice $invoice Invoice object. |
|
| 362 | + */ |
|
| 363 | + public function process_subscription( $paypal_args, $invoice ) { |
|
| 364 | 364 | |
| 365 | 365 | // Make sure this is a subscription. |
| 366 | 366 | if ( ! $invoice->is_recurring() || ! $subscription = getpaid_get_invoice_subscription( $invoice ) ) { |
@@ -381,21 +381,21 @@ discard block |
||
| 381 | 381 | $recurring_amount = (float) wpinv_sanitize_amount( $invoice->get_recurring_total(), 2 ); |
| 382 | 382 | $subscription_item = $invoice->get_recurring( true ); |
| 383 | 383 | |
| 384 | - // Convert 365 days to 1 year. |
|
| 385 | - if ( 'D' == $period && 365 == $interval ) { |
|
| 386 | - $period = 'Y'; |
|
| 387 | - $interval = 1; |
|
| 388 | - } |
|
| 384 | + // Convert 365 days to 1 year. |
|
| 385 | + if ( 'D' == $period && 365 == $interval ) { |
|
| 386 | + $period = 'Y'; |
|
| 387 | + $interval = 1; |
|
| 388 | + } |
|
| 389 | 389 | |
| 390 | 390 | if ( $subscription_item->has_free_trial() ) { |
| 391 | 391 | |
| 392 | 392 | $paypal_args['a1'] = 0 == $initial_amount ? 0 : $initial_amount; |
| 393 | 393 | |
| 394 | - // Trial period length. |
|
| 395 | - $paypal_args['p1'] = $subscription_item->get_trial_interval(); |
|
| 394 | + // Trial period length. |
|
| 395 | + $paypal_args['p1'] = $subscription_item->get_trial_interval(); |
|
| 396 | 396 | |
| 397 | - // Trial period. |
|
| 398 | - $paypal_args['t1'] = $subscription_item->get_trial_period(); |
|
| 397 | + // Trial period. |
|
| 398 | + $paypal_args['t1'] = $subscription_item->get_trial_period(); |
|
| 399 | 399 | |
| 400 | 400 | } elseif ( $initial_amount != $recurring_amount ) { |
| 401 | 401 | |
@@ -418,40 +418,40 @@ discard block |
||
| 418 | 418 | } |
| 419 | 419 | |
| 420 | 420 | // We have a recurring payment |
| 421 | - if ( ! isset( $param_number ) || 1 == $param_number ) { |
|
| 421 | + if ( ! isset( $param_number ) || 1 == $param_number ) { |
|
| 422 | 422 | |
| 423 | - // Subscription price |
|
| 424 | - $paypal_args['a3'] = $recurring_amount; |
|
| 423 | + // Subscription price |
|
| 424 | + $paypal_args['a3'] = $recurring_amount; |
|
| 425 | 425 | |
| 426 | - // Subscription duration |
|
| 427 | - $paypal_args['p3'] = $interval; |
|
| 426 | + // Subscription duration |
|
| 427 | + $paypal_args['p3'] = $interval; |
|
| 428 | 428 | |
| 429 | - // Subscription period |
|
| 430 | - $paypal_args['t3'] = $period; |
|
| 429 | + // Subscription period |
|
| 430 | + $paypal_args['t3'] = $period; |
|
| 431 | 431 | |
| 432 | 432 | } |
| 433 | 433 | |
| 434 | 434 | // Recurring payments |
| 435 | - if ( 1 == $bill_times || ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() && 2 == $bill_times ) ) { |
|
| 435 | + if ( 1 == $bill_times || ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() && 2 == $bill_times ) ) { |
|
| 436 | 436 | |
| 437 | - // Non-recurring payments |
|
| 438 | - $paypal_args['src'] = 0; |
|
| 437 | + // Non-recurring payments |
|
| 438 | + $paypal_args['src'] = 0; |
|
| 439 | 439 | |
| 440 | - } else { |
|
| 440 | + } else { |
|
| 441 | 441 | |
| 442 | - $paypal_args['src'] = 1; |
|
| 442 | + $paypal_args['src'] = 1; |
|
| 443 | 443 | |
| 444 | - if ( $bill_times > 0 ) { |
|
| 444 | + if ( $bill_times > 0 ) { |
|
| 445 | 445 | |
| 446 | - // An initial period is being used to charge a sign-up fee |
|
| 447 | - if ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() ) { |
|
| 448 | - $bill_times--; |
|
| 449 | - } |
|
| 446 | + // An initial period is being used to charge a sign-up fee |
|
| 447 | + if ( $initial_amount != $recurring_amount && ! $subscription_item->has_free_trial() ) { |
|
| 448 | + $bill_times--; |
|
| 449 | + } |
|
| 450 | 450 | |
| 451 | 451 | // Make sure it's not over the max of 52 |
| 452 | 452 | $paypal_args['srt'] = ( $bill_times <= 52 ? absint( $bill_times ) : 52 ); |
| 453 | 453 | |
| 454 | - } |
|
| 454 | + } |
|
| 455 | 455 | } |
| 456 | 456 | |
| 457 | 457 | // Force return URL so that order description & instructions display |
@@ -466,19 +466,19 @@ discard block |
||
| 466 | 466 | } |
| 467 | 467 | |
| 468 | 468 | return apply_filters( |
| 469 | - 'getpaid_paypal_subscription_args', |
|
| 470 | - $paypal_args, |
|
| 471 | - $invoice |
|
| 469 | + 'getpaid_paypal_subscription_args', |
|
| 470 | + $paypal_args, |
|
| 471 | + $invoice |
|
| 472 | 472 | ); |
| 473 | 473 | |
| 474 | 474 | } |
| 475 | 475 | |
| 476 | 476 | /** |
| 477 | - * Processes ipns and marks payments as complete. |
|
| 478 | - * |
|
| 479 | - * @return void |
|
| 480 | - */ |
|
| 481 | - public function verify_ipn() { |
|
| 477 | + * Processes ipns and marks payments as complete. |
|
| 478 | + * |
|
| 479 | + * @return void |
|
| 480 | + */ |
|
| 481 | + public function verify_ipn() { |
|
| 482 | 482 | new GetPaid_Paypal_Gateway_IPN_Handler( $this ); |
| 483 | 483 | } |
| 484 | 484 | |
@@ -488,19 +488,19 @@ discard block |
||
| 488 | 488 | public function sandbox_notice() { |
| 489 | 489 | |
| 490 | 490 | return sprintf( |
| 491 | - __( 'SANDBOX ENABLED. You can use sandbox testing accounts only. See the %1$sPayPal Sandbox Testing Guide%2$s for more details.', 'invoicing' ), |
|
| 492 | - '<a href="https://developer.paypal.com/docs/classic/lifecycle/ug_sandbox/">', |
|
| 493 | - '</a>' |
|
| 494 | - ); |
|
| 491 | + __( 'SANDBOX ENABLED. You can use sandbox testing accounts only. See the %1$sPayPal Sandbox Testing Guide%2$s for more details.', 'invoicing' ), |
|
| 492 | + '<a href="https://developer.paypal.com/docs/classic/lifecycle/ug_sandbox/">', |
|
| 493 | + '</a>' |
|
| 494 | + ); |
|
| 495 | 495 | |
| 496 | 496 | } |
| 497 | 497 | |
| 498 | - /** |
|
| 499 | - * Filters the gateway settings. |
|
| 500 | - * |
|
| 501 | - * @param array $admin_settings |
|
| 502 | - */ |
|
| 503 | - public function admin_settings( $admin_settings ) { |
|
| 498 | + /** |
|
| 499 | + * Filters the gateway settings. |
|
| 500 | + * |
|
| 501 | + * @param array $admin_settings |
|
| 502 | + */ |
|
| 503 | + public function admin_settings( $admin_settings ) { |
|
| 504 | 504 | |
| 505 | 505 | $currencies = sprintf( |
| 506 | 506 | __( 'Supported Currencies: %s', 'invoicing' ), |
@@ -510,39 +510,39 @@ discard block |
||
| 510 | 510 | $admin_settings['paypal_active']['desc'] .= " ($currencies)"; |
| 511 | 511 | $admin_settings['paypal_desc']['std'] = __( 'Pay via PayPal: you can pay with your credit card if you don\'t have a PayPal account.', 'invoicing' ); |
| 512 | 512 | |
| 513 | - // Access tokens. |
|
| 514 | - $live_email = wpinv_get_option( 'paypal_email' ); |
|
| 515 | - $sandbox_email = wpinv_get_option( 'paypal_sandbox_email' ); |
|
| 516 | - |
|
| 517 | - $admin_settings['paypal_connect'] = array( |
|
| 518 | - 'type' => 'raw_html', |
|
| 519 | - 'id' => 'paypal_connect', |
|
| 520 | - 'name' => __( 'Connect to PayPal', 'invoicing' ), |
|
| 521 | - 'desc' => sprintf( |
|
| 522 | - '<div class="wpinv-paypal-connect-live"><a class="button button-primary" href="%s">%s</a></div><div class="wpinv-paypal-connect-sandbox"><a class="button button-primary" href="%s">%s</a></div>%s', |
|
| 523 | - esc_url( self::get_connect_url( false ) ), |
|
| 524 | - __( 'Connect to PayPal', 'invoicing' ), |
|
| 525 | - esc_url( self::get_connect_url( true ) ), |
|
| 526 | - __( 'Connect to PayPal Sandox', 'invoicing' ), |
|
| 527 | - $this->get_js() |
|
| 528 | - ), |
|
| 529 | - ); |
|
| 513 | + // Access tokens. |
|
| 514 | + $live_email = wpinv_get_option( 'paypal_email' ); |
|
| 515 | + $sandbox_email = wpinv_get_option( 'paypal_sandbox_email' ); |
|
| 516 | + |
|
| 517 | + $admin_settings['paypal_connect'] = array( |
|
| 518 | + 'type' => 'raw_html', |
|
| 519 | + 'id' => 'paypal_connect', |
|
| 520 | + 'name' => __( 'Connect to PayPal', 'invoicing' ), |
|
| 521 | + 'desc' => sprintf( |
|
| 522 | + '<div class="wpinv-paypal-connect-live"><a class="button button-primary" href="%s">%s</a></div><div class="wpinv-paypal-connect-sandbox"><a class="button button-primary" href="%s">%s</a></div>%s', |
|
| 523 | + esc_url( self::get_connect_url( false ) ), |
|
| 524 | + __( 'Connect to PayPal', 'invoicing' ), |
|
| 525 | + esc_url( self::get_connect_url( true ) ), |
|
| 526 | + __( 'Connect to PayPal Sandox', 'invoicing' ), |
|
| 527 | + $this->get_js() |
|
| 528 | + ), |
|
| 529 | + ); |
|
| 530 | 530 | |
| 531 | 531 | $admin_settings['paypal_email'] = array( |
| 532 | 532 | 'type' => 'text', |
| 533 | - 'class' => 'live-auth-data', |
|
| 533 | + 'class' => 'live-auth-data', |
|
| 534 | 534 | 'id' => 'paypal_email', |
| 535 | 535 | 'name' => __( 'Live Email Address', 'invoicing' ), |
| 536 | 536 | 'desc' => __( 'The email address of your PayPal account.', 'invoicing' ), |
| 537 | 537 | ); |
| 538 | 538 | |
| 539 | - $admin_settings['paypal_sandbox_email'] = array( |
|
| 539 | + $admin_settings['paypal_sandbox_email'] = array( |
|
| 540 | 540 | 'type' => 'text', |
| 541 | - 'class' => 'sandbox-auth-data', |
|
| 541 | + 'class' => 'sandbox-auth-data', |
|
| 542 | 542 | 'id' => 'paypal_sandbox_email', |
| 543 | 543 | 'name' => __( 'Sandbox Email Address', 'invoicing' ), |
| 544 | 544 | 'desc' => __( 'The email address of your sandbox PayPal account.', 'invoicing' ), |
| 545 | - 'std' => wpinv_get_option( 'paypal_email', '' ), |
|
| 545 | + 'std' => wpinv_get_option( 'paypal_email', '' ), |
|
| 546 | 546 | ); |
| 547 | 547 | |
| 548 | 548 | $admin_settings['paypal_ipn_url'] = array( |
@@ -554,29 +554,29 @@ discard block |
||
| 554 | 554 | 'readonly' => true, |
| 555 | 555 | ); |
| 556 | 556 | |
| 557 | - return $admin_settings; |
|
| 558 | - } |
|
| 557 | + return $admin_settings; |
|
| 558 | + } |
|
| 559 | 559 | |
| 560 | - /** |
|
| 561 | - * Retrieves the PayPal connect URL when using the setup wizzard. |
|
| 562 | - * |
|
| 563 | - * |
|
| 560 | + /** |
|
| 561 | + * Retrieves the PayPal connect URL when using the setup wizzard. |
|
| 562 | + * |
|
| 563 | + * |
|
| 564 | 564 | * @param array $data |
| 565 | 565 | * @return string |
| 566 | - */ |
|
| 567 | - public static function maybe_get_connect_url( $url = '', $data = array() ) { |
|
| 568 | - return self::get_connect_url( false, urldecode( $data['redirect'] ) ); |
|
| 569 | - } |
|
| 570 | - |
|
| 571 | - /** |
|
| 572 | - * Retrieves the PayPal connect URL. |
|
| 573 | - * |
|
| 574 | - * |
|
| 566 | + */ |
|
| 567 | + public static function maybe_get_connect_url( $url = '', $data = array() ) { |
|
| 568 | + return self::get_connect_url( false, urldecode( $data['redirect'] ) ); |
|
| 569 | + } |
|
| 570 | + |
|
| 571 | + /** |
|
| 572 | + * Retrieves the PayPal connect URL. |
|
| 573 | + * |
|
| 574 | + * |
|
| 575 | 575 | * @param bool $is_sandbox |
| 576 | - * @param string $redirect |
|
| 576 | + * @param string $redirect |
|
| 577 | 577 | * @return string |
| 578 | - */ |
|
| 579 | - public static function get_connect_url( $is_sandbox, $redirect = '' ) { |
|
| 578 | + */ |
|
| 579 | + public static function get_connect_url( $is_sandbox, $redirect = '' ) { |
|
| 580 | 580 | |
| 581 | 581 | $redirect_url = add_query_arg( |
| 582 | 582 | array( |
@@ -586,7 +586,7 @@ discard block |
||
| 586 | 586 | 'tab' => 'gateways', |
| 587 | 587 | 'section' => 'paypal', |
| 588 | 588 | 'getpaid-nonce' => wp_create_nonce( 'getpaid-nonce' ), |
| 589 | - 'redirect' => urlencode( $redirect ), |
|
| 589 | + 'redirect' => urlencode( $redirect ), |
|
| 590 | 590 | ), |
| 591 | 591 | admin_url( 'admin.php' ) |
| 592 | 592 | ); |
@@ -601,12 +601,12 @@ discard block |
||
| 601 | 601 | |
| 602 | 602 | } |
| 603 | 603 | |
| 604 | - /** |
|
| 605 | - * Generates settings page js. |
|
| 606 | - * |
|
| 604 | + /** |
|
| 605 | + * Generates settings page js. |
|
| 606 | + * |
|
| 607 | 607 | * @return void |
| 608 | - */ |
|
| 609 | - public static function get_js() { |
|
| 608 | + */ |
|
| 609 | + public static function get_js() { |
|
| 610 | 610 | ob_start(); |
| 611 | 611 | ?> |
| 612 | 612 | <script> |
@@ -642,70 +642,70 @@ discard block |
||
| 642 | 642 | return ob_get_clean(); |
| 643 | 643 | } |
| 644 | 644 | |
| 645 | - /** |
|
| 646 | - * Connects to PayPal. |
|
| 647 | - * |
|
| 648 | - * @param array $data Connection data. |
|
| 649 | - * @return void |
|
| 650 | - */ |
|
| 651 | - public function connect_paypal( $data ) { |
|
| 652 | - |
|
| 653 | - $sandbox = $this->is_sandbox(); |
|
| 654 | - $data = wp_unslash( $data ); |
|
| 655 | - $access_token = empty( $data['access_token'] ) ? '' : sanitize_text_field( $data['access_token'] ); |
|
| 656 | - |
|
| 657 | - if ( isset( $data['live_mode'] ) ) { |
|
| 658 | - $sandbox = empty( $data['live_mode'] ); |
|
| 659 | - } |
|
| 660 | - |
|
| 661 | - wpinv_update_option( 'paypal_sandbox', (int) $sandbox ); |
|
| 662 | - wpinv_update_option( 'paypal_active', 1 ); |
|
| 663 | - |
|
| 664 | - if ( ! empty( $data['error_description'] ) ) { |
|
| 665 | - getpaid_admin()->show_error( wp_kses_post( urldecode( $data['error_description'] ) ) ); |
|
| 666 | - } else { |
|
| 667 | - |
|
| 668 | - // Retrieve the user info. |
|
| 669 | - $user_info = wp_remote_get( |
|
| 670 | - ! $sandbox ? 'https://api-m.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1' : 'https://api-m.sandbox.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1', |
|
| 671 | - array( |
|
| 672 | - |
|
| 673 | - 'headers' => array( |
|
| 674 | - 'Authorization' => 'Bearer ' . $access_token, |
|
| 675 | - 'Content-type' => 'application/json', |
|
| 676 | - ), |
|
| 677 | - |
|
| 678 | - ) |
|
| 679 | - ); |
|
| 680 | - |
|
| 681 | - if ( is_wp_error( $user_info ) ) { |
|
| 682 | - getpaid_admin()->show_error( wp_kses_post( $user_info->get_error_message() ) ); |
|
| 683 | - } else { |
|
| 684 | - |
|
| 685 | - // Create application. |
|
| 686 | - $user_info = json_decode( wp_remote_retrieve_body( $user_info ) ); |
|
| 687 | - |
|
| 688 | - if ( $sandbox ) { |
|
| 689 | - wpinv_update_option( 'paypal_sandbox_email', sanitize_email( $user_info->emails[0]->value ) ); |
|
| 690 | - wpinv_update_option( 'paypal_sandbox_refresh_token', sanitize_text_field( urldecode( $data['refresh_token'] ) ) ); |
|
| 691 | - set_transient( 'getpaid_paypal_sandbox_access_token', sanitize_text_field( urldecode( $data['access_token'] ) ), (int) $data['expires_in'] ); |
|
| 692 | - getpaid_admin()->show_success( __( 'Successfully connected your PayPal sandbox account', 'invoicing' ) ); |
|
| 693 | - } else { |
|
| 694 | - wpinv_update_option( 'paypal_email', sanitize_email( $user_info->emails[0]->value ) ); |
|
| 695 | - wpinv_update_option( 'paypal_refresh_token', sanitize_text_field( urldecode( $data['refresh_token'] ) ) ); |
|
| 696 | - set_transient( 'getpaid_paypal_access_token', sanitize_text_field( urldecode( $data['access_token'] ) ), (int) $data['expires_in'] ); |
|
| 697 | - getpaid_admin()->show_success( __( 'Successfully connected your PayPal account', 'invoicing' ) ); |
|
| 698 | - } |
|
| 645 | + /** |
|
| 646 | + * Connects to PayPal. |
|
| 647 | + * |
|
| 648 | + * @param array $data Connection data. |
|
| 649 | + * @return void |
|
| 650 | + */ |
|
| 651 | + public function connect_paypal( $data ) { |
|
| 652 | + |
|
| 653 | + $sandbox = $this->is_sandbox(); |
|
| 654 | + $data = wp_unslash( $data ); |
|
| 655 | + $access_token = empty( $data['access_token'] ) ? '' : sanitize_text_field( $data['access_token'] ); |
|
| 656 | + |
|
| 657 | + if ( isset( $data['live_mode'] ) ) { |
|
| 658 | + $sandbox = empty( $data['live_mode'] ); |
|
| 659 | + } |
|
| 660 | + |
|
| 661 | + wpinv_update_option( 'paypal_sandbox', (int) $sandbox ); |
|
| 662 | + wpinv_update_option( 'paypal_active', 1 ); |
|
| 663 | + |
|
| 664 | + if ( ! empty( $data['error_description'] ) ) { |
|
| 665 | + getpaid_admin()->show_error( wp_kses_post( urldecode( $data['error_description'] ) ) ); |
|
| 666 | + } else { |
|
| 667 | + |
|
| 668 | + // Retrieve the user info. |
|
| 669 | + $user_info = wp_remote_get( |
|
| 670 | + ! $sandbox ? 'https://api-m.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1' : 'https://api-m.sandbox.paypal.com/v1/identity/oauth2/userinfo?schema=paypalv1.1', |
|
| 671 | + array( |
|
| 672 | + |
|
| 673 | + 'headers' => array( |
|
| 674 | + 'Authorization' => 'Bearer ' . $access_token, |
|
| 675 | + 'Content-type' => 'application/json', |
|
| 676 | + ), |
|
| 677 | + |
|
| 678 | + ) |
|
| 679 | + ); |
|
| 680 | + |
|
| 681 | + if ( is_wp_error( $user_info ) ) { |
|
| 682 | + getpaid_admin()->show_error( wp_kses_post( $user_info->get_error_message() ) ); |
|
| 683 | + } else { |
|
| 684 | + |
|
| 685 | + // Create application. |
|
| 686 | + $user_info = json_decode( wp_remote_retrieve_body( $user_info ) ); |
|
| 687 | + |
|
| 688 | + if ( $sandbox ) { |
|
| 689 | + wpinv_update_option( 'paypal_sandbox_email', sanitize_email( $user_info->emails[0]->value ) ); |
|
| 690 | + wpinv_update_option( 'paypal_sandbox_refresh_token', sanitize_text_field( urldecode( $data['refresh_token'] ) ) ); |
|
| 691 | + set_transient( 'getpaid_paypal_sandbox_access_token', sanitize_text_field( urldecode( $data['access_token'] ) ), (int) $data['expires_in'] ); |
|
| 692 | + getpaid_admin()->show_success( __( 'Successfully connected your PayPal sandbox account', 'invoicing' ) ); |
|
| 693 | + } else { |
|
| 694 | + wpinv_update_option( 'paypal_email', sanitize_email( $user_info->emails[0]->value ) ); |
|
| 695 | + wpinv_update_option( 'paypal_refresh_token', sanitize_text_field( urldecode( $data['refresh_token'] ) ) ); |
|
| 696 | + set_transient( 'getpaid_paypal_access_token', sanitize_text_field( urldecode( $data['access_token'] ) ), (int) $data['expires_in'] ); |
|
| 697 | + getpaid_admin()->show_success( __( 'Successfully connected your PayPal account', 'invoicing' ) ); |
|
| 698 | + } |
|
| 699 | 699 | } |
| 700 | 700 | } |
| 701 | 701 | |
| 702 | - $redirect = empty( $data['redirect'] ) ? admin_url( 'admin.php?page=wpinv-settings&tab=gateways§ion=paypal' ) : urldecode( $data['redirect'] ); |
|
| 702 | + $redirect = empty( $data['redirect'] ) ? admin_url( 'admin.php?page=wpinv-settings&tab=gateways§ion=paypal' ) : urldecode( $data['redirect'] ); |
|
| 703 | 703 | |
| 704 | - if ( isset( $data['step'] ) ) { |
|
| 705 | - $redirect = add_query_arg( 'step', $data['step'], $redirect ); |
|
| 706 | - } |
|
| 707 | - wp_redirect( $redirect ); |
|
| 708 | - exit; |
|
| 709 | - } |
|
| 704 | + if ( isset( $data['step'] ) ) { |
|
| 705 | + $redirect = add_query_arg( 'step', $data['step'], $redirect ); |
|
| 706 | + } |
|
| 707 | + wp_redirect( $redirect ); |
|
| 708 | + exit; |
|
| 709 | + } |
|
| 710 | 710 | |
| 711 | 711 | } |