mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
| import * as express from 'express'
 | |
| import { getFormattedObjects } from '../../helpers/utils'
 | |
| import { asyncMiddleware, paginationValidator, setDefaultSort, setDefaultPagination } from '../../middlewares'
 | |
| import { accountsGetValidator, accountsSortValidator } from '../../middlewares/validators'
 | |
| import { AccountModel } from '../../models/account/account'
 | |
| 
 | |
| const accountsRouter = express.Router()
 | |
| 
 | |
| accountsRouter.get('/',
 | |
|   paginationValidator,
 | |
|   accountsSortValidator,
 | |
|   setDefaultSort,
 | |
|   setDefaultPagination,
 | |
|   asyncMiddleware(listAccounts)
 | |
| )
 | |
| 
 | |
| accountsRouter.get('/:id',
 | |
|   asyncMiddleware(accountsGetValidator),
 | |
|   getAccount
 | |
| )
 | |
| 
 | |
| // ---------------------------------------------------------------------------
 | |
| 
 | |
| export {
 | |
|   accountsRouter
 | |
| }
 | |
| 
 | |
| // ---------------------------------------------------------------------------
 | |
| 
 | |
| function getAccount (req: express.Request, res: express.Response, next: express.NextFunction) {
 | |
|   return res.json(res.locals.account.toFormattedJSON())
 | |
| }
 | |
| 
 | |
| async function listAccounts (req: express.Request, res: express.Response, next: express.NextFunction) {
 | |
|   const resultList = await AccountModel.listForApi(req.query.start, req.query.count, req.query.sort)
 | |
| 
 | |
|   return res.json(getFormattedObjects(resultList.data, resultList.total))
 | |
| }
 |