Search in sources :

Example 6 with PresentableUnloggedException

use of com.crivano.swaggerservlet.PresentableUnloggedException in project balcaovirtual by trf2-jus-br.

the class ProcessoValidarGet method isValidToken.

public static boolean isValidToken(String token, String processo) throws PresentableUnloggedException {
    if (token == null || processo == null)
        return false;
    Map<String, Object> m;
    try {
        m = verify(token);
    } catch (Exception ex) {
        throw new PresentableUnloggedException("Token de consulta pública inválido inválido", ex);
    }
    String[] numeros = ((String) m.get("proc")).split(",");
    if (!Arrays.asList(numeros).contains(processo))
        throw new PresentableUnloggedException("Token de consulta pública com número de processo inválido");
    return true;
}
Also used : PresentableUnloggedException(com.crivano.swaggerservlet.PresentableUnloggedException) JWTVerifyException(com.auth0.jwt.JWTVerifyException) PresentableException(com.crivano.swaggerservlet.PresentableException) SignatureException(java.security.SignatureException) IOException(java.io.IOException) PresentableUnloggedException(com.crivano.swaggerservlet.PresentableUnloggedException) NoSuchAlgorithmException(java.security.NoSuchAlgorithmException) InvalidKeyException(java.security.InvalidKeyException)

Example 7 with PresentableUnloggedException

use of com.crivano.swaggerservlet.PresentableUnloggedException in project balcaovirtual by trf2-jus-br.

the class VotosIdConsultarMinutaGet method run.

@Override
public void run(Request req, Response resp, BalcaojusContext ctx) throws Exception {
    if (!req.sistema.contains(".eproc"))
        throw new Exception("Operação disponível apenas para o Eproc");
    Usuario u = BalcaojusServlet.getPrincipal();
    if (u.usuarios.get(req.sistema) == null)
        throw new PresentableUnloggedException("Login inválido para " + Utils.getName(req.sistema));
    IUsuarioUsernameVotosIdMinutasId2Get.Request q = new IUsuarioUsernameVotosIdMinutasId2Get.Request();
    Future<SwaggerAsyncResponse<IUsuarioUsernameVotosIdMinutasId2Get.Response>> future = SwaggerCall.callAsync(getContext(), Utils.getApiEprocPassword(req.sistema), "GET", Utils.getApiEprocVotosUrl(req.sistema) + "/minuta?idminuta=" + req.idminuta, q, IUsuarioUsernameVotosIdMinutasId2Get.Response.class);
    SwaggerAsyncResponse<IUsuarioUsernameVotosIdMinutasId2Get.Response> sar = future.get();
    if (sar.getException() != null)
        throw sar.getException();
    IUsuarioUsernameVotosIdMinutasId2Get.Response r = (IUsuarioUsernameVotosIdMinutasId2Get.Response) sar.getResp();
    resp.status = r.status;
    resp.html = r.html;
}
Also used : SwaggerAsyncResponse(com.crivano.swaggerservlet.SwaggerAsyncResponse) SwaggerAsyncResponse(com.crivano.swaggerservlet.SwaggerAsyncResponse) Usuario(br.jus.trf2.balcaojus.AutenticarPost.Usuario) PresentableUnloggedException(com.crivano.swaggerservlet.PresentableUnloggedException) IUsuarioUsernameVotosIdMinutasId2Get(br.jus.trf2.sistemaprocessual.ISistemaProcessual.IUsuarioUsernameVotosIdMinutasId2Get) PresentableUnloggedException(com.crivano.swaggerservlet.PresentableUnloggedException)

Example 8 with PresentableUnloggedException

use of com.crivano.swaggerservlet.PresentableUnloggedException in project balcaovirtual by trf2-jus-br.

the class ProcessoNumeroNotaGet method run.

