| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2018-07-30 23:08:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-10 06:28:15 +08:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-01-15 06:20:30 +08:00
										 |  |  | const { contextify } = require("./util/identifier"); | 
					
						
							| 
									
										
										
										
											2017-01-10 06:28:15 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | class RequestShortener { | 
					
						
							| 
									
										
										
										
											2018-11-24 04:50:26 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {string} dir the directory | 
					
						
							| 
									
										
										
										
											2020-01-15 06:20:30 +08:00
										 |  |  | 	 * @param {object=} associatedObjectForCache an object to which the cache will be attached | 
					
						
							| 
									
										
										
										
											2018-11-24 04:50:26 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2020-01-15 06:20:30 +08:00
										 |  |  | 	constructor(dir, associatedObjectForCache) { | 
					
						
							|  |  |  | 		this.contextify = contextify.bindContextCache( | 
					
						
							|  |  |  | 			dir, | 
					
						
							|  |  |  | 			associatedObjectForCache | 
					
						
							|  |  |  | 		); | 
					
						
							| 
									
										
										
										
											2013-07-11 05:20:07 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-24 04:50:26 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {string | undefined | null} request the request to shorten | 
					
						
							|  |  |  | 	 * @returns {string | undefined | null} the shortened request | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-01-10 06:28:15 +08:00
										 |  |  | 	shorten(request) { | 
					
						
							| 
									
										
										
										
											2018-11-24 04:50:26 +08:00
										 |  |  | 		if (!request) { | 
					
						
							|  |  |  | 			return request; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-01-15 06:20:30 +08:00
										 |  |  | 		return this.contextify(request); | 
					
						
							| 
									
										
										
										
											2013-07-11 05:20:07 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-01-31 01:49:25 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-10 06:28:15 +08:00
										 |  |  | module.exports = RequestShortener; |