/var/www/html/wp-content/plugins/woocommerce/includes/abstracts/abstract-wc-payment-token.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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
<?php
/**
 * Abstract payment tokens
 *
 * Generic payment tokens functionality which can be extended by individual types of payment tokens.
 *
 * @class WC_Payment_Token
 * @package WooCommerce\Abstracts
 */

if ( ! defined'ABSPATH' ) ) {
    exit;
}

require_once 
WC_ABSPATH 'includes/legacy/abstract-wc-legacy-payment-token.php';

/**
 * WooCommerce Payment Token.
 *
 * Representation of a general payment token to be extended by individuals types of tokens
 * examples: Credit Card, eCheck.
 *
 * @class       WC_Payment_Token
 * @version     3.0.0
 * @since       2.6.0
 * @package     WooCommerce\Abstracts
 */
abstract class WC_Payment_Token extends WC_Legacy_Payment_Token {

    
/**
     * Token Data (stored in the payment_tokens table).
     *
     * @var array
     */
    
protected $data = array(
        
'gateway_id' => '',
        
'token'      => '',
        
'is_default' => false,
        
'user_id'    => 0,
        
'type'       => '',
    );

    
/**
     * Token Type (CC, eCheck, or a custom type added by an extension).
     * Set by child classes.
     *
     * @var string
     */
    
protected $type '';

    
/**
     * Initialize a payment token.
     *
     * These fields are accepted by all payment tokens:
     * is_default   - boolean Optional - Indicates this is the default payment token for a user
     * token        - string  Required - The actual token to store
     * gateway_id   - string  Required - Identifier for the gateway this token is associated with
     * user_id      - int     Optional - ID for the user this token is associated with. 0 if this token is not associated with a user
     *
     * @since 2.6.0
     * @param mixed $token Token.
     */
    
public function __construct$token '' ) {
        
parent::__construct$token );

        if ( 
is_numeric$token ) ) {
            
$this->set_id$token );
        } elseif ( 
is_object$token ) ) {
            
$token_id $token->get_id();
            if ( ! empty( 
$token_id ) ) {
                
$this->set_id$token->get_id() );
            }
        } else {
            
$this->set_object_readtrue );
        }

        
$this->data_store WC_Data_Store::load'payment-token' );
        if ( 
$this->get_id() > ) {
            
$this->data_store->read$this );
        }
    }

    
/*
     *--------------------------------------------------------------------------
     * Getters
     *--------------------------------------------------------------------------
     */

    /**
     * Returns the raw payment token.
     *
     * @since  2.6.0
     * @param  string $context Context in which to call this.
     * @return string Raw token
     */
    
public function get_token$context 'view' ) {
        return 
$this->get_prop'token'$context );
    }

    
/**
     * Returns the type of this payment token (CC, eCheck, or something else).
     * Overwritten by child classes.
     *
     * @since  2.6.0
     * @param  string $deprecated Deprecated since WooCommerce 3.0.
     * @return string Payment Token Type (CC, eCheck)
     */
    
public function get_type$deprecated '' ) {
        return 
$this->type;
    }

    
/**
     * Get type to display to user.
     * Get's overwritten by child classes.
     *
     * @since  2.6.0
     * @param  string $deprecated Deprecated since WooCommerce 3.0.
     * @return string
     */
    
public function get_display_name$deprecated '' ) {
        return 
$this->get_type();
    }

    
/**
     * Returns the user ID associated with the token or false if this token is not associated.
     *
     * @since 2.6.0
     * @param  string $context In what context to execute this.
     * @return int User ID if this token is associated with a user or 0 if no user is associated
     */
    
public function get_user_id$context 'view' ) {
        return 
$this->get_prop'user_id'$context );
    }

    
/**
     * Returns the ID of the gateway associated with this payment token.
     *
     * @since 2.6.0
     * @param  string $context In what context to execute this.
     * @return string Gateway ID
     */
    
public function get_gateway_id$context 'view' ) {
        return 
$this->get_prop'gateway_id'$context );
    }

    
/**
     * Returns the ID of the gateway associated with this payment token.
     *
     * @since 2.6.0
     * @param  string $context In what context to execute this.
     * @return string Gateway ID
     */
    
public function get_is_default$context 'view' ) {
        return 
$this->get_prop'is_default'$context );
    }

    
/*
     |--------------------------------------------------------------------------
     | Setters
     |--------------------------------------------------------------------------
     */

    /**
     * Set the raw payment token.
     *
     * @since 2.6.0
     * @param string $token Payment token.
     */
    
public function set_token$token ) {
        
$this->set_prop'token'$token );
    }

    
/**
     * Set the user ID for the user associated with this order.
     *
     * @since 2.6.0
     * @param int $user_id User ID.
     */
    
public function set_user_id$user_id ) {
        
$this->set_prop'user_id'absint$user_id ) );
    }

    
/**
     * Set the gateway ID.
     *
     * @since 2.6.0
     * @param string $gateway_id Gateway ID.
     */
    
public function set_gateway_id$gateway_id ) {
        
$this->set_prop'gateway_id'$gateway_id );
    }

    
/**
     * Marks the payment as default or non-default.
     *
     * @since 2.6.0
     * @param boolean $is_default True or false.
     */
    
public function set_default$is_default ) {
        
$this->set_prop'is_default', (bool) $is_default );
    }

    
/*
     |--------------------------------------------------------------------------
     | Other Methods
     |--------------------------------------------------------------------------
     */

    /**
     * Returns if the token is marked as default.
     *
     * @since 2.6.0
     * @return boolean True if the token is default
     */
    
public function is_default() {
        return (bool) 
$this->get_prop'is_default''view' );
    }

    
/**
     * Validate basic token info (token and type are required).
     *
     * @since 2.6.0
     * @return boolean True if the passed data is valid
     */
    
public function validate() {
        
$token $this->get_prop'token''edit' );
        if ( empty( 
$token ) ) {
            return 
false;
        }
        return 
true;
    }

}