]> git.openstreetmap.org Git - chef.git/blob - cookbooks/osqa/recipes/default.rb
6ab25051b02026c42a00015adf01bcab01dfe69a
[chef.git] / cookbooks / osqa / recipes / default.rb
1 #
2 # Cookbook Name:: osqa
3 # Recipe:: default
4 #
5 # Copyright 2011, 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 #     https://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 include_recipe "tools"
21 include_recipe "apache"
22 include_recipe "memcached"
23 include_recipe "python"
24
25 package "python-dev"
26 package "libmysqlclient-dev"
27 package "libpq-dev"
28
29 python_directory = "/opt/osqa-python"
30
31 python_virtualenv python_directory
32
33 python_package "django" do
34   python_virtualenv python_directory
35   version "1.6.11"
36 end
37
38 python_package "html5lib" do
39   python_virtualenv python_directory
40   version "0.999"
41 end
42
43 python_package "markdown" do
44   python_virtualenv python_directory
45   version "2.4"
46 end
47
48 python_package "python-memcached" do
49   python_virtualenv python_directory
50   version "1.53"
51 end
52
53 python_package "python_openid" do
54   python_virtualenv python_directory
55   version "2.2.5"
56 end
57
58 python_package "MySQL_python" do
59   python_virtualenv python_directory
60   version "1.2.3"
61 end
62
63 python_package "psycopg2" do
64   python_virtualenv python_directory
65   version "2.4.5"
66 end
67
68 python_package "South" do
69   python_virtualenv python_directory
70   version "0.7.6"
71 end
72
73 apache_module "rewrite"
74 apache_module "wsgi"
75
76 node[:osqa][:sites].each do |site|
77   site_name = site[:name]
78   site_aliases = site[:aliases] || []
79   directory = site[:directory] || "/srv/#{site_name}"
80   site_user = site[:user] || node[:osqa][:user]
81   site_user = Etc.getpwuid(site_user).name if site_user.is_a?(Integer)
82   site_group = site[:group] || node[:osqa][:group] || Etc.getpwnam(site_user).gid
83   site_group = Etc.getgrgid(site_group).name if site_group.is_a?(Integer)
84   database_name = site[:database_name] || node[:osqa][:database_name]
85   database_user = site[:database_user] || node[:osqa][:database_user]
86   database_password = site[:database_user] || node[:osqa][:database_password]
87   backup_name = site[:backup]
88
89   ssl_certificate site_name do
90     domains [site_name] + site_aliases
91     notifies :reload, "service[apache2]"
92   end
93
94   apache_site site_name do
95     template "apache.erb"
96     directory directory
97     variables :user => site_user, :group => site_group, :aliases => site_aliases
98   end
99
100   directory directory do
101     owner site_user
102     group site_group
103     mode 0o755
104   end
105
106   execute "osqa-migrate" do
107     action :nothing
108     command "python manage.py migrate forum"
109     cwd "#{directory}/osqa"
110     user site_user
111     group site_group
112     notifies :reload, "service[apache2]"
113   end
114
115   git "#{directory}/osqa" do
116     action :sync
117     repository "https://git.openstreetmap.org/public/osqa.git"
118     revision "live"
119     user site_user
120     group site_group
121     notifies :run, "execute[osqa-migrate]"
122   end
123
124   directory "#{directory}/upfiles" do
125     user site_user
126     group site_group
127     mode 0o755
128   end
129
130   template "#{directory}/osqa/osqa.wsgi" do
131     source "osqa.wsgi.erb"
132     owner site_user
133     group site_group
134     mode 0o644
135     variables :directory => directory
136     notifies :reload, "service[apache2]"
137   end
138
139   settings = edit_file "#{directory}/osqa/settings_local.py.dist" do |line|
140     line.gsub!(/^( *)'ENGINE': '.*',/, "\\1'ENGINE': 'django.db.backends.postgresql_psycopg2',")
141     line.gsub!(/^( *)'NAME': '.*',/, "\\1'NAME': '#{database_name}',")
142     line.gsub!(/^( *)'USER': '.*',/, "\\1'USER': '#{database_user}',")
143     line.gsub!(/^( *)'PASSWORD': '.*',/, "\\1'PASSWORD': '#{database_password}',")
144     line.gsub!(/^ALLOWED_HOSTS = .*/, "ALLOWED_HOSTS = ('help.openstreetmap.org',)")
145     line.gsub!(/^CACHE_BACKEND = .*/, "CACHE_BACKEND = 'memcached://127.0.0.1:11211/'")
146     line.gsub!(%r{^APP_URL = 'http://'}, "APP_URL = 'https://#{site_name}'")
147     line.gsub!(%r{^TIME_ZONE = 'America/New_York'}, "TIME_ZONE = 'Europe/London'")
148     line.gsub!(/^DISABLED_MODULES = \[([^\]]+)\]/, "DISABLED_MODULES = [\\1, 'localauth', 'facebookauth', 'oauthauth']")
149
150     line
151   end
152
153   file "#{directory}/osqa/settings_local.py" do
154     owner site_user
155     group site_group
156     mode 0o644
157     content settings
158     notifies :reload, "service[apache2]"
159   end
160
161   template "/etc/cron.daily/#{backup_name}-backup" do
162     source "backup.cron.erb"
163     owner "root"
164     group "root"
165     mode 0o755
166     variables :name => backup_name, :directory => directory, :user => site_user, :database => database_name
167   end
168 end