2019-09-05 18:56:24 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Api
|
|
|
|
module V1
|
|
|
|
# API para sitios
|
|
|
|
class SitesController < BaseController
|
2020-02-06 16:11:17 +00:00
|
|
|
http_basic_authenticate_with name: ENV['HTTP_BASIC_USER'],
|
|
|
|
password: ENV['HTTP_BASIC_PASSWORD']
|
|
|
|
|
2020-05-29 15:42:39 +00:00
|
|
|
# Lista de nombres de dominios a emitir certificados
|
2019-09-06 23:40:33 +00:00
|
|
|
def index
|
2020-05-29 15:42:39 +00:00
|
|
|
render json: sites_names + alternative_names + api_names
|
2019-09-06 23:40:33 +00:00
|
|
|
end
|
|
|
|
|
2020-05-29 15:42:39 +00:00
|
|
|
private
|
2019-09-05 18:56:24 +00:00
|
|
|
|
2020-05-29 15:42:39 +00:00
|
|
|
# Nombres de los sitios
|
|
|
|
def sites_names
|
|
|
|
Site.all.order(:name).pluck(:name)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Dominios alternativos
|
|
|
|
def alternative_names
|
|
|
|
DeployAlternativeDomain.all.map(&:hostname)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Obtener todos los sitios con API habilitada, es decir formulario
|
|
|
|
# de contacto y/o colaboración anónima.
|
|
|
|
#
|
|
|
|
# TODO: Optimizar
|
|
|
|
def api_names
|
|
|
|
Site.where(contact: true)
|
|
|
|
.or(Site.where(colaboracion_anonima: true))
|
|
|
|
.select("'api.' || name as name").map(&:name)
|
2019-09-05 18:56:24 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|