summaryrefslogtreecommitdiff
path: root/Postman/PostmanInstaller.php
blob: ee364352d92c3ccb0bc81122d5bdb2a1fe195271 (plain)
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
<?php
if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

require_once( 'PostmanOAuthToken.php' );
require_once( 'PostmanOptions.php' );

/**
 * If required, database upgrades are made during activation
 * ALL NAMES should be HARDCODED..
 * NO external constants. They might change over time!
 *
 * @author jasonhendriks
 */
class PostmanInstaller {
	private $logger;

	private $roles;

	/**
	 */
	public function __construct() {
		$this->logger = new PostmanLogger( get_class( $this ) );
	}

	/**
	 * Handle activation of the plugin
	 */
	public function activatePostman() {
        delete_option( 'postman_release_version' );
        delete_option( 'postman_dismiss_donation' );

		$options = get_option( PostmanOptions::POSTMAN_OPTIONS );
		$args = array(
			'fallback_smtp_enabled' => 'no',
		);

		if ( empty( $options ) ) {
			add_option( 'postman_options', $args );

		} else {
			if ( empty( $options['fallback_smtp_enabled'] ) ) {
				$result = array_merge($options, $args);
				update_option( PostmanOptions::POSTMAN_OPTIONS, $result );
			}
		}

		if ( function_exists( 'is_multisite' ) && is_multisite() ) {

            $options['post_smtp_allow_overwrite'] = '1';
            update_site_option( PostmanOptions::POSTMAN_NETWORK_OPTIONS, $options );
			
			// handle network activation
			// from https://wordpress.org/support/topic/new-function-wp_get_sites?replies=11
			// run the activation function for each blog id
			$old_blog = get_current_blog_id();
			// Get all blog ids
			$subsites = get_sites();
			foreach ( $subsites as $subsite ) {
				$this->logger->trace( 'multisite: switching to blog ' . $subsite->blog_id );
				switch_to_blog( $subsite->blog_id );
				$this->handleOptionUpdates();
				$this->addCapability();
			}
			switch_to_blog( $old_blog );
		} else {
			// handle single-site activation
			$this->handleOptionUpdates();
			$this->addCapability();
		}

		//$this->add_activation_redirect();
	}

	function add_activation_redirect() {

		// Bail if activating from network, or bulk
		if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) {
			return;
		}

