2 # Cookbook Name:: wordpress
3 # Definition:: wordpress_plugin
5 # Copyright 2013, OpenStreetMap Foundation
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # http://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
20 define :wordpress_plugin, :action => [:enable] do
23 site_directory = node[:wordpress][:sites][site][:directory]
24 plugin_directory = "#{site_directory}/wp-content/plugins/#{name}"
25 source = params[:source]
28 remote_directory plugin_directory do
31 owner node[:wordpress][:user]
32 group node[:wordpress][:group]
34 files_owner node[:wordpress][:user]
35 files_group node[:wordpress][:group]
39 repository = params[:repository]
42 version = params[:version] || Chef::Wordpress.current_plugin_version(name)
45 repository = "http://plugins.svn.wordpress.org/#{name}/trunk"
47 repository = "http://plugins.svn.wordpress.org/#{name}/tags/#{version}"
51 if repository =~ /\.git$/
52 git plugin_directory do
55 revision params[:revision]
56 user node[:wordpress][:user]
57 group node[:wordpress][:group]
58 notifies :reload, "service[apache2]"
61 subversion plugin_directory do
64 user node[:wordpress][:user]
65 group node[:wordpress][:group]
66 ignore_failure repository.start_with?("http://plugins.svn.wordpress.org/")
67 notifies :reload, "service[apache2]"