from files.helpers.wrappers import * from files.helpers.get import * from files.helpers.const import * from files.__main__ import app import time @app.post("/clear") @auth_required def clear(v): notifs = g.db.query(Notification).join(Notification.comment).filter(Notification.read == False, Notification.user_id == v.id).all() for n in notifs: n.read = True g.db.add(n) v.last_viewed_post_notifs = int(time.time()) v.last_viewed_log_notifs = int(time.time()) g.db.add(v) return {"message": "Notifications cleared!"} @app.get("/unread") @auth_required def unread(v): listing = g.db.query(Notification, Comment).join(Notification.comment).filter( Notification.read == False, Notification.user_id == v.id, Comment.is_banned == False, Comment.deleted_utc == 0, ).order_by(Notification.created_utc.desc()).all() for n, c in listing: n.read = True g.db.add(n) return {"data":[x[1].json for x in listing]} @app.get("/notifications/modmail") @admin_level_required(2) def notifications_modmail(v): try: page = max(int(request.values.get("page", 1)), 1) except: page = 1 comments = g.db.query(Comment).filter(Comment.sentto==2).order_by(Comment.id.desc()).offset(25*(page-1)).limit(26).all() next_exists = (len(comments) > 25) listing = comments[:25] g.db.commit() if request.headers.get("Authorization"): return {"data":[x.json for x in listing]} return render_template("notifications.html", v=v, notifications=listing, next_exists=next_exists, page=page, standalone=True, render_replies=True, ) @app.get("/notifications/messages") @auth_required def notifications_messages(v): try: page = max(int(request.values.get("page", 1)), 1) except: page = 1 if v and (v.shadowbanned or v.admin_level > 2): comments = g.db.query(Comment).filter(Comment.sentto != None, or_(Comment.author_id==v.id, Comment.sentto==v.id), Comment.parent_submission == None, Comment.level == 1).order_by(Comment.id.desc()).offset(25*(page-1)).limit(26).all() else: comments = g.db.query(Comment).join(Comment.author).filter(User.shadowbanned == None, Comment.sentto != None, or_(Comment.author_id==v.id, Comment.sentto==v.id), Comment.parent_submission == None, Comment.level == 1).order_by(Comment.id.desc()).offset(25*(page-1)).limit(26).all() next_exists = (len(comments) > 25) listing = comments[:25] g.db.commit() if request.headers.get("Authorization"): return {"data":[x.json for x in listing]} return render_template("notifications.html", v=v, notifications=listing, next_exists=next_exists, page=page, standalone=True, render_replies=True, ) @app.get("/notifications/posts") @auth_required def notifications_posts(v): try: page = max(int(request.values.get("page", 1)), 1) except: page = 1 listing = [x[0] for x in g.db.query(Submission.id).filter( or_( Submission.author_id.in_(v.followed_users), Submission.sub.in_(v.followed_subs) ), Submission.deleted_utc == 0, Submission.is_banned == False, Submission.private == False, Submission.author_id != v.id, Submission.ghost == False, Submission.author_id.notin_(v.userblocks) ).order_by(Submission.created_utc.desc()).offset(25 * (page - 1)).limit(26).all()] next_exists = (len(listing) > 25) listing = listing[:25] listing = get_posts(listing, v=v) for p in listing: p.unread = p.created_utc > v.last_viewed_post_notifs v.last_viewed_post_notifs = int(time.time()) g.db.add(v) if request.headers.get("Authorization"): return {"data":[x.json for x in listing]} return render_template("notifications.html", v=v, notifications=listing, next_exists=next_exists, page=page, standalone=True, render_replies=True, ) @app.get("/notifications/modactions") @admin_level_required(NOTIF_MODACTION_JL_MIN) def notifications_modactions(v): try: page = max(int(request.values.get("page", 1)), 1) except: page = 1 listing = g.db.query(ModAction).filter(ModAction.user_id != v.id).order_by(ModAction.id.desc()).offset(25*(page-1)).limit(26).all() next_exists = len(listing) > 25 listing = listing[:25] for ma in listing: ma.unread = ma.created_utc > v.last_viewed_log_notifs v.last_viewed_log_notifs = int(time.time()) g.db.add(v) return render_template("notifications.html", v=v, notifications=listing, next_exists=next_exists, page=page, standalone=True, render_replies=True, ) @app.get("/notifications/reddit") @auth_required def notifications_reddit(v): try: page = max(int(request.values.get("page", 1)), 1) except: page = 1 if not v.can_view_offsitementions: abort(403) notifications = g.db.query(Notification, Comment).join(Notification.comment).filter( Notification.user_id == v.id, Comment.body_html.like('%

New site mention%New site mention%