Search in sources :

Example 1 with WSPjInfo

use of fr.univlorraine.ecandidat.entities.siscol.WSPjInfo in project esup-ecandidat by EsupPortail.

the class CandidatPieceController method recordPjFromApo.

/**
 * Insere les nouvelles pièces
 * @param candidat
 * @throws SiScolException
 */
@Transactional(rollbackFor = SiScolException.class)
private void recordPjFromApo(final Candidat candidat) throws SiScolException {
    if (candidat == null || candidat.getCompteMinima().getSupannEtuIdCptMin() == null || !isWsPJEnable()) {
        return;
    }
    // on collecte les code Apogee de pieces et on constitue une liste de codeApogee distinct
    List<String> listeCodeApo = pieceJustifController.getAllPieceJustifs().stream().filter(piece -> piece.getCodApoPj() != null && !piece.getCodApoPj().equals("")).map(PieceJustif::getCodApoPj).distinct().collect(Collectors.toList());
    List<PjCandidat> liste = new ArrayList<>();
    // on ajoute ses nouvelles pieces
    for (String codeTpj : listeCodeApo) {
        WSPjInfo info = siScolService.getPjInfoFromApogee(null, candidat.getCompteMinima().getSupannEtuIdCptMin(), codeTpj);
        if (info != null) {
            PjCandidatPK pk = new PjCandidatPK(candidat.getIdCandidat(), info.getCodAnu(), info.getCodTpj());
            PjCandidat pjCandidat = new PjCandidat();
            pjCandidat.setId(pk);
            pjCandidat.setNomFicPjCandidat(info.getNomFic());
            pjCandidat.setCandidat(candidat);
            if (info.getDatExp() != null) {
                pjCandidat.setDatExpPjCandidat(LocalDateTime.parse(info.getDatExp(), formatterDateTimeApoWsPj));
            }
            if (MethodUtils.validateBean(pjCandidat, logger)) {
                liste.add(pjCandidatRepository.save(pjCandidat));
            } else {
                throw new SiScolException("Erreur de validation");
            }
        }
    }
    candidat.setPjCandidats(liste);
}
Also used : SiScolGenericService(fr.univlorraine.ecandidat.services.siscol.SiScolGenericService) PieceJustif(fr.univlorraine.ecandidat.entities.ecandidat.PieceJustif) LocalDateTime(java.time.LocalDateTime) LoggerFactory(org.slf4j.LoggerFactory) UI(com.vaadin.ui.UI) WSPjInfo(fr.univlorraine.ecandidat.entities.siscol.WSPjInfo) ArrayList(java.util.ArrayList) PjCandidatRepository(fr.univlorraine.ecandidat.repositories.PjCandidatRepository) PjCandidatPK(fr.univlorraine.ecandidat.entities.ecandidat.PjCandidatPK) Notification(com.vaadin.ui.Notification) CandidatAdminListener(fr.univlorraine.ecandidat.utils.ListenerUtils.CandidatAdminListener) CompteMinima(fr.univlorraine.ecandidat.entities.ecandidat.CompteMinima) Logger(org.slf4j.Logger) ConstanteUtils(fr.univlorraine.ecandidat.utils.ConstanteUtils) MethodUtils(fr.univlorraine.ecandidat.utils.MethodUtils) Resource(javax.annotation.Resource) SiScolException(fr.univlorraine.ecandidat.services.siscol.SiScolException) Collectors(java.util.stream.Collectors) ApplicationContext(org.springframework.context.ApplicationContext) PjCandidat(fr.univlorraine.ecandidat.entities.ecandidat.PjCandidat) List(java.util.List) Component(org.springframework.stereotype.Component) Type(com.vaadin.ui.Notification.Type) DateTimeFormatter(java.time.format.DateTimeFormatter) Optional(java.util.Optional) Candidat(fr.univlorraine.ecandidat.entities.ecandidat.Candidat) ConfirmWindow(fr.univlorraine.ecandidat.views.windows.ConfirmWindow) InputStream(java.io.InputStream) Transactional(org.springframework.transaction.annotation.Transactional) PjCandidat(fr.univlorraine.ecandidat.entities.ecandidat.PjCandidat) WSPjInfo(fr.univlorraine.ecandidat.entities.siscol.WSPjInfo) ArrayList(java.util.ArrayList) PieceJustif(fr.univlorraine.ecandidat.entities.ecandidat.PieceJustif) SiScolException(fr.univlorraine.ecandidat.services.siscol.SiScolException) PjCandidatPK(fr.univlorraine.ecandidat.entities.ecandidat.PjCandidatPK) Transactional(org.springframework.transaction.annotation.Transactional)

