1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/backend/middlewares/NotificationMWs.ts

24 lines
631 B
TypeScript
Raw Normal View History

2018-03-31 03:30:30 +08:00
import {NextFunction, Request, Response} from 'express';
import {UserRoles} from '../../common/entities/UserDTO';
import {NotificationManager} from '../model/NotifocationManager';
const LOG_TAG = '[NotificationMWs]';
2017-07-09 20:23:50 +08:00
export class NotificationMWs {
public static list(req: Request, res: Response, next: NextFunction) {
if (req.session.user.role >= UserRoles.Admin) {
req.resultPipe = NotificationManager.notifications;
} else if (NotificationManager.notifications.length > 0) {
req.resultPipe = NotificationManager.HasNotification;
} else {
req.resultPipe = [];
}
return next();
}
}