]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/wordpress/libraries/wordpress.rb
Use wordpress API to check plugin versions
[chef.git] / cookbooks / wordpress / libraries / wordpress.rb
index 8ebb1460c621dc953fae8e1d41462239dfa4e567..92db4b19924c068079c5f7bc8b76a1e3428cf7bd 100644 (file)
@@ -1,43 +1,37 @@
-require 'chef/mixin/command'
+require "chef/mixin/shell_out"
+
+require "addressable"
+require "httpclient"
+require "json"
 
 class Chef
   module Wordpress
-    extend Chef::Mixin::Command
+    extend Chef::Mixin::ShellOut
 
     @api_responses = {}
-    @svn_responses = {}
-
-    def self.current_version
-      core_version_check["offers"].first["current"]
-    end
 
-    def self.current_plugin_version(name)
-      if svn_cat("http://plugins.svn.wordpress.org/#{name}/trunk/readme.txt") =~ /Stable tag:\s*([^\s\r]*)[\s\r]*/
-        $1
-      else
-        "trunk"
+    class << self
+      def current_version
+        core_version_check["offers"].first["current"]
       end
-    end
-
-  private
 
-    def self.core_version_check
-      api_get("http://api.wordpress.org/core/version-check/1.6")
-    end
+      def current_plugin_version(name)
+        plugin_information(name)["version"]
+      end
 
-    def self.api_get(url)
-      @api_responses[url] ||= ::PHP.unserialize(::HTTPClient.new.get_content(url))
-    end
+      private
 
-    def self.svn_cat(url)
-      unless @svn_responses[url]
-        status, stdout, stderr = output_of_command("svn cat #{url}", {})
-        handle_command_failures(status, "STDOUT: #{stdout}\nSTDERR: #{stderr}", :output_on_failure => true)
+      def core_version_check
+        api_get("https://api.wordpress.org/core/version-check/1.7")
+      end
 
-        @svn_responses[url] = stdout.force_encoding("UTF-8")
+      def plugin_information(name)
+        api_get("https://api.wordpress.org/plugins/info/1.2/?action=plugin_information&request[slug]=#{name}")
       end
 
-      @svn_responses[url]
+      def api_get(url)
+        @api_responses[url] ||= ::JSON.parse(::HTTPClient.new.get_content(url))
+      end
     end
   end
 end