Skip to content

Commit

Permalink
Feat: Adiciona comarca ao cjsg
Browse files Browse the repository at this point in the history
  • Loading branch information
jjesusfilho committed Aug 14, 2024
1 parent 74f093f commit f7dab83
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
21 changes: 20 additions & 1 deletion R/tjsp_baixar_cjsg.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#' @param fim Data final julgamento
#' @param inicio_pb data inicial registro/publicação
#' @param fim_pb data final registr/publicacao
#' @param comarca Vetor de códigos das comarcas
#' @param sg "T" para origem segundo grau
#' @param cr "R" para origem colégio recursal
#' @param tipo "A" Para acórdãos, "D" para decisões monocráticas
Expand Down Expand Up @@ -38,6 +39,7 @@ tjsp_baixar_cjsg <-
fim = "",
inicio_pb = "",
fim_pb = "",
comarca = "",
sg = "T",
cr = "",
tipo = "A",
Expand Down Expand Up @@ -73,6 +75,7 @@ tjsp_baixar_cjsg <-
fim = .y,
inicio_pb = inicio_pb,
fim_pb = fim_pb,
comarca = comarca,
sg = sg,
cr = cr,
tipo = tipo,
Expand Down Expand Up @@ -123,6 +126,7 @@ tjsp_baixar_cjsg <-
fim = fim,
inicio_pb = inicio_pb,
fim_pb = fim_pb,
comarca = comarca,
sg = sg,
cr = cr,
tipo,
Expand Down Expand Up @@ -232,7 +236,7 @@ verificar_datas <- function(inicio, fim, inicio_pb, fim_pb){

tjsp_baixar_cjsg1 <- function (livre = "", ementa = "", processo = "", classe = "",
assunto = "", orgao_julgador = "", inicio = "", fim = "",
inicio_pb = "", fim_pb = "", sg = "T", cr = "", tipo = "A",
inicio_pb = "", fim_pb = "",comarca = "", sg = "T", cr = "", tipo = "A",
n = NULL, diretorio = ".", aspas = FALSE) {

httr::set_config(httr::config(ssl_verifypeer = FALSE, accept_encoding = "latin1"))
Expand Down Expand Up @@ -280,6 +284,21 @@ tjsp_baixar_cjsg1 <- function (livre = "", ementa = "", processo = "", classe =
dados.ordenacao = "dtPublicacao"
)

if (any(comarca != "")){

body$contadorcomarca <- length(comarca)
body$contadorMaiorcomarca <- length(comarca)

for(i in 1:length(comarca)){

body <- append(body, comarca[i])

names(body)[length(body)]<- glue::glue("dadosComarca[{i}].cdComarca")

}

}

response <- httr::POST(link_cjsg, encode = "form", body = body,
httr::accept("text/html; charset=latin1;"))

Expand Down
3 changes: 3 additions & 0 deletions man/tjsp_baixar_cjsg.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions man/tjsp_baixar_cjsg1.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f7dab83

Please sign in to comment.