X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/18e12b0e123fc3e5f344682f884feabc12da0f5a..2bfb0ef07fb64314f5c4ded641a8c280df9c1d0b:/cookbooks/wordpress/libraries/wordpress.rb diff --git a/cookbooks/wordpress/libraries/wordpress.rb b/cookbooks/wordpress/libraries/wordpress.rb index 1c2fbcb6a..92db4b199 100644 --- a/cookbooks/wordpress/libraries/wordpress.rb +++ b/cookbooks/wordpress/libraries/wordpress.rb @@ -1,14 +1,14 @@ require "chef/mixin/shell_out" +require "addressable" require "httpclient" -require "php_serialize" +require "json" class Chef module Wordpress extend Chef::Mixin::ShellOut @api_responses = {} - @svn_responses = {} class << self def current_version @@ -16,31 +16,21 @@ class Chef end def current_plugin_version(name) - if svn_cat("https://plugins.svn.wordpress.org/#{name}/trunk/readme.txt") =~ /Stable tag:\s*([^\s\r]*)[\s\r]*/ - Regexp.last_match[1] - else - "trunk" - end + plugin_information(name)["version"] end private def core_version_check - api_get("https://api.wordpress.org/core/version-check/1.6") + api_get("https://api.wordpress.org/core/version-check/1.7") end - def api_get(url) - @api_responses[url] ||= ::PHP.unserialize(::HTTPClient.new.get_content(url)) + def plugin_information(name) + api_get("https://api.wordpress.org/plugins/info/1.2/?action=plugin_information&request[slug]=#{name}") end - def svn_cat(url) - unless @svn_responses[url] - result = shell_out!("svn", "cat", url) - - @svn_responses[url] = result.stdout.force_encoding("UTF-8") - end - - @svn_responses[url] + def api_get(url) + @api_responses[url] ||= ::JSON.parse(::HTTPClient.new.get_content(url)) end end end