mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-17 08:36:38 +00:00
No hacer malabares con los nombres de dominio
Esta era toda la razón para las modificaciones hechas hasta ahora, no tener que tener que determinar el dominio por si tiene o no tiene punto final o contiene el dominio del sitio.
This commit is contained in:
parent
11e45bbc05
commit
e14e53c2a1
2 changed files with 12 additions and 11 deletions
|
@ -11,16 +11,17 @@ module Api
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
# Realiza la inversa de Site#hostname
|
# Por retrocompatibilidad con la forma en que estábamos
|
||||||
|
# gestionando los hostnames históricamente, necesitamos poder
|
||||||
|
# encontrar el sitio a partir de cualquiera de sus hostnames.
|
||||||
#
|
#
|
||||||
# TODO: El sitio sutty.nl no aplica a ninguno de estos y le
|
# Aunque en realidad con el hostname a partir del Origin nos
|
||||||
# tuvimos que poner 'sutty.nl..sutty.nl' para pasar el test.
|
# bastaría.
|
||||||
|
#
|
||||||
|
# TODO: Generar API v2 que use solo el hostname y no haya que
|
||||||
|
# pasar site_id como parámetro redundante.
|
||||||
def site_id
|
def site_id
|
||||||
@site_id ||= if params[:site_id].end_with? Site.domain
|
@site_id ||= Deploy.where(hostname: params[:site_id]).pluck(:site_id).first
|
||||||
params[:site_id].sub(/\.#{Site.domain}\z/, '')
|
|
||||||
else
|
|
||||||
params[:site_id] + '.'
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
# Referer
|
# Referer
|
||||||
|
|
|
@ -106,7 +106,7 @@ module Api
|
||||||
test 'se puede enviar mensajes a dominios propios' do
|
test 'se puede enviar mensajes a dominios propios' do
|
||||||
ActionMailer::Base.deliveries.clear
|
ActionMailer::Base.deliveries.clear
|
||||||
|
|
||||||
@site.update name: 'example.org.'
|
@site.update name: 'example'
|
||||||
|
|
||||||
redirect = "#{@site.url}?thanks"
|
redirect = "#{@site.url}?thanks"
|
||||||
|
|
||||||
|
@ -114,8 +114,8 @@ module Api
|
||||||
create :rol, site: @site
|
create :rol, site: @site
|
||||||
end
|
end
|
||||||
|
|
||||||
get v1_site_contact_cookie_url(@site.hostname, **@host)
|
get v1_site_contact_cookie_url(@site.name, **@host)
|
||||||
post v1_site_contact_url(site_id: @site.hostname, form: :contacto, **@host),
|
post v1_site_contact_url(site_id: @site.name, form: :contacto, **@host),
|
||||||
headers: { origin: @site.url },
|
headers: { origin: @site.url },
|
||||||
params: {
|
params: {
|
||||||
name: SecureRandom.hex,
|
name: SecureRandom.hex,
|
||||||
|
|
Loading…
Reference in a new issue