81 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
#
 | 
						|
# Cookbook:: kosmos-ejabberd
 | 
						|
# Recipe:: letsencrypt
 | 
						|
#
 | 
						|
# The MIT License (MIT)
 | 
						|
#
 | 
						|
# Copyright:: 2019, Kosmos Developers
 | 
						|
#
 | 
						|
# Permission is hereby granted, free of charge, to any person obtaining a copy
 | 
						|
# of this software and associated documentation files (the "Software"), to deal
 | 
						|
# in the Software without restriction, including without limitation the rights
 | 
						|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | 
						|
# copies of the Software, and to permit persons to whom the Software is
 | 
						|
# furnished to do so, subject to the following conditions:
 | 
						|
#
 | 
						|
# The above copyright notice and this permission notice shall be included in
 | 
						|
# all copies or substantial portions of the Software.
 | 
						|
#
 | 
						|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | 
						|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | 
						|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | 
						|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | 
						|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | 
						|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 | 
						|
# THE SOFTWARE.
 | 
						|
 | 
						|
include_recipe "kosmos-base::letsencrypt"
 | 
						|
 | 
						|
ejabberd_post_hook = <<-EOF
 | 
						|
#!/usr/bin/env bash
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
# Copy the ejabberd certificate and restart the server if it has been renewed
 | 
						|
# This is necessary because the ejabberd user doesn't have access to the
 | 
						|
# letsencrypt live folder
 | 
						|
for domain in $RENEWED_DOMAINS; do
 | 
						|
  case $domain in
 | 
						|
  kosmos.org|5apps.com)
 | 
						|
    cp "${RENEWED_LINEAGE}/privkey.pem" /opt/ejabberd/conf/$domain.key
 | 
						|
    cp "${RENEWED_LINEAGE}/fullchain.pem" /opt/ejabberd/conf/$domain.crt
 | 
						|
    chown ejabberd:ejabberd /opt/ejabberd/conf/$domain.*
 | 
						|
    chmod 600 /opt/ejabberd/conf/$domain.*
 | 
						|
    /opt/ejabberd-#{node["kosmos-ejabberd"]["version"]}/bin/ejabberdctl reload_config
 | 
						|
    ;;
 | 
						|
  esac
 | 
						|
done
 | 
						|
EOF
 | 
						|
 | 
						|
file "/etc/letsencrypt/renewal-hooks/post/ejabberd" do
 | 
						|
  content ejabberd_post_hook
 | 
						|
  mode 0755
 | 
						|
  owner "root"
 | 
						|
  group "root"
 | 
						|
end
 | 
						|
 | 
						|
gandi_api_data_bag_item = data_bag_item('credentials', 'gandi_api_5apps')
 | 
						|
 | 
						|
template "/root/gandi_dns_certbot_hook.sh" do
 | 
						|
  variables gandi_api_key: gandi_api_data_bag_item["key"]
 | 
						|
  mode 0770
 | 
						|
end
 | 
						|
 | 
						|
# Generate a Let's Encrypt cert (only if no cert has been generated before).
 | 
						|
# The systemd timer will take care of renewing
 | 
						|
execute "letsencrypt cert for kosmos xmpp" do
 | 
						|
  command "certbot certonly --manual --preferred-challenges dns --manual-public-ip-logging-ok --agree-tos --manual-auth-hook \"/root/gandi_dns_certbot_hook.sh auth\" --manual-cleanup-hook \"/root/gandi_dns_certbot_hook.sh cleanup\" --deploy-hook \"/etc/letsencrypt/renewal-hooks/post/ejabberd\" --email ops@kosmos.org -d kosmos.org -d xmpp.kosmos.org -d chat.kosmos.org -d kosmos.chat -d uploads.xmpp.kosmos.org -n"
 | 
						|
  not_if do
 | 
						|
    File.exist?("/etc/letsencrypt/live/kosmos.org/fullchain.pem")
 | 
						|
  end
 | 
						|
end
 | 
						|
 | 
						|
# Generate a Let's Encrypt cert (only if no cert has been generated before).
 | 
						|
# The systemd timer will take care of renewing
 | 
						|
execute "letsencrypt cert for 5apps xmpp" do
 | 
						|
  command "certbot certonly --manual --preferred-challenges dns --manual-public-ip-logging-ok --agree-tos --manual-auth-hook \"/root/gandi_dns_certbot_hook.sh auth\" --manual-cleanup-hook \"/root/gandi_dns_certbot_hook.sh cleanup\" --deploy-hook \"/etc/letsencrypt/renewal-hooks/post/ejabberd\" --email ops@5apps.com -d 5apps.com -d muc.5apps.com -d xmpp.5apps.com -d uploads.xmpp.5apps.com -n"
 | 
						|
  not_if do
 | 
						|
    File.exist?("/etc/letsencrypt/live/5apps.com/fullchain.pem")
 | 
						|
  end
 | 
						|
end
 |