From 2e06f333d546e1cf644a168fecf9f75ca5b9f035 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Wed, 22 Aug 2007 10:48:48 +0000 Subject: [PATCH] First pass plugin update notification, see #4795 git-svn-id: https://develop.svn.wordpress.org/trunk@5913 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/update.php | 75 ++++++++++++++++++++++++++++++++++++ wp-admin/plugins.php | 1 + wp-admin/wp-admin.css | 13 +++++-- 3 files changed, 85 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/update.php b/wp-admin/includes/update.php index ae2fe960d1..3f297eaab1 100644 --- a/wp-admin/includes/update.php +++ b/wp-admin/includes/update.php @@ -37,4 +37,79 @@ if ( ! isset( $cur->response ) || $cur->response != 'upgrade' ) } add_action( 'admin_notices', 'update_nag', 3 ); +function wp_update_plugins() { + global $wp_version; + $plugins = get_plugins(); + $active = get_option( 'active_plugins' ); + $current = get_option( 'update_plugins' ); + + $new_option = ''; + $new_option->last_checked = time(); + + $plugin_changed = false; + foreach ( $plugins as $file => $p ) { + $new_option->checked[ $file ] = $p['Version']; + + if ( !isset( $current->checked[ $file ] ) ) { + $plugin_changed = true; + continue; + } + + if ( $current->checked[ $file ] != $p['Version'] ) + $plugin_changed = true; + } + + if ( + isset( $current->last_checked ) && + 43200 > ( time() - $current->last_checked ) && + !$plugin_changed + ) + return false; + + $to_send->plugins = $plugins; + $to_send->active = $active; + $send = serialize( $to_send ); + + $request = 'plugins=' . urlencode( $send ); + $http_request = "POST /plugins/update-check/1.0/ HTTP/1.0\r\n"; + $http_request .= "Host: api.wordpress.org\r\n"; + $http_request .= "Content-Type: application/x-www-form-urlencoded; charset=" . get_option('blog_charset') . "\r\n"; + $http_request .= "Content-Length: " . strlen($request) . "\r\n"; + $http_request .= 'User-Agent: WordPress/' . $wp_version . '; ' . get_bloginfo('url') . "\r\n"; + $http_request .= "\r\n"; + $http_request .= $request; + + $response = ''; + if( false != ( $fs = @fsockopen( 'api.wordpress.org', 80, $errno, $errstr, 3) ) ) { + fwrite($fs, $http_request); + + while ( !feof($fs) ) + $response .= fgets($fs, 1160); // One TCP-IP packet + fclose($fs); + $response = explode("\r\n\r\n", $response, 2); + } + + $response = unserialize( $response[1] ); + + if ( $response ) + $new_option->response = $response; + + update_option( 'update_plugins', $new_option ); +} +add_action( 'load-plugins.php', 'wp_update_plugins' ); + +function wp_plugin_update_row( $file ) { + global $plugin_data; + $current = get_option( 'update_plugins' ); + if ( !isset( $current->response[ $file ] ) ) + return false; + + $r = $current->response[ $file ]; + + echo ""; + printf( __('There is a new version of %s available. Download version %s here.'), $plugin_data['Name'], $r->url, $r->new_version ); + echo ""; +} +add_action( 'after_plugin_row', 'wp_plugin_update_row' ); + ?> \ No newline at end of file diff --git a/wp-admin/plugins.php b/wp-admin/plugins.php index 8c282eaee1..5f03a7facb 100644 --- a/wp-admin/plugins.php +++ b/wp-admin/plugins.php @@ -163,6 +163,7 @@ if (empty($plugins)) { $edit"; echo" "; + do_action( 'after_plugin_row', $plugin_file ); } ?> diff --git a/wp-admin/wp-admin.css b/wp-admin/wp-admin.css index 67decc995e..732950730a 100644 --- a/wp-admin/wp-admin.css +++ b/wp-admin/wp-admin.css @@ -1330,17 +1330,22 @@ a.view-link { text-decoration:underline; } -#update-nag { +#update-nag, .plugin-update { border-bottom: 1px solid #ccc; background: #fffeeb; - text-align: center; line-height: 29px; font-size: 12px; color: #555; + text-align: center; } -#update-nag a { + +#update-nag a, .plugin-update a { font-size: 1.1em; } -#update-nag a:link { +#update-nag a:link, .plugin-update a:link { color: #036; +} + +.plugin-update { + text-align: left; } \ No newline at end of file