mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
23 lines
630 B
TypeScript
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();
|
|
}
|
|
}
|