		// Add the transient to redirect
	    //set_transient( '_post_activation_redirect', true, 30 );
	}

	/**
	 * Handle deactivation of the plugin
	 */
	public function deactivatePostman() {
		if ( function_exists( 'is_multisite' ) && is_multisite() ) {
			// handle network deactivation
			// from https://wordpress.org/support/topic/new-function-wp_get_sites?replies=11
			// run the deactivation function for each blog id
			$old_blog = get_current_blog_id();
			// Get all blog ids
			$subsites = get_sites();
			foreach ( $subsites as $subsite ) {
				$this->logger->trace( 'multisite: switching to blog ' . $subsite->blog_id );
				switch_to_blog( $subsite->blog_id );
				$this->removeCapability();
			}
			switch_to_blog( $old_blog );
		} else {
			// handle single-site deactivation
			$this->removeCapability();
		}
	}

	/**
	 * Add the capability to manage postman
	 */
	public function addCapability() {
		if ( $this->logger->isDebug() ) {
			$this->logger->debug( 'Adding admin capability' );
		}
		// ref: https://codex.wordpress.org/Function_Reference/add_cap
		// NB: This setting is saved to the database, so it might be better to run this on theme/plugin activation
		// add the custom capability to the administrator role
		$role = get_role( Postman::ADMINISTRATOR_ROLE_NAME );
		$role->add_cap( Postman::MANAGE_POSTMAN_CAPABILITY_NAME );
		$role->add_cap( Postman::MANAGE_POSTMAN_CAPABILITY_LOGS );
	}

	/**
	 * Remove the capability to manage postman
	 */
	public function removeCapability() {
		if ( $this->logger->isDebug() ) {
			$this->logger->debug( 'Removing admin capability' );
		}
		// ref: https://codex.wordpress.org/Function_Reference/add_cap
		// NB: This setting is saved to the database, so it might be better to run this on theme/plugin activation
		// remove the custom capability from the administrator role
		$role = get_role( Postman::ADMINISTRATOR_ROLE_NAME );
		$role->remove_cap( Postman::MANAGE_POSTMAN_CAPABILITY_NAME );
        $role->remove_cap( Postman::MANAGE_POSTMAN_CAPABILITY_LOGS );
	}

	/**
	 * Handle activation of plugin
	 */
	private function handleOptionUpdates() {
		$this->logger->debug( 'Activating plugin' );
		// prior to version 0.2.5, $authOptions did not exist
		$authOptions = get_option( 'postman_auth_token' );
		$options = get_option( 'postman_options' );
		$postmanState = get_option( 'postman_state' );
		if ( empty( $authOptions ) && ! (empty( $options )) && ! empty( $options ['access_token'] ) ) {
			$this->logger->debug( 'Upgrading database: copying Authorization token from postman_options to postman_auth_token' );
			// copy the variables from $options to $authToken
			$authOptions ['access_token'] = $options ['access_token'];
			$authOptions ['refresh_token'] = $options ['refresh_token'];
			// there was a bug where we weren't setting the expiry time
			if ( ! empty( $options ['auth_token_expires'] ) ) {
				$authOptions ['auth_token_expires'] = $options ['auth_token_expires'];
			}
			update_option( 'postman_auth_token', $authOptions );
		}
		if ( ! isset( $options ['authorization_type'] ) && ! isset( $options ['auth_type'] ) ) {
			// prior to 1.0.0, access tokens were saved in authOptions without an auth type
			// prior to 0.2.5, access tokens were save in options without an auth type
			// either way, only oauth2 was supported
			if ( isset( $authOptions ['access_token'] ) || isset( $options ['access_token'] ) ) {
				$this->logger->debug( "Upgrading database: setting authorization_type to 'oauth2'" );
				$options ['authorization_type'] = 'oauth2';
				update_option( 'postman_options', $options );
			}
		}
		if ( ! isset( $options ['enc_type'] ) ) {
			// prior to 1.3, encryption type was combined with authentication type
			if ( isset( $options ['authorization_type'] ) ) {
				$this->logger->debug( 'Upgrading database: creating auth_type and enc_type from authorization_type' );
				$authType = $options ['authorization_type'];
				switch ( $authType ) {
					case 'none' :
						$options ['auth_type'] = 'none';
						$options ['enc_type'] = 'none';
						break;
					case 'basic-ssl' :
						$options ['auth_type'] = 'login';
						$options ['enc_type'] = 'ssl';
						break;
					case 'basic-tls' :
						$options ['auth_type'] = 'login';
						$options ['enc_type'] = 'tls';
						break;
					case 'oauth2' :
						$options ['auth_type'] = 'oauth2';
						$options ['enc_type'] = 'ssl';
						break;
					default :
				}
				update_option( 'postman_options', $options );
			}
		}
		// prior to 1.3.3, the version identifier was not stored and the passwords were plaintext
		if ( isset( $options ['enc_type'] ) && ! (isset( $options ['version'] ) || isset( $postmanState ['version'] )) ) {
			$this->logger->debug( 'Upgrading database: added plugin version and encoding password' );
			$options ['version'] = '1.3.3';
			if ( isset( $options ['basic_auth_password'] ) ) {
				$options ['basic_auth_password'] = base64_encode( $options ['basic_auth_password'] );
			}
			update_option( 'postman_options', $options );
		}
		// prior to 1.4.2, the transport was not identified and the auth token had no vendor
		if ( isset( $options ['auth_type'] ) && ! isset( $options ['transport_type'] ) ) {
			$this->logger->debug( 'Upgrading database: added transport_type and vendor_name' );
			$options ['transport_type'] = 'smtp';
			update_option( 'postman_options', $options );
			if ( isset( $authOptions ['access_token'] ) && isset( $options ['oauth_client_id'] ) ) {
				// if there is a stored token..
				if ( PostmanUtils::endsWith( $options ['oauth_client_id'], 'googleusercontent.com' ) ) {
					$authOptions ['vendor_name'] = 'google'; } else if ( strlen( $options ['oauth_client_id'] < strlen( $options ['oauth_client_secret'] ) ) ) {
					$authOptions ['vendor_name'] = 'microsoft';
					} else { 					$authOptions ['vendor_name'] = 'yahoo'; }
					update_option( 'postman_auth_token', $authOptions );
			}
		}

		// for version 1.6.18, the envelope from was introduced
		if ( ! empty( $options ['sender_email'] ) && empty( $options ['envelope_sender'] ) ) {
			$this->logger->debug( 'Upgrading database: adding envelope_sender' );
			$options ['envelope_sender'] = $options ['sender_email'];
			update_option( 'postman_options', $options );
		}

		if ( isset( $postmanState ['version'] ) && version_compare( $postmanState ['version'], '1.7.0', '<' ) ) {
			if ( $options ['mail_log_max_entries'] == 10 ) {
				$options ['mail_log_max_entries'] = 250;
			}
			$postmanStats = get_option( 'postman_stats' );
			$stateCleared = false;
			if ( ! isset( $postmanState ['delivery_success_total'] ) && isset( $postmanStats ['delivery_success_total'] ) ) {
				$postmanState ['delivery_success_total'] = $postmanStats ['delivery_success_total'];
				$stateCleared = true;
			}
			if ( ! isset( $postmanState ['delivery_fail_total'] ) && isset( $postmanStats ['delivery_fail_total'] ) ) {
				$postmanState ['delivery_fail_total'] = $postmanStats ['delivery_fail_total'];
				$stateCleared = true;
			}
			if ( $stateCleared ) {
				delete_option( 'postman_stats' );
			}
		}

		// can we create a tmp file? - this code is duplicated in InputSanitizer
		PostmanUtils::deleteLockFile();
		$lockSuccess = PostmanUtils::createLockFile();
		// &= does not work as expected in my PHP
		$lockSuccess = $lockSuccess && PostmanUtils::deleteLockFile();
		$postmanState ['locking_enabled'] = $lockSuccess;

		// always update the version number
		if ( ! isset( $postmanState ['install_date'] ) ) {
			$this->logger->debug( 'Upgrading database: adding install_date' );
			$postmanState ['install_date'] = time();
		}
		$pluginData = apply_filters( 'postman_get_plugin_metadata', null );
		$postmanState ['version'] = $pluginData ['version'];
		update_option( 'postman_state', $postmanState );
				delete_option( 'postman_session' );

		// reload options
		PostmanState::getInstance()->reload();
		PostmanOptions::getInstance()->reload();
	}
}