PluginInformation.php
2.51 KB
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
<?php
namespace AC;
use AC\Plugin\Version;
class PluginInformation {
/**
* @var string
*/
private $basename;
public function __construct( $basename ) {
$this->basename = (string) $basename;
}
public static function create_by_file( $file ): self {
return new self( plugin_basename( $file ) );
}
public function get_basename(): string {
return $this->basename;
}
public function get_dirname(): string {
return dirname( $this->basename );
}
public function is_installed(): bool {
return null !== $this->get_header_data();
}
public function is_active(): bool {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
return is_plugin_active( $this->basename );
}
public function is_network_active(): bool {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
return is_plugin_active_for_network( $this->basename );
}
public function get_version(): Version {
return new Version( (string) $this->get_header( 'Version' ) );
}
public function get_name(): ?string {
return $this->get_header( 'Name' );
}
private function get_plugins(): array {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
// use `get_plugins` (cached) over `get_plugin_data` (non cached)
return get_plugins();
}
private function get_plugin_updates(): array {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
return get_plugin_updates();
}
public function has_update(): bool {
return null !== $this->get_update();
}
public function get_update(): ?PluginUpdate {
$updates = $this->get_plugin_updates();
if ( ! array_key_exists( $this->basename, $updates ) ) {
return null;
}
$data = $updates[ $this->basename ];
if ( ! property_exists( $data, 'update' ) ) {
return null;
}
if ( ! property_exists( $data->update, 'new_version' ) ) {
return null;
}
$version = new Version( $data->update->new_version );
if ( ! $version->is_valid() || $version->is_lte( $this->get_version() ) ) {
return null;
}
$package = property_exists( $data->update, 'package' ) && $data->update->package
? $data->update->package
: null;
return new PluginUpdate( new Version( $data->update->new_version ), $package );
}
private function get_header_data(): ?array {
$plugins = $this->get_plugins();
return $plugins && isset( $plugins[ $this->basename ] )
? (array) $plugins[ $this->basename ]
: null;
}
public function get_header( string $var ): ?string {
$info = $this->get_header_data();
return $info && isset( $info[ $var ] )
? (string) $info[ $var ]
: null;
}
}