2020-04-24 14:38:28 +00:00
|
|
|
require 'net/ssh'
|
|
|
|
require 'pathname'
|
|
|
|
namespace :create_site do
|
|
|
|
desc "Create Site Script"
|
2021-02-06 09:18:52 +00:00
|
|
|
task :create_site,[:git_template_url,:git_extension_url,:git_url,:ip,:user,:password,:site_name,:domain_name,:port,:db_name,:path,:site_construct_id] => :environment do |task,args|
|
2020-04-24 14:38:28 +00:00
|
|
|
@password = args.password
|
|
|
|
if args.site_construct_id.blank?
|
|
|
|
@site_construct = SiteConstruct.new
|
|
|
|
@site_construct.server_type = (SiteServer.where(:ip=>args.ip).first.server_name rescue args.ip)
|
|
|
|
@site_construct.site_name = args.site_name
|
|
|
|
@site_construct.domain_name = args.domain_name
|
2021-02-21 03:59:36 +00:00
|
|
|
@site_construct.db_name = args.db_name.gsub(" ","")
|
2020-04-24 14:38:28 +00:00
|
|
|
@site_construct.port = args.port
|
|
|
|
@site_construct.path = args.path
|
|
|
|
@site_construct.school_name = args.site_name.split(/[-_]/)
|
|
|
|
@site_construct.user_id = User.first.id.to_s
|
|
|
|
@site_construct.save
|
|
|
|
else
|
|
|
|
@site_construct = SiteConstruct.find(args.site_construct_id)
|
|
|
|
end
|
|
|
|
begin
|
|
|
|
@site_construct.update(:status=>"creating")
|
2020-04-28 13:26:49 +00:00
|
|
|
@site_construct.update!(:infos=>[])
|
2021-01-19 04:48:03 +00:00
|
|
|
begin
|
|
|
|
Net::SSH.start(args.ip , args.user , password: args.password) do |ssh|
|
|
|
|
end
|
|
|
|
rescue Net::SSH::HostKeyMismatch
|
|
|
|
system("ssh-keygen -f \"$HOME/.ssh/known_hosts\" -R #{args.ip}")
|
|
|
|
rescue Errno::ENOTTY
|
|
|
|
system("ssh-add \"$HOME/.ssh/id_rsa\"")
|
|
|
|
end
|
2020-04-24 14:38:28 +00:00
|
|
|
Net::SSH.start(args.ip , args.user , password: args.password) do |ssh|
|
|
|
|
update_infos("setting nginx for #{args.site_name}")
|
2021-04-19 01:29:53 +00:00
|
|
|
nginx_setting_texts = @site_construct.generate_nginx_text
|
2021-02-21 03:59:36 +00:00
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"touch /etc/nginx/orbit_sites/#{@site_construct.get_site_name}")
|
2022-09-12 07:18:20 +00:00
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"x='#{nginx_setting_texts.gsub(/'{1,3}/,"\"\'\"")}'; echo '#{@password}' | sudo -S sh -c \"echo '$x' > /etc/nginx/orbit_sites/#{@site_construct.get_site_name}\"")
|
2020-04-24 14:38:28 +00:00
|
|
|
update_infos("restarting nginx")
|
2021-02-18 14:02:52 +00:00
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"sudo -p 'sudo password:' service nginx restart")
|
2020-04-24 14:38:28 +00:00
|
|
|
update_infos("finish restarting nginx")
|
2021-02-16 08:49:58 +00:00
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"mkdir -p #{args.path}")
|
2020-04-24 14:38:28 +00:00
|
|
|
update_infos("cloning orbit4-5 from #{args.git_url} to #{args.path}/#{args.site_name}")
|
2021-02-21 03:59:36 +00:00
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"git clone #{args.git_url} #{args.path}/#{@site_construct.get_site_name}")
|
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"bash -l -c 'cd #{args.path}/#{@site_construct.get_site_name} && git submodule add #{args.git_template_url} app/templates/default-theme'")
|
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"bash -l -c 'cd #{args.path}/#{@site_construct.get_site_name} && git submodule add #{args.git_extension_url} modules'")
|
2021-07-21 04:33:12 +00:00
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"bash -l -c 'cd #{args.path}/#{@site_construct.get_site_name} && git submodule update --init --recursive'")
|
2021-02-21 03:59:36 +00:00
|
|
|
ssh.exec!("bash -l -c 'cd #{args.path}/#{@site_construct.get_site_name} && ln -s modules/* .'")
|
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"sudo -p 'sudo password:' chown #{args.user}:#{args.user} #{args.path}/#{@site_construct.get_site_name} -R")
|
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"sudo -p 'sudo password:' chmod 777 #{args.path}/#{@site_construct.get_site_name.gsub(" ","\\ ")} -R")
|
|
|
|
db_setting_text = ssh.exec!("cat #{args.path}/#{@site_construct.get_site_name}/config/mongoid.yml")
|
|
|
|
update_infos("setting dbname to #{@site_construct.db_name}")
|
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"sh -c \"echo '#{db_setting_text.gsub("orbit_4_5",@site_construct.db_name)}' > #{args.path}/#{@site_construct.get_site_name}/config/mongoid.yml\"",true)
|
2022-09-12 07:18:20 +00:00
|
|
|
gemdir = ssh.exec!("/home/#{args.user}/.rvm/bin/rvm gemdir").to_s
|
2020-04-24 14:38:28 +00:00
|
|
|
if gemdir.include?("No such file or directory")
|
|
|
|
ls = ssh.exec!("echo `ls /home`").to_s.split
|
|
|
|
ls.each do |d|
|
|
|
|
gemdir = ssh.exec!("/home/#{d}/.rvm/bin/rvm gemdir").to_s
|
|
|
|
break if !gemdir.to_s.include?("No such file or directory")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if gemdir.include?("No such file or directory")
|
|
|
|
update_infos("please connect your admin to install rvm on #{args.ip}")
|
|
|
|
@site_construct.update(:status =>"error")
|
|
|
|
else
|
|
|
|
bundle_dir = gemdir.gsub("\n","") + '/bin/bundle'
|
|
|
|
update_infos("execing bundle install...")
|
2021-02-21 03:59:36 +00:00
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"bash -l -c 'cd #{args.path}/#{@site_construct.get_site_name}\nbundle install'",true)
|
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"bash -l -c 'cd #{args.path}/#{@site_construct.get_site_name}\nbundle install'")
|
2020-04-24 14:38:28 +00:00
|
|
|
update_infos("finish execing bundle install")
|
|
|
|
update_infos("starting #{args.site_name} web server to development")
|
2021-02-21 03:59:36 +00:00
|
|
|
outputs = exec_ssh_command_by_sudo_for_create(ssh,"bash -l -c 'cd #{args.path}/#{@site_construct.get_site_name}\nkill -s TERM `fuser tmp/unicorn.sock`\nsudo -p \"sudo password:\" kill -s TERM `sudo -p \"sudo password:\" fuser tmp/unicorn.sock`\nsudo -p \"sudo password:\" rm -f tmp/pids/unicorn.pid\nbundle exec unicorn_rails -c config/unicorn.rb -D -E development\n'")
|
2021-01-19 04:48:03 +00:00
|
|
|
if outputs.include? "not writable"
|
2021-02-21 03:59:36 +00:00
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"sudo -p 'sudo password:' chown #{args.user}:#{args.user} #{args.path}/#{@site_construct.get_site_name} -R")
|
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"sudo -p 'sudo password:' chmod 777 #{args.path}/#{@site_construct.get_site_name} -R")
|
2021-01-19 04:48:03 +00:00
|
|
|
end
|
2020-04-24 14:38:28 +00:00
|
|
|
update_infos("finish creating #{args.site_name}")
|
2021-02-21 03:59:36 +00:00
|
|
|
exec_ssh_command_by_sudo_for_create(ssh,"chmod 777 #{args.path}/#{@site_construct.get_site_name} -R")
|
2020-04-24 14:38:28 +00:00
|
|
|
@site_construct.update(:status =>"finish")
|
|
|
|
puts "finish creating #{args.site_name} on #{args.ip}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
rescue =>e
|
|
|
|
@site_construct.update(:status =>"error",:infos=>@site_construct.infos.push("#{e}"))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
def exec_ssh_command_by_sudo(session,command)
|
|
|
|
output = session.exec!("echo '#{@password}' | sudo -S #{command}")
|
|
|
|
# output = session.exec!("echo '#{@password}' | sudo -S -s #{command}")
|
|
|
|
if output.include?("sudo:") && output.include?("command not found")
|
|
|
|
output = session.exec!(command)
|
|
|
|
end
|
2022-07-21 16:10:04 +00:00
|
|
|
return output.encode!("UTF-8", :invalid => :replace, :undef => :replace, :replace => '')
|
2020-04-24 14:38:28 +00:00
|
|
|
end
|
2021-01-19 04:48:03 +00:00
|
|
|
def update_thread_infos_for_exec(info,update_last=false)
|
|
|
|
if update_last
|
|
|
|
@thread.status["infos"][-1] += info
|
|
|
|
else
|
|
|
|
@thread.status["infos"] = @thread.status["infos"].push(info)
|
|
|
|
end
|
|
|
|
@thread.save!
|
|
|
|
return @thread.status["infos"]
|
|
|
|
end
|
|
|
|
def exec_ssh_command_for_create(session,command,update=false)
|
|
|
|
outputs = []
|
|
|
|
session.open_channel do |channel|
|
|
|
|
channel.request_pty do |channel, success|
|
2022-09-19 04:07:27 +00:00
|
|
|
channel.exec("LANG=en.UTF8 #{command}") do |ch, success|
|
2021-01-19 04:48:03 +00:00
|
|
|
abort "could not execute command: #{command}" unless success
|
|
|
|
channel.on_data do |ch, data|
|
|
|
|
outputs.push(data)
|
|
|
|
print "#{data}"
|
|
|
|
if update
|
|
|
|
if data.include? "\n"
|
|
|
|
update_infos_for_exec(data)
|
|
|
|
else
|
|
|
|
update_infos_for_exec(data,true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if data.to_s.include?("sudo password:") || data.to_s.include?("Password:")
|
|
|
|
channel.send_data "#{@password}\n"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
session.loop
|
|
|
|
return outputs
|
|
|
|
end
|
|
|
|
def exec_ssh_command_by_sudo_for_create(session,command,update=false)
|
|
|
|
outputs = exec_ssh_command_for_create(session,command,update)
|
2022-09-19 04:07:27 +00:00
|
|
|
tmp = outputs.join("\n")
|
|
|
|
if tmp.include?("Permission denied") || tmp.include?("Operation not permitted")
|
2021-01-19 04:48:03 +00:00
|
|
|
outputs = exec_ssh_command_for_create(session,"sudo -p 'sudo password:' #{command}",update)
|
2022-09-19 04:07:27 +00:00
|
|
|
tmp = outputs.join("\n")
|
2021-01-19 04:48:03 +00:00
|
|
|
end
|
2022-09-19 04:07:27 +00:00
|
|
|
return tmp
|
2021-01-19 04:48:03 +00:00
|
|
|
end
|
2022-03-31 05:53:05 +00:00
|
|
|
def update_infos_for_exec(info,update_last=false,update_array=false)
|
|
|
|
return if @site_construct.nil?
|
|
|
|
info.encode!("UTF-8", :invalid => :replace, :undef => :replace, :replace => '')
|
2021-01-19 04:48:03 +00:00
|
|
|
if update_last && !@site_construct.infos.empty?
|
2022-03-31 05:53:05 +00:00
|
|
|
@site_construct.infos[-1] += info.to_s
|
2021-01-19 04:48:03 +00:00
|
|
|
else
|
2022-03-31 05:53:05 +00:00
|
|
|
if update_array
|
|
|
|
@site_construct.infos += info
|
|
|
|
else
|
|
|
|
@site_construct.infos.push(info.to_s)
|
|
|
|
end
|
2021-01-19 04:48:03 +00:00
|
|
|
end
|
|
|
|
@site_construct.save!
|
|
|
|
return @site_construct.infos
|
|
|
|
end
|
2020-04-24 14:38:28 +00:00
|
|
|
def update_infos(info)
|
2020-04-28 13:26:49 +00:00
|
|
|
puts info
|
2020-04-24 14:38:28 +00:00
|
|
|
@site_construct.infos = @site_construct.infos.push(info)
|
|
|
|
@site_construct.save!
|
|
|
|
return @site_construct.infos
|
|
|
|
end
|
|
|
|
end
|