-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: open a case in Ahjo via Ahjo Rest API
- Loading branch information
Showing
7 changed files
with
526 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,135 @@ | ||
import uuid | ||
from datetime import datetime | ||
from typing import List, Union | ||
|
||
from django.conf import settings | ||
from django.urls import reverse | ||
from django.utils.translation import gettext as _ | ||
|
||
from applications.models import Application, Attachment | ||
from common.utils import hash_file | ||
from users.models import User | ||
|
||
|
||
def _prepare_top_level_dict(application: Application, case_records: List[dict]) -> dict: | ||
"""Prepare the dictionary that is sent to Ahjo""" | ||
application_date = application.created_at.isoformat() | ||
application_year = application.created_at.year | ||
title = f"Avustuksen myöntäminen, työllisyyspalvelut, \ | ||
työnantajan Helsinki-lisä vuonna {application.created_at.year}, \ | ||
työnantaja {application.company_name}" | ||
|
||
case_dict = { | ||
"Title": title, | ||
"Acquired": application_date, | ||
"ClassificationCode": "02 05 01 00", | ||
"ClassificationTitle": "Kunnan myöntämät avustukset", | ||
"Language": "fi", | ||
"PublicityClass": "Julkinen", | ||
"InternalTitle": f"Avustuksen myöntäminen, työllisyyspalvelut, \ | ||
työnantajan Helsinki-lisä vuonna {application_year}, \ | ||
työnantaja {application.company_name}", | ||
"Subjects": [ | ||
{"Subject": "Helsinki-lisät", "Scheme": "hki-yhpa"}, | ||
{"Subject": "kunnan myöntämät avustukset", "Scheme": "hki-yhpa"}, | ||
{"Subject": "työnantajat", "Scheme": "hki-yhpa"}, | ||
{"Subject": "työllisyydenhoito"}, | ||
], | ||
"PersonalData": "Sisältää erityisiä henkilötietoja", | ||
"Reference": application.application_number, | ||
"Records": case_records, | ||
"Agents": [ | ||
{ | ||
"Role": "sender_initiator", | ||
"CorporateName": application.company.name, | ||
"ContactPerson": application.contact_person, | ||
"Type": "ExterOnal", | ||
"Email": application.company_contact_person_email, | ||
"AddressStreet": application.company.street_address, | ||
"AddressPostalCode": application.company.postcode, | ||
"AddressCity": application.company.city, | ||
} | ||
], | ||
} | ||
return case_dict | ||
|
||
|
||
def _prepare_record_document_dict(attachment: Attachment) -> dict: | ||
"""Prepare a documents dict for a record""" | ||
# If were running in mock mode, use the local file URI | ||
file_url = reverse("ahjo_attachment_url", kwargs={"uuid": attachment.id}) | ||
hash_value = hash_file(attachment.attachment_file) | ||
return { | ||
"FileName": f"{attachment.attachment_file.name}", | ||
"FormatName": f"{attachment.content_type}", | ||
"HashAlgorithm": "sha256", | ||
"HashValue": hash_value, | ||
"FileURI": f"{settings.API_BASE_URL}{file_url}", | ||
} | ||
|
||
|
||
def _prepare_record( | ||
record_title: str, | ||
record_type: str, | ||
acquired: datetime, | ||
reference: Union[int, uuid.UUID], | ||
documents: List[dict], | ||
handler: User, | ||
publicity_class: str = "Salassa pidettävä", | ||
): | ||
"""Prepare a single record dict for Ahjo.""" | ||
|
||
return { | ||
"Title": record_title, | ||
"Type": record_type, | ||
"Acquired": acquired, | ||
"PublicityClass": publicity_class, | ||
"SecurityReasons": ["JulkL (621/1999) 24.1 § 25 k"], | ||
"Language": "fi", | ||
"PersonalData": "Sisältää erityisiä henkilötietoja", | ||
"Reference": str(reference), | ||
"Documents": documents, | ||
"Agents": [ | ||
{ | ||
"Role": "mainCreator", | ||
"Name": f"{handler.last_name}, {handler.first_name}", | ||
"ID": handler.ad_username, | ||
} | ||
], | ||
} | ||
|
||
|
||
def _prepare_case_records(application: Application) -> List[dict]: | ||
"""Prepare the list of case records""" | ||
case_records = [] | ||
handler = application.calculation.handler | ||
main_document_record = _prepare_record( | ||
"Hakemus", | ||
"hakemus", | ||
application.created_at.isoformat(), | ||
application.application_number, | ||
[], # TODO Pdf version of the application goes here with prepare_record() | ||
handler, | ||
) | ||
|
||
case_records.append(main_document_record) | ||
|
||
for attachment in application.attachments.all(): | ||
document_record = _prepare_record( | ||
"Hakemuksen Liite", | ||
"liite", | ||
attachment.created_at.isoformat(), | ||
attachment.id, | ||
[_prepare_record_document_dict(attachment)], | ||
handler, | ||
) | ||
case_records.append(document_record) | ||
|
||
return case_records | ||
|
||
|
||
def prepare_open_case_payload(application: Application) -> dict: | ||
"Prepare the complete dictionary payload that is sent to Ahjo" | ||
case_records = _prepare_case_records(application) | ||
payload = _prepare_top_level_dict(application, case_records) | ||
return payload |
Oops, something went wrong.