mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-10-31 16:28:05 +02:00 
			
		
		
		
	 28b01ddf72
			
		
	
	
		28b01ddf72
		
	
	
	
	
		
			
			There are a couple of example removals to show it works, bug 1858148 will handle the rest. Differential Revision: https://phabricator.services.mozilla.com/D190603
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			727 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			727 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * Will cause an auto-refresh to the URL provided in the query string
 | |
|  * after some delay using the refresh HTTP header.
 | |
|  *
 | |
|  * Expects the query string to be in the format:
 | |
|  *
 | |
|  * ?p=[URL of the page to redirect to]&d=[delay]
 | |
|  *
 | |
|  * Example:
 | |
|  *
 | |
|  * ?p=http%3A%2F%2Fexample.org%2Fbrowser%2Fbrowser%2Fbase%2Fcontent%2Ftest%2Fgeneral%2Frefresh_meta.sjs&d=200
 | |
|  */
 | |
| function handleRequest(request, response) {
 | |
|   let query = new URLSearchParams(request.queryString);
 | |
| 
 | |
|   let page = query.get("p");
 | |
|   let delay = query.get("d");
 | |
| 
 | |
|   response.setHeader("Content-Type", "text/html", false);
 | |
|   response.setStatusLine(request.httpVersion, "200", "Found");
 | |
|   response.setHeader("refresh", `${delay}; url=${page}`);
 | |
|   response.write("OK");
 | |
| }
 |