2020-07-12 17:34:25 +02:00
|
|
|
# ContentDB
|
2021-01-30 17:59:42 +01:00
|
|
|
# Copyright (C) 2018-21 rubenwardy
|
2018-05-17 16:18:20 +02:00
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
2021-01-30 17:59:42 +01:00
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
2018-05-17 16:18:20 +02:00
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2021-01-30 17:59:42 +01:00
|
|
|
# GNU Affero General Public License for more details.
|
2018-05-17 16:18:20 +02:00
|
|
|
#
|
2021-01-30 17:59:42 +01:00
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
2018-05-17 16:18:20 +02:00
|
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
2019-12-17 21:49:59 +01:00
|
|
|
from flask import Blueprint, render_template, redirect, url_for
|
2020-12-04 23:05:10 +01:00
|
|
|
from flask_login import current_user, login_required
|
2020-12-06 00:40:03 +01:00
|
|
|
from sqlalchemy import or_, desc
|
2020-12-06 00:09:29 +01:00
|
|
|
|
|
|
|
from app.models import db, Notification, NotificationType
|
2018-05-13 18:55:28 +02:00
|
|
|
|
2019-11-16 00:51:42 +01:00
|
|
|
bp = Blueprint("notifications", __name__)
|
|
|
|
|
2020-12-05 06:24:27 +01:00
|
|
|
|
2019-11-16 00:51:42 +01:00
|
|
|
@bp.route("/notifications/")
|
2018-05-13 18:55:28 +02:00
|
|
|
@login_required
|
2019-11-16 00:51:42 +01:00
|
|
|
def list_all():
|
2020-12-06 00:09:29 +01:00
|
|
|
notifications = Notification.query.filter(Notification.user == current_user,
|
2020-12-06 00:40:03 +01:00
|
|
|
Notification.type != NotificationType.EDITOR_ALERT, Notification.type != NotificationType.EDITOR_MISC) \
|
|
|
|
.order_by(desc(Notification.created_at)) \
|
|
|
|
.all()
|
2020-12-06 00:09:29 +01:00
|
|
|
|
|
|
|
editor_notifications = Notification.query.filter(Notification.user == current_user,
|
2020-12-06 00:40:03 +01:00
|
|
|
or_(Notification.type == NotificationType.EDITOR_ALERT, Notification.type == NotificationType.EDITOR_MISC)) \
|
|
|
|
.order_by(desc(Notification.created_at)) \
|
|
|
|
.all()
|
2020-12-06 00:09:29 +01:00
|
|
|
|
|
|
|
return render_template("notifications/list.html",
|
|
|
|
notifications=notifications, editor_notifications=editor_notifications)
|
2018-05-29 18:20:11 +02:00
|
|
|
|
2020-12-05 06:24:27 +01:00
|
|
|
|
2019-11-16 00:51:42 +01:00
|
|
|
@bp.route("/notifications/clear/", methods=["POST"])
|
2018-05-29 18:20:11 +02:00
|
|
|
@login_required
|
2019-11-16 00:51:42 +01:00
|
|
|
def clear():
|
2020-07-12 17:33:17 +02:00
|
|
|
Notification.query.filter_by(user=current_user).delete()
|
2018-05-29 18:20:11 +02:00
|
|
|
db.session.commit()
|
2019-11-16 00:51:42 +01:00
|
|
|
return redirect(url_for("notifications.list_all"))
|