diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-12-15 17:04:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-15 17:04:38 +0100 |
commit | 673c54f114be78e0588f2bb883f2962dbc7574a7 (patch) | |
tree | 0287bece36377a8b16f0244acb44f57c16366cc1 | |
parent | bbc49f15e030df4e75af06ece8c5302b80b69342 (diff) |
Fix inability to use local LibreTranslate without setting ALLOWED_PRIVATE_ADDRESSES (#21926)
Fixes #20029
-rw-r--r-- | app/lib/request.rb | 3 | ||||
-rw-r--r-- | app/lib/translation_service/libre_translate.rb | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/app/lib/request.rb b/app/lib/request.rb index 96d934a8f..b2819c8ed 100644 --- a/app/lib/request.rb +++ b/app/lib/request.rb @@ -30,7 +30,8 @@ class Request @verb = verb @url = Addressable::URI.parse(url).normalize @http_client = options.delete(:http_client) - @options = options.merge(socket_class: use_proxy? ? ProxySocket : Socket) + @allow_local = options.delete(:allow_local) + @options = options.merge(socket_class: use_proxy? || @allow_local ? ProxySocket : Socket) @options = @options.merge(proxy_url) if use_proxy? @headers = {} diff --git a/app/lib/translation_service/libre_translate.rb b/app/lib/translation_service/libre_translate.rb index 43576e306..4ebe21e45 100644 --- a/app/lib/translation_service/libre_translate.rb +++ b/app/lib/translation_service/libre_translate.rb @@ -27,7 +27,7 @@ class TranslationService::LibreTranslate < TranslationService def request(text, source_language, target_language) body = Oj.dump(q: text, source: source_language.presence || 'auto', target: target_language, format: 'html', api_key: @api_key) - req = Request.new(:post, "#{@base_url}/translate", body: body) + req = Request.new(:post, "#{@base_url}/translate", body: body, allow_local: true) req.add_headers('Content-Type': 'application/json') req end |