mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	[API] Fix: Validate file_id
This commit is contained in:
		
							parent
							
								
									27c4d4b83b
								
							
						
					
					
						commit
						40f05f4ea5
					
				
					 1 changed files with 5 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -26,6 +26,11 @@ module.exports = (params, user) =>
 | 
			
		|||
		return rej('file_id is required');
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	// Validate id
 | 
			
		||||
	if (!mongo.ObjectID.isValid(fileId)) {
 | 
			
		||||
		return rej('incorrect file_id');
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	const file = await DriveFile
 | 
			
		||||
		.findOne({
 | 
			
		||||
			_id: new mongo.ObjectID(fileId),
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue