Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

N'envoyer que le domain à tchap et non l'adresse compléte #993

Open
jdauphant opened this issue Dec 18, 2021 · 1 comment
Open

N'envoyer que le domain à tchap et non l'adresse compléte #993

jdauphant opened this issue Dec 18, 2021 · 1 comment
Labels
good first issue Good for newcomers

Comments

@jdauphant
Copy link
Member

jdauphant commented Dec 18, 2021

Contexte :

L'api tchap permet de vérifier que l'email renseigné appartient bien au service public

Problème :

On envoie l'adresse entière à l'api

export async function isPublicServiceEmail (email) {
const TCHAP_API = "https://matrix.agent.tchap.gouv.fr/_matrix/identity/api/v1/info?medium=email&address="
const data = await axios.get(TCHAP_API + String(email).toLowerCase()).then((x) => x.data);
if (data.hs === "agent.externe.tchap.gouv.fr") {
return false;
} else {
return true
}
}

Proposition :

N'envoyer que le domaine

@revolunet
Copy link
Member

toujours d'actu ?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
good first issue Good for newcomers
Projects
Status: No status
Development

No branches or pull requests

2 participants