10 Commits
Author SHA1 Message Date
ucef cb78a8543c fix: fallback to default fromEmail address when spring.mail.username is empty in local dev
AS Talange CI/CD Pipeline / Build & Run Unit Tests (push) Successful in 4m33s
AS Talange CI/CD Pipeline / Deploy to Test Environment (push) Successful in 6m14s
2026-08-06 23:01:00 +02:00
ucef df099a7c8e chore: disable verbose Hibernate SQL logging 2026-08-06 22:53:45 +02:00
ucef a8e94603bd feat: make SportEasy invitation email sending asynchronous
AS Talange CI/CD Pipeline / Build & Run Unit Tests (push) Successful in 4m47s
AS Talange CI/CD Pipeline / Deploy to Test Environment (push) Successful in 6m21s
2026-08-06 22:42:33 +02:00
ucef c40f70e6b3 feat: simplify SportEasy invitation email to use direct category link
AS Talange CI/CD Pipeline / Build & Run Unit Tests (push) Successful in 4m33s
AS Talange CI/CD Pipeline / Deploy to Test Environment (push) Successful in 6m36s
2026-08-06 22:15:08 +02:00
ucef 1a49216b02 chore: update mail configuration for Brevo SMTP and Gitea secrets 2026-08-06 22:10:19 +02:00
ucef 019a445d2c feat: implement equipment order export and tracking status 2026-08-06 22:10:09 +02:00
ucef 9dcd12872a feat: add payment confirmation email service and resend actions 2026-08-06 22:09:44 +02:00
ucef 2b2025a78f feat: ajout du système d'invitations SportEasy et suivi des emails
AS Talange CI/CD Pipeline / Build & Run Unit Tests (push) Successful in 4m47s
AS Talange CI/CD Pipeline / Deploy to Test Environment (push) Successful in 6m46s
2026-08-05 15:15:37 +02:00
ucef 63c71d504e feat: add pagination to equipment and licence search screens
AS Talange CI/CD Pipeline / Build & Run Unit Tests (push) Successful in 4m43s
AS Talange CI/CD Pipeline / Deploy to Test Environment (push) Successful in 6m17s
2026-08-03 16:00:02 +02:00
ucef 4956e1a70c chore: bump version to 1.7-SNAPSHOT
AS Talange CI/CD Pipeline / Build & Run Unit Tests (push) Successful in 4m31s
AS Talange CI/CD Pipeline / Deploy to Test Environment (push) Successful in 5m35s
2026-08-01 23:30:28 +02:00
30 changed files with 1175 additions and 81 deletions
+19
View File
@@ -0,0 +1,19 @@
# Configuration Base de données
POSTGRES_USER=myuser
POSTGRES_PASSWORD=mypassword
# Configuration Email Brevo (SMTP Relay)
# 1. Host: smtp-relay.brevo.com (ou smtp-relay.sendinblue.com)
# 2. Port: 587 (TLS/STARTTLS) ou 465 (SSL)
# 3. Username: Votre identifiant SMTP Brevo (visible dans Brevo > SMTP & API > SMTP)
# 4. Password: Votre clef SMTP Brevo (Master Key ou Clef SMTP générée dans Brevo)
SPRING_MAIL_HOST=smtp-relay.brevo.com
SPRING_MAIL_PORT=587
SPRING_MAIL_USERNAME=votre_login_smtp_brevo@exemple.com
SPRING_MAIL_PASSWORD=xsmtpsib-votre_cle_smtp_brevo
SPRING_MAIL_PROPERTIES_MAIL_SMTP_AUTH=true
SPRING_MAIL_PROPERTIES_MAIL_SMTP_STARTTLS_ENABLE=true
# Configuration Captcha (si applicable)
CAPTCHA_SITEKEY=
CAPTCHA_SECRET=
+10
View File
@@ -51,11 +51,21 @@ jobs:
PROD_DB_PASSWORD: ${{ secrets.PROD_DB_PASSWORD }} PROD_DB_PASSWORD: ${{ secrets.PROD_DB_PASSWORD }}
CAPTCHA_SECRET: ${{ secrets.CAPTCHA_SECRET }} CAPTCHA_SECRET: ${{ secrets.CAPTCHA_SECRET }}
CAPTCHA_SITEKEY: ${{ secrets.CAPTCHA_SITEKEY }} CAPTCHA_SITEKEY: ${{ secrets.CAPTCHA_SITEKEY }}
MAIL_USERNAME: ${{ secrets.MAIL_USERNAME }}
MAIL_PASSWORD: ${{ secrets.MAIL_PASSWORD }}
run: | run: |
echo "POSTGRES_USER=${PROD_DB_USER:-myuser}" > .env echo "POSTGRES_USER=${PROD_DB_USER:-myuser}" > .env
echo "POSTGRES_PASSWORD=${PROD_DB_PASSWORD:-mypassword}" >> .env echo "POSTGRES_PASSWORD=${PROD_DB_PASSWORD:-mypassword}" >> .env
echo "CAPTCHA_SECRET=${CAPTCHA_SECRET:-1x0000000000000000000000000000000AA}" >> .env echo "CAPTCHA_SECRET=${CAPTCHA_SECRET:-1x0000000000000000000000000000000AA}" >> .env
echo "CAPTCHA_SITEKEY=${CAPTCHA_SITEKEY:-1x00000000000000000000AA}" >> .env echo "CAPTCHA_SITEKEY=${CAPTCHA_SITEKEY:-1x00000000000000000000AA}" >> .env
if [ -n "${MAIL_USERNAME}" ]; then
echo "SPRING_MAIL_HOST=smtp-relay.brevo.com" >> .env
echo "SPRING_MAIL_PORT=587" >> .env
echo "SPRING_MAIL_USERNAME=${MAIL_USERNAME}" >> .env
echo "SPRING_MAIL_PASSWORD=${MAIL_PASSWORD}" >> .env
echo "SPRING_MAIL_PROPERTIES_MAIL_SMTP_AUTH=true" >> .env
echo "SPRING_MAIL_PROPERTIES_MAIL_SMTP_STARTTLS_ENABLE=true" >> .env
fi
docker compose down app || true docker compose down app || true
docker compose up -d --build app docker compose up -d --build app
+10
View File
@@ -47,11 +47,21 @@ jobs:
env: env:
DB_USER: ${{ secrets.DB_USER }} DB_USER: ${{ secrets.DB_USER }}
DB_PASSWORD: ${{ secrets.DB_PASSWORD }} DB_PASSWORD: ${{ secrets.DB_PASSWORD }}
MAIL_USERNAME: ${{ secrets.MAIL_USERNAME }}
MAIL_PASSWORD: ${{ secrets.MAIL_PASSWORD }}
run: | run: |
echo "POSTGRES_USER=${DB_USER:-myuser}" > .env echo "POSTGRES_USER=${DB_USER:-myuser}" > .env
echo "POSTGRES_PASSWORD=${DB_PASSWORD:-mypassword}" >> .env echo "POSTGRES_PASSWORD=${DB_PASSWORD:-mypassword}" >> .env
echo "CAPTCHA_SECRET=1x0000000000000000000000000000000AA" >> .env echo "CAPTCHA_SECRET=1x0000000000000000000000000000000AA" >> .env
echo "CAPTCHA_SITEKEY=1x00000000000000000000AA" >> .env echo "CAPTCHA_SITEKEY=1x00000000000000000000AA" >> .env
if [ -n "${MAIL_USERNAME}" ]; then
echo "SPRING_MAIL_HOST=smtp-relay.brevo.com" >> .env
echo "SPRING_MAIL_PORT=587" >> .env
echo "SPRING_MAIL_USERNAME=${MAIL_USERNAME}" >> .env
echo "SPRING_MAIL_PASSWORD=${MAIL_PASSWORD}" >> .env
echo "SPRING_MAIL_PROPERTIES_MAIL_SMTP_AUTH=true" >> .env
echo "SPRING_MAIL_PROPERTIES_MAIL_SMTP_STARTTLS_ENABLE=true" >> .env
fi
docker compose down app || true docker compose down app || true
docker compose up -d --build app docker compose up -d --build app
+1 -1
View File
@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>as-talange-parent</artifactId> <artifactId>as-talange-parent</artifactId>
<groupId>com.astalange</groupId> <groupId>com.astalange</groupId>
<version>1.6</version> <version>1.7-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
+6 -1
View File
@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>as-talange-parent</artifactId> <artifactId>as-talange-parent</artifactId>
<groupId>com.astalange</groupId> <groupId>com.astalange</groupId>
<version>1.6</version> <version>1.7-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
@@ -28,6 +28,11 @@
<artifactId>spring-boot-starter-validation</artifactId> <artifactId>spring-boot-starter-validation</artifactId>
</dependency> </dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.projectlombok</groupId> <groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId> <artifactId>lombok</artifactId>
@@ -37,11 +37,17 @@ public class Categorie {
@JoinColumn(name = "saison_id", nullable = false) @JoinColumn(name = "saison_id", nullable = false)
private Saison saison; private Saison saison;
@Column(name = "sport_easy_token")
private String sportEasyToken;
@OneToMany(mappedBy = "categorie", cascade = CascadeType.ALL, orphanRemoval = true) @OneToMany(mappedBy = "categorie", cascade = CascadeType.ALL, orphanRemoval = true)
private List<CategorieEquipement> categorieEquipements = new ArrayList<>(); private List<CategorieEquipement> categorieEquipements = new ArrayList<>();
// Getters and Setters // Getters and Setters
public String getSportEasyToken() { return sportEasyToken; }
public void setSportEasyToken(String sportEasyToken) { this.sportEasyToken = sportEasyToken; }
public Long getId() { return id; } public Long getId() { return id; }
public void setId(Long id) { this.id = id; } public void setId(Long id) { this.id = id; }
@@ -36,6 +36,12 @@ public class Dotation {
@Column(nullable = false) @Column(nullable = false)
private Boolean choisi = false; private Boolean choisi = false;
@Column(nullable = false)
private Boolean commandee = false;
@Column(name = "date_commande")
private java.time.LocalDateTime dateCommande;
// Getters and Setters // Getters and Setters
public Long getId() { return id; } public Long getId() { return id; }
@@ -65,6 +71,12 @@ public class Dotation {
public Boolean getChoisi() { return choisi; } public Boolean getChoisi() { return choisi; }
public void setChoisi(Boolean choisi) { this.choisi = choisi; } public void setChoisi(Boolean choisi) { this.choisi = choisi; }
public Boolean getCommandee() { return commandee; }
public void setCommandee(Boolean commandee) { this.commandee = commandee; }
public java.time.LocalDateTime getDateCommande() { return dateCommande; }
public void setDateCommande(java.time.LocalDateTime dateCommande) { this.dateCommande = dateCommande; }
public static boolean isSizeMatch(String option, String adherentSize) { public static boolean isSizeMatch(String option, String adherentSize) {
if (option == null || adherentSize == null) return false; if (option == null || adherentSize == null) return false;
String opt = option.trim(); String opt = option.trim();
@@ -44,6 +44,12 @@ public class Licence {
@Column(columnDefinition = "TEXT") @Column(columnDefinition = "TEXT")
private String commentaire; private String commentaire;
@Column(name = "sport_easy_email_sent", nullable = false)
private Boolean sportEasyEmailSent = false;
@Column(name = "sport_easy_email_sent_at")
private java.time.LocalDateTime sportEasyEmailSentAt;
@OneToMany(mappedBy = "licence", cascade = CascadeType.ALL, orphanRemoval = true) @OneToMany(mappedBy = "licence", cascade = CascadeType.ALL, orphanRemoval = true)
private List<Paiement> paiements = new ArrayList<>(); private List<Paiement> paiements = new ArrayList<>();
@@ -134,6 +140,20 @@ public class Licence {
public String getCommentaire() { return commentaire; } public String getCommentaire() { return commentaire; }
public void setCommentaire(String commentaire) { this.commentaire = commentaire; } public void setCommentaire(String commentaire) { this.commentaire = commentaire; }
public Boolean getSportEasyEmailSent() { return sportEasyEmailSent != null ? sportEasyEmailSent : false; }
public void setSportEasyEmailSent(Boolean sportEasyEmailSent) { this.sportEasyEmailSent = sportEasyEmailSent; }
public java.time.LocalDateTime getSportEasyEmailSentAt() { return sportEasyEmailSentAt; }
public void setSportEasyEmailSentAt(java.time.LocalDateTime sportEasyEmailSentAt) { this.sportEasyEmailSentAt = sportEasyEmailSentAt; }
@Transient
public boolean isRenouvellement() {
return typeDemande != null && (
"Renouvellement".equalsIgnoreCase(typeDemande.trim()) ||
"RENOUVELLEMENT".equalsIgnoreCase(typeDemande.trim())
);
}
public List<Paiement> getPaiements() { return paiements; } public List<Paiement> getPaiements() { return paiements; }
public void setPaiements(List<Paiement> paiements) { this.paiements = paiements; } public void setPaiements(List<Paiement> paiements) { this.paiements = paiements; }
@@ -11,4 +11,5 @@ import com.astalange.core.entity.Saison;
@Repository @Repository
public interface DotationRepository extends JpaRepository<Dotation, Long>, JpaSpecificationExecutor<Dotation> { public interface DotationRepository extends JpaRepository<Dotation, Long>, JpaSpecificationExecutor<Dotation> {
List<Dotation> findByLicence_SaisonAndChoisiTrueAndFourniFalse(Saison saison); List<Dotation> findByLicence_SaisonAndChoisiTrueAndFourniFalse(Saison saison);
List<Dotation> findByLicence_SaisonAndChoisiTrueAndCommandeeFalse(Saison saison);
} }
@@ -14,6 +14,10 @@ import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
public interface LicenceRepository extends JpaRepository<Licence, Long>, JpaSpecificationExecutor<Licence> { public interface LicenceRepository extends JpaRepository<Licence, Long>, JpaSpecificationExecutor<Licence> {
List<Licence> findByAdherentId(Long adherentId); List<Licence> findByAdherentId(Long adherentId);
java.util.Optional<Licence> findByAdherentIdAndSaison(Long adherentId, com.astalange.core.entity.Saison saison);
List<Licence> findBySaison(com.astalange.core.entity.Saison saison);
List<Licence> findBySaisonAndCategorie(com.astalange.core.entity.Saison saison, com.astalange.core.entity.Categorie categorie); List<Licence> findBySaisonAndCategorie(com.astalange.core.entity.Saison saison, com.astalange.core.entity.Categorie categorie);
long countByEtat(String etat); long countByEtat(String etat);
@@ -16,7 +16,17 @@ public interface PaiementRepository extends JpaRepository<Paiement, Long> {
"LEFT JOIN FETCH p.licence l " + "LEFT JOIN FETCH p.licence l " +
"LEFT JOIN FETCH l.adherent a " + "LEFT JOIN FETCH l.adherent a " +
"LEFT JOIN FETCH l.categorie c " + "LEFT JOIN FETCH l.categorie c " +
"LEFT JOIN FETCH l.saison s " +
"LEFT JOIN FETCH p.modePaiement m " + "LEFT JOIN FETCH p.modePaiement m " +
"ORDER BY p.datePaiement DESC, p.id DESC") "ORDER BY p.datePaiement DESC, p.id DESC")
java.util.List<Paiement> findAllWithAssociations(); java.util.List<Paiement> findAllWithAssociations();
@Query("SELECT p FROM Paiement p " +
"LEFT JOIN FETCH p.licence l " +
"LEFT JOIN FETCH l.adherent a " +
"LEFT JOIN FETCH l.categorie c " +
"LEFT JOIN FETCH l.saison s " +
"LEFT JOIN FETCH p.modePaiement m " +
"WHERE p.id = :id")
java.util.Optional<Paiement> findByIdWithDetails(@org.springframework.data.repository.query.Param("id") Long id);
} }
@@ -4,50 +4,70 @@ import com.astalange.core.entity.Dotation;
import com.astalange.core.entity.Saison; import com.astalange.core.entity.Saison;
import com.astalange.core.repository.DotationRepository; import com.astalange.core.repository.DotationRepository;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.List; import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.*;
@Service @Service
public class DotationService { public class DotationService {
private final DotationRepository dotationRepository; private final DotationRepository dotationRepository;
private static final DateTimeFormatter DATE_FORMATTER = DateTimeFormatter.ofPattern("dd/MM/yyyy HH:mm");
public DotationService(DotationRepository dotationRepository) { public DotationService(DotationRepository dotationRepository) {
this.dotationRepository = dotationRepository; this.dotationRepository = dotationRepository;
} }
@Transactional
public String genererCsvCommandeEquipement(Saison saisonActive) { public String genererCsvCommandeEquipement(Saison saisonActive) {
List<Dotation> dotations = dotationRepository.findByLicence_SaisonAndChoisiTrueAndFourniFalse(saisonActive); return genererCsvCommandeEquipementGrouped(saisonActive, true);
}
@Transactional
public String genererCsvCommandeEquipementGrouped(Saison saisonActive, boolean markAsCommandee) {
List<Dotation> dotations = dotationRepository.findByLicence_SaisonAndChoisiTrueAndCommandeeFalse(saisonActive);
LocalDateTime now = LocalDateTime.now();
String dateCommandeFormatted = now.format(DATE_FORMATTER);
Map<String, Integer> groupCountMap = new LinkedHashMap<>();
for (Dotation d : dotations) {
String equipement = d.getEquipement() != null ? d.getEquipement().getNom() : "Inconnu";
String reference = d.getEquipement() != null && d.getEquipement().getReference() != null ? d.getEquipement().getReference() : "";
String taille = d.getTaille() != null && !d.getTaille().trim().isEmpty() ? d.getTaille() : "Non renseignée";
String key = equipement + "|||" + reference + "|||" + taille;
groupCountMap.put(key, groupCountMap.getOrDefault(key, 0) + 1);
if (markAsCommandee) {
d.setCommandee(true);
d.setDateCommande(now);
dotationRepository.save(d);
}
}
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
// BOM for Excel to open UTF-8 correctly // BOM for Excel to open UTF-8 correctly
sb.append('\ufeff'); sb.append('\ufeff');
// Header // Header
sb.append("Catégorie;Nom;Prénom;Poste;Sexe;Équipement;Référence;Taille;Flocage;Numéro\n"); sb.append("Équipement;Référence;Taille;Quantité;Commandé;Date de Commande\n");
for (Dotation d : dotations) { for (Map.Entry<String, Integer> entry : groupCountMap.entrySet()) {
String categorie = d.getLicence().getCategorie() != null ? d.getLicence().getCategorie().getNom() : ""; String[] parts = entry.getKey().split("\\|\\|\\|", -1);
String nom = d.getLicence().getAdherent().getNom(); String equipement = parts[0];
String prenom = d.getLicence().getAdherent().getPrenom(); String reference = parts[1];
String poste = d.getLicence().getAdherent().getTypeMaillot() != null ? d.getLicence().getAdherent().getTypeMaillot() : ""; String taille = parts[2];
String sexe = d.getLicence().getAdherent().getSexe() != null ? d.getLicence().getAdherent().getSexe() : ""; int quantite = entry.getValue();
String equipement = d.getEquipement() != null ? d.getEquipement().getNom() : "";
String reference = d.getEquipement() != null && d.getEquipement().getReference() != null ? d.getEquipement().getReference() : "";
String taille = d.getTaille() != null ? d.getTaille() : "";
String flocage = d.getFlocage() != null ? d.getFlocage() : "";
String numero = d.getNumero() != null ? d.getNumero() : "";
sb.append(escapeCsv(categorie)).append(";") sb.append(escapeCsv(equipement)).append(";")
.append(escapeCsv(nom)).append(";")
.append(escapeCsv(prenom)).append(";")
.append(escapeCsv(poste)).append(";")
.append(escapeCsv(sexe)).append(";")
.append(escapeCsv(equipement)).append(";")
.append(escapeCsv(reference)).append(";") .append(escapeCsv(reference)).append(";")
.append(escapeCsv(taille)).append(";") .append(escapeCsv(taille)).append(";")
.append(escapeCsv(flocage)).append(";") .append(quantite).append(";")
.append(escapeCsv(numero)).append("\n"); .append("Oui").append(";")
.append(escapeCsv(dateCommandeFormatted)).append("\n");
} }
return sb.toString(); return sb.toString();
@@ -57,9 +77,9 @@ public class DotationService {
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
// BOM for Excel to open UTF-8 correctly // BOM for Excel to open UTF-8 correctly
sb.append('\ufeff'); sb.append('\ufeff');
// Header // Header
sb.append("Saison;Catégorie;Nom;Prénom;Poste;Sexe;Équipement;Référence;Taille;Flocage;Numéro;Fourni\n"); sb.append("Saison;Catégorie;Nom;Prénom;Poste;Sexe;Équipement;Référence;Taille;Flocage;Numéro;Fourni;Commandé;Date Commande\n");
for (Dotation d : dotations) { for (Dotation d : dotations) {
String saison = d.getLicence().getSaison() != null ? d.getLicence().getSaison().getNom() : ""; String saison = d.getLicence().getSaison() != null ? d.getLicence().getSaison().getNom() : "";
@@ -74,6 +94,8 @@ public class DotationService {
String flocage = d.getFlocage() != null ? d.getFlocage() : ""; String flocage = d.getFlocage() != null ? d.getFlocage() : "";
String numero = d.getNumero() != null ? d.getNumero() : ""; String numero = d.getNumero() != null ? d.getNumero() : "";
String fourni = Boolean.TRUE.equals(d.getFourni()) ? "Oui" : "Non"; String fourni = Boolean.TRUE.equals(d.getFourni()) ? "Oui" : "Non";
String commandee = Boolean.TRUE.equals(d.getCommandee()) ? "Oui" : "Non";
String dateCommande = d.getDateCommande() != null ? d.getDateCommande().format(DATE_FORMATTER) : "";
sb.append(escapeCsv(saison)).append(";") sb.append(escapeCsv(saison)).append(";")
.append(escapeCsv(categorie)).append(";") .append(escapeCsv(categorie)).append(";")
@@ -86,7 +108,9 @@ public class DotationService {
.append(escapeCsv(taille)).append(";") .append(escapeCsv(taille)).append(";")
.append(escapeCsv(flocage)).append(";") .append(escapeCsv(flocage)).append(";")
.append(escapeCsv(numero)).append(";") .append(escapeCsv(numero)).append(";")
.append(escapeCsv(fourni)).append("\n"); .append(escapeCsv(fourni)).append(";")
.append(escapeCsv(commandee)).append(";")
.append(escapeCsv(dateCommande)).append("\n");
} }
return sb.toString(); return sb.toString();
@@ -0,0 +1,274 @@
package com.astalange.core.service;
import com.astalange.core.entity.Licence;
import com.astalange.core.entity.Paiement;
import com.astalange.core.repository.PaiementRepository;
import jakarta.mail.internet.MimeMessage;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.mail.javamail.MimeMessageHelper;
import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.math.BigDecimal;
import java.time.format.DateTimeFormatter;
import java.util.Locale;
import java.util.concurrent.CompletableFuture;
@Service
public class PaiementEmailService {
private static final Logger log = LoggerFactory.getLogger(PaiementEmailService.class);
private final JavaMailSender mailSender;
private final PaiementRepository paiementRepository;
@Value("${spring.mail.username:noreply@as-talange.fr}")
private String fromEmail = "noreply@as-talange.fr";
public PaiementEmailService(@Autowired(required = false) JavaMailSender mailSender,
PaiementRepository paiementRepository) {
this.mailSender = mailSender;
this.paiementRepository = paiementRepository;
}
private String getEffectiveFromEmail() {
if (fromEmail != null && !fromEmail.trim().isEmpty() && fromEmail.contains("@")) {
return fromEmail.trim();
}
return "noreply@as-talange.fr";
}
public void sendPaiementConfirmationAsync(Long paiementId) {
if (paiementId == null) {
log.warn("Impossible d'envoyer l'e-mail de confirmation : ID de paiement nul.");
return;
}
try {
Paiement paiement = paiementRepository.findByIdWithDetails(paiementId)
.orElseGet(() -> paiementRepository.findById(paiementId).orElse(null));
if (paiement == null) {
log.warn("Impossible d'envoyer un e-mail de confirmation : paiement ID {} introuvable en base.", paiementId);
return;
}
sendPaiementConfirmation(paiement);
} catch (Exception e) {
log.error("Erreur lors de l'envoi de l'e-mail de confirmation pour le paiement ID {}: ", paiementId, e);
}
}
public boolean sendPaiementConfirmation(Paiement paiement) {
log.info(">>> [PaiementEmailService] Traitement de la confirmation de paiement pour le paiement ID: {}",
paiement != null ? paiement.getId() : null);
if (paiement == null || paiement.getLicence() == null) {
log.warn("Impossible d'envoyer un e-mail de confirmation : paiement ou licence nulle.");
return false;
}
Licence licence = paiement.getLicence();
String recipientEmail = licence.getAdherent() != null ? licence.getAdherent().getEmail() : null;
log.info(">>> [PaiementEmailService] Adhérent: {} {}, Email: {}",
licence.getAdherent() != null ? licence.getAdherent().getPrenom() : "?",
licence.getAdherent() != null ? licence.getAdherent().getNom() : "?",
recipientEmail);
if (recipientEmail == null || recipientEmail.trim().isEmpty()) {
log.info("Aucune adresse e-mail renseignée pour l'adhérent de la licence ID {}. E-mail non envoyé.", licence.getId());
return false;
}
BigDecimal resteAPayer = licence.getResteAPayer();
boolean estTotalite = resteAPayer.compareTo(BigDecimal.ZERO) <= 0;
String adherentNom = licence.getAdherent() != null
? licence.getAdherent().getPrenom() + " " + licence.getAdherent().getNom()
: "Adhérent";
String categorieNom = licence.getCategorie() != null ? licence.getCategorie().getNom() : "AS Talange";
String saisonNom = licence.getSaison() != null ? licence.getSaison().getNom() : "";
String subject = estTotalite
? "AS Talange - Confirmation de paiement (Solde intégralement réglé)"
: "AS Talange - Confirmation de paiement partiel";
String htmlContent = buildEmailHtml(paiement, licence, adherentNom, categorieNom, saisonNom, estTotalite, resteAPayer);
BigDecimal montantPaiement = paiement.getMontant();
// Envoi asynchrone via CompletableFuture pour ne pas bloquer la réponse HTTP
CompletableFuture.runAsync(() -> {
if (mailSender != null) {
try {
MimeMessage message = mailSender.createMimeMessage();
MimeMessageHelper helper = new MimeMessageHelper(message, true, "UTF-8");
helper.setFrom(getEffectiveFromEmail());
helper.setTo(recipientEmail);
helper.setSubject(subject);
helper.setText(htmlContent, true);
mailSender.send(message);
log.info("E-mail de confirmation de paiement envoyé avec succès via SMTP à {} (Montant: {} €)", recipientEmail, montantPaiement);
} catch (Exception e) {
log.warn("Impossible d'envoyer l'e-mail de paiement via SMTP pour {}: {}. Simulation en mode log.", recipientEmail, e.getMessage());
logDevEmail(recipientEmail, subject, htmlContent);
}
} else {
log.info("Aucun JavaMailSender configuré (Mode DEV). Simulation de l'envoi d'e-mail de paiement.");
logDevEmail(recipientEmail, subject, htmlContent);
}
});
return true;
}
private void logDevEmail(String recipient, String subject, String body) {
log.info("==================== [SIMULATION E-MAIL PAIEMENT] ====================");
log.info("Destinataire: {}", recipient);
log.info("Sujet: {}", subject);
log.info("Contenu:\n{}", body);
log.info("======================================================================");
}
private String buildEmailHtml(Paiement paiement, Licence licence, String adherentNom,
String categorieNom, String saisonNom,
boolean estTotalite, BigDecimal resteAPayer) {
DateTimeFormatter dateFormatter = DateTimeFormatter.ofPattern("dd/MM/yyyy");
String datePaiementStr = paiement.getDatePaiement() != null
? paiement.getDatePaiement().format(dateFormatter)
: "";
String montantStr = String.format(Locale.FRANCE, "%.2f €", paiement.getMontant());
String prixTotalStr = String.format(Locale.FRANCE, "%.2f €", licence.getPrixTotal());
String totalPayeStr = String.format(Locale.FRANCE, "%.2f €", licence.getSommePayee());
String resteStr = String.format(Locale.FRANCE, "%.2f €", resteAPayer);
String modePaiementStr = paiement.getModePaiement() != null ? paiement.getModePaiement().getNom() : "-";
if (paiement.getNumeroCheque() != null && !paiement.getNumeroCheque().isBlank()) {
modePaiementStr += " (N° " + paiement.getNumeroCheque() + ")";
}
String headerTitle = estTotalite ? "Confirmation de paiement intégral" : "Confirmation de paiement partiel";
String messageParagraph;
if (estTotalite) {
messageParagraph = """
<p>Nous vous confirmons la bonne réception de votre versement de <strong>%s</strong> effectué le <strong>%s</strong> par <strong>%s</strong>.</p>
<div class="alert alert-success">
<strong>Paiement solde :</strong> Le paiement de votre cotisation pour la saison <strong>%s</strong> (catégorie <strong>%s</strong>) a été pris en compte et est désormais <strong>entièrement réglé</strong>.
</div>
""".formatted(montantStr, datePaiementStr, modePaiementStr, saisonNom, categorieNom);
} else {
messageParagraph = """
<p>Nous vous confirmons la bonne réception de votre versement partiel de <strong>%s</strong> effectué le <strong>%s</strong> par <strong>%s</strong>.</p>
<p>Ce paiement a bien été pris en compte pour la cotisation de la saison <strong>%s</strong> (catégorie <strong>%s</strong>).</p>
<div class="alert alert-warning">
<strong>Information Solde :</strong> Il reste actuellement la somme de <strong>%s</strong> à régler.
</div>
""".formatted(montantStr, datePaiementStr, modePaiementStr, saisonNom, categorieNom, resteStr);
}
String soldeBadge = estTotalite
? "<span class=\"badge badge-success\">0,00 € (Réglé)</span>"
: "<span class=\"badge badge-warning\">" + resteStr + "</span>";
return """
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<style>
body { font-family: Arial, sans-serif; background-color: #f4f6f8; margin: 0; padding: 20px; color: #333; }
.container { max-width: 600px; margin: 0 auto; background: #ffffff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.header { background-color: #1e3a8a; color: #ffffff; padding: 24px; text-align: center; }
.header h1 { margin: 0; font-size: 22px; }
.content { padding: 24px; line-height: 1.6; }
.alert { padding: 14px 18px; border-radius: 6px; margin: 18px 0; font-size: 14px; }
.alert-success { background-color: #d1fae5; border-left: 4px solid #10b981; color: #065f46; }
.alert-warning { background-color: #fef3c7; border-left: 4px solid #f59e0b; color: #92400e; }
.receipt-box { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 6px; padding: 16px; margin-top: 20px; }
.receipt-box h3 { margin-top: 0; margin-bottom: 12px; font-size: 16px; color: #1e3a8a; border-bottom: 1px solid #e5e7eb; padding-bottom: 8px; }
.receipt-table { width: 100%%; border-collapse: collapse; font-size: 14px; }
.receipt-table td { padding: 6px 0; }
.receipt-table td.label { color: #6b7280; width: 50%%; }
.receipt-table td.value { font-weight: bold; text-align: right; }
.badge { display: inline-block; padding: 4px 10px; border-radius: 12px; font-weight: bold; font-size: 13px; }
.badge-success { background-color: #d1fae5; color: #065f46; }
.badge-warning { background-color: #fef3c7; color: #92400e; }
.footer { background: #f9fafb; border-top: 1px solid #e5e7eb; padding: 16px; text-align: center; font-size: 12px; color: #6b7280; }
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>AS Talange - %s</h1>
</div>
<div class="content">
<p>Bonjour <strong>%s</strong>,</p>
%s
<div class="receipt-box">
<h3>Reçu de Paiement</h3>
<table class="receipt-table">
<tr>
<td class="label">Adhérent :</td>
<td class="value">%s</td>
</tr>
<tr>
<td class="label">Saison / Catégorie :</td>
<td class="value">%s %s</td>
</tr>
<tr>
<td class="label">Date du paiement :</td>
<td class="value">%s</td>
</tr>
<tr>
<td class="label">Montant versé :</td>
<td class="value">%s</td>
</tr>
<tr>
<td class="label">Mode de règlement :</td>
<td class="value">%s</td>
</tr>
<tr>
<td class="label">Montant total cotisation :</td>
<td class="value">%s</td>
</tr>
<tr>
<td class="label">Total versé à ce jour :</td>
<td class="value">%s</td>
</tr>
<tr>
<td class="label">Reste à payer :</td>
<td class="value">%s</td>
</tr>
</table>
</div>
<p style="margin-top: 20px;">Ce courriel vous sert de justificatif de paiement.<br>Sportivement,<br><strong>L'équipe de l'AS Talange</strong></p>
</div>
<div class="footer">
Cet e-mail a été envoyé automatiquement par le système de gestion de l'AS Talange.
</div>
</div>
</body>
</html>
""".formatted(
headerTitle,
adherentNom,
messageParagraph,
adherentNom,
saisonNom,
categorieNom,
datePaiementStr,
montantStr,
modePaiementStr,
prixTotalStr,
totalPayeStr,
soldeBadge
);
}
}
@@ -0,0 +1,252 @@
package com.astalange.core.service;
import com.astalange.core.entity.Licence;
import com.astalange.core.entity.Saison;
import com.astalange.core.repository.LicenceRepository;
import com.astalange.core.repository.SaisonRepository;
import jakarta.mail.internet.MimeMessage;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.mail.javamail.JavaMailSender;
import org.springframework.mail.javamail.MimeMessageHelper;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
import java.util.List;
@Service
public class SportEasyEmailService {
private static final Logger log = LoggerFactory.getLogger(SportEasyEmailService.class);
private final LicenceRepository licenceRepository;
private final SaisonRepository saisonRepository;
private final JavaMailSender mailSender;
@Value("${sporteasy.base-url:https://www.sporteasy.net/join/}")
private String sportEasyBaseUrl;
@Value("${spring.mail.username:noreply@as-talange.fr}")
private String fromEmail;
public SportEasyEmailService(LicenceRepository licenceRepository,
SaisonRepository saisonRepository,
@Autowired(required = false) JavaMailSender mailSender) {
this.licenceRepository = licenceRepository;
this.saisonRepository = saisonRepository;
this.mailSender = mailSender;
}
private String getEffectiveFromEmail() {
if (fromEmail != null && !fromEmail.trim().isEmpty() && fromEmail.contains("@")) {
return fromEmail.trim();
}
return "noreply@as-talange.fr";
}
public record BatchSendResult(int sentCount, int skippedCount, int errorCount, String message) {}
public void sendInvitationForLicenceAsync(Long licenceId) {
if (licenceId == null) {
log.warn("Impossible d'envoyer l'invitation SportEasy : ID de licence nul.");
return;
}
try {
sendInvitationForLicence(licenceId, true);
} catch (Exception e) {
log.error("Erreur lors de l'envoi asynchrone de l'invitation SportEasy pour la licence ID {}: ", licenceId, e);
}
}
@Transactional
public boolean sendInvitationForLicence(Long licenceId, boolean forceResend) {
Licence licence = licenceRepository.findById(licenceId)
.orElseThrow(() -> new IllegalArgumentException("Licence introuvable avec l'ID: " + licenceId));
if (licence.isRenouvellement()) {
log.info("Invitation SportEasy non envoyée pour la licence ID {} : il s'agit d'un renouvellement.", licenceId);
return false;
}
if (!forceResend && Boolean.TRUE.equals(licence.getSportEasyEmailSent())) {
log.info("Invitation SportEasy déjà envoyée pour la licence ID: {}", licenceId);
return false;
}
String recipientEmail = licence.getAdherent() != null ? licence.getAdherent().getEmail() : null;
if (recipientEmail == null || recipientEmail.trim().isEmpty()) {
throw new IllegalStateException("L'adhérent n'a pas d'adresse e-mail renseignée.");
}
String token = (licence.getCategorie() != null && licence.getCategorie().getSportEasyToken() != null)
? licence.getCategorie().getSportEasyToken().trim()
: "";
if (token.isEmpty()) {
throw new IllegalStateException("Le lien d'invitation SportEasy n'a pas été renseigné pour la catégorie "
+ (licence.getCategorie() != null ? licence.getCategorie().getNom() : "") + ".");
}
String inviteUrl;
if (token.startsWith("http://") || token.startsWith("https://")) {
inviteUrl = token;
} else {
inviteUrl = sportEasyBaseUrl.endsWith("/") ? sportEasyBaseUrl + token : sportEasyBaseUrl + "/" + token;
}
String adherentNom = licence.getAdherent().getPrenom() + " " + licence.getAdherent().getNom();
String categorieNom = licence.getCategorie() != null ? licence.getCategorie().getNom() : "AS Talange";
String saisonNom = licence.getSaison() != null ? licence.getSaison().getNom() : "";
String subject = "AS Talange - Invitation SportEasy (" + categorieNom + ")";
String htmlContent = buildEmailHtml(adherentNom, categorieNom, saisonNom, inviteUrl);
licence.setSportEasyEmailSent(true);
licence.setSportEasyEmailSentAt(LocalDateTime.now());
licenceRepository.save(licence);
// Envoi asynchrone via CompletableFuture pour ne pas bloquer la réponse HTTP
java.util.concurrent.CompletableFuture.runAsync(() -> {
if (mailSender != null) {
try {
MimeMessage message = mailSender.createMimeMessage();
MimeMessageHelper helper = new MimeMessageHelper(message, true, "UTF-8");
helper.setFrom(getEffectiveFromEmail());
helper.setTo(recipientEmail);
helper.setSubject(subject);
helper.setText(htmlContent, true);
mailSender.send(message);
log.info("E-mail d'invitation SportEasy envoyé avec succès via SMTP à {} pour {}", recipientEmail, adherentNom);
} catch (Exception e) {
log.warn("Impossible d'envoyer l'e-mail via SMTP pour {}: {}. Bascule en mode simulation / log.", recipientEmail, e.getMessage());
logDevEmail(recipientEmail, subject, htmlContent);
}
} else {
log.info("Aucun JavaMailSender configuré (Mode DEV). Simulation de l'envoi d'e-mail SportEasy.");
logDevEmail(recipientEmail, subject, htmlContent);
}
});
return true;
}
@Transactional
public BatchSendResult sendBatchInvitationsForActiveSaison(Long categoryId) {
Saison activeSaison = saisonRepository.findByEstActiveTrue()
.orElseThrow(() -> new IllegalStateException("Aucune saison active trouvée."));
List<Licence> licences;
if (categoryId != null) {
licences = licenceRepository.findBySaison(activeSaison).stream()
.filter(l -> l.getCategorie() != null && categoryId.equals(l.getCategorie().getId()))
.toList();
} else {
licences = licenceRepository.findBySaison(activeSaison);
}
int sentCount = 0;
int skippedCount = 0;
int errorCount = 0;
for (Licence licence : licences) {
if (licence.isRenouvellement()) {
skippedCount++;
continue;
}
if (Boolean.TRUE.equals(licence.getSportEasyEmailSent())) {
skippedCount++;
continue;
}
String email = licence.getAdherent() != null ? licence.getAdherent().getEmail() : null;
if (email == null || email.trim().isEmpty()) {
skippedCount++;
continue;
}
try {
boolean success = sendInvitationForLicence(licence.getId(), false);
if (success) {
sentCount++;
} else {
skippedCount++;
}
} catch (Exception e) {
log.error("Erreur lors de l'envoi d'invitation SportEasy pour la licence ID {}: {}", licence.getId(), e.getMessage());
errorCount++;
}
}
String msg = String.format("%d invitation(s) SportEasy envoyée(s) avec succès. %d ignorée(s) (déjà envoyées, renouvellements ou sans email), %d erreur(s).",
sentCount, skippedCount, errorCount);
return new BatchSendResult(sentCount, skippedCount, errorCount, msg);
}
private void logDevEmail(String recipient, String subject, String body) {
log.info("==================== [SIMULATION E-MAIL SPORTEASY] ====================");
log.info("Destinataire: {}", recipient);
log.info("Sujet: {}", subject);
log.info("Contenu:\n{}", body);
log.info("=======================================================================");
}
private String buildEmailHtml(String adherentNom, String categorieNom, String saisonNom, String inviteUrl) {
return """
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<style>
body { font-family: Arial, sans-serif; background-color: #f4f6f8; margin: 0; padding: 20px; color: #333; }
.container { max-width: 600px; margin: 0 auto; background: #ffffff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.header { background-color: #1e3a8a; color: #ffffff; padding: 24px; text-align: center; }
.header h1 { margin: 0; font-size: 22px; }
.content { padding: 24px; line-height: 1.6; }
.btn { display: inline-block; background-color: #2563eb; color: #ffffff !important; padding: 12px 24px; border-radius: 6px; text-decoration: none; font-weight: bold; margin-top: 16px; text-align: center; }
.url-box { background: #f3f4f6; border: 1px solid #e5e7eb; border-radius: 6px; padding: 12px; margin-top: 16px; font-size: 13px; word-break: break-all; color: #1f2937; }
.footer { background: #f9fafb; border-top: 1px solid #e5e7eb; padding: 16px; text-align: center; font-size: 12px; color: #6b7280; }
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>AS Talange - Invitation SportEasy</h1>
</div>
<div class="content">
<p>Bonjour <strong>%s</strong>,</p>
<p>Afin d'assurer le suivi des entraînements, convocations et matchs pour la saison <strong>%s</strong> (catégorie <strong>%s</strong>), merci de rejoindre l'équipe sur la plateforme <strong>SportEasy</strong> en cliquant sur le lien ci-dessous :</p>
<p style="text-align: center;">
<a href="%s" class="btn" target="_blank">Rejoindre la catégorie sur SportEasy</a>
</p>
<div class="url-box">
<strong>Lien d'invitation direct :</strong><br>
<a href="%s" style="color: #2563eb;">%s</a>
</div>
<p style="margin-top: 20px;">À très vite sur les terrains !<br><strong>L'équipe de l'AS Talange</strong></p>
</div>
<div class="footer">
Cet e-mail a été envoyé automatiquement par le système de gestion de l'AS Talange.
</div>
</div>
</body>
</html>
""".formatted(
adherentNom,
saisonNom != null ? saisonNom : "",
categorieNom,
inviteUrl,
inviteUrl,
inviteUrl
);
}
}
@@ -0,0 +1,3 @@
ALTER TABLE categorie ADD COLUMN sport_easy_token VARCHAR(255);
ALTER TABLE licence ADD COLUMN sport_easy_email_sent BOOLEAN NOT NULL DEFAULT FALSE;
ALTER TABLE licence ADD COLUMN sport_easy_email_sent_at TIMESTAMP;
@@ -0,0 +1,2 @@
ALTER TABLE dotation ADD COLUMN commandee BOOLEAN NOT NULL DEFAULT FALSE;
ALTER TABLE dotation ADD COLUMN date_commande TIMESTAMP WITHOUT TIME ZONE;
@@ -0,0 +1,173 @@
package com.astalange.core.service;
import com.astalange.core.entity.Adherent;
import com.astalange.core.entity.Categorie;
import com.astalange.core.entity.Licence;
import com.astalange.core.entity.ModePaiement;
import com.astalange.core.entity.Paiement;
import com.astalange.core.entity.Saison;
import jakarta.mail.internet.MimeMessage;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.mockito.ArgumentCaptor;
import java.math.BigDecimal;
import java.time.LocalDate;
import static org.junit.jupiter.api.Assertions.*;
import static org.mockito.Mockito.*;
import com.astalange.core.repository.PaiementRepository;
import java.util.Optional;
class PaiementEmailServiceTest {
private PaiementEmailService paiementEmailService;
@BeforeEach
void setUp() {
paiementEmailService = new PaiementEmailService(null, null);
}
@Test
void testSendPaiementConfirmation_Totalite_SimulatedMode() {
Adherent adherent = new Adherent();
adherent.setNom("DUPONT");
adherent.setPrenom("Jean");
adherent.setEmail("jean.dupont@example.com");
Categorie categorie = new Categorie();
categorie.setNom("U13");
categorie.setTarifBase(new BigDecimal("150.00"));
categorie.setTarifExterieur(new BigDecimal("150.00"));
Saison saison = new Saison();
saison.setNom("2026/2027");
Licence licence = new Licence();
licence.setId(1L);
licence.setAdherent(adherent);
licence.setCategorie(categorie);
licence.setSaison(saison);
ModePaiement modePaiement = new ModePaiement();
modePaiement.setId(1L);
modePaiement.setNom("Carte bancaire");
Paiement paiement = new Paiement();
paiement.setId(10L);
paiement.setLicence(licence);
paiement.setMontant(new BigDecimal("150.00"));
paiement.setDatePaiement(LocalDate.now());
paiement.setModePaiement(modePaiement);
licence.addPaiement(paiement);
boolean result = paiementEmailService.sendPaiementConfirmation(paiement);
assertTrue(result, "Dev simulation mode should return true when email processing succeeds");
}
@Test
void testSendPaiementConfirmation_Partiel_SimulatedMode() {
Adherent adherent = new Adherent();
adherent.setNom("MARTIN");
adherent.setPrenom("Sophie");
adherent.setEmail("sophie.martin@example.com");
Categorie categorie = new Categorie();
categorie.setNom("Senior");
categorie.setTarifBase(new BigDecimal("200.00"));
categorie.setTarifExterieur(new BigDecimal("200.00"));
Saison saison = new Saison();
saison.setNom("2026/2027");
Licence licence = new Licence();
licence.setId(2L);
licence.setAdherent(adherent);
licence.setCategorie(categorie);
licence.setSaison(saison);
ModePaiement modePaiement = new ModePaiement();
modePaiement.setId(2L);
modePaiement.setNom("Espèces");
Paiement paiement = new Paiement();
paiement.setId(11L);
paiement.setLicence(licence);
paiement.setMontant(new BigDecimal("80.00"));
paiement.setDatePaiement(LocalDate.now());
paiement.setModePaiement(modePaiement);
licence.addPaiement(paiement);
boolean result = paiementEmailService.sendPaiementConfirmation(paiement);
assertTrue(result);
assertEquals(new BigDecimal("120.00"), licence.getResteAPayer(), "Remaining amount should be 120.00 €");
}
@Test
void testSendPaiementConfirmation_SansEmail() {
Adherent adherent = new Adherent();
adherent.setNom("SANS");
adherent.setPrenom("Email");
adherent.setEmail(null);
Licence licence = new Licence();
licence.setAdherent(adherent);
Paiement paiement = new Paiement();
paiement.setLicence(licence);
boolean result = paiementEmailService.sendPaiementConfirmation(paiement);
assertFalse(result, "Should return false if adherent has no email");
}
@Test
void testSendPaiementConfirmation_WithJavaMailSender() {
org.springframework.mail.javamail.JavaMailSender mailSenderMock = mock(org.springframework.mail.javamail.JavaMailSender.class);
MimeMessage mimeMessage = new MimeMessage((jakarta.mail.Session) null);
when(mailSenderMock.createMimeMessage()).thenReturn(mimeMessage);
PaiementEmailService serviceWithMailSender = new PaiementEmailService(mailSenderMock, null);
Adherent adherent = new Adherent();
adherent.setNom("DURAND");
adherent.setPrenom("Paul");
adherent.setEmail("paul.durand@example.com");
Categorie categorie = new Categorie();
categorie.setNom("U11");
categorie.setTarifBase(new BigDecimal("100.00"));
categorie.setTarifExterieur(new BigDecimal("100.00"));
Saison saison = new Saison();
saison.setNom("2026/2027");
Licence licence = new Licence();
licence.setId(3L);
licence.setAdherent(adherent);
licence.setCategorie(categorie);
licence.setSaison(saison);
ModePaiement modePaiement = new ModePaiement();
modePaiement.setId(1L);
modePaiement.setNom("Chèque");
Paiement paiement = new Paiement();
paiement.setId(12L);
paiement.setLicence(licence);
paiement.setMontant(new BigDecimal("100.00"));
paiement.setDatePaiement(LocalDate.now());
paiement.setModePaiement(modePaiement);
paiement.setNumeroCheque("CHK-999");
licence.addPaiement(paiement);
boolean result = serviceWithMailSender.sendPaiementConfirmation(paiement);
assertTrue(result);
verify(mailSenderMock, timeout(2000).times(1)).send(any(MimeMessage.class));
}
}
+1 -1
View File
@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>as-talange-parent</artifactId> <artifactId>as-talange-parent</artifactId>
<groupId>com.astalange</groupId> <groupId>com.astalange</groupId>
<version>1.6</version> <version>1.7-SNAPSHOT</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
@@ -4,10 +4,12 @@ import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.autoconfigure.domain.EntityScan; import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories; import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
import org.springframework.scheduling.annotation.EnableAsync;
@SpringBootApplication(scanBasePackages = "com.astalange") @SpringBootApplication(scanBasePackages = "com.astalange")
@EntityScan(basePackages = "com.astalange.core.entity") @EntityScan(basePackages = "com.astalange.core.entity")
@EnableJpaRepositories(basePackages = "com.astalange.core.repository") @EnableJpaRepositories(basePackages = "com.astalange.core.repository")
@EnableAsync
public class AsTalangeApplication { public class AsTalangeApplication {
public static void main(String[] args) { public static void main(String[] args) {
SpringApplication.run(AsTalangeApplication.class, args); SpringApplication.run(AsTalangeApplication.class, args);
@@ -24,14 +24,16 @@ public class AdherentController {
private final com.astalange.core.repository.ModePaiementRepository modePaiementRepository; private final com.astalange.core.repository.ModePaiementRepository modePaiementRepository;
private final SaisonRepository saisonRepository; private final SaisonRepository saisonRepository;
private final com.astalange.core.service.CategorieService categorieService; private final com.astalange.core.service.CategorieService categorieService;
private final com.astalange.core.service.SportEasyEmailService sportEasyEmailService;
public AdherentController(AdherentRepository adherentRepository, CategorieRepository categorieRepository, com.astalange.core.repository.LicenceRepository licenceRepository, com.astalange.core.repository.ModePaiementRepository modePaiementRepository, SaisonRepository saisonRepository, com.astalange.core.service.CategorieService categorieService) { public AdherentController(AdherentRepository adherentRepository, CategorieRepository categorieRepository, com.astalange.core.repository.LicenceRepository licenceRepository, com.astalange.core.repository.ModePaiementRepository modePaiementRepository, SaisonRepository saisonRepository, com.astalange.core.service.CategorieService categorieService, com.astalange.core.service.SportEasyEmailService sportEasyEmailService) {
this.adherentRepository = adherentRepository; this.adherentRepository = adherentRepository;
this.categorieRepository = categorieRepository; this.categorieRepository = categorieRepository;
this.licenceRepository = licenceRepository; this.licenceRepository = licenceRepository;
this.modePaiementRepository = modePaiementRepository; this.modePaiementRepository = modePaiementRepository;
this.saisonRepository = saisonRepository; this.saisonRepository = saisonRepository;
this.categorieService = categorieService; this.categorieService = categorieService;
this.sportEasyEmailService = sportEasyEmailService;
} }
@org.springframework.web.bind.annotation.ModelAttribute("equipes") @org.springframework.web.bind.annotation.ModelAttribute("equipes")
@@ -48,6 +50,7 @@ public class AdherentController {
@org.springframework.web.bind.annotation.RequestParam(required = false) String licence, @org.springframework.web.bind.annotation.RequestParam(required = false) String licence,
@org.springframework.web.bind.annotation.RequestParam(required = false) String email, @org.springframework.web.bind.annotation.RequestParam(required = false) String email,
@org.springframework.web.bind.annotation.RequestParam(required = false) String paiement, @org.springframework.web.bind.annotation.RequestParam(required = false) String paiement,
@org.springframework.web.bind.annotation.RequestParam(required = false) String sporteasy,
@org.springframework.web.bind.annotation.RequestParam(required = false, defaultValue = "nom") String sortField, @org.springframework.web.bind.annotation.RequestParam(required = false, defaultValue = "nom") String sortField,
@org.springframework.web.bind.annotation.RequestParam(required = false, defaultValue = "asc") String sortDirection, @org.springframework.web.bind.annotation.RequestParam(required = false, defaultValue = "asc") String sortDirection,
@org.springframework.web.bind.annotation.RequestParam(defaultValue = "0") int page, @org.springframework.web.bind.annotation.RequestParam(defaultValue = "0") int page,
@@ -114,6 +117,21 @@ public class AdherentController {
}).collect(java.util.stream.Collectors.toList()); }).collect(java.util.stream.Collectors.toList());
model.addAttribute("paiementFilter", paiement.trim()); model.addAttribute("paiementFilter", paiement.trim());
} }
if (sporteasy != null && !sporteasy.trim().isEmpty()) {
adherents = adherents.stream().filter(a -> {
Licence lic = a.getLicenceActuelle();
if (lic == null) return false;
if ("NON_INVITE".equalsIgnoreCase(sporteasy)) {
return !lic.isRenouvellement() && !Boolean.TRUE.equals(lic.getSportEasyEmailSent());
} else if ("INVITE".equalsIgnoreCase(sporteasy)) {
return !lic.isRenouvellement() && Boolean.TRUE.equals(lic.getSportEasyEmailSent());
} else if ("RENOUVELLEMENT".equalsIgnoreCase(sporteasy)) {
return lic.isRenouvellement();
}
return true;
}).collect(java.util.stream.Collectors.toList());
model.addAttribute("sporteasyFilter", sporteasy.trim());
}
// 3. Sort // 3. Sort
java.util.Comparator<Adherent> comparator = (a1, a2) -> 0; java.util.Comparator<Adherent> comparator = (a1, a2) -> 0;
@@ -284,4 +302,57 @@ public class AdherentController {
adherentRepository.delete(adherent); adherentRepository.delete(adherent);
return "redirect:/adherents"; return "redirect:/adherents";
} }
@org.springframework.web.bind.annotation.PostMapping("/{id}/sporteasy-invite")
public String sendSportEasyInvite(
@org.springframework.web.bind.annotation.PathVariable Long id,
@org.springframework.web.bind.annotation.RequestParam(required = false, defaultValue = "false") boolean force,
org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes) {
Saison activeSaison = saisonRepository.findByEstActiveTrue().orElse(null);
if (activeSaison == null) {
redirectAttributes.addFlashAttribute("errorMessage", "Erreur : Aucune saison active trouvée.");
return "redirect:/adherents";
}
Licence licence = licenceRepository.findByAdherentIdAndSaison(id, activeSaison).orElse(null);
if (licence == null) {
redirectAttributes.addFlashAttribute("errorMessage", "Cet adhérent n'a pas de licence pour la saison active.");
return "redirect:/adherents";
}
if (licence.isRenouvellement()) {
redirectAttributes.addFlashAttribute("infoMessage", "Les invitations SportEasy sont réservées aux nouveaux adhérents (nouvelle licence).");
return "redirect:/adherents";
}
try {
boolean success = sportEasyEmailService.sendInvitationForLicence(licence.getId(), force);
if (success) {
redirectAttributes.addFlashAttribute("successMessage", "L'invitation SportEasy a été envoyée avec succès à l'adhérent.");
} else {
redirectAttributes.addFlashAttribute("infoMessage", "L'invitation SportEasy avait déjà été envoyée à cet adhérent.");
}
} catch (Exception e) {
redirectAttributes.addFlashAttribute("errorMessage", "Erreur lors de l'envoi de l'invitation : " + e.getMessage());
}
return "redirect:/adherents";
}
@org.springframework.web.bind.annotation.PostMapping("/sporteasy-invite-batch")
public String sendSportEasyInviteBatch(
@org.springframework.web.bind.annotation.RequestParam(required = false) Long categoryId,
org.springframework.web.servlet.mvc.support.RedirectAttributes redirectAttributes) {
try {
com.astalange.core.service.SportEasyEmailService.BatchSendResult result =
sportEasyEmailService.sendBatchInvitationsForActiveSaison(categoryId);
redirectAttributes.addFlashAttribute("successMessage", result.message());
} catch (Exception e) {
redirectAttributes.addFlashAttribute("errorMessage", "Erreur lors de l'envoi des invitations SportEasy : " + e.getMessage());
}
return "redirect:/adherents";
}
} }
@@ -45,7 +45,7 @@ public class DotationController {
this.categorieRepository = categorieRepository; this.categorieRepository = categorieRepository;
} }
private Specification<Dotation> buildSpecification(Long equipementId, Long categorieId, Boolean fourni, Saison saisonActive) { private Specification<Dotation> buildSpecification(Long equipementId, Long categorieId, Boolean fourni, Boolean commandee, Saison saisonActive) {
return (root, query, cb) -> { return (root, query, cb) -> {
if (Long.class != query.getResultType() && long.class != query.getResultType()) { if (Long.class != query.getResultType() && long.class != query.getResultType()) {
root.fetch("equipement", jakarta.persistence.criteria.JoinType.LEFT); root.fetch("equipement", jakarta.persistence.criteria.JoinType.LEFT);
@@ -67,6 +67,9 @@ public class DotationController {
if (fourni != null) { if (fourni != null) {
predicates.add(cb.equal(root.get("fourni"), fourni)); predicates.add(cb.equal(root.get("fourni"), fourni));
} }
if (commandee != null) {
predicates.add(cb.equal(root.get("commandee"), commandee));
}
return cb.and(predicates.toArray(new Predicate[0])); return cb.and(predicates.toArray(new Predicate[0]));
}; };
} }
@@ -76,12 +79,13 @@ public class DotationController {
@RequestParam(required = false) Long equipementId, @RequestParam(required = false) Long equipementId,
@RequestParam(required = false) Long categorieId, @RequestParam(required = false) Long categorieId,
@RequestParam(required = false) Boolean fourni, @RequestParam(required = false) Boolean fourni,
@RequestParam(required = false) Boolean commandee,
@RequestParam(defaultValue = "0") int page, @RequestParam(defaultValue = "0") int page,
@RequestParam(defaultValue = "20") int size, @RequestParam(defaultValue = "20") int size,
Model model) { Model model) {
Saison saisonActive = saisonRepository.findByEstActiveTrue().orElse(null); Saison saisonActive = saisonRepository.findByEstActiveTrue().orElse(null);
Specification<Dotation> spec = buildSpecification(equipementId, categorieId, fourni, saisonActive); Specification<Dotation> spec = buildSpecification(equipementId, categorieId, fourni, commandee, saisonActive);
List<Dotation> allDotations = dotationRepository.findAll(spec); List<Dotation> allDotations = dotationRepository.findAll(spec);
int totalElements = allDotations.size(); int totalElements = allDotations.size();
@@ -99,6 +103,7 @@ public class DotationController {
model.addAttribute("equipementId", equipementId); model.addAttribute("equipementId", equipementId);
model.addAttribute("categorieId", categorieId); model.addAttribute("categorieId", categorieId);
model.addAttribute("fourni", fourni); model.addAttribute("fourni", fourni);
model.addAttribute("commandee", commandee);
model.addAttribute("currentPage", page); model.addAttribute("currentPage", page);
model.addAttribute("totalPages", totalPages); model.addAttribute("totalPages", totalPages);
@@ -112,10 +117,11 @@ public class DotationController {
public ResponseEntity<byte[]> exportRechercheEquipements( public ResponseEntity<byte[]> exportRechercheEquipements(
@RequestParam(required = false) Long equipementId, @RequestParam(required = false) Long equipementId,
@RequestParam(required = false) Long categorieId, @RequestParam(required = false) Long categorieId,
@RequestParam(required = false) Boolean fourni) { @RequestParam(required = false) Boolean fourni,
@RequestParam(required = false) Boolean commandee) {
Saison saisonActive = saisonRepository.findByEstActiveTrue().orElse(null); Saison saisonActive = saisonRepository.findByEstActiveTrue().orElse(null);
Specification<Dotation> spec = buildSpecification(equipementId, categorieId, fourni, saisonActive); Specification<Dotation> spec = buildSpecification(equipementId, categorieId, fourni, commandee, saisonActive);
List<Dotation> dotations = dotationRepository.findAll(spec); List<Dotation> dotations = dotationRepository.findAll(spec);
String csvContent = dotationService.genererCsvSearchEquipement(dotations); String csvContent = dotationService.genererCsvSearchEquipement(dotations);
@@ -137,7 +143,7 @@ public class DotationController {
byte[] csvBytes = csvContent.getBytes(java.nio.charset.StandardCharsets.UTF_8); byte[] csvBytes = csvContent.getBytes(java.nio.charset.StandardCharsets.UTF_8);
HttpHeaders headers = new HttpHeaders(); HttpHeaders headers = new HttpHeaders();
headers.setContentDispositionFormData("attachment", "commande_equipements_" + LocalDate.now() + ".csv"); headers.setContentDispositionFormData("attachment", "commande_equipements_regroupee_" + LocalDate.now() + ".csv");
headers.setContentType(MediaType.parseMediaType("text/csv; charset=UTF-8")); headers.setContentType(MediaType.parseMediaType("text/csv; charset=UTF-8"));
return new ResponseEntity<>(csvBytes, headers, org.springframework.http.HttpStatus.OK); return new ResponseEntity<>(csvBytes, headers, org.springframework.http.HttpStatus.OK);
@@ -8,6 +8,9 @@ import com.astalange.core.repository.AuditLogPaiementRepository;
import com.astalange.core.repository.LicenceRepository; import com.astalange.core.repository.LicenceRepository;
import com.astalange.core.repository.ModePaiementRepository; import com.astalange.core.repository.ModePaiementRepository;
import com.astalange.core.repository.PaiementRepository; import com.astalange.core.repository.PaiementRepository;
import com.astalange.core.service.PaiementEmailService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.format.annotation.DateTimeFormat; import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PathVariable;
@@ -21,16 +24,24 @@ import java.time.LocalDate;
@Controller @Controller
public class PaiementController { public class PaiementController {
private static final Logger log = LoggerFactory.getLogger(PaiementController.class);
private final LicenceRepository licenceRepository; private final LicenceRepository licenceRepository;
private final ModePaiementRepository modePaiementRepository; private final ModePaiementRepository modePaiementRepository;
private final PaiementRepository paiementRepository; private final PaiementRepository paiementRepository;
private final AuditLogPaiementRepository auditLogPaiementRepository; private final AuditLogPaiementRepository auditLogPaiementRepository;
private final PaiementEmailService paiementEmailService;
public PaiementController(LicenceRepository licenceRepository, ModePaiementRepository modePaiementRepository, PaiementRepository paiementRepository, AuditLogPaiementRepository auditLogPaiementRepository) { public PaiementController(LicenceRepository licenceRepository,
ModePaiementRepository modePaiementRepository,
PaiementRepository paiementRepository,
AuditLogPaiementRepository auditLogPaiementRepository,
PaiementEmailService paiementEmailService) {
this.licenceRepository = licenceRepository; this.licenceRepository = licenceRepository;
this.modePaiementRepository = modePaiementRepository; this.modePaiementRepository = modePaiementRepository;
this.paiementRepository = paiementRepository; this.paiementRepository = paiementRepository;
this.auditLogPaiementRepository = auditLogPaiementRepository; this.auditLogPaiementRepository = auditLogPaiementRepository;
this.paiementEmailService = paiementEmailService;
} }
@PostMapping("/licences/{id}/paiements") @PostMapping("/licences/{id}/paiements")
@@ -49,6 +60,8 @@ public class PaiementController {
ModePaiement mode = modePaiementRepository.findById(modePaiementId) ModePaiement mode = modePaiementRepository.findById(modePaiementId)
.orElseThrow(() -> new IllegalArgumentException("Invalid ModePaiement ID")); .orElseThrow(() -> new IllegalArgumentException("Invalid ModePaiement ID"));
log.info(">>> [PaiementController] Demande de création de paiement reçue pour Licence ID: {}, Adhérent ID: {}, Montant: {} €", id, adherentId, montant);
// Validation basique pour ne pas payer plus que le reste à payer // Validation basique pour ne pas payer plus que le reste à payer
if (montant.compareTo(licence.getResteAPayer()) > 0) { if (montant.compareTo(licence.getResteAPayer()) > 0) {
montant = licence.getResteAPayer(); montant = licence.getResteAPayer();
@@ -66,15 +79,24 @@ public class PaiementController {
paiement.setGestionnaire(principal.getName()); paiement.setGestionnaire(principal.getName());
} }
paiementRepository.save(paiement); paiementRepository.save(paiement);
AuditLogPaiement log = new AuditLogPaiement(); licence.addPaiement(paiement);
log.setAction("CREATE");
log.setUtilisateur(principal != null ? principal.getName() : "Système"); AuditLogPaiement auditLog = new AuditLogPaiement();
log.setPaiementId(paiement.getId()); auditLog.setAction("CREATE");
log.setMontant(montant); auditLog.setUtilisateur(principal != null ? principal.getName() : "Système");
log.setAdherentNomComplet(licence.getAdherent().getNom() + " " + licence.getAdherent().getPrenom()); auditLog.setPaiementId(paiement.getId());
log.setDetails("Création d'un paiement de " + montant + "€ via " + mode.getNom() + " pour la licence " + (licence.getNumeroLicence() != null ? licence.getNumeroLicence() : "sans numéro")); auditLog.setMontant(montant);
auditLogPaiementRepository.save(log); auditLog.setAdherentNomComplet(licence.getAdherent().getNom() + " " + licence.getAdherent().getPrenom());
auditLog.setDetails("Création d'un paiement de " + montant + "€ via " + mode.getNom() + " pour la licence " + (licence.getNumeroLicence() != null ? licence.getNumeroLicence() : "sans numéro"));
auditLogPaiementRepository.save(auditLog);
try {
log.info("Appel de sendPaiementConfirmation depuis addPaiement pour le paiement ID: {}", paiement.getId());
paiementEmailService.sendPaiementConfirmation(paiement);
} catch (Exception e) {
log.error("Erreur lors de l'appel à sendPaiementConfirmation: ", e);
}
} }
return "redirect:/adherents/" + adherentId + "/edit"; return "redirect:/adherents/" + adherentId + "/edit";
@@ -119,14 +141,14 @@ public class PaiementController {
} }
paiementRepository.save(paiement); paiementRepository.save(paiement);
AuditLogPaiement log = new AuditLogPaiement(); AuditLogPaiement auditLog = new AuditLogPaiement();
log.setAction("UPDATE"); auditLog.setAction("UPDATE");
log.setUtilisateur(principal != null ? principal.getName() : "Système"); auditLog.setUtilisateur(principal != null ? principal.getName() : "Système");
log.setPaiementId(paiement.getId()); auditLog.setPaiementId(paiement.getId());
log.setMontant(montant); auditLog.setMontant(montant);
log.setAdherentNomComplet(licence.getAdherent().getNom() + " " + licence.getAdherent().getPrenom()); auditLog.setAdherentNomComplet(licence.getAdherent().getNom() + " " + licence.getAdherent().getPrenom());
log.setDetails("Modification du paiement: montant " + ancienMontant + "€ -> " + montant + "€, mode " + ancienMode + " -> " + mode.getNom()); auditLog.setDetails("Modification du paiement: montant " + ancienMontant + "€ -> " + montant + "€, mode " + ancienMode + " -> " + mode.getNom());
auditLogPaiementRepository.save(log); auditLogPaiementRepository.save(auditLog);
} }
if (redirect != null && !redirect.isEmpty()) { if (redirect != null && !redirect.isEmpty()) {
@@ -146,14 +168,14 @@ public class PaiementController {
Long adherentId = paiement.getLicence().getAdherent().getId(); Long adherentId = paiement.getLicence().getAdherent().getId();
AuditLogPaiement log = new AuditLogPaiement(); AuditLogPaiement auditLog = new AuditLogPaiement();
log.setAction("DELETE"); auditLog.setAction("DELETE");
log.setUtilisateur(principal != null ? principal.getName() : "Système"); auditLog.setUtilisateur(principal != null ? principal.getName() : "Système");
log.setPaiementId(paiement.getId()); auditLog.setPaiementId(paiement.getId());
log.setMontant(paiement.getMontant()); auditLog.setMontant(paiement.getMontant());
log.setAdherentNomComplet(paiement.getLicence().getAdherent().getNom() + " " + paiement.getLicence().getAdherent().getPrenom()); auditLog.setAdherentNomComplet(paiement.getLicence().getAdherent().getNom() + " " + paiement.getLicence().getAdherent().getPrenom());
log.setDetails("Suppression du paiement de " + paiement.getMontant() + "€ via " + paiement.getModePaiement().getNom()); auditLog.setDetails("Suppression du paiement de " + paiement.getMontant() + "€ via " + paiement.getModePaiement().getNom());
auditLogPaiementRepository.save(log); auditLogPaiementRepository.save(auditLog);
paiementRepository.delete(paiement); paiementRepository.delete(paiement);
@@ -162,4 +184,27 @@ public class PaiementController {
} }
return "redirect:/adherents/" + adherentId + "/edit"; return "redirect:/adherents/" + adherentId + "/edit";
} }
@PostMapping("/paiements/{id}/resend-email")
public String resendPaiementEmail(
@PathVariable Long id,
@RequestParam(required = false) String redirect) {
log.info(">>> [PaiementController] Demande de renvoi d'e-mail reçue pour le paiement ID: {}", id);
Paiement paiement = paiementRepository.findById(id)
.orElseThrow(() -> new IllegalArgumentException("Invalid Paiement ID"));
try {
log.info("Appel de sendPaiementConfirmation depuis resendPaiementEmail pour le paiement ID: {}", id);
paiementEmailService.sendPaiementConfirmation(paiement);
} catch (Exception e) {
log.error("Erreur lors du renvoi de l'e-mail pour le paiement ID {}: ", id, e);
}
if (redirect != null && !redirect.isEmpty()) {
return "redirect:" + redirect;
}
return "redirect:/adherents/" + paiement.getLicence().getAdherent().getId() + "/edit";
}
} }
@@ -9,17 +9,39 @@ spring:
jpa: jpa:
hibernate: hibernate:
ddl-auto: validate ddl-auto: validate
show-sql: true show-sql: false
properties: properties:
hibernate: hibernate:
format_sql: true format_sql: false
flyway: flyway:
enabled: true enabled: true
locations: classpath:db/migration locations: classpath:db/migration
validate-on-migrate: false validate-on-migrate: false
mail:
host: ${SPRING_MAIL_HOST:localhost}
port: ${SPRING_MAIL_PORT:1025}
username: ${SPRING_MAIL_USERNAME:}
password: ${SPRING_MAIL_PASSWORD:}
properties:
mail:
smtp:
auth: ${SPRING_MAIL_PROPERTIES_MAIL_SMTP_AUTH:false}
starttls:
enable: ${SPRING_MAIL_PROPERTIES_MAIL_SMTP_STARTTLS_ENABLE:false}
server: server:
port: 8080 port: 8080
app: app:
version: @project.version@ version: @project.version@
sporteasy:
base-url: https://www.sporteasy.net/join/
logging:
level:
com.astalange: DEBUG
org.hibernate: WARN
org.hibernate.SQL: WARN
org.hibernate.type.descriptor.sql: WARN
@@ -327,6 +327,14 @@
<td class="py-2 px-3 text-right font-semibold text-green-600" th:text="${paiement.montant + ' €'}">50.00 €</td> <td class="py-2 px-3 text-right font-semibold text-green-600" th:text="${paiement.montant + ' €'}">50.00 €</td>
<td class="py-2 px-3 text-right pr-4"> <td class="py-2 px-3 text-right pr-4">
<div class="flex justify-end items-center space-x-2"> <div class="flex justify-end items-center space-x-2">
<form th:action="@{/paiements/{id}/resend-email(id=${paiement.id})}" method="post" class="inline m-0" onsubmit="return confirm('Renvoyer l\'e-mail de reçu de paiement à l\'adhérent ?');">
<input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}" />
<button type="submit" class="text-emerald-600 hover:text-emerald-900 bg-emerald-50 hover:bg-emerald-100 p-1.5 rounded transition-colors inline-flex items-center" title="Renvoyer le reçu par e-mail">
<svg class="w-3.5 h-3.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/>
</svg>
</button>
</form>
<button type="button" <button type="button"
th:data-paiement-id="${paiement.id}" th:data-paiement-id="${paiement.id}"
th:data-montant="${paiement.montant}" th:data-montant="${paiement.montant}"
@@ -29,9 +29,28 @@
<div class="flex-1 overflow-auto p-6"> <div class="flex-1 overflow-auto p-6">
<div class="flex justify-between items-center mb-6"> <div class="flex justify-between items-center mb-6">
<h3 class="text-xl font-bold text-gray-900">Liste des Adhérents</h3> <h3 class="text-xl font-bold text-gray-900">Liste des Adhérents</h3>
<a th:href="@{/adherents/new}" class="bg-blue-600 text-white px-4 py-2 rounded-lg text-sm font-medium hover:bg-blue-700 transition-colors inline-block"> <div class="flex items-center space-x-3">
+ Nouvel Adhérent <form th:action="@{/adherents/sporteasy-invite-batch}" method="post" onsubmit="return confirm('Envoyer les invitations SportEasy à tous les adhérents non invités de la saison active ?');">
</a> <button type="submit" class="bg-indigo-50 text-indigo-700 hover:bg-indigo-100 border border-indigo-200 px-4 py-2 rounded-lg text-sm font-medium transition-colors flex items-center space-x-1.5 shadow-2xs">
<svg class="w-4 h-4 text-indigo-600" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path></svg>
<span>Inviter sur SportEasy</span>
</button>
</form>
<a th:href="@{/adherents/new}" class="bg-blue-600 text-white px-4 py-2 rounded-lg text-sm font-medium hover:bg-blue-700 transition-colors inline-block">
+ Nouvel Adhérent
</a>
</div>
</div>
<!-- Messages d'information -->
<div th:if="${successMessage}" class="mb-4 p-4 bg-green-50 border-l-4 border-green-500 rounded-lg text-sm text-green-800 font-medium">
<span th:text="${successMessage}"></span>
</div>
<div th:if="${errorMessage}" class="mb-4 p-4 bg-red-50 border-l-4 border-red-500 rounded-lg text-sm text-red-800 font-medium">
<span th:text="${errorMessage}"></span>
</div>
<div th:if="${infoMessage}" class="mb-4 p-4 bg-blue-50 border-l-4 border-blue-500 rounded-lg text-sm text-blue-800 font-medium">
<span th:text="${infoMessage}"></span>
</div> </div>
<!-- Table Container with Wrapper-level HTMX triggers for filters --> <!-- Table Container with Wrapper-level HTMX triggers for filters -->
@@ -109,6 +128,7 @@
</div> </div>
</th> </th>
<th class="py-3 px-6 font-medium text-center">Paiement</th> <th class="py-3 px-6 font-medium text-center">Paiement</th>
<th class="py-3 px-4 font-medium text-center">SportEasy</th>
<th class="py-3 px-6 font-medium text-right">Actions</th> <th class="py-3 px-6 font-medium text-right">Actions</th>
</tr> </tr>
<!-- Filter Row --> <!-- Filter Row -->
@@ -141,12 +161,20 @@
<option value="AUCUNE" th:selected="${paiementFilter == 'AUCUNE'}">Aucune licence</option> <option value="AUCUNE" th:selected="${paiementFilter == 'AUCUNE'}">Aucune licence</option>
</select> </select>
</td> </td>
<td class="py-2 px-3">
<select id="filterSportEasy" name="sporteasy" class="w-full border border-gray-300 rounded px-2 py-1 text-xs focus:ring-1 focus:ring-blue-500 focus:outline-none">
<option value="">Tous</option>
<option value="NON_INVITE" th:selected="${sporteasyFilter == 'NON_INVITE'}">Non invité</option>
<option value="INVITE" th:selected="${sporteasyFilter == 'INVITE'}">Invité</option>
<option value="RENOUVELLEMENT" th:selected="${sporteasyFilter == 'RENOUVELLEMENT'}">Renouvellement</option>
</select>
</td>
<td class="py-2 px-3"></td> <td class="py-2 px-3"></td>
</tr> </tr>
</thead> </thead>
<tbody class="divide-y divide-gray-200 text-sm"> <tbody class="divide-y divide-gray-200 text-sm">
<tr th:if="${#lists.isEmpty(adherents)}"> <tr th:if="${#lists.isEmpty(adherents)}">
<td colspan="7" class="py-8 text-center text-gray-500">Aucun adhérent enregistré.</td> <td colspan="8" class="py-8 text-center text-gray-500">Aucun adhérent enregistré.</td>
</tr> </tr>
<tr th:each="adherent : ${adherents}" class="hover:bg-gray-50 transition-colors adherent-row"> <tr th:each="adherent : ${adherents}" class="hover:bg-gray-50 transition-colors adherent-row">
<td class="py-4 px-6 font-medium text-gray-900"> <td class="py-4 px-6 font-medium text-gray-900">
@@ -193,6 +221,37 @@
</div> </div>
</div> </div>
</td> </td>
<!-- SportEasy Status Column -->
<td class="py-3 px-4 text-center">
<div th:if="${adherent.getLicenceActuelle() != null}">
<div th:if="${adherent.getLicenceActuelle().isRenouvellement()}" class="text-xs text-gray-400 italic">
Renouvellement
</div>
<div th:unless="${adherent.getLicenceActuelle().isRenouvellement()}">
<div th:if="${adherent.getLicenceActuelle().getSportEasyEmailSent()}" class="flex flex-col items-center space-y-1">
<span class="inline-flex items-center px-2 py-0.5 rounded-full text-xs font-semibold bg-emerald-100 text-emerald-800 border border-emerald-200"
th:title="${adherent.getLicenceActuelle().getSportEasyEmailSentAt() != null ? 'Envoyé le ' + #temporals.format(adherent.getLicenceActuelle().getSportEasyEmailSentAt(), 'dd/MM/yyyy HH:mm') : 'Invité'}">
🟢 Invité
</span>
<form th:action="@{/adherents/{id}/sporteasy-invite(id=${adherent.id})}" method="post">
<input type="hidden" name="force" value="true" />
<button type="submit" class="text-[10px] text-gray-500 hover:text-blue-600 underline">Renvoyer</button>
</form>
</div>
<div th:if="${!adherent.getLicenceActuelle().getSportEasyEmailSent()}" class="flex flex-col items-center space-y-1">
<span class="inline-flex items-center px-2 py-0.5 rounded-full text-xs font-medium bg-gray-100 text-gray-600 border border-gray-200">
⚪ Non invité
</span>
<form th:action="@{/adherents/{id}/sporteasy-invite(id=${adherent.id})}" method="post">
<button type="submit" class="text-xs font-medium text-indigo-600 hover:text-indigo-800 bg-indigo-50 hover:bg-indigo-100 px-2.5 py-1 rounded-md border border-indigo-200 transition-colors">Inviter</button>
</form>
</div>
</div>
</div>
<div th:if="${adherent.getLicenceActuelle() == null}" class="text-xs text-gray-400 italic">
-
</div>
</td>
<td class="py-4 px-6 text-right flex justify-end space-x-3 items-center"> <td class="py-4 px-6 text-right flex justify-end space-x-3 items-center">
<a th:href="@{/adherents/{id}/edit(id=${adherent.id})}" class="text-indigo-600 hover:text-indigo-900 font-medium bg-indigo-50 px-3 py-1 rounded-lg">Voir / Modifier</a> <a th:href="@{/adherents/{id}/edit(id=${adherent.id})}" class="text-indigo-600 hover:text-indigo-900 font-medium bg-indigo-50 px-3 py-1 rounded-lg">Voir / Modifier</a>
<form th:action="@{/adherents/{id}/delete(id=${adherent.id})}" method="post" onsubmit="return confirm('Supprimer cet adhérent ?');"> <form th:action="@{/adherents/{id}/delete(id=${adherent.id})}" method="post" onsubmit="return confirm('Supprimer cet adhérent ?');">
@@ -93,6 +93,15 @@
<td class="py-4 px-6 text-right font-semibold text-green-600" th:text="${p.montant + ' €'}">50.00 €</td> <td class="py-4 px-6 text-right font-semibold text-green-600" th:text="${p.montant + ' €'}">50.00 €</td>
<td class="py-4 px-6 text-right pr-6"> <td class="py-4 px-6 text-right pr-6">
<div class="flex justify-end items-center space-x-2"> <div class="flex justify-end items-center space-x-2">
<form th:action="@{/paiements/{id}/resend-email(id=${p.id})}" method="post" class="inline m-0" onsubmit="return confirm('Renvoyer l\'e-mail de reçu de paiement à l\'adhérent ?');">
<input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}" />
<input type="hidden" name="redirect" value="/paiements" />
<button type="submit" class="text-emerald-600 hover:text-emerald-900 bg-emerald-50 hover:bg-emerald-100 p-1.5 rounded transition-colors inline-flex items-center" title="Renvoyer le reçu par e-mail">
<svg class="w-3.5 h-3.5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/>
</svg>
</button>
</form>
<button type="button" <button type="button"
th:data-paiement-id="${p.id}" th:data-paiement-id="${p.id}"
th:data-montant="${p.montant}" th:data-montant="${p.montant}"
@@ -64,6 +64,13 @@
</div> </div>
</div> </div>
<div>
<label for="sportEasyToken" class="block text-sm font-medium text-gray-700 mb-1">Lien d'invitation SportEasy de la catégorie</label>
<input type="text" id="sportEasyToken" th:field="*{sportEasyToken}" placeholder="ex: https://www.sporteasy.net/join/XXXXXX"
class="w-full border border-gray-300 rounded-lg px-4 py-2 text-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition-colors">
<p class="text-xs text-gray-500 mt-1">Saisissez le lien direct d'invitation SportEasy spécifique à cette catégorie.</p>
</div>
<div class="pt-4 border-t border-gray-100"> <div class="pt-4 border-t border-gray-100">
<label class="block text-sm font-medium text-gray-700 mb-2">Équipements liés à la catégorie</label> <label class="block text-sm font-medium text-gray-700 mb-2">Équipements liés à la catégorie</label>
@@ -21,7 +21,7 @@
<div class="bg-white p-6 rounded-lg border border-gray-200 shadow-sm mb-6"> <div class="bg-white p-6 rounded-lg border border-gray-200 shadow-sm mb-6">
<form th:action="@{/admin/equipements/recherche}" method="get" class="space-y-4"> <form th:action="@{/admin/equipements/recherche}" method="get" class="space-y-4">
<div class="grid grid-cols-1 md:grid-cols-3 gap-4"> <div class="grid grid-cols-1 md:grid-cols-4 gap-4">
<div> <div>
<label class="block text-sm font-medium text-gray-700 mb-1">Équipement</label> <label class="block text-sm font-medium text-gray-700 mb-1">Équipement</label>
<select name="equipementId" class="w-full border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500 sm:text-sm px-3 py-2 border"> <select name="equipementId" class="w-full border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500 sm:text-sm px-3 py-2 border">
@@ -44,10 +44,28 @@
<option value="false" th:selected="${fourni != null && !fourni}">Non</option> <option value="false" th:selected="${fourni != null && !fourni}">Non</option>
</select> </select>
</div> </div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">Commandé</label>
<select name="commandee" class="w-full border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500 sm:text-sm px-3 py-2 border">
<option value="">Tous</option>
<option value="false" th:selected="${commandee != null && !commandee}">Non commandé</option>
<option value="true" th:selected="${commandee != null && commandee}">Commandé</option>
</select>
</div>
</div> </div>
<div class="flex justify-end space-x-3"> <div class="flex justify-between items-center pt-2">
<button type="submit" class="bg-blue-600 text-white px-4 py-2 rounded-lg text-sm font-medium hover:bg-blue-700">Rechercher</button> <a th:href="@{/admin/equipements/export-commande}"
<a th:href="@{/admin/equipements/recherche/export(equipementId=${equipementId},categorieId=${categorieId},fourni=${fourni})}" class="bg-green-600 text-white px-4 py-2 rounded-lg text-sm font-medium hover:bg-green-700">Exporter</a> onclick="return confirm('Exporter les équipements non encore commandés et les marquer comme commandés ?');"
class="bg-indigo-600 text-white px-4 py-2 rounded-lg text-sm font-medium hover:bg-indigo-700 flex items-center space-x-1 shadow-sm">
<svg class="w-4 h-4 mr-1" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 10v6m0 0l-3-3m3 3l3-3m2 8H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z"/>
</svg>
Exporter Commande Équipementier (Regroupé)
</a>
<div class="flex space-x-3">
<button type="submit" class="bg-blue-600 text-white px-4 py-2 rounded-lg text-sm font-medium hover:bg-blue-700">Rechercher</button>
<a th:href="@{/admin/equipements/recherche/export(equipementId=${equipementId},categorieId=${categorieId},fourni=${fourni},commandee=${commandee})}" class="bg-green-600 text-white px-4 py-2 rounded-lg text-sm font-medium hover:bg-green-700">Exporter Recherche</a>
</div>
</div> </div>
</form> </form>
</div> </div>
@@ -62,12 +80,13 @@
<th class="py-3 px-4 font-medium text-left">Équipement</th> <th class="py-3 px-4 font-medium text-left">Équipement</th>
<th class="py-3 px-4 font-medium text-left">Référence</th> <th class="py-3 px-4 font-medium text-left">Référence</th>
<th class="py-3 px-4 font-medium text-left">Taille / Floc.</th> <th class="py-3 px-4 font-medium text-left">Taille / Floc.</th>
<th class="py-3 px-4 font-medium text-center">Commandé</th>
<th class="py-3 px-4 font-medium text-center">Fourni</th> <th class="py-3 px-4 font-medium text-center">Fourni</th>
</tr> </tr>
</thead> </thead>
<tbody class="divide-y divide-gray-200 text-sm"> <tbody class="divide-y divide-gray-200 text-sm">
<tr th:if="${#lists.isEmpty(dotations)}"> <tr th:if="${#lists.isEmpty(dotations)}">
<td colspan="7" class="py-8 text-center text-gray-500">Aucun résultat trouvé pour cette recherche.</td> <td colspan="8" class="py-8 text-center text-gray-500">Aucun résultat trouvé pour cette recherche.</td>
</tr> </tr>
<tr th:each="dotation : ${dotations}" class="hover:bg-gray-50"> <tr th:each="dotation : ${dotations}" class="hover:bg-gray-50">
<td class="py-3 px-4 font-medium text-gray-900"> <td class="py-3 px-4 font-medium text-gray-900">
@@ -85,6 +104,12 @@
<div th:if="${dotation.flocage != null && !dotation.flocage.isEmpty()}" th:text="'F: ' + ${dotation.flocage}">Flocage</div> <div th:if="${dotation.flocage != null && !dotation.flocage.isEmpty()}" th:text="'F: ' + ${dotation.flocage}">Flocage</div>
<div th:if="${dotation.numero != null && !dotation.numero.isEmpty()}" th:text="'N: ' + ${dotation.numero}"></div> <div th:if="${dotation.numero != null && !dotation.numero.isEmpty()}" th:text="'N: ' + ${dotation.numero}"></div>
</td> </td>
<td class="py-3 px-4 text-center">
<span th:if="${dotation.commandee}" class="inline-flex items-center px-2 py-0.5 rounded text-xs font-medium bg-blue-100 text-blue-800" th:title="${dotation.dateCommande != null ? #temporals.format(dotation.dateCommande, 'dd/MM/yyyy HH:mm') : ''}">
Oui <span th:if="${dotation.dateCommande != null}" class="ml-1 text-[10px] text-blue-600" th:text="'(' + ${#temporals.format(dotation.dateCommande, 'dd/MM')} + ')'"></span>
</span>
<span th:unless="${dotation.commandee}" class="inline-flex items-center px-2 py-0.5 rounded text-xs font-medium bg-gray-100 text-gray-600">Non</span>
</td>
<td class="py-3 px-4 text-center"> <td class="py-3 px-4 text-center">
<span th:if="${dotation.fourni}" class="inline-flex items-center px-2 py-0.5 rounded text-xs font-medium bg-green-100 text-green-800">Oui</span> <span th:if="${dotation.fourni}" class="inline-flex items-center px-2 py-0.5 rounded text-xs font-medium bg-green-100 text-green-800">Oui</span>
<span th:unless="${dotation.fourni}" class="inline-flex items-center px-2 py-0.5 rounded text-xs font-medium bg-red-100 text-red-800">Non</span> <span th:unless="${dotation.fourni}" class="inline-flex items-center px-2 py-0.5 rounded text-xs font-medium bg-red-100 text-red-800">Non</span>
@@ -106,12 +131,12 @@
<div class="flex items-center space-x-2" th:if="${totalPages > 1}"> <div class="flex items-center space-x-2" th:if="${totalPages > 1}">
<!-- Page Précédente --> <!-- Page Précédente -->
<a th:if="${currentPage > 0}" <a th:if="${currentPage > 0}"
th:href="@{/admin/equipements/recherche(equipementId=${equipementId},categorieId=${categorieId},fourni=${fourni},page=${currentPage - 1})}" th:href="@{/admin/equipements/recherche(equipementId=${equipementId},categorieId=${categorieId},fourni=${fourni},commandee=${commandee},page=${currentPage - 1})}"
hx-get="/admin/equipements/recherche" hx-get="/admin/equipements/recherche"
hx-target="#equipements-table-container" hx-target="#equipements-table-container"
hx-select="#equipements-table-container" hx-select="#equipements-table-container"
hx-push-url="true" hx-push-url="true"
th:attr="hx-vals=|{&quot;equipementId&quot;: &quot;${equipementId != null ? equipementId : ''}&quot;, &quot;categorieId&quot;: &quot;${categorieId != null ? categorieId : ''}&quot;, &quot;fourni&quot;: &quot;${fourni != null ? fourni : ''}&quot;, &quot;page&quot;: ${currentPage - 1}}|" th:attr="hx-vals=|{&quot;equipementId&quot;: &quot;${equipementId != null ? equipementId : ''}&quot;, &quot;categorieId&quot;: &quot;${categorieId != null ? categorieId : ''}&quot;, &quot;fourni&quot;: &quot;${fourni != null ? fourni : ''}&quot;, &quot;commandee&quot;: &quot;${commandee != null ? commandee : ''}&quot;, &quot;page&quot;: ${currentPage - 1}}|"
class="px-3 py-1 border border-gray-300 rounded hover:bg-gray-100 transition-colors"> class="px-3 py-1 border border-gray-300 rounded hover:bg-gray-100 transition-colors">
Précédent Précédent
</a> </a>
@@ -121,12 +146,12 @@
<!-- Numéros de pages --> <!-- Numéros de pages -->
<th:block th:each="pageNum : ${#numbers.sequence(0, totalPages - 1)}" th:if="${totalPages > 0}"> <th:block th:each="pageNum : ${#numbers.sequence(0, totalPages - 1)}" th:if="${totalPages > 0}">
<a th:href="@{/admin/equipements/recherche(equipementId=${equipementId},categorieId=${categorieId},fourni=${fourni},page=${pageNum})}" <a th:href="@{/admin/equipements/recherche(equipementId=${equipementId},categorieId=${categorieId},fourni=${fourni},commandee=${commandee},page=${pageNum})}"
hx-get="/admin/equipements/recherche" hx-get="/admin/equipements/recherche"
hx-target="#equipements-table-container" hx-target="#equipements-table-container"
hx-select="#equipements-table-container" hx-select="#equipements-table-container"
hx-push-url="true" hx-push-url="true"
th:attr="hx-vals=|{&quot;equipementId&quot;: &quot;${equipementId != null ? equipementId : ''}&quot;, &quot;categorieId&quot;: &quot;${categorieId != null ? categorieId : ''}&quot;, &quot;fourni&quot;: &quot;${fourni != null ? fourni : ''}&quot;, &quot;page&quot;: ${pageNum}}|" th:attr="hx-vals=|{&quot;equipementId&quot;: &quot;${equipementId != null ? equipementId : ''}&quot;, &quot;categorieId&quot;: &quot;${categorieId != null ? categorieId : ''}&quot;, &quot;fourni&quot;: &quot;${fourni != null ? fourni : ''}&quot;, &quot;commandee&quot;: &quot;${commandee != null ? commandee : ''}&quot;, &quot;page&quot;: ${pageNum}}|"
th:text="${pageNum + 1}" th:text="${pageNum + 1}"
class="px-3 py-1 rounded transition-colors" class="px-3 py-1 rounded transition-colors"
th:classappend="${currentPage == pageNum ? 'bg-blue-600 text-white' : 'border border-gray-300 hover:bg-gray-100'}"> th:classappend="${currentPage == pageNum ? 'bg-blue-600 text-white' : 'border border-gray-300 hover:bg-gray-100'}">
@@ -136,12 +161,12 @@
<!-- Page Suivante --> <!-- Page Suivante -->
<a th:if="${currentPage < totalPages - 1}" <a th:if="${currentPage < totalPages - 1}"
th:href="@{/admin/equipements/recherche(equipementId=${equipementId},categorieId=${categorieId},fourni=${fourni},page=${currentPage + 1})}" th:href="@{/admin/equipements/recherche(equipementId=${equipementId},categorieId=${categorieId},fourni=${fourni},commandee=${commandee},page=${currentPage + 1})}"
hx-get="/admin/equipements/recherche" hx-get="/admin/equipements/recherche"
hx-target="#equipements-table-container" hx-target="#equipements-table-container"
hx-select="#equipements-table-container" hx-select="#equipements-table-container"
hx-push-url="true" hx-push-url="true"
th:attr="hx-vals=|{&quot;equipementId&quot;: &quot;${equipementId != null ? equipementId : ''}&quot;, &quot;categorieId&quot;: &quot;${categorieId != null ? categorieId : ''}&quot;, &quot;fourni&quot;: &quot;${fourni != null ? fourni : ''}&quot;, &quot;page&quot;: ${currentPage + 1}}|" th:attr="hx-vals=|{&quot;equipementId&quot;: &quot;${equipementId != null ? equipementId : ''}&quot;, &quot;categorieId&quot;: &quot;${categorieId != null ? categorieId : ''}&quot;, &quot;fourni&quot;: &quot;${fourni != null ? fourni : ''}&quot;, &quot;commandee&quot;: &quot;${commandee != null ? commandee : ''}&quot;, &quot;page&quot;: ${currentPage + 1}}|"
class="px-3 py-1 border border-gray-300 rounded hover:bg-gray-100 transition-colors"> class="px-3 py-1 border border-gray-300 rounded hover:bg-gray-100 transition-colors">
Suivant Suivant
</a> </a>
+17 -2
View File
@@ -24,6 +24,14 @@ services:
- db - db
restart: always restart: always
mailpit:
image: axllent/mailpit
container_name: astalange_mailpit
ports:
- "1025:1025"
- "8025:8025"
restart: always
app: app:
build: build:
context: . context: .
@@ -35,10 +43,17 @@ services:
- SPRING_DATASOURCE_URL=jdbc:postgresql://db:5432/astalange - SPRING_DATASOURCE_URL=jdbc:postgresql://db:5432/astalange
- SPRING_DATASOURCE_USERNAME=${POSTGRES_USER:-myuser} - SPRING_DATASOURCE_USERNAME=${POSTGRES_USER:-myuser}
- SPRING_DATASOURCE_PASSWORD=${POSTGRES_PASSWORD:-mypassword} - SPRING_DATASOURCE_PASSWORD=${POSTGRES_PASSWORD:-mypassword}
- CAPTCHA_SITEKEY=${CAPTCHA_SITEKEY} - SPRING_MAIL_HOST=${SPRING_MAIL_HOST:-mailpit}
- CAPTCHA_SECRET=${CAPTCHA_SECRET} - SPRING_MAIL_PORT=${SPRING_MAIL_PORT:-1025}
- SPRING_MAIL_USERNAME=${SPRING_MAIL_USERNAME:-}
- SPRING_MAIL_PASSWORD=${SPRING_MAIL_PASSWORD:-}
- SPRING_MAIL_PROPERTIES_MAIL_SMTP_AUTH=${SPRING_MAIL_PROPERTIES_MAIL_SMTP_AUTH:-false}
- SPRING_MAIL_PROPERTIES_MAIL_SMTP_STARTTLS_ENABLE=${SPRING_MAIL_PROPERTIES_MAIL_SMTP_STARTTLS_ENABLE:-false}
- CAPTCHA_SITEKEY=${CAPTCHA_SITEKEY:-}
- CAPTCHA_SECRET=${CAPTCHA_SECRET:-}
depends_on: depends_on:
- db - db
- mailpit
restart: always restart: always
volumes: volumes:
+1 -1
View File
@@ -13,7 +13,7 @@
<groupId>com.astalange</groupId> <groupId>com.astalange</groupId>
<artifactId>as-talange-parent</artifactId> <artifactId>as-talange-parent</artifactId>
<version>1.6</version> <version>1.7-SNAPSHOT</version>
<packaging>pom</packaging> <packaging>pom</packaging>
<name>as-talange-parent</name> <name>as-talange-parent</name>