@Override
public void run(Request req, Response resp, BalcaojusContext ctx) throws Exception {
    Usuario u = BalcaojusServlet.getPrincipal();
    if (u.usuarios == null)
        throw new PresentableException("Usuário não possui identificador e unidade");
    UsuarioDetalhe ud = u.usuarios.get(req.sistema.toLowerCase());
    if (ud == null)
        throw new PresentableUnloggedException("disabled");
    resp.list = new ArrayList<>();
    try (Dao dao = new Dao()) {
        Processo p = dao.obtemProcesso(req.numero, req.sistema, false);
        if (p == null)
            return;
        List<Nota> l = dao.obtemNotas(p, ud.id, ud.codunidade);
        if (l == null)
            return;
        for (Nota nota : l) {
            br.jus.trf2.balcaojus.IBalcaojus.Nota m = new br.jus.trf2.balcaojus.IBalcaojus.Nota();
            m.idnota = Long.toString(nota.getNotaId());
            m.texto = nota.getNotaTxConteudo();
            m.pessoal = nota.getNotaLgPessoal();
            m.nomeusuario = nota.getNotaNmUsu();
            m.dataalteracao = nota.getNotaDfAlteracao();
            resp.list.add(m);
        }
    }
}
Also used : Usuario(br.jus.trf2.balcaojus.AutenticarPost.Usuario) Nota(br.jus.trf2.balcaojus.model.Nota) Processo(br.jus.trf2.balcaojus.model.Processo) PresentableUnloggedException(com.crivano.swaggerservlet.PresentableUnloggedException) PresentableException(com.crivano.swaggerservlet.PresentableException) UsuarioDetalhe(br.jus.trf2.balcaojus.AutenticarPost.UsuarioDetalhe)

Example 9 with PresentableUnloggedException

use of com.crivano.swaggerservlet.PresentableUnloggedException in project balcaovirtual by trf2-jus-br.

the class ProcessoNumeroNotaIdPut method run.

@Override
public void run(Request req, Response resp, BalcaojusContext ctx) throws Exception {
    Usuario u = BalcaojusServlet.getPrincipal();
    UsuarioDetalhe ud = u.usuarios.get(req.sistema.toLowerCase());
    if (ud == null)
        throw new PresentableUnloggedException("Usuário '" + u.usuario + "' não pode fazer anotações porque não foi autenticado no órgão '" + req.sistema + "'.");
    try (Dao dao = new Dao()) {
        Processo p = dao.obtemProcesso(req.numero, req.sistema, true);
        dao.beginTransaction();
        Nota nota = dao.find(Nota.class, Long.valueOf(req.id));
        if (nota == null)
            throw new PresentableUnloggedException("Esta nota foi removida por outro usuário, suas alterações não serão gravadas. Por favor, recarregue esta página e aplique novamente suas alterações.");
        if (nota.getNotaDfAlteracao().getTime() != req.dataalteracao.getTime())
            throw new PresentableUnloggedException("Esta nota foi alterada por outro usuário, suas alterações não serão gravadas. Por favor, recarregue esta página e aplique novamente suas alterações.");
        if (p != nota.getProcesso())
            throw new Exception("identificadores de processo inválidos");
        nota.setNotaId(Long.valueOf(req.id));
        nota.setNotaTxConteudo(req.texto);
        nota.setNotaLgInterno(u.isInterno());
        nota.setNotaCdUsu(u.usuario);
        nota.setNotaNmUsu(u.nome);
        nota.setNotaIeUnidade(ud.codunidade);
        nota.setNotaIeUsu(ud.id);
        nota.setNotaDfAlteracao(dao.obtemData());
        dao.persist(nota);
        resp.nota = new br.jus.trf2.balcaojus.IBalcaojus.Nota();
        resp.nota.idnota = Long.toString(nota.getNotaId());
        resp.nota.pessoal = nota.getNotaLgPessoal();
        resp.nota.texto = nota.getNotaTxConteudo();
        resp.nota.dataalteracao = nota.getNotaDfAlteracao();
        resp.nota.nomeusuario = nota.getNotaNmUsu();
    } catch (Exception e) {
        Dao.rollbackCurrentTransaction();
        throw e;
    }
}
Also used : Processo(br.jus.trf2.balcaojus.model.Processo) Usuario(br.jus.trf2.balcaojus.AutenticarPost.Usuario) PresentableUnloggedException(com.crivano.swaggerservlet.PresentableUnloggedException) Nota(br.jus.trf2.balcaojus.model.Nota) PresentableUnloggedException(com.crivano.swaggerservlet.PresentableUnloggedException) UsuarioDetalhe(br.jus.trf2.balcaojus.AutenticarPost.UsuarioDetalhe)

