2019-07-24 23:51:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Alojamiento local, solo genera el sitio, con lo que no necesita hacer
|
|
|
|
# nada más
|
|
|
|
class DeployLocal < Deploy
|
2019-09-25 16:05:18 +00:00
|
|
|
store :values, accessors: %i[], coder: JSON
|
2019-07-24 23:51:29 +00:00
|
|
|
|
|
|
|
before_destroy :remove_destination!
|
|
|
|
|
2023-05-13 20:42:14 +00:00
|
|
|
def bundle(output: false)
|
2023-06-15 16:42:42 +00:00
|
|
|
run %(bundle config set --local clean 'true'), output: output
|
|
|
|
run %(bundle config set --local deployment 'true'), output: output if site.gemfile_lock_path?
|
2023-06-15 16:45:31 +00:00
|
|
|
run %(bundle config set --local path '#{site.bundle_path}'), output: output
|
2023-06-15 16:42:42 +00:00
|
|
|
run %(bundle config set --local without 'test development'), output: output
|
|
|
|
run %(bundle config set --local cache_all 'false'), output: output
|
|
|
|
run %(bundle install), output: output
|
2023-05-13 20:42:14 +00:00
|
|
|
end
|
|
|
|
|
2023-05-13 20:42:14 +00:00
|
|
|
def git_lfs(output: false)
|
|
|
|
run %(git lfs fetch), output: output
|
|
|
|
run %(git lfs checkout), output: output
|
|
|
|
end
|
|
|
|
|
2019-07-24 23:51:29 +00:00
|
|
|
# Realizamos la construcción del sitio usando Jekyll y un entorno
|
|
|
|
# limpio para no pasarle secretos
|
|
|
|
#
|
|
|
|
# Pasamos variables de entorno mínimas para no filtrar secretos de
|
|
|
|
# Sutty
|
2022-03-15 19:03:16 +00:00
|
|
|
def deploy(output: false)
|
2020-01-24 15:12:49 +00:00
|
|
|
return false unless mkdir
|
2023-04-11 13:42:07 +00:00
|
|
|
return false unless git_lfs(output: output)
|
2022-03-15 19:03:16 +00:00
|
|
|
return false unless yarn(output: output)
|
2023-02-06 19:13:39 +00:00
|
|
|
return false unless pnpm(output: output)
|
2022-03-15 19:03:16 +00:00
|
|
|
return false unless bundle(output: output)
|
2020-01-24 15:12:49 +00:00
|
|
|
|
2022-03-15 19:03:16 +00:00
|
|
|
jekyll_build(output: output)
|
2019-07-24 23:51:29 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Sólo permitimos un deploy local
|
|
|
|
def limit
|
|
|
|
1
|
|
|
|
end
|
|
|
|
|
2022-04-06 23:07:14 +00:00
|
|
|
def url
|
|
|
|
site.url
|
|
|
|
end
|
|
|
|
|
2019-07-26 00:07:53 +00:00
|
|
|
# Obtener el tamaño de todos los archivos y directorios (los
|
|
|
|
# directorios son archivos :)
|
|
|
|
def size
|
2022-04-06 23:54:35 +00:00
|
|
|
@size ||= begin
|
|
|
|
paths = [destination, File.join(destination, '**', '**')]
|
2019-07-26 00:07:53 +00:00
|
|
|
|
2022-04-06 23:54:35 +00:00
|
|
|
Dir.glob(paths).map do |file|
|
|
|
|
if File.symlink? file
|
|
|
|
0
|
|
|
|
else
|
|
|
|
File.size(file)
|
|
|
|
end
|
|
|
|
end.inject(:+)
|
|
|
|
end
|
2019-07-26 00:07:53 +00:00
|
|
|
end
|
|
|
|
|
2019-09-25 16:05:18 +00:00
|
|
|
def destination
|
|
|
|
File.join(Rails.root, '_deploy', site.hostname)
|
|
|
|
end
|
|
|
|
|
2022-04-15 13:39:44 +00:00
|
|
|
# Libera espacio eliminando archivos temporales
|
|
|
|
#
|
|
|
|
# @return [nil]
|
|
|
|
def cleanup!
|
2023-05-13 20:41:00 +00:00
|
|
|
FileUtils.rm_rf(site.bundle_path)
|
2022-04-15 13:39:44 +00:00
|
|
|
FileUtils.rm_rf(yarn_cache_dir)
|
|
|
|
FileUtils.rm_rf(File.join(site.path, 'node_modules'))
|
|
|
|
FileUtils.rm_rf(File.join(site.path, '.sass-cache'))
|
|
|
|
FileUtils.rm_rf(File.join(site.path, '.jekyll-cache'))
|
|
|
|
end
|
|
|
|
|
2023-08-30 19:40:33 +00:00
|
|
|
# Opciones necesarias para la compilación del sitio
|
|
|
|
#
|
|
|
|
# @return [Hash]
|
|
|
|
def local_env
|
|
|
|
@local_env ||= {
|
|
|
|
'SPREE_API_KEY' => site.tienda_api_key,
|
|
|
|
'SPREE_URL' => site.tienda_url,
|
|
|
|
'AIRBRAKE_PROJECT_ID' => site.id.to_s,
|
|
|
|
'AIRBRAKE_PROJECT_KEY' => site.airbrake_api_key,
|
|
|
|
'YARN_CACHE_FOLDER' => yarn_cache_dir,
|
2024-06-04 15:49:37 +00:00
|
|
|
'GEMS_SOURCE' => ENV.fetch('GEMS_SOURCE', nil)
|
2023-08-30 19:40:33 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2019-07-24 23:51:29 +00:00
|
|
|
private
|
|
|
|
|
2019-09-16 16:15:20 +00:00
|
|
|
def mkdir
|
|
|
|
FileUtils.mkdir_p destination
|
|
|
|
end
|
|
|
|
|
2021-12-09 13:42:03 +00:00
|
|
|
def yarn_cache_dir
|
2021-12-24 01:47:15 +00:00
|
|
|
Rails.root.join('_yarn_cache').to_s
|
2021-12-09 13:42:03 +00:00
|
|
|
end
|
|
|
|
|
2023-02-06 19:09:51 +00:00
|
|
|
def pnpm_cache_dir
|
|
|
|
Rails.root.join('_pnpm_cache').to_s
|
|
|
|
end
|
|
|
|
|
2019-07-24 23:51:29 +00:00
|
|
|
def yarn_lock
|
|
|
|
File.join(site.path, 'yarn.lock')
|
|
|
|
end
|
|
|
|
|
|
|
|
def yarn_lock?
|
|
|
|
File.exist? yarn_lock
|
|
|
|
end
|
|
|
|
|
2023-02-06 19:09:51 +00:00
|
|
|
def pnpm_lock
|
|
|
|
File.join(site.path, 'pnpm-lock.yaml')
|
|
|
|
end
|
|
|
|
|
|
|
|
def pnpm_lock?
|
|
|
|
File.exist? pnpm_lock
|
|
|
|
end
|
|
|
|
|
2023-02-06 19:13:39 +00:00
|
|
|
def pnpm(output: false)
|
|
|
|
return true unless pnpm_lock?
|
|
|
|
|
|
|
|
run %(pnpm config set store-dir "#{pnpm_cache_dir}"), output: output
|
|
|
|
run 'pnpm install --production', output: output
|
2020-01-24 15:12:49 +00:00
|
|
|
end
|
|
|
|
|
2022-03-15 19:03:16 +00:00
|
|
|
def gem(output: false)
|
|
|
|
run %(gem install bundler --no-document), output: output
|
2020-01-24 15:12:49 +00:00
|
|
|
end
|
|
|
|
|
2019-07-24 23:51:29 +00:00
|
|
|
# Corre yarn dentro del repositorio
|
2022-03-15 19:03:16 +00:00
|
|
|
def yarn(output: false)
|
2021-08-07 18:55:00 +00:00
|
|
|
return true unless yarn_lock?
|
2019-07-24 23:51:29 +00:00
|
|
|
|
2022-03-15 19:03:16 +00:00
|
|
|
run 'yarn install --production', output: output
|
2019-07-24 23:51:29 +00:00
|
|
|
end
|
|
|
|
|
2022-03-15 19:03:16 +00:00
|
|
|
def jekyll_build(output: false)
|
2023-08-29 21:26:03 +00:00
|
|
|
with_tempfile(site.private_key_pem) do |file|
|
2023-08-30 13:58:52 +00:00
|
|
|
flags = extra_flags(private_key: file)
|
|
|
|
|
|
|
|
run %(bundle exec jekyll build --trace --profile #{flags} --destination "#{escaped_destination}"), output: output
|
2023-08-29 21:26:03 +00:00
|
|
|
end
|
2019-07-24 23:51:29 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# no debería haber espacios ni caracteres especiales, pero por si
|
|
|
|
# acaso...
|
|
|
|
def escaped_destination
|
|
|
|
Shellwords.escape destination
|
|
|
|
end
|
|
|
|
|
|
|
|
# Eliminar el destino si se elimina el deploy
|
|
|
|
def remove_destination!
|
|
|
|
FileUtils.rm_rf destination
|
|
|
|
end
|
2022-10-05 21:44:23 +00:00
|
|
|
|
2023-08-30 13:58:52 +00:00
|
|
|
# Genera opciones extra desde los otros deploys
|
|
|
|
#
|
|
|
|
# @param :args [Hash]
|
|
|
|
# @return [String]
|
|
|
|
def extra_flags(**args)
|
2023-08-30 19:40:33 +00:00
|
|
|
site.deployment_list.map do |deploy|
|
2023-08-30 13:58:52 +00:00
|
|
|
deploy.flags_for_build(**args)
|
|
|
|
end.compact.join(' ')
|
|
|
|
end
|
2019-07-24 23:51:29 +00:00
|
|
|
end
|