1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/backend/middlewares/NotificationMWs.ts
2017-07-09 14:23:50 +02:00

23 lines
630 B
TypeScript

import {NextFunction, Request, Response} from "express";
import {UserRoles} from "../../common/entities/UserDTO";
import {NotificationManager} from "../model/NotifocationManager";
const LOG_TAG = "[NotificationMWs]";
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();
}
}