Example 10 with PresentableUnloggedException

use of com.crivano.swaggerservlet.PresentableUnloggedException in project balcaovirtual by trf2-jus-br.

the class VotosIdDivergirPost method run.

@Override
public void run(Request req, Response resp, BalcaojusContext ctx) throws Exception {
    if (!req.sistema.contains(".eproc"))
        throw new Exception("Operação disponível apenas para o Eproc");
    Usuario u = BalcaojusServlet.getPrincipal();
    if (u.usuarios.get(req.sistema) == null)
        throw new PresentableUnloggedException("Login inválido para " + Utils.getName(req.sistema));
    IUsuarioUsernameVotosIdDivergirPost.Request q = new IUsuarioUsernameVotosIdDivergirPost.Request();
    Future<SwaggerAsyncResponse<IUsuarioUsernameVotosIdDivergirPost.Response>> future = SwaggerCall.callAsync(getContext(), Utils.getApiEprocPassword(req.sistema), "POST", Utils.getApiEprocVotosUrl(req.sistema) + "/acompanha_divergencia?sigla=" + u.usuario + "&id_sessao_item=" + req.id, q, IUsuarioUsernameVotosIdDivergirPost.Response.class);
    SwaggerAsyncResponse<IUsuarioUsernameVotosIdDivergirPost.Response> sar = future.get();
    if (sar.getException() != null)
        throw sar.getException();
    IUsuarioUsernameVotosIdDivergirPost.Response r = (IUsuarioUsernameVotosIdDivergirPost.Response) sar.getResp();
    resp.status = r.status;
    resp.voto = VotosGet.buildVoto(req.sistema, r.voto);
}
Also used : SwaggerAsyncResponse(com.crivano.swaggerservlet.SwaggerAsyncResponse) SwaggerAsyncResponse(com.crivano.swaggerservlet.SwaggerAsyncResponse) Usuario(br.jus.trf2.balcaojus.AutenticarPost.Usuario) PresentableUnloggedException(com.crivano.swaggerservlet.PresentableUnloggedException) IUsuarioUsernameVotosIdDivergirPost(br.jus.trf2.sistemaprocessual.ISistemaProcessual.IUsuarioUsernameVotosIdDivergirPost) PresentableUnloggedException(com.crivano.swaggerservlet.PresentableUnloggedException)

Aggregations

PresentableUnloggedException (com.crivano.swaggerservlet.PresentableUnloggedException)28 Usuario (br.jus.trf2.balcaojus.AutenticarPost.Usuario)19 UsuarioDetalhe (br.jus.trf2.balcaojus.AutenticarPost.UsuarioDetalhe)8 PresentableException (com.crivano.swaggerservlet.PresentableException)8 SwaggerAsyncResponse (com.crivano.swaggerservlet.SwaggerAsyncResponse)8 Processo (br.jus.trf2.balcaojus.model.Processo)6 Nota (br.jus.trf2.balcaojus.model.Nota)4 FetchResponse (br.jus.trf2.balcaojus.CertidaoEmitirRequisitanteCpfcnpjPost.FetchResponse)3 TipoProcessoJudicial (br.jus.cnj.intercomunicacao_2_2.TipoProcessoJudicial)2 ServicoIntercomunicacao222 (br.jus.cnj.servico_intercomunicacao_2_2.ServicoIntercomunicacao222)2 IUsuarioUsernameMesaIdDocumentoId2SalvarPost (br.jus.trf2.sistemaprocessual.ISistemaProcessual.IUsuarioUsernameMesaIdDocumentoId2SalvarPost)2 JWTVerifyException (com.auth0.jwt.JWTVerifyException)2 IOException (java.io.IOException)2 InvalidKeyException (java.security.InvalidKeyException)2 NoSuchAlgorithmException (java.security.NoSuchAlgorithmException)2 SignatureException (java.security.SignatureException)2 ArrayList (java.util.ArrayList)2 SOAPException (javax.xml.soap.SOAPException)2 TransformerException (javax.xml.transform.TransformerException)2 Holder (javax.xml.ws.Holder)2