1 | <?php |
||
2 | defined( 'ABSPATH' ) || die( 'This plugin must be run within the scope of WordPress.' ); |
||
3 | |||
4 | if ( ! class_exists( 'EDU_KlarnaCheckout' ) ) { |
||
5 | class EDU_KlarnaCheckout extends EDU_Integration { |
||
6 | public function __construct() { |
||
7 | $this->id = 'eduadmin-klarnacheckout'; |
||
8 | $this->displayName = __( 'Klarna Checkout', 'eduadmin-wp-klarna-checkout' ); |
||
9 | $this->description = ''; |
||
10 | $this->type = 'payment'; |
||
11 | |||
12 | $this->init_form_fields(); |
||
13 | $this->init_settings(); |
||
14 | |||
15 | add_action( 'eduadmin-checkpaymentplugins', array( $this, 'intercept_booking' ) ); |
||
16 | add_action( 'eduadmin-processbooking', array( $this, 'process_booking' ) ); |
||
17 | add_action( 'eduadmin-bookingcompleted', array( $this, 'process_klarnaresponse' ) ); |
||
18 | add_action( 'wp_loaded', array( $this, 'process_paymentstatus' ) ); |
||
19 | |||
20 | add_shortcode( 'eduadmin-klarna-testpage', array( $this, 'test_page' ) ); |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @param $attributes |
||
25 | */ |
||
26 | public function test_page( $attributes ) { |
||
27 | $attributes = shortcode_atts( |
||
28 | array( |
||
29 | 'bookingid' => 0, |
||
30 | 'programmebookingid' => 0, |
||
31 | ), |
||
32 | normalize_empty_atts( $attributes ), |
||
33 | 'test_page' |
||
34 | ); |
||
35 | |||
36 | if ( $attributes['bookingid'] > 0 ) { |
||
37 | $event_booking = EDUAPI()->OData->Bookings->GetItem( |
||
38 | $attributes['bookingid'], |
||
39 | null, |
||
40 | 'Customer($select=CustomerId;),ContactPerson($select=PersonId;),OrderRows', |
||
41 | false |
||
42 | ); |
||
43 | } elseif ( $attributes['programmebookingid'] > 0 ) { |
||
44 | $event_booking = EDUAPI()->OData->ProgrammeBookings->GetItem( |
||
45 | $attributes['programmebookingid'], |
||
46 | null, |
||
47 | 'Customer($select=CustomerId;),ContactPerson($select=PersonId;),OrderRows', |
||
48 | false |
||
49 | ); |
||
50 | } |
||
51 | |||
52 | $_customer = EDUAPI()->OData->Customers->GetItem( |
||
53 | $event_booking['Customer']['CustomerId'], |
||
54 | null, |
||
55 | "BillingInfo", |
||
56 | false |
||
57 | ); |
||
58 | |||
59 | $_contact = EDUAPI()->OData->Persons->GetItem( |
||
60 | $event_booking['ContactPerson']['PersonId'], |
||
61 | null, |
||
62 | null, |
||
63 | false |
||
64 | ); |
||
65 | |||
66 | $ebi = new EduAdmin_BookingInfo( $event_booking, $_customer, $_contact ); |
||
67 | |||
68 | if ( ! empty( EDU()->session['klarna-order-id'] ) && ! empty( $_GET['klarna_order_id'] ) && EDU()->session['klarna-order-id'] === $_GET['klarna_order_id'] ) { |
||
69 | do_action( 'eduadmin-bookingcompleted', $ebi ); |
||
70 | } else { |
||
71 | do_action( 'eduadmin-processbooking', $ebi ); |
||
72 | } |
||
73 | } |
||
74 | |||
75 | /** |
||
76 | * @param EduAdmin_BookingInfo|null $ebi |
||
77 | */ |
||
78 | public function intercept_booking( $ebi = null ) { |
||
79 | if ( 'no' === $this->get_option( 'enabled', 'no' ) ) { |
||
80 | return; |
||
81 | } |
||
82 | |||
83 | if ( ! empty( $_POST['act'] ) && ( 'bookCourse' === $_POST['act'] || 'bookProgramme' === $_POST['act'] ) ) { |
||
84 | $ebi->NoRedirect = true; |
||
85 | } |
||
86 | } |
||
87 | |||
88 | /** |
||
89 | * @param EduAdmin_BookingInfo|null $ebi |
||
90 | */ |
||
91 | public function process_booking( $ebi = null ) { |
||
92 | if ( 'no' === $this->get_option( 'enabled', 'no' ) ) { |
||
93 | return; |
||
94 | } |
||
95 | |||
96 | $ebi->NoRedirect = true; |
||
97 | |||
98 | if ( empty( $_GET['klarna_order_id'] ) || empty( EDU()->session['klarna-order-id'] ) ) { |
||
99 | $checkout = $this->create_checkout( $ebi ); |
||
100 | |||
101 | $snippet = $checkout['gui']['snippet']; |
||
102 | echo "<div>{$snippet}</div>"; |
||
103 | } |
||
104 | } |
||
105 | |||
106 | public function process_klarnaresponse() { |
||
107 | if ( 'no' === $this->get_option( 'enabled', 'no' ) ) { |
||
108 | return; |
||
109 | } |
||
110 | $checkout_url = ! checked( $this->get_option( 'test_mode', 'no' ), '1', false ) ? Klarna_Checkout_Connector::BASE_URL : Klarna_Checkout_Connector::BASE_TEST_URL; |
||
111 | $shared_secret = $this->get_option( 'shared_secret', '' ); |
||
112 | |||
113 | if ( ! empty( $_GET['klarna_order_id'] ) && ! empty( EDU()->session['klarna-order-id'] ) && EDU()->session['klarna-order-id'] === $_GET['klarna_order_id'] ) { |
||
114 | try { |
||
115 | $connector = Klarna_Checkout_Connector::create( |
||
116 | $shared_secret, |
||
117 | $checkout_url |
||
118 | ); |
||
119 | |||
120 | $order_id = EDU()->session['klarna-order-id']; |
||
121 | |||
122 | $order = new Klarna_Checkout_Order( $connector, $order_id ); |
||
123 | |||
124 | $order->fetch(); |
||
125 | |||
126 | $snippet = $order['gui']['snippet']; |
||
127 | echo "<div>{$snippet}</div>"; |
||
128 | EDU()->session['klarna-order-id'] = null; |
||
129 | |||
130 | } catch ( Klarna_Checkout_ApiErrorException $ex ) { |
||
131 | EDU()->write_debug( $ex->getMessage() ); |
||
132 | EDU()->write_debug( $ex->getPayload() ); |
||
133 | } |
||
134 | } |
||
135 | } |
||
136 | |||
137 | public function init_form_fields() { |
||
138 | $this->setting_fields = array( |
||
139 | 'enabled' => array( |
||
140 | 'title' => __( 'Enabled', 'edauadmin-wp-klarna-checkout' ), |
||
141 | 'type' => 'checkbox', |
||
142 | 'description' => __( 'Enables/Disabled the integration with Klarna Checkout', 'eduadmin-wp-klarna-checkout' ), |
||
143 | 'default' => 'no', |
||
144 | ), |
||
145 | 'eid' => array( |
||
146 | 'title' => __( 'EID', 'eduadmin-wp-klarna-checkout' ), |
||
147 | 'type' => 'text', |
||
148 | 'description' => __( 'The EID to connect to Klarna Checkout v2', 'eduadmin-wp-klarna-checkout' ), |
||
149 | 'default' => '', |
||
150 | ), |
||
151 | 'shared_secret' => array( |
||
152 | 'title' => __( 'Shared secret', 'eduadmin-wp-klarna-checkout' ), |
||
153 | 'type' => 'password', |
||
154 | 'description' => __( 'The shared secret to connect to Klarna Checkout v2', 'eduadmin-wp-klarna-checkout' ), |
||
155 | 'default' => '', |
||
156 | ), |
||
157 | 'termsurl' => array( |
||
158 | 'title' => __( 'Terms and Conditions URL', 'eduadmin-wp-klarna-checkout' ), |
||
159 | 'type' => 'text', |
||
160 | 'description' => __( 'This URL is required for Klarna Checkout', 'eduadmin-wp-klarna-checkout' ), |
||
161 | 'default' => '', |
||
162 | ), |
||
163 | 'test_mode' => array( |
||
164 | 'title' => __( 'Test mode', 'eduadmin-wp-klarna-checkout' ), |
||
165 | 'type' => 'checkbox', |
||
166 | 'description' => __( 'Enables test mode, so you can test the integration', 'eduadmin-wp-klarna-checkout' ), |
||
167 | 'default' => 'no', |
||
168 | ), |
||
169 | ); |
||
170 | } |
||
171 | |||
172 | /** |
||
173 | * @param EduAdmin_BookingInfo|null $ebi |
||
174 | * |
||
175 | * @return Klarna_Checkout_Order|null |
||
176 | */ |
||
177 | public function create_checkout( $ebi = null ) { |
||
178 | |||
179 | $checkout_url = ! checked( $this->get_option( 'test_mode', 'no' ), '1', false ) ? Klarna_Checkout_Connector::BASE_URL : Klarna_Checkout_Connector::BASE_TEST_URL; |
||
180 | $shared_secret = $this->get_option( 'shared_secret', '' ); |
||
181 | |||
182 | $create = array(); |
||
183 | |||
184 | $organization = EDUAPIHelper()->GetOrganization(); |
||
185 | $purchase_country = $organization["CountryCode"]; |
||
186 | |||
187 | $emd_info = array( |
||
188 | 'unique_account_identifier' => ( ! empty( $ebi->Contact['Email'] ) ? $ebi->Contact['Email'] : $ebi->Contact['PersonId'] ), |
||
189 | 'account_registration_date' => date( 'Y-m-d\TH:i', strtotime( $ebi->Contact['Created'] ) ), |
||
190 | 'account_last_modified' => date( 'Y-m-d\TH:i' ) |
||
191 | ); |
||
192 | |||
193 | $emd_info = array( $emd_info ); |
||
194 | $emd_attachment = json_encode( array( |
||
195 | 'customer_account_info' => $emd_info |
||
196 | ) ); |
||
197 | |||
198 | $create['attachment'] = array(); |
||
199 | $create['attachment']['content_type'] = 'application/vnd.klarna.internal.emd-v2+json'; |
||
200 | $create['attachment']['body'] = $emd_attachment; |
||
201 | |||
202 | $create['locale'] = strtolower( str_replace( '_', '-', get_locale() ) ); |
||
203 | $create['purchase_country'] = $purchase_country; |
||
204 | $create['purchase_currency'] = get_option( 'eduadmin-currency', 'SEK' ); |
||
205 | |||
206 | $merchant = array(); |
||
207 | $merchant['id'] = $this->get_option( 'eid', '' ); |
||
208 | $merchant['terms_uri'] = $this->get_option( 'termsurl', '' ); |
||
209 | |||
210 | $current_url = esc_url( "{$_SERVER['REQUEST_SCHEME']}://{$_SERVER['HTTP_HOST']}{$_SERVER['REQUEST_URI']}" ); |
||
211 | |||
212 | $booking_id = 0; |
||
213 | $programme_booking_id = 0; |
||
214 | |||
215 | $reference_id = 0; |
||
216 | |||
217 | $_event = null; |
||
218 | |||
219 | if ( ! empty( $ebi->EventBooking['BookingId'] ) ) { |
||
220 | $booking_id = intval( $ebi->EventBooking['BookingId'] ); |
||
221 | $reference_id = $booking_id; |
||
222 | |||
223 | $_event = EDUAPI()->OData->Events->GetItem( $ebi->EventBooking['EventId'] ); |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
224 | } |
||
225 | |||
226 | if ( ! empty( $ebi->EventBooking['ProgrammeBookingId'] ) ) { |
||
227 | $programme_booking_id = intval( $ebi->EventBooking['ProgrammeBookingId'] ); |
||
228 | $reference_id = $programme_booking_id; |
||
229 | |||
230 | $_event = EDUAPI()->OData->ProgrammeStarts->GetItem( $ebi->EventBooking['ProgrammeStartId'] ); |
||
231 | } |
||
232 | |||
233 | $rowExtraInfo = ""; |
||
234 | |||
235 | if ( null != $_event ) { |
||
236 | if ( ! empty( $_event['City'] ) ) { |
||
237 | $rowExtraInfo .= ';' . $_event['City']; |
||
238 | } |
||
239 | |||
240 | if ( ! empty( $_event['StartDate'] ) ) { |
||
241 | $rowExtraInfo .= ';' . date( "Y-m-d", strtotime( $_event['StartDate'] ) ); |
||
242 | } |
||
243 | |||
244 | if ( ! empty( $_event['EndDate'] ) ) { |
||
245 | $rowExtraInfo .= ';' . date( "Y-m-d", strtotime( $_event['EndDate'] ) ); |
||
246 | } |
||
247 | } |
||
248 | |||
249 | $confirmation_url = add_query_arg( |
||
250 | array( |
||
251 | 'klarna_order_id' => '{checkout.order.id}', |
||
252 | 'booking_id' => $booking_id, |
||
253 | 'programme_booking_id' => $programme_booking_id, |
||
254 | 'edu-valid-form' => wp_create_nonce( 'edu-booking-confirm' ), |
||
255 | 'act' => 'paymentCompleted', |
||
256 | 'edu-thankyou' => $reference_id |
||
257 | ), |
||
258 | $current_url |
||
259 | ); |
||
260 | |||
261 | $push_url = add_query_arg( |
||
262 | array( |
||
263 | 'klarna_order_id' => '{checkout.order.id}', |
||
264 | 'booking_id' => $booking_id, |
||
265 | 'programme_booking_id' => $programme_booking_id, |
||
266 | 'status' => 'push', |
||
267 | ), |
||
268 | $current_url |
||
269 | ); |
||
270 | |||
271 | $merchant['checkout_uri'] = $current_url; |
||
272 | $merchant['confirmation_uri'] = $confirmation_url; |
||
273 | $merchant['push_uri'] = $push_url; |
||
274 | |||
275 | $create['merchant'] = $merchant; |
||
276 | |||
277 | $create['merchant_reference'] = array(); |
||
278 | $create['merchant_reference']['orderid1'] = $reference_id; |
||
279 | $create['merchant_reference']['orderid2'] = $reference_id; |
||
280 | |||
281 | $create['cart'] = array(); |
||
282 | $create['cart']['items'] = array(); |
||
283 | |||
284 | foreach ( $ebi->EventBooking['OrderRows'] as $order_row ) { |
||
285 | $cart_item = array(); |
||
286 | |||
287 | $cart_item['reference'] = $order_row['ItemNumber']; |
||
288 | $cart_item['name'] = $order_row['Description'] . $rowExtraInfo; |
||
289 | $cart_item['quantity'] = intval( $order_row['Quantity'] ); |
||
290 | |||
291 | if ( ! $order_row['PriceIncVat'] ) { |
||
292 | $price_per_unit = $order_row['PricePerUnit'] * ( 1 + ( $order_row['VatPercent'] / 100 ) ) * 100; |
||
293 | } else { |
||
294 | $price_per_unit = $order_row['PricePerUnit'] * 100; |
||
295 | } |
||
296 | |||
297 | $cart_item['unit_price'] = $price_per_unit; |
||
298 | $cart_item['tax_rate'] = intval( $order_row['VatPercent'] * 100 ); |
||
299 | $cart_item['discount_rate'] = intval( $order_row['DiscountPercent'] * 100 ); |
||
300 | |||
301 | $create['cart']['items'][] = $cart_item; |
||
302 | } |
||
303 | |||
304 | try { |
||
305 | $connector = Klarna_Checkout_Connector::create( |
||
306 | $shared_secret, |
||
307 | $checkout_url |
||
308 | ); |
||
309 | |||
310 | $order = new Klarna_Checkout_Order( $connector ); |
||
311 | $order->create( $create ); |
||
312 | |||
313 | $order->fetch(); |
||
314 | |||
315 | $order_id = $order['id']; |
||
316 | EDU()->session['klarna-order-id'] = $order_id; |
||
317 | |||
318 | return $order; |
||
319 | } catch ( Klarna_Checkout_ApiErrorException $ex ) { |
||
320 | EDU()->write_debug( $ex->getMessage() ); |
||
321 | EDU()->write_debug( $ex->getPayload() ); |
||
322 | |||
323 | return null; |
||
324 | } |
||
325 | } |
||
326 | |||
327 | public function process_paymentstatus() { |
||
328 | if ( ! empty( $_GET['klarna_order_id'] ) && ! empty( $_GET['status'] ) ) { |
||
329 | $checkout_url = ! checked( $this->get_option( 'test_mode', 'no' ), '1', false ) ? Klarna_Checkout_Connector::BASE_URL : Klarna_Checkout_Connector::BASE_TEST_URL; |
||
330 | $shared_secret = $this->get_option( 'shared_secret', '' ); |
||
331 | |||
332 | try { |
||
333 | $connector = Klarna_Checkout_Connector::create( |
||
334 | $shared_secret, |
||
335 | $checkout_url |
||
336 | ); |
||
337 | |||
338 | $order_id = $_GET['klarna_order_id']; |
||
339 | |||
340 | $order = new Klarna_Checkout_Order( $connector, $order_id ); |
||
341 | |||
342 | $order->fetch(); |
||
343 | |||
344 | $booking_id = intval( $_GET['booking_id'] ); |
||
345 | $programme_booking_id = intval( $_GET['programme_booking_id'] ); |
||
346 | |||
347 | |||
348 | if ( 'checkout_complete' === $order['status'] ) { |
||
349 | |||
350 | $patch_booking = new stdClass(); |
||
351 | $patch_booking->Paid = true; |
||
352 | |||
353 | // We're setting this as a Card Payment, so that our service in the background will remove it if it doesn't get paid in time (15 minute slot) |
||
354 | $patch_booking->PaymentMethodId = 2; |
||
355 | |||
356 | if ( $booking_id > 0 ) { |
||
357 | EDUAPI()->REST->Booking->PatchBooking( |
||
358 | $booking_id, |
||
359 | $patch_booking |
||
360 | ); |
||
361 | } |
||
362 | |||
363 | if ( $programme_booking_id > 0 ) { |
||
364 | EDUAPI()->REST->ProgrammeBooking->PatchBooking( |
||
365 | $programme_booking_id, |
||
366 | $patch_booking |
||
367 | ); |
||
368 | } |
||
369 | |||
370 | $update = array(); |
||
371 | $update['status'] = 'created'; |
||
372 | $order->update( $update ); |
||
373 | } |
||
374 | exit( 0 ); |
||
375 | } catch ( Klarna_Checkout_ApiErrorException $ex ) { |
||
376 | EDU()->write_debug( $ex->getMessage() ); |
||
377 | EDU()->write_debug( $ex->getPayload() ); |
||
378 | exit( 1 ); |
||
379 | } |
||
380 | } |
||
381 | } |
||
382 | } |
||
383 | } |
||
384 |