about summary refs log tree commit diff
path: root/lib/action_dispatch/cookie_jar_extensions.rb
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2022-04-08 22:24:07 +0200
committerGitHub <noreply@github.com>2022-04-08 22:24:07 +0200
commitc483101b4ae7d9f22ea43921c512f479e16e98ca (patch)
tree1de88394686dd7f532e7ddf68a9023caa1bfdb88 /lib/action_dispatch/cookie_jar_extensions.rb
parente0c39f9fad837b77373220515f078f2443ddf553 (diff)
parenta8d89aabb2292af499f2d1392ad435dd261dd41b (diff)
Merge pull request #1737 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'lib/action_dispatch/cookie_jar_extensions.rb')
-rw-r--r--lib/action_dispatch/cookie_jar_extensions.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/action_dispatch/cookie_jar_extensions.rb b/lib/action_dispatch/cookie_jar_extensions.rb
deleted file mode 100644
index 1be9053ba..000000000
--- a/lib/action_dispatch/cookie_jar_extensions.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-# frozen_string_literal: true
-
-module ActionDispatch
-  module CookieJarExtensions
-    private
-
-    # Monkey-patch ActionDispatch to serve secure cookies to Tor Hidden Service
-    # users. Otherwise, ActionDispatch would drop the cookie over HTTP.
-    def write_cookie?(*)
-      request.host.end_with?('.onion') || super
-    end
-  end
-end
-
-ActionDispatch::Cookies::CookieJar.prepend(ActionDispatch::CookieJarExtensions)
-
-module Rack
-  module SessionPersistedExtensions
-    def security_matches?(request, options)
-      request.host.end_with?('.onion') || super
-    end
-  end
-end
-
-Rack::Session::Abstract::Persisted.prepend(Rack::SessionPersistedExtensions)