Example 2 with WSPjInfo

use of fr.univlorraine.ecandidat.entities.siscol.WSPjInfo in project esup-ecandidat by EsupPortail.

the class SiScolController method testWSPJSiScolInfo.

/**
 * Teste du WS d'info de fichiers
 * @param codEtu
 * @param codTpj
 */
public void testWSPJSiScolInfo(final String codEtu, final String codTpj) {
    try {
        if (urlWsPjApogee == null || urlWsPjApogee.equals("")) {
            Notification.show(applicationContext.getMessage("version.ws.pj.noparam", new Object[] { ConstanteUtils.WS_APOGEE_PJ_URL_SERVICE + ConstanteUtils.WS_APOGEE_SERVICE_SUFFIXE }, UI.getCurrent().getLocale()), Type.WARNING_MESSAGE);
            return;
        }
        final WSPjInfo info = siScolService.getPjInfoFromApogee(null, codEtu, codTpj);
        String ret = "Pas d'info";
        if (info != null) {
            ret = "<u>PJ Information</u> : <br>" + info;
        }
        UI.getCurrent().addWindow(new InfoWindow(applicationContext.getMessage("version.ws.result", null, UI.getCurrent().getLocale()), ret, 500, 70));
    } catch (final Exception e) {
        Notification.show(applicationContext.getMessage("version.ws.error", null, UI.getCurrent().getLocale()), Type.WARNING_MESSAGE);
    }
}
Also used : WSPjInfo(fr.univlorraine.ecandidat.entities.siscol.WSPjInfo) InfoWindow(fr.univlorraine.ecandidat.views.windows.InfoWindow) SiScolException(fr.univlorraine.ecandidat.services.siscol.SiScolException)

Example 3 with WSPjInfo

use of fr.univlorraine.ecandidat.entities.siscol.WSPjInfo in project esup-ecandidat by EsupPortail.

the class TestWsController method testWs.

