require "digest/md5" require "railsless-deploy" require "multi_json" def remote_file_exists?(full_path) results = [] invoke_command("if [ -e '#{full_path}' ]; then echo -n 'true'; fi") do |ch, stream, out| results << (out == 'true') end results == [true] end def remote_file_content_same_as?(full_path, content) results = [] invoke_command("md5sum #{full_path} | awk '{ print $1 }'") do |ch, stream, out| results << (out == Digest::MD5.hexdigest(content)) end results == [true] end def remote_file_differs?(full_path, content) exists = remote_file_exists?(full_path) !exists || exists && !remote_file_content_same_as?(full_path, content) end Capistrano::Configuration.instance(:must_exist).load do |configuration| default_run_options[:pty] = true before "deploy", "deploy:create_release_dir" before "deploy", "node:check_upstart_config" before "deploy:create_symlink", "node:install_packages" after "deploy:update", "node:restart" after "deploy:rollback", "node:restart" package_json = MultiJson.load(File.open("package.json").read) rescue {} set :application, package_json["name"] unless defined? application set :app_command, package_json["main"] || "index.js" unless defined? app_command set :app_environment, "" unless defined? app_environment set :node_binary, "/usr/bin/node" unless defined? node_binary set :node_env, "production" unless defined? node_env set :node_user, "deploy" unless defined? node_user set :stdout_log_path, lambda { "#{shared_path}/log/#{node_env}.out.log" } set :stderr_log_path, lambda { "#{shared_path}/log/#{node_env}.err.log" } set :upstart_job_name, lambda { "#{application}-#{node_env}" } unless defined? upstart_job_name set :upstart_file_path, lambda { "/etc/init/#{upstart_job_name}.conf" } unless defined? upstart_file_path _cset(:upstart_file_contents) { <> #{stderr_log_path} 1>> #{stdout_log_path} end script EOD } namespace :node do desc "Check required packages and install if packages are not installed" task :install_packages do run "cp -r #{previous_release}/node_modules #{release_path}" if previous_release run "cd #{release_path} && npm install --loglevel warn" end task :check_upstart_config do create_upstart_config if remote_file_differs?(upstart_file_path, upstart_file_contents) end desc "Create upstart script for this node app" task :create_upstart_config do temp_config_file_path = "#{shared_path}/#{application}.conf" # Generate and upload the upstart script put upstart_file_contents, temp_config_file_path # Copy the script into place and make executable sudo "cp #{temp_config_file_path} #{upstart_file_path}" end desc "Start the node application" task :start do sudo "start #{upstart_job_name}" end desc "Stop the node application" task :stop do sudo "stop #{upstart_job_name}" end desc "Restart the node application" task :restart do sudo "stop #{upstart_job_name}; true" sudo "start #{upstart_job_name}" end end namespace :deploy do task :create_release_dir, :except => {:no_release => true} do mkdir_releases = "mkdir -p #{fetch :releases_path}" mkdir_commands = ["log", "pids"].map {|dir| "mkdir -p #{shared_path}/#{dir}"} run mkdir_commands.unshift(mkdir_releases).join(" && ") end end end