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-07-18 19:26:54 +00:00
|
|
|
# Sitios con hidden service de Tor
|
|
|
|
#
|
|
|
|
# @return [Array] lista de nombres de sitios sin onion aun
|
|
|
|
def hidden_services
|
|
|
|
render json: DeployHiddenService.where(values: nil).includes(:site).pluck(:name)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Tor va a enviar el onion junto con el nombre del sitio y tenemos
|
|
|
|
# que guardarlo en su deploy_hidden_service.
|
|
|
|
#
|
|
|
|
# @params [String] name
|
|
|
|
# @params [String] onion
|
|
|
|
def add_onion
|
|
|
|
site = Site.find_by(name: params[:name])
|
|
|
|
|
|
|
|
if site
|
|
|
|
usuarie = GitAuthor.new email: 'tor@' + Site.domain, name: 'Tor'
|
|
|
|
service = SiteService.new site: site, usuarie: usuarie,
|
|
|
|
params: params
|
|
|
|
service.add_onion
|
|
|
|
end
|
|
|
|
|
|
|
|
head :ok
|
|
|
|
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
|