-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Maud Royer <hello@maudroyer.fr>
- Loading branch information
Showing
5 changed files
with
64 additions
and
130 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,62 @@ | ||
import "server-only"; | ||
import atcOfficialLabels from "@/data/ATC 2024 02 15.json"; | ||
|
||
async function getGristTableData(tableId: string) { | ||
const response = await fetch( | ||
`https://grist.numerique.gouv.fr/api/docs/${process.env.GRIST_DOC_ID}/tables/${tableId}/records`, | ||
{ | ||
headers: { | ||
Authorization: `Bearer ${process.env.GRIST_API_KEY}`, | ||
}, | ||
}, | ||
); | ||
return await response.json(); | ||
} | ||
|
||
async function getAtcLabel1(code: string): Promise<string> { | ||
const data = await getGristTableData("Table_Niveau_1"); | ||
const record = data.records.find( | ||
(record: any) => record.fields.Lettre_1_ATC_1 === code.slice(0, 1), | ||
); | ||
if (!record) { | ||
throw new Error(`ATC code not found: ${code.slice(0, 1)}`); | ||
} | ||
|
||
return record.fields.Libelles_niveau_1; | ||
} | ||
|
||
async function getAtcLabel2(code: string): Promise<string> { | ||
const atcData = await getGristTableData("Table_Niveau_2"); | ||
const record = atcData.records.find( | ||
(record: any) => record.fields.Lettre_2_ATC2 === code.slice(0, 3), | ||
); | ||
if (!record) { | ||
throw new Error(`ATC code not found: ${code.slice(0, 3)}`); | ||
} | ||
|
||
const libeleId = record.fields.Libelles_niveau_2; | ||
const libeleData = await getGristTableData("Intitules_possibles"); | ||
const libeleRecord = libeleData.records.find( | ||
(record: any) => record.id === libeleId, | ||
); | ||
|
||
if (!libeleRecord) { | ||
throw new Error(`ATC code not found: ${code.slice(0, 3)}`); | ||
} | ||
|
||
return libeleRecord.fields.Libelles_niveau_2; | ||
} | ||
|
||
async function getAtcOfficialLabel(code: string): Promise<string> { | ||
if (!(code.slice(0, 7) in atcOfficialLabels)) { | ||
throw new Error(`ATC code not found: ${code.slice(0, 7)}`); | ||
} | ||
|
||
return (atcOfficialLabels as Record<string, string>)[code.slice(0, 7)]; | ||
} | ||
|
||
export async function getAtcLabels(atc: string): Promise<string[]> { | ||
return Promise.all( | ||
[getAtcLabel1, getAtcLabel2, getAtcOfficialLabel].map((f) => f(atc)), | ||
); | ||
} |
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