| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- # IRIS Source Code
- # contact@dfir-iris.org
- #
- # This program is free software; you can redistribute it and/or
- # modify it under the terms of the GNU Lesser General Public
- # License as published by 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 GNU
- # Lesser General Public License for more details.
- #
- # You should have received a copy of the GNU Lesser General Public License
- # along with this program; if not, write to the Free Software Foundation,
- # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- from sqlalchemy import func
- from typing import List
- from app.models.models import CaseClassification
- def get_case_classifications_list() -> List[dict]:
- """Get a list of case classifications
- Returns:
- List[dict]: List of case classifications
- """
- case_classifications = CaseClassification.query.with_entities(
- CaseClassification.id,
- CaseClassification.name,
- CaseClassification.name_expanded,
- CaseClassification.description,
- CaseClassification.creation_date
- ).all()
- c_cl = [row._asdict() for row in case_classifications]
- return c_cl
- def get_case_classification_by_id(cur_id: int) -> CaseClassification:
- """Get a case classification
- Args:
- cur_id (int): case classification id
- Returns:
- CaseClassification: Case classification
- """
- case_classification = CaseClassification.query.filter_by(id=cur_id).first()
- return case_classification
- def get_case_classification_by_name(cur_name: str) -> CaseClassification:
- """Get a case classification
- Args:
- cur_name (str): case classification name
- Returns:
- CaseClassification: Case classification
- """
- case_classification = CaseClassification.query.filter_by(name=cur_name).first()
- return case_classification
- def search_classification_by_name(name: str, exact_match: bool = False) -> List[dict]:
- """Search for a case classification by name
- Args:
- name (str): case classification name
- exact_match (bool, optional): Exact match. Defaults to False.
- Returns:
- List[dict]: List of case classifications
- """
- if exact_match:
- return CaseClassification.query.filter(func.lower(CaseClassification.name) == name.lower()).all()
- return CaseClassification.query.filter(CaseClassification.name.ilike(f'%{name}%')).all()
|