]> git.openstreetmap.org Git - chef.git/blobdiff - cookbooks/mediawiki/resources/extension.rb
Install the CodeEditor extension and configure Sribunto to use it
[chef.git] / cookbooks / mediawiki / resources / extension.rb
index e7b3bc046fe0fd51a2a54daf60c3887ea6d860cc..152e843d381ca1ac513ccd084f0f3fb3dabddfc9 100644 (file)
@@ -8,7 +8,7 @@
 # you may not use this file except in compliance with the License.
 # You may obtain a copy of the License at
 #
-# http://www.apache.org/licenses/LICENSE-2.0
+# https://www.apache.org/licenses/LICENSE-2.0
 #
 # Unless required by applicable law or agreed to in writing, software
 # distributed under the License is distributed on an "AS IS" BASIS,
@@ -23,11 +23,13 @@ property :extension, :kind_of => String, :name_attribute => true
 property :site, :kind_of => String, :required => true
 property :source, :kind_of => String
 property :template, :kind_of => String
+property :template_cookbook, :kind_of => String, :default => "mediawiki"
 property :variables, :kind_of => Hash, :default => {}
 property :version, :kind_of => String
 property :repository, :kind_of => String
 property :tag, :kind_of => String
 property :reference, :kind_of => String
+property :compose, :kind_of => [TrueClass, FalseClass], :default => false
 property :update_site, :kind_of => [TrueClass, FalseClass], :default => true
 
 action :create do
@@ -65,7 +67,7 @@ action :create do
 
   if new_resource.template # ~FC023
     declare_resource :template, "#{mediawiki_directory}/LocalSettings.d/Ext-#{new_resource.extension}.inc.php" do
-      cookbook "mediawiki"
+      cookbook new_resource.template_cookbook
       source new_resource.template
       user node[:mediawiki][:user]
       group node[:mediawiki][:group]
@@ -83,6 +85,17 @@ action :create do
       only_if { ::File.exist?(extension_script) }
     end
   end
+
+  if new_resource.compose # ~FC023
+    execute "composer-#{new_resource.extension}" do
+      action :nothing
+      command "composer install --no-dev"
+      cwd extension_directory
+      user node[:mediawiki][:user]
+      group node[:mediawiki][:group]
+      subscribes :run, "git[#{extension_directory}]"
+    end
+  end
 end
 
 action :delete do