mirror of
				https://gitea.invidious.io/iv-org/shard-kemal.git
				synced 2024-08-15 00:53:36 +00:00 
			
		
		
		
	Remove Kemal::OverrideMethodHandler
This commit is contained in:
		
							parent
							
								
									21ab64511a
								
							
						
					
					
						commit
						207f38251a
					
				
					 2 changed files with 0 additions and 62 deletions
				
			
		|  | @ -1,33 +0,0 @@ | |||
| module Kemal | ||||
|   # Adds support for `_method` magic parameter to simulate PUT, PATCH, DELETE requests in an html form. | ||||
|   # | ||||
|   # This middleware is **not** in the default Kemal handlers. You need to explicitly add this to your handlers: | ||||
|   # | ||||
|   # ```ruby | ||||
|   # add_handler Kemal::OverrideMethodHandler | ||||
|   # ``` | ||||
|   # | ||||
|   # **Important:** This middleware consumes `params.body` to read the `_method` magic parameter. | ||||
|   class OverrideMethodHandler | ||||
|     include HTTP::Handler | ||||
|     INSTANCE = new | ||||
| 
 | ||||
|     ALLOWED_METHODS           = ["PUT", "PATCH", "DELETE"] | ||||
|     OVERRIDE_METHOD           = "POST" | ||||
|     OVERRIDE_METHOD_PARAM_KEY = "_method" | ||||
| 
 | ||||
|     def call(context) | ||||
|       request = context.request | ||||
|       if request.method == OVERRIDE_METHOD | ||||
|         if context.params.body.has_key?(OVERRIDE_METHOD_PARAM_KEY) && override_method_valid?(context.params.body[OVERRIDE_METHOD_PARAM_KEY]) | ||||
|           request.method = context.params.body["_method"].upcase | ||||
|         end | ||||
|       end | ||||
|       call_next(context) | ||||
|     end | ||||
| 
 | ||||
|     private def override_method_valid?(override_method : String) | ||||
|       ALLOWED_METHODS.includes?(override_method.upcase) | ||||
|     end | ||||
|   end | ||||
| end | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue