5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-05 21:25:47 +00:00

feat: generar direcciones tor a demanda #12773

This commit is contained in:
f 2023-03-28 15:28:46 -03:00
parent 5e23a75680
commit f4264fe763
2 changed files with 24 additions and 1 deletions

View file

@ -0,0 +1,13 @@
# frozen_string_literal: true
require 'httparty'
class HiddenServiceClient
include HTTParty
base_uri ENV.fetch('HIDDEN_SERVICE', 'http://tor:3000')
def create(name)
self.class.get("/#{name}")
end
end

View file

@ -2,8 +2,12 @@
# Genera una versión onion
class DeployHiddenService < DeployWww
store :values, accessors: %i[onion], coder: JSON
before_create :create_hidden_service!
def fqdn
values[:onion].tap do |onion|
onion.tap do |onion|
raise ArgumentError, 'Aun no se generó la dirección .onion' if onion.blank?
end
end
@ -11,4 +15,10 @@ class DeployHiddenService < DeployWww
def url
"http://#{fqdn}"
end
private
def create_hidden_service!
self.onion = HiddenServiceClient.new.create(site.name)
end
end