-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwpuf-payment.php
210 lines (172 loc) · 7.63 KB
/
wpuf-payment.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<?php
/**
* WP User Frontend payment gateway handler
*
* @since 0.8
* @package WP User Frontend
*/
class WPUF_Payment {
function __construct() {
add_action( 'init', array($this, 'send_to_gateway') );
add_action( 'wpuf_payment_received', array($this, 'payment_notify_admin') );
add_filter( 'the_content', array($this, 'payment_page') );
}
public static function get_payment_gateways() {
// default, built-in gateways
$gateways = array(
'paypal' => array('admin_label' => 'PayPal', 'checkout_label' => 'PayPal')
);
$gateways = apply_filters( 'wpuf_payment_gateways', $gateways );
return $gateways;
}
/**
* Get active payment gateways
*
* @return array
*/
function get_active_gateways() {
$all_gateways = wpuf_get_gateways( 'checkout' );
$active_gateways = wpuf_get_option( 'active_gateways', 'wpuf_payment' );
$active_gateways = is_array( $active_gateways ) ? $active_gateways : array();
$gateways = array();
foreach ($all_gateways as $id => $label) {
if ( array_key_exists( $id, $active_gateways ) ) {
$gateways[$id] = $label;
}
}
return $gateways;
}
function payment_page( $content ) {
global $post;
$pay_page = intval( wpuf_get_option( 'payment_page', 'wpuf_payment' ) );
if ( $post->ID == $pay_page && isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'wpuf_pay' ) {
if ( !is_user_logged_in() ) {
return __( 'You are not logged in', 'wpuf' );
}
$type = ( $_REQUEST['type'] == 'post' ) ? 'post' : 'pack';
$post_id = isset( $_REQUEST['post_id'] ) ? intval( $_REQUEST['post_id'] ) : 0;
$pack_id = isset( $_REQUEST['pack_id'] ) ? intval( $_REQUEST['pack_id'] ) : 0;
$gateways = $this->get_active_gateways();
ob_start();
?>
<?php if ( count( $gateways ) ) { ?>
<form id="wpuf-payment-gateway" action="<?php echo $_SERVER["REQUEST_URI"]; ?>" method="POST">
<?php wp_nonce_field( 'wpuf_payment_gateway' ) ?>
<?php do_action( 'wpuf_before_payment_gateway' ); ?>
<p>
<label for="wpuf-payment-method"><?php _e( 'Choose Your Payment Method', 'wpuf' ); ?></label><br />
<select name="wpuf_payment_method" id="wpuf-payment-method">
<?php
foreach ($gateways as $gateway_id => $gateway) {
echo '<option value="' . $gateway_id . '">' . $gateway . '</option>';
}
?>
</select>
</p>
<?php do_action( 'wpuf_after_payment_gateway' ); ?>
<p>
<input type="hidden" name="type" value="<?php echo $type; ?>" />
<input type="hidden" name="action" value="wpuf_pay" />
<?php if ( $post_id ) { ?>
<input type="hidden" name="post_id" value="<?php echo $post_id; ?>" />
<?php } ?>
<?php if ( $pack_id ) { ?>
<input type="hidden" name="pack_id" value="<?php echo $pack_id; ?>" />
<?php } ?>
<input type="submit" name="wpuf_payment_submit" value="<?php _e( 'Proceed', 'wpuf' ); ?>"/>
</p>
</form>
<?php } else { ?>
<?php _e( 'No Payment gateway found', 'wpuf' ); ?>
<?php } ?>
<?php
return ob_get_clean();
}
return $content;
}
/**
* Send payment handler to the gateway
*
* This function sends the payment handler mechanism to the selected
* gateway. If 'paypal' is selected, then a particular action is being
* called. A listener function can be invoked for that gateway to handle
* the request and send it to the gateway.
*
* Need to use `wpuf_gateway_{$gateway_name}
*/
function send_to_gateway() {
if ( isset( $_POST['wpuf_payment_submit'] ) && $_POST['action'] == 'wpuf_pay' && wp_verify_nonce( $_POST['_wpnonce'], 'wpuf_payment_gateway' ) ) {
$post_id = isset( $_REQUEST['post_id'] ) ? intval( $_REQUEST['post_id'] ) : 0;
$pack_id = isset( $_REQUEST['pack_id'] ) ? intval( $_REQUEST['pack_id'] ) : 0;
$gateway = $_POST['wpuf_payment_method'];
$type = $_POST['type'];
$userdata = wp_get_current_user();
switch ($type) {
case 'post':
$post = get_post( $post_id );
$amount = wpuf_get_option( 'cost_per_post', 'wpuf_payment' );
$item_number = get_post_meta( $post_id, 'wpuf_order_id', true );
$item_name = $post->post_title;
break;
case 'pack':
$subscription = new WPUF_Subscription();
$pack = $subscription->get_subscription( $pack_id );
$amount = $pack->cost;
$item_name = $pack->name;
$item_number = $pack->id;
break;
}
$payment_vars = array(
'currency' => wpuf_get_option( 'currency', 'wpuf_payment' ),
'price' => $amount,
'item_number' => $item_number,
'item_name' => $item_name,
'type' => $type,
'user_info' => array(
'id' => $userdata->ID,
'email' => $userdata->user_email,
'first_name' => $userdata->first_name,
'last_name' => $userdata->last_name
),
'date' => date( 'Y-m-d H:i:s' ),
'post_data' => $_POST,
);
do_action( 'wpuf_gateway_' . $gateway, $payment_vars );
}
}
/**
* Insert payment info to database
*
* @global object $wpdb
* @param array $data payment data to insert
* @param int $transaction_id the transaction id in case of update
*/
public static function insert_payment( $data, $transaction_id = 0 ) {
global $wpdb;
//check if it's already there
$sql = "SELECT transaction_id
FROM " . $wpdb->prefix . "wpuf_transaction
WHERE transaction_id = '" . $wpdb->escape( wpuf_clean_tags( $transaction_id ) ) . "' LIMIT 1";
$result = $wpdb->get_row( $sql );
if ( !$result ) {
$wpdb->insert( $wpdb->prefix . 'wpuf_transaction', $data );
do_action( 'wpuf_payment_received', $data );
} else {
$wpdb->update( $wpdb->prefix . 'wpuf_transaction', $data, array('transaction_id' => $transaction_id) );
WPUF_Main::log( 'info', 'updating existing transaction: ' . $transaction_id );
}
}
/**
* Send payment received mail
*
* @param array $info payment information
*/
function payment_notify_admin( $info ) {
$headers = "From: " . get_bloginfo( 'name' ) . " <" . get_bloginfo( 'admin_email' ) . ">" . "\r\n\\";
$subject = sprintf( __( '[%s] Payment Received', 'wpuf' ), get_bloginfo( 'name' ) );
$msg = sprintf( __( 'New payment received at %s', 'wpuf' ), get_bloginfo( 'name' ) );
$receiver = get_bloginfo( 'admin_email' );
wp_mail( $receiver, $subject, $msg, $headers );
}
}
$wpuf_payment = new WPUF_Payment();