captcha_download_jucesp <- function(path) {
u <- "https://www.jucesponline.sp.gov.br/Pre_Visualiza.aspx?idproduto=&nire=35222827792"
r0 <- httr::GET(u)
guid <- stringr::str_extract(httr::content(r0, "text"), "(?<=guid=)[^\"]+")
u_captcha <- paste0("https://www.jucesponline.sp.gov.br/CaptchaImage.aspx?guid=", guid)
f_captcha <- fs::file_temp(
pattern = "jucesp",
tmp_dir = path,
ext = ".jpeg"
)
r_captcha <- httr::GET(u_captcha, httr::write_disk(f_captcha, TRUE))
f_captcha
}
# captcha_oracle_jucesp <- function(path, model = NULL) {
#
# # path <- "data-raw/tests/"
# # model <- NULL
#
# u <- "https://www.jucesponline.sp.gov.br/Pre_Visualiza.aspx?idproduto=&nire=35222827792"
# r0 <- httr::GET(u)
# h <- xml2::read_html(r0)
# vs <- scrapr::html_viewstate(h)
# ev <- scrapr::html_eventval(h)
# guid <- stringr::str_extract(httr::content(r0, "text"), "(?<=guid=)[^\"]+")
# u_captcha <- paste0("https://www.jucesponline.sp.gov.br/CaptchaImage.aspx?guid=", guid)
#
# f_captcha <- fs::file_temp(
# pattern = "jucesp",
# tmp_dir = path,
# ext = ".jpeg"
# )
#
# r_captcha <- httr::GET(u_captcha, httr::write_disk(f_captcha, TRUE))
#
# if (is.null(model)) {
# label <- captcha_label(f_captcha)
# } else {
# label <- captcha::decrypt(f_captcha, model)
# }
#
# ## teste aceita varios chutes
# # label_bkp <- label
# # label <- "12345"
# # label <- label_bkp
#
# parm <- list(
# "ctl00$ajaxMaster" = "ctl00$cphContent$ajaxForm|ctl00$cphContent$frmPreVisualiza$btEntrar",
# "ctl00$frmLogin$txtLogin" = "",
# "ctl00$frmLogin$tweLogin_ClientState" = "",
# "ctl00$frmLogin$txtSenha" = "",
# "ctl00$frmLogin$tweSenha_ClientState" = "",
# "ctl00$cphContent$frmPreVisualiza$CaptchaControl1" = label,
# "__EVENTTARGET" = "",
# "__EVENTARGUMENT" = "",
# "__VIEWSTATE" = vs,
# "__VIEWSTATEGENERATOR" = "BE1E90E5",
# "__EVENTVALIDATION" = ev,
# "ctl00$cphContent$frmPreVisualiza$btEntrar" = "Continuar"
# )
#
# r_final <- httr::POST(u, body = parm)
#
# acertou <- r_final %>%
# xml2::read_html() %>%
# xml2::xml_find_first(".//*[@id='dados']") %>%
# xml2::xml_text() %>%
# stringr::str_squish() %>%
# stringr::str_detect("TERRANOVA CONSULTORIA") %>%
# isTRUE()
#
# lab_oracle <- paste0(label, "_", as.character(as.numeric(acertou)))
# captcha::classify(f_captcha, lab_oracle, rm_old = TRUE)
# }
# captcha_oracle_jucesp_com_feedback <- function(path, model = NULL, max_ntry = 0) {
#
# # path <- "data-raw/trt/"
# # model <- NULL
#
# fs::dir_create(path)
# u <- "https://www.jucesponline.sp.gov.br/Pre_Visualiza.aspx?idproduto=&nire=35222827792"
# httr::handle_reset(u)
# r0 <- httr::GET(u)
# h <- xml2::read_html(r0)
# vs <- scrapr::html_viewstate(h)
# ev <- scrapr::html_eventval(h)
# guid <- stringr::str_extract(httr::content(r0, "text"), "(?<=guid=)[^\"]+")
# u_captcha <- paste0("https://www.jucesponline.sp.gov.br/CaptchaImage.aspx?guid=", guid)
#
# f_captcha <- fs::file_temp(
# pattern = "jucesp",
# tmp_dir = path,
# ext = ".jpeg"
# )
#
# r_captcha <- httr::GET(u_captcha, httr::write_disk(f_captcha, TRUE))
#
# if (is.null(model)) {
# label <- captcha_label(f_captcha)
# } else {
# label <- captcha_candidates(f_captcha, model, n = 1)
# }
# # browser()
#
# Sys.sleep(3)
# acertou <- captcha_jucesp_test(label[1], vs, ev)
# if (!acertou) {
# usethis::ui_oops("Errou com '{label[1]}'")
# # label <- captcha_label(f_captcha)
# # acertou <- 1
# } else {
# usethis::ui_done("Acertou!!!")
# }
# label <- label[1]
# lab_oracle <- paste0(label, "_", as.character(as.numeric(acertou)))
# captcha::classify(f_captcha, lab_oracle, rm_old = TRUE)
# }
captcha_access_jucesp <- function(path) {
u <- "https://www.jucesponline.sp.gov.br/Pre_Visualiza.aspx?idproduto=&nire=35222827792"
f_captcha <- fs::file_temp(
pattern = "jucesp",
tmp_dir = path,
ext = ".jpeg"
)
httr::handle_reset(u)
r0 <- httr::GET(u)
h <- xml2::read_html(r0)
vs <- scrapr::html_viewstate(h)
ev <- scrapr::html_eventval(h)
guid <- stringr::str_extract(httr::content(r0, "text"), "(?<=guid=)[^\"]+")
u_captcha <- paste0("https://www.jucesponline.sp.gov.br/CaptchaImage.aspx?guid=", guid)
r_captcha <- httr::GET(u_captcha, httr::write_disk(f_captcha, TRUE))
list(f_captcha = f_captcha, vs = vs, ev = ev)
}
captcha_test_jucesp <- function(obj, label) {
u <- "https://www.jucesponline.sp.gov.br/Pre_Visualiza.aspx?idproduto=&nire=35222827792"
parm <- list(
"ctl00$ajaxMaster" = "ctl00$cphContent$ajaxForm|ctl00$cphContent$frmPreVisualiza$btEntrar",
"ctl00$frmLogin$txtLogin" = "",
"ctl00$frmLogin$tweLogin_ClientState" = "",
"ctl00$frmLogin$txtSenha" = "",
"ctl00$frmLogin$tweSenha_ClientState" = "",
"ctl00$cphContent$frmPreVisualiza$CaptchaControl1" = label,
"__EVENTTARGET" = "",
"__EVENTARGUMENT" = "",
"__VIEWSTATE" = obj$vs,
"__VIEWSTATEGENERATOR" = "BE1E90E5",
"__EVENTVALIDATION" = obj$ev,
"__ASYNCPOST" = "false",
"ctl00$cphContent$frmPreVisualiza$btEntrar" = "Continuar"
)
# browser()
Sys.sleep(3)
r_final <- httr::POST(u, body = parm, encode = "form")
acertou <- r_final %>%
xml2::read_html() %>%
xml2::xml_find_first(".//*[@id='dados']") %>%
xml2::xml_text() %>%
stringr::str_squish() %>%
stringr::str_detect("TERRANOVA CONSULTORIA") %>%
isTRUE()
acertou
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.