]> git.openstreetmap.org Git - chef.git/blob - cookbooks/wordpress/definitions/wordpress_plugin.rb
7be7a003866c5368ee6007c6a72ffd1db87dcf16
[chef.git] / cookbooks / wordpress / definitions / wordpress_plugin.rb
1 #
2 # Cookbook Name:: wordpress
3 # Definition:: wordpress_plugin
4 #
5 # Copyright 2013, OpenStreetMap Foundation
6 #
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
10 #
11 #     http://www.apache.org/licenses/LICENSE-2.0
12 #
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.
18 #
19
20 define :wordpress_plugin, :action => [:enable] do
21   name = params[:name]
22   site = params[:site]
23   site_directory = node[:wordpress][:sites][site][:directory]
24   plugin_directory = "#{site_directory}/wp-content/plugins/#{name}"
25   source = params[:source]
26
27   if source
28     remote_directory plugin_directory do
29       cookbook "wordpress"
30       source source
31       owner node[:wordpress][:user]
32       group node[:wordpress][:group]
33       mode 0755
34       files_owner node[:wordpress][:user]
35       files_group node[:wordpress][:group]
36       files_mode 0755
37     end
38   else
39     repository = params[:repository]
40
41     unless params
42       version = params[:version] || Chef::Wordpress.current_plugin_version(name)
43
44       if version =~ /trunk/
45         repository = "http://plugins.svn.wordpress.org/#{name}/trunk"
46       else
47         repository = "http://plugins.svn.wordpress.org/#{name}/tags/#{version}"
48       end
49     end
50
51     if repository =~ /\.git$/
52       git plugin_directory do
53         action :sync
54         repository repository
55         revision params[:revision]
56         user node[:wordpress][:user]
57         group node[:wordpress][:group]
58         notifies :reload, "service[apache2]"
59       end
60     else
61       subversion plugin_directory do
62         action :sync
63         repository repository
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]"
68       end
69     end
70   end
71 end