mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-20 07:21:13 -05:00
38 lines
962 B
Python
38 lines
962 B
Python
from datetime import timedelta
|
|
|
|
from flask import current_app
|
|
from sqlalchemy import desc
|
|
|
|
from app import db
|
|
from app.dao.dao_utils import autocommit
|
|
from app.models import Complaint
|
|
from app.utils import get_midnight_in_utc
|
|
|
|
|
|
@autocommit
|
|
def save_complaint(complaint):
|
|
db.session.add(complaint)
|
|
|
|
|
|
def fetch_paginated_complaints(page=1):
|
|
return Complaint.query.order_by(desc(Complaint.created_at)).paginate(
|
|
page=page, per_page=current_app.config["PAGE_SIZE"]
|
|
)
|
|
|
|
|
|
def fetch_complaints_by_service(service_id):
|
|
return (
|
|
Complaint.query.filter_by(service_id=service_id)
|
|
.order_by(desc(Complaint.created_at))
|
|
.all()
|
|
)
|
|
|
|
|
|
def fetch_count_of_complaints(start_date, end_date):
|
|
start_date = get_midnight_in_utc(start_date)
|
|
end_date = get_midnight_in_utc(end_date + timedelta(days=1))
|
|
|
|
return Complaint.query.filter(
|
|
Complaint.created_at >= start_date, Complaint.created_at < end_date
|
|
).count()
|