5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-19 10:00:49 +00:00
panel/app/models/deploy_www.rb
2023-04-10 12:23:00 -03:00

44 lines
730 B
Ruby

# frozen_string_literal: true
# Vincula la versión del sitio con www a la versión sin
class DeployWww < Deploy
store :values, accessors: %i[], coder: JSON
DEPENDENCIES = %i[deploy_local]
before_destroy :remove_destination!
def deploy(output: false)
puts "Creando symlink #{site.hostname} => #{destination}" if output
File.symlink?(destination) ||
File.symlink(site.hostname, destination).zero?
end
def limit
1
end
def size
File.size destination
end
def destination
File.join(Rails.root, '_deploy', fqdn)
end
def fqdn
"www.#{site.hostname}"
end
def url
"https://#{fqdn}/"
end
private
def remove_destination!
FileUtils.rm_f destination
end
end