mirror of
				https://git.sleeping.town/mirrors/foxy-moxy
				synced 2025-11-03 10:02:34 -08:00 
			
		
		
		
	Make the server just return the image.
This commit is contained in:
		
							parent
							
								
									2ba7f83b98
								
							
						
					
					
						commit
						0e2d3258ab
					
				
					 1 changed files with 6 additions and 7 deletions
				
			
		
							
								
								
									
										13
									
								
								server.js
									
										
									
									
									
								
							
							
						
						
									
										13
									
								
								server.js
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -42,25 +42,24 @@ var app = express();
 | 
			
		|||
app.use(express.static(__dirname + '/images'));
 | 
			
		||||
 | 
			
		||||
app.get('/', function(req, res) {
 | 
			
		||||
    var fileNames = writeFoxesToDisk(200, 200, 28);
 | 
			
		||||
    var images = fileNames.map(fileName => '<img src="/' + fileName + '"/>');
 | 
			
		||||
    res.send(images.join(''));
 | 
			
		||||
    var width = 400;
 | 
			
		||||
    var seed = uuid();
 | 
			
		||||
    var canvas = composeImage(width, width, seed);
 | 
			
		||||
    res.end(canvas.toBuffer(), 'binary');
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
app.get('/:width', function(req, res) {
 | 
			
		||||
    var width = parseInt(req.params.width) || 400;
 | 
			
		||||
    var seed = uuid();
 | 
			
		||||
    var canvas = composeImage(width, width, seed);
 | 
			
		||||
    var fileName = writeFoxToDisk(canvas, seed);
 | 
			
		||||
    res.send('<img src="/' + fileName + '"/>');
 | 
			
		||||
    res.end(canvas.toBuffer(), 'binary');
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
app.get('/:width/:seed', function(req, res) {
 | 
			
		||||
    var width = parseInt(req.params.width) || 400;
 | 
			
		||||
    var seed = sanitize(req.params.seed) || uuid();
 | 
			
		||||
    var canvas = composeImage(width, width, seed);
 | 
			
		||||
    var fileName = writeFoxToDisk(canvas, seed);
 | 
			
		||||
    res.send('<img src="/' + fileName + '"/>');
 | 
			
		||||
    res.end(canvas.toBuffer(), 'binary');
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
app.listen(process.env.PORT || 3000);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue