#
# Cookbook Name:: osqa
# Recipe:: default
#
# Copyright 2011, OpenStreetMap Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# 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
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

include_recipe "tools"
include_recipe "apache::ssl"
include_recipe "memcached"

package "python-django"
package "python-html5lib"
package "python-markdown"
package "python-memcache"
package "python-openid"
package "python-mysqldb"
package "python-psycopg2"
package "python-setuptools"

easy_install_package "South" do
  package_name "south"
end

apache_module "rewrite"
apache_module "wsgi"

node[:osqa][:sites].each do |site|
  name = site[:name]
  directory = site[:directory] || "/var/www/#{name}"
  osqa_revision = site[:revision] || node[:osqa][:revision]
  site_user = site[:user] || node[:osqa][:user]
  site_user = Etc.getpwuid(site_user).name if site_user.is_a?(Integer)
  site_group = site[:group] || node[:osqa][:group] || Etc.getpwnam(site_user).gid
  site_group = Etc.getgrgid(site_group).name if site_group.is_a?(Integer)
  database_name = site[:database_name] || node[:osqa][:database_name]
  database_user = site[:database_user] || node[:osqa][:database_user]
  database_password = site[:database_user] || node[:osqa][:database_password]

  apache_site name do
    template "apache.erb"
    directory "#{directory}/osqa"
    variables :user => site_user, :group => site_group
  end

  execute "osqa-migrate" do
    action :nothing
    command "python manage.py migrate forum"
    cwd "#{directory}/osqa"
    user site_user
    group site_group
    notifies :reload, resources(:service => "apache2")
  end

  subversion "#{directory}/osqa" do
    action :sync
    repository "http://svn.osqa.net/svnroot/osqa/trunk"
    revision osqa_revision
    user site_user
    group site_group
    notifies :run, resources(:execute => "osqa-migrate")
  end

  remote_directory "#{directory}/osqa/forum_modules/osmauth" do
    source "osmauth"
    owner site_user
    group site_group
    mode 0755
    files_owner site_user
    files_group site_group
    files_mode 0644
  end

  template "#{directory}/osqa/osqa.wsgi" do
    source "osqa.wsgi.erb"
    owner site_user
    group site_group
    mode 0644
    variables :directory => directory
    notifies :reload, resources(:service => "apache2")
  end

  file "#{directory}/osqa/settings_local.py" do
    owner site_user
    group site_group
    mode 0644
    content_from_file "#{directory}/osqa/settings_local.py.dist" do |line|
      line.gsub!(/^( *)'ENGINE': '.*',/, "\\1'ENGINE': 'django.db.backends.postgresql_psycopg2',")
      line.gsub!(/^( *)'NAME': '.*',/, "\\1'NAME': '#{database_name}',")
      line.gsub!(/^( *)'USER': '.*',/, "\\1'USER': '#{database_user}',")
      line.gsub!(/^( *)'PASSWORD': '.*',/, "\\1'PASSWORD': '#{database_password}',")
      line.gsub!(/^CACHE_BACKEND = .*/, "CACHE_BACKEND = 'memcached://127.0.0.1:11211/'")
      line.gsub!(/^APP_URL = 'http:\/\/'/, "APP_URL = 'http://#{name}'")
      line.gsub!(/^TIME_ZONE = 'America\/New_York'/, "TIME_ZONE = 'Europe/London'")
      line.gsub!(/^DISABLED_MODULES = \[([^\]]+)\]/, "DISABLED_MODULES = [\\1, 'localauth', 'facebookauth', 'oauthauth']")

      line
    end
    notifies :reload, resources(:service => "apache2")
  end
end
