Failed Conditions
Push — master ( 7ec057...73baf0 )
by Reüel
16:01 queued 08:21
created

ConfigFactory::delete_access_token_meta()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 3
ccs 0
cts 3
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Config factory
4
 *
5
 * @author    Pronamic <[email protected]>
6
 * @copyright 2005-2019 Pronamic
7
 * @license   GPL-3.0-or-later
8
 * @package   Pronamic\WordPress\Pay\Gateways\OmniKassa2
9
 */
10
11
namespace Pronamic\WordPress\Pay\Gateways\OmniKassa2;
12
13
use Pronamic\WordPress\Pay\Core\GatewayConfigFactory;
14
15
/**
16
 * Config factory
17
 *
18
 * @author  Remco Tolsma
19
 * @version 2.1.0
20
 * @since   1.0.0
21
 */
22
class ConfigFactory extends GatewayConfigFactory {
23
	/**
24
	 * Get configuration by post ID.
25
	 *
26
	 * @param string $post_id Post ID.
27
	 * @return Config
28
	 */
29
	public function get_config( $post_id ) {
30
		$config = new Config();
31
32
		$config->post_id                  = intval( $post_id );
33
		$config->mode                     = $this->get_meta( $post_id, 'mode' );
34
		$config->refresh_token            = $this->get_meta( $post_id, 'omnikassa_2_refresh_token' );
35
		$config->signing_key              = $this->get_meta( $post_id, 'omnikassa_2_signing_key' );
36
		$config->access_token             = $this->get_meta( $post_id, 'omnikassa_2_access_token' );
37
		$config->access_token_valid_until = $this->get_meta( $post_id, 'omnikassa_2_access_token_valid_until' );
38
		$config->order_id                 = $this->get_meta( $post_id, 'omnikassa_2_order_id' );
39
40
		return $config;
41
	}
42
43
	/**
44
	 * Delete access token meta for the specified post ID.
45
	 *
46
	 * @link https://github.com/WordPress/WordPress/blob/5.0/wp-includes/post.php#L3724-L3736
47
	 * @link https://codex.wordpress.org/Function_Reference/delete_post_meta
48
	 *
49
	 * @param int $post_id Post ID.
50
	 */
51
	public static function delete_access_token_meta( $post_id ) {
52
		delete_post_meta( $post_id, '_pronamic_gateway_omnikassa_2_access_token' );
53
		delete_post_meta( $post_id, '_pronamic_gateway_omnikassa_2_access_token_valid_until' );
54
	}
55
}
56