@SuppressWarnings("unchecked")
public void testWs() throws IOException {
    logger.info("********** Début des Tests des Webservices **********");
    final EntityManagerFactory emf = Persistence.createEntityManagerFactory("pun-jpa-siscol");
    final EntityManager em = emf.createEntityManager();
    final ResourceBundle bundle = ResourceBundle.getBundle("test-ws");
    final String codOpi = bundle.getString("opi.codOpi");
    try {
        logger.info("********** Vérifications OPI **********");
        final Candidature candOpi = candidatureRepository.findOne(Integer.valueOf(bundle.getString("opi.idCand")));
        if (countOpiData(em, "IND_OPI", codOpi) > 0) {
            throw new RuntimeException("Impossible de lancer les tests, nettoyez d'abord les OPI");
        }
        logger.info("********** Vérifications OPI terminée, lancement des tests **********");
        /* Checkine */
        logger.info("********** Vérifications Checkine **********");
        final Boolean isInes = siScolService.checkStudentINES(bundle.getString("checkine.ine"), bundle.getString("checkine.key"));
        if (!isInes) {
            throw new RuntimeException("Checkines ne fonctionne pas");
        } else {
            logger.info("Ok - " + bundle.getString("checkine.ine") + bundle.getString("checkine.key"));
        }
        /* Données individu */
        logger.info("********** Test Données individu **********");
        final String codEtu = bundle.getString("ind.codEtu");
        final WSIndividu ind = siScolService.getIndividu(codEtu, null, null);
        checkString(bundle, String.valueOf(ind.getCodEtu()), "ind.codEtu");
        checkString(bundle, String.valueOf(ind.getCodInd()), "ind.codInd");
        checkString(bundle, ind.getCodNneInd(), "ind.codNneInd");
        checkString(bundle, ind.getCodCleNneInd(), "ind.codCleNneInd");
        checkString(bundle, ind.getCodPayNai(), "ind.codPayNai");
        checkString(bundle, ind.getCodDepNai(), "ind.codDepNai");
        checkString(bundle, ind.getCodPayNat(), "ind.codPayNat");
        checkString(bundle, ind.getLibNomPatInd(), "ind.libNomPatInd");
        checkString(bundle, ind.getLibNomUsuInd(), "ind.libNomUsuInd");
        checkString(bundle, ind.getLibPr1Ind(), "ind.libPr1Ind");
        checkString(bundle, ind.getLibPr2Ind(), "ind.libPr2Ind");
        checkString(bundle, ind.getLibVilNaiEtu(), "ind.libVilNaiEtu");
        /* Données bac */
        logger.info("********** Test Données bac **********");
        final WSBac bac = ind.getBac();
        checkString(bundle, bac.getCodBac(), "bac.codBac");
        checkString(bundle, bac.getCodDep(), "bac.codDep");
        checkString(bundle, bac.getCodEtb(), "bac.codEtb");
        checkString(bundle, bac.getCodMnb(), "bac.codMnb");
        checkString(bundle, bac.getDaaObtBacIba(), "bac.daaObtBacIba");
        checkString(bundle, bac.getTemInsAdm(), "bac.temInsAdm");
        checkString(bundle, bac.getCodSpeBacPre(), "bac.codSpeBacPre");
        checkString(bundle, bac.getCodSpe1Bac(), "bac.codSpe1Bac");
        checkString(bundle, bac.getCodSpe2Bac(), "bac.codSpe2Bac");
        checkString(bundle, bac.getCodOpt1Bac(), "bac.codOpt1Bac");
        checkString(bundle, bac.getCodOpt2Bac(), "bac.codOpt2Bac");
        checkString(bundle, bac.getCodOpt3Bac(), "bac.codOpt3Bac");
        checkString(bundle, bac.getCodOpt4Bac(), "bac.codOpt4Bac");
        /* Données Adresse */
        logger.info("********** Test Données adresse **********");
        final WSAdresse adr = ind.getAdresse();
        checkString(bundle, adr.getCodBdi(), "adr.codBdi");
        checkString(bundle, adr.getCodCom(), "adr.codCom");
        checkString(bundle, adr.getCodPay(), "adr.codPay");
        checkString(bundle, adr.getLibAd1(), "adr.libAd1");
        checkString(bundle, adr.getLibAd2(), "adr.libAd2");
        checkString(bundle, adr.getLibAd3(), "adr.libAd3");
        checkString(bundle, adr.getLibAde(), "adr.libAde");
        checkString(bundle, adr.getNumTel(), "adr.numTel");
        checkString(bundle, adr.getNumTelPort(), "adr.numTelPort");
        /* Données Cursus (test de la taille de liste et de la premiere inscription) */
        logger.info("********** Test Données Cursus interne **********");
        final List<WSCursusInterne> listCursus = ind.getListCursusInterne();
        checkString(bundle, String.valueOf(listCursus.size()), "cursus.size");
        final WSCursusInterne cursus = listCursus.get(0);
        checkString(bundle, cursus.getCodVet(), "cursus.codVet");
        checkString(bundle, cursus.getLibVet(), "cursus.libVet");
        checkString(bundle, cursus.getCodAnu(), "cursus.codAnu");
        checkString(bundle, cursus.getCodMen(), "cursus.codMen");
        checkString(bundle, cursus.getCodTre(), "cursus.codTre");
        checkString(bundle, cursus.getNotVet(), "cursus.notVet");
        checkString(bundle, String.valueOf(cursus.getBarNotVet()), "cursus.barNotVet");
        /* Données PJ */
        logger.info("********** Test Données PJ **********");
        final WSPjInfo pjInfo = siScolService.getPjInfoFromApogee(bundle.getString("pj.codAnu"), bundle.getString("pj.codEtu"), bundle.getString("pj.codTpj"));
        checkString(bundle, pjInfo.getCodAnu(), "pj.codAnu");
        checkString(bundle, pjInfo.getCodTpj(), "pj.codTpj");
        checkString(bundle, pjInfo.getLibTpj(), "pj.libTpj");
        checkString(bundle, pjInfo.getNomFic(), "pj.nomFic");
        checkString(bundle, String.valueOf(pjInfo.getTemDemPJ()), "pj.temDemPJ");
        checkString(bundle, pjInfo.getStuPj(), "pj.stuPj");
        checkString(bundle, pjInfo.getMtfRefus(), "pj.mtfRefus");
        checkString(bundle, pjInfo.getCmtMtfRefus(), "pj.cmtMtfRefus");
        checkString(bundle, pjInfo.getDatDemPj(), "pj.datDemPj");
        checkString(bundle, pjInfo.getDatRecPj(), "pj.datRecPj");
        checkString(bundle, pjInfo.getDatRefus(), "pj.datRefus");
        checkString(bundle, pjInfo.getDatVal(), "pj.datVal");
        checkString(bundle, pjInfo.getDatExp(), "pj.datExp");
        checkString(bundle, pjInfo.getDaaPreTra(), "pj.daaPreTra");
        /* Données PJ */
        logger.info("********** Test Fichier PJ **********");
        final InputStream pjFichier = siScolService.getPjFichierFromApogee(bundle.getString("pj.codAnu"), bundle.getString("pj.codEtu"), bundle.getString("pj.codTpj"));
        final ByteArrayOutputStream out = new ByteArrayOutputStream();
        final byte[] bytes = new byte[1024];
        int count;
        while ((count = pjFichier.read(bytes)) > 0) {
            out.write(bytes, 0, count);
        }
        checkString(bundle, String.valueOf(out.size()), "filepj.size");
        logger.info("********** Test OPI **********");
        final Opi opi = opiRepository.findOne(candOpi.getIdCand());
        opi.setDatPassageOpi(null);
        opi.setCodOpi(null);
        opiRepository.save(opi);
        final PjOpiPK pk = new PjOpiPK(bundle.getString("opi.codOpi"), bundle.getString("opi.codTpj"));
        final PjOpi pj = pjOpiRepository.findOne(pk);
        pj.setDatDeversement(null);
        pjOpiRepository.save(pj);
        siScolService.creerOpiViaWS(candOpi.getCandidat(), true);
        logger.info("********** Vérification OPI **********");
        checkOpiData(em, "IND_OPI", codOpi);
        checkOpiData(em, "OPI_BAC", codOpi);
        checkOpiData(em, "VOEUX_INS", codOpi);
        checkOpiData(em, "ADRESSE_OPI", codOpi);
        checkOpiData(em, "OPI_PJ", codOpi);
        logger.info("********** Vérification OPI PJ **********");
        final String requete = "Select a from IndOpi a where a.codOpiIntEpo='" + codOpi + "'";
        final Query query = em.createQuery(requete, IndOpi.class);
        final List<IndOpi> lindopi = query.getResultList();
        final IndOpi indOpi = lindopi.get(0);
        final Session cmisSession = getCmisSession(bundle);
        final Folder folder = (Folder) cmisSession.getObject(cmisSession.createObjectId(bundle.getString("opi.pj.candidatureId")));
        final String pathDoc = folder.getPath() + "/" + indOpi.getCodIndOpi() + "_OPI/PJ_" + bundle.getString("pj.codTpj") + "_" + indOpi.getCodIndOpi() + bundle.getString("opi.pj.ext");
        logger.info("Recherche par path : " + pathDoc);
        final Document d = (Document) cmisSession.getObjectByPath(pathDoc);
        checkString(bundle, String.valueOf(d.getContentStreamLength()), "opi.pj.size");
        logger.info("********** Fin des Tests des Webservices **********");
    } catch (final Exception e) {
        e.printStackTrace();
    } finally {
        em.close();
    }
}
Also used : Query(javax.persistence.Query) WSIndividu(fr.univlorraine.ecandidat.entities.siscol.WSIndividu) PjOpiPK(fr.univlorraine.ecandidat.entities.ecandidat.PjOpiPK) PjOpi(fr.univlorraine.ecandidat.entities.ecandidat.PjOpi) Opi(fr.univlorraine.ecandidat.entities.ecandidat.Opi) IndOpi(fr.univlorraine.ecandidat.entities.siscol.IndOpi) Candidature(fr.univlorraine.ecandidat.entities.ecandidat.Candidature) Folder(org.apache.chemistry.opencmis.client.api.Folder) Document(org.apache.chemistry.opencmis.client.api.Document) WSAdresse(fr.univlorraine.ecandidat.entities.siscol.WSAdresse) WSCursusInterne(fr.univlorraine.ecandidat.entities.siscol.WSCursusInterne) WSPjInfo(fr.univlorraine.ecandidat.entities.siscol.WSPjInfo) InputStream(java.io.InputStream) IndOpi(fr.univlorraine.ecandidat.entities.siscol.IndOpi) ByteArrayOutputStream(java.io.ByteArrayOutputStream) IOException(java.io.IOException) EntityManager(javax.persistence.EntityManager) PjOpi(fr.univlorraine.ecandidat.entities.ecandidat.PjOpi) EntityManagerFactory(javax.persistence.EntityManagerFactory) WSBac(fr.univlorraine.ecandidat.entities.siscol.WSBac) ResourceBundle(java.util.ResourceBundle) Session(org.apache.chemistry.opencmis.client.api.Session)

Aggregations

WSPjInfo (fr.univlorraine.ecandidat.entities.siscol.WSPjInfo)3 SiScolException (fr.univlorraine.ecandidat.services.siscol.SiScolException)2 InputStream (java.io.InputStream)2 Notification (com.vaadin.ui.Notification)1 Type (com.vaadin.ui.Notification.Type)1 UI (com.vaadin.ui.UI)1 Candidat (fr.univlorraine.ecandidat.entities.ecandidat.Candidat)1 Candidature (fr.univlorraine.ecandidat.entities.ecandidat.Candidature)1 CompteMinima (fr.univlorraine.ecandidat.entities.ecandidat.CompteMinima)1 Opi (fr.univlorraine.ecandidat.entities.ecandidat.Opi)1 PieceJustif (fr.univlorraine.ecandidat.entities.ecandidat.PieceJustif)1 PjCandidat (fr.univlorraine.ecandidat.entities.ecandidat.PjCandidat)1 PjCandidatPK (fr.univlorraine.ecandidat.entities.ecandidat.PjCandidatPK)1 PjOpi (fr.univlorraine.ecandidat.entities.ecandidat.PjOpi)1 PjOpiPK (fr.univlorraine.ecandidat.entities.ecandidat.PjOpiPK)1 IndOpi (fr.univlorraine.ecandidat.entities.siscol.IndOpi)1 WSAdresse (fr.univlorraine.ecandidat.entities.siscol.WSAdresse)1 WSBac (fr.univlorraine.ecandidat.entities.siscol.WSBac)1 WSCursusInterne (fr.univlorraine.ecandidat.entities.siscol.WSCursusInterne)1 WSIndividu (fr.univlorraine.ecandidat.entities.siscol.WSIndividu)1