mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			TypeScript
		
	
	
| import * as cors from 'cors'
 | |
| import * as express from 'express'
 | |
| import { CONFIG, STATIC_MAX_AGE, STATIC_PATHS } from '../initializers'
 | |
| import { VideosPreviewCache } from '../lib/cache'
 | |
| import { asyncMiddleware } from '../middlewares'
 | |
| 
 | |
| const staticRouter = express.Router()
 | |
| 
 | |
| /*
 | |
|   Cors is very important to let other servers access torrent and video files
 | |
| */
 | |
| 
 | |
| const torrentsPhysicalPath = CONFIG.STORAGE.TORRENTS_DIR
 | |
| staticRouter.use(
 | |
|   STATIC_PATHS.TORRENTS,
 | |
|   cors(),
 | |
|   express.static(torrentsPhysicalPath, { maxAge: 0 }) // Don't cache because we could regenerate the torrent file
 | |
| )
 | |
| 
 | |
| // Videos path for webseeding
 | |
| const videosPhysicalPath = CONFIG.STORAGE.VIDEOS_DIR
 | |
| staticRouter.use(
 | |
|   STATIC_PATHS.WEBSEED,
 | |
|   cors(),
 | |
|   express.static(videosPhysicalPath, { maxAge: STATIC_MAX_AGE })
 | |
| )
 | |
| 
 | |
| // Thumbnails path for express
 | |
| const thumbnailsPhysicalPath = CONFIG.STORAGE.THUMBNAILS_DIR
 | |
| staticRouter.use(
 | |
|   STATIC_PATHS.THUMBNAILS,
 | |
|   express.static(thumbnailsPhysicalPath, { maxAge: STATIC_MAX_AGE })
 | |
| )
 | |
| 
 | |
| // Video previews path for express
 | |
| staticRouter.use(
 | |
|   STATIC_PATHS.PREVIEWS + ':uuid.jpg',
 | |
|   asyncMiddleware(getPreview)
 | |
| )
 | |
| 
 | |
| // ---------------------------------------------------------------------------
 | |
| 
 | |
| export {
 | |
|   staticRouter
 | |
| }
 | |
| 
 | |
| // ---------------------------------------------------------------------------
 | |
| 
 | |
| async function getPreview (req: express.Request, res: express.Response, next: express.NextFunction) {
 | |
|   const path = await VideosPreviewCache.Instance.getPreviewPath(req.params.uuid)
 | |
|   if (!path) return res.sendStatus(404)
 | |
| 
 | |
|   return res.sendFile(path, { maxAge: STATIC_MAX_AGE })
 | |
| }
 |