#library(meetupr)
library(httr)
library(jsonlite)
# Wrapper for messages, spotted in googlesheets3
spf <- function(...) stop(sprintf(...), call. = FALSE)
#internals.R from rladies/meetupr package
# This helper function makes a single call, given the full API endpoint URL
# Used as the workhorse function inside .fetch_results() below
.quick_fetch <- function(api_url,
event_status = NULL,
offset = 0,
api_key = NULL,
...) {
# list of parameters
parameters <- list(status = event_status, # you need to add the status
# otherwise it will get only the upcoming event
offset = offset,
... # other parameters
)
# Only need API keys if OAuth is disabled...
if (!getOption("meetupr.use_oauth")) {
parameters <- append(parameters, list(key = get_api_key()))
}
req <- httr::GET(url = api_url, # the endpoint
query = parameters,
config = meetup_token()
)
httr::stop_for_status(req)
reslist <- httr::content(req, "parsed")
if (length(reslist) == 0) {
#stop("Zero records match your filter. Nothing to return.\n",
# call. = FALSE)
return(list(result = list(), headers = req$headers))
}
return(list(result = reslist, headers = req$headers))
}
# Fetch all the results of a query given an API Method
# Will make multiple calls to the API if needed
# API Methods listed here: https://www.meetup.com/meetup_api/docs/
.fetch_results <- function(api_method, api_key = NULL, event_status = NULL, ...) {
# Build the API endpoint URL
meetup_api_prefix <- "https://api.meetup.com/"
api_url <- paste0(meetup_api_prefix, api_method)
# Get the API key from MEETUP_KEY environment variable if NULL
if (is.null(api_key)) api_key <- .get_api_key()
if (!is.character(api_key)) stop("api_key must be a character string")
# Fetch first set of results (limited to 200 records each call)
res <- .quick_fetch(api_url = api_url,
event_status = event_status,
offset = 0,
...)
# Total number of records matching the query
total_records <- as.integer(res$headers$`x-total-count`)
if (length(total_records) == 0) total_records <- 1L
records <- res$result
cat(paste("Downloading", total_records, "record(s)..."))
if((length(records) < total_records) & !is.null(res$headers$link)){
# calculate number of offsets for records above 200
offsetn <- ceiling(total_records/length(records))
all_records <- list(records)
for(i in 1:(offsetn - 1)) {
res <- .quick_fetch(api_url = api_url,
api_key = api_key,
event_status = event_status,
offset = i,
...)
all_records[[i + 1]] <- res$result
}
records <- unlist(all_records, recursive = FALSE)
}
return(records)
}
# helper function to convert a vector of milliseconds since epoch into POSIXct
.date_helper <- function(time) {
if (is.character(time)) {
# if date is character string, try to convert to numeric
time <- tryCatch(expr = as.numeric(time),
error = warning("One or more dates could not be converted properly"))
}
if (is.numeric(time)) {
# divide milliseconds by 1000 to get seconds; convert to POSIXct
seconds <- time / 1000
out <- as.POSIXct(seconds, origin = "1970-01-01")
} else {
# if no conversion can be done, then return NA
warning("One or more dates could not be converted properly")
out <- rep(NA, length(time))
}
return(out)
}
#updated find_groups() to retrieve optional fields from Meetup API
find_groups <- function(text = NULL, topic_id = NULL, radius = "global", fields = NULL, api_key = NULL) {
api_method <- "find/groups"
res <- .fetch_results(api_method = api_method,
api_key = api_key,
text = text,
topic_id = topic_id,
fields = fields,
radius = radius)
tibble::tibble(
id = purrr::map_int(res, "id"),
name = purrr::map_chr(res, "name"),
urlname = purrr::map_chr(res, "urlname"),
created = .date_helper(purrr::map_dbl(res, "created")),
members = purrr::map_int(res, "members"),
status = purrr::map_chr(res, "status"),
lat = purrr::map_dbl(res, "lat"),
lon = purrr::map_dbl(res, "lon"),
city = purrr::map_chr(res, "city"),
state = purrr::map_chr(res, "state", .null = NA),
country = purrr::map_chr(res, "localized_country_name"),
timezone = purrr::map_chr(res, "timezone", .null = NA),
join_mode = purrr::map_chr(res, "join_mode", .null = NA),
visibility = purrr::map_chr(res, "visibility", .null = NA),
who = purrr::map_chr(res, "who", .null = NA),
organizer_id = purrr::map_int(res, c("organizer", "id"), .default = NA),
organizer_name = purrr::map_chr(res, c("organizer", "name"),.default = NA),
category_id = purrr::map_int(res, c("category", "id"), .null = NA),
category_name = purrr::map_chr(res, c("category", "name"), .null = NA),
resource = res
)
}
# custom function that uses the updated find_groups() to retrieve rladies groups
get_rladies <- function() {
meetup_api_key <- ""# Sys.getenv("MEETUP_KEY")
# retrieve both past and upcoming event counts while finding groups
all_rladies_groups <- find_groups(text = "r-ladies", fields = "past_event_count, upcoming_event_count, last_event", api_key = meetup_api_key)
# Cleanup
rladies_groups <- all_rladies_groups[grep(pattern = "rladies|r-ladies|r ladies", x = all_rladies_groups$name, ignore.case = TRUE), ]
past_event_counts <- purrr::map_dbl(rladies_groups$resource, "past_event_count", .default = 0)
upcoming_event_counts <- purrr::map_dbl(rladies_groups$resource, "upcoming_event_count", .default = 0)
last <- lapply(rladies_groups$resource, "[[", "last_event")
last_event <- .date_helper(purrr::map_dbl(last, "time", .default = 0))
last_event <- as.Date(last_event)
days_since_last_event <- as.integer(Sys.Date() - last_event)
activity <- days_since_last_event
# add a full urlname, past_events and upcoming_events as another column
rladies_groups$fullurl <- paste0("https://www.meetup.com/", rladies_groups$urlname, "/")
rladies_groups$url <- paste0("<a href='", rladies_groups$fullurl, "'>", rladies_groups$name, "</a>")
rladies_groups$past_events <- past_event_counts
rladies_groups$upcoming_events <- upcoming_event_counts
rladies_groups$last_event <- last_event
rladies_groups$days_since_last_event <- days_since_last_event
rladies_groups$activity <- days_since_last_event
rladies_groups$activity[which(as.integer(rladies_groups$past_events) >=0 & as.integer(rladies_groups$activity) <= 180 | as.integer(rladies_groups$upcoming_events) > 0)] = "Active"
#rladies_groups$days_since_last_event[which(as.integer(rladies_groups$past_events) > 0 & as.integer(rladies_groups$days_since_last_event) > 180 & as.integer(rladies_groups$upcoming_events) == 0 )] = "Inactive"
rladies_groups$activity[which(as.integer(rladies_groups$past_events) == 0 & as.integer(rladies_groups$upcoming_events) == 0)] = "Unbegun"
rladies_groups$activity[which(rladies_groups$activity != "Unbegun" & rladies_groups$activity != "Active")] = "Inactive"
rladies_groups$last_event[which(rladies_groups$last_event == "1970-01-01")] = NA
rladies_groups$status <- rladies_groups$activity
rladies_groups[grepl("America",rladies_groups$timezone),]$timezone <- "Latin America"
rladies_groups[grepl("US|Canada",rladies_groups$timezone),]$timezone <- "US/Canada"
rladies_groups[grepl("Europe",rladies_groups$timezone),]$timezone <- "Europe"
rladies_groups[grepl("Africa",rladies_groups$timezone),]$timezone <- "Africa"
rladies_groups[grepl("Asia",rladies_groups$timezone),]$timezone <- "Asia"
rladies_groups[grepl("Australia|Pacific/Auckland",rladies_groups$timezone),]$timezone <- "Australia"
colnames(rladies_groups)[colnames(rladies_groups) == 'timezone'] <- 'region'
# obtain cumulative count of chapters over the years and save in JSON
datecreated <- sort(as.Date(rladies_groups$created))
rladies_groups$created <- as.Date(rladies_groups$created)
count_date <- table(datecreated)
# generate new vector of all days in the time frame
newdate <- seq(datecreated[1], Sys.Date(), by = "days")
count_newdate <- table(newdate)
actindex <- match(names(count_newdate),names(count_date),nomatch = 0)
days <- function(actindex,daycount){
n <- length(actindex)
x <- rep(NA,times=n)
zero <- 0
for (i in 1:n){
if (actindex[i]==0) {
zero <- zero +1
x[i] <- 0
} else {
x[i] <- daycount[i-zero]
}
}
return(x)
}
alldaycount <- array(days(actindex,count_date)) # construct vector with number of new chapters per day
names(alldaycount) <- names(count_newdate) # name entries by consecutive dates.
cumsum_rladies <- data.frame(newdate,cumsum(alldaycount))
rownames(cumsum_rladies) <- c()
colnames(cumsum_rladies) <- c("datecreated", "Freq")
cumulative_rladies <- toJSON(cumsum_rladies, pretty = TRUE)
writeLines(cumulative_rladies, "docs/data/rladies_cumulative.json")
# otain summaries around rladies groups and save in JSON
rladies_chapters <- dim(rladies_groups)[1]
rladies_countries <- length(unique(rladies_groups$country))
rladies_city <- length(unique(rladies_groups$city))
rladies_members <- sum(rladies_groups$members)
rladies_past_events <- sum(rladies_groups$past_events)
rladies_upcoming_events <- sum(rladies_groups$upcoming_events)
average_member_chapter <- floor(rladies_members / rladies_chapters)
average_chapter_country <- floor(rladies_chapters / rladies_countries)
average_event_chapter <- floor(rladies_past_events / rladies_chapters)
rladies_df <- data.frame(chapters = rladies_chapters, countries = rladies_countries,
city = rladies_city, members = rladies_members, past_events = rladies_past_events,
upcoming_events = rladies_upcoming_events, avgchapter = average_chapter_country,
avgevent = average_event_chapter, avgmember = average_member_chapter)
# specify columns to retain
col_to_keep <- c("name", "city", "country", "region", "members", "fullurl", "created", "status", "last_event", "past_events", "upcoming_events")
rladies_groups2 <- rladies_groups[col_to_keep]
write.csv(rladies_groups2, "docs/data/rladies.csv")
#for leaflet map save to geoJSON
rladies_groups$end <- Sys.Date()
rladies_groups$start <- as.Date(rladies_groups$created)
col_to_keep <- c("name", "url", "created", "members","past_events","upcoming_events", "last_event", "days_since_last_event", "lat","lon", "start","end")
rladies_map_data <- rladies_groups[col_to_keep]
leafletR::toGeoJSON(data = rladies_map_data, dest = "docs/data/")
# select latin american groups
latam <- sort(unique(rladies_groups[grep("Latin America", rladies_groups$region),]$country))
latam_groups <- rladies_groups[rladies_groups$country %in% latam,]
lt <- dim(latam_groups)[1]
lt_members <- sum(latam_groups$members)
# Europe
europe <- sort(unique(rladies_groups[grep("Europe", rladies_groups$region),]$country))
eu_groups <- rladies_groups[rladies_groups$country %in% europe,]
eu <- dim(eu_groups)[1]
eu_members <- sum(eu_groups$members)
# USA and Canada
uscan <- sort(unique(rladies_groups[grep("US/Canada", rladies_groups$region),]$country))
uscangroups <- rladies_groups[rladies_groups$country %in% uscan,]
us_canada <- dim(uscangroups)[1]
us_can_members <- sum(uscangroups$members)
# Africa
africa <- sort(unique(rladies_groups[grep("Africa", rladies_groups$region),]$country))
africa_groups <- rladies_groups[rladies_groups$country %in% africa,]
af <- dim(africa_groups)[1]
af_members <- sum(africa_groups$members)
# Asia
asia <- sort(unique(rladies_groups[grep("Asia", rladies_groups$region),]$country))
asia_groups <- rladies_groups[rladies_groups$country %in% asia,]
as <- dim(asia_groups)[1]
as_members <- sum(asia_groups$members)
# Australia/Oceania
australia <- sort(unique(rladies_groups[grep("Australia", rladies_groups$region),]$country))
australia_groups <- rladies_groups[rladies_groups$country %in% australia,]
au <- dim(australia_groups)[1]
au_members <- sum(australia_groups$members)
continent_df <- data.frame(latinAm = lt, us_can = us_canada, eur = eu, afr = af, asia = as, aus = au,
latinAm_m = lt_members, us_can_m = us_can_members, eur_m = eu_members, afr_m = af_members, asia_m = as_members, aus_m = au_members)
rladies_json <- jsonlite::toJSON(list(rladies_df,continent_df), auto_unbox = FALSE, pretty = TRUE)
writeLines(rladies_json, "docs/data/rladies_summary.json")
}
# Credit to Jenny Bryan and the Googlesheets3 package for this pattern of
# OAuth handling, see https://github.com/jennybc/googlesheets/blob/master/R/gs_auth.R
#
# environment to store credentials
.state <- new.env(parent = emptyenv())
#' Authorize \code{meetupr}
#'
#' Authorize \code{meetupr} via the OAuth API. You will be directed to a web
#' browser, asked to sign in to your Meetup account, and to grant \code{meetupr}
#' permission to operate on your behalf. By default, these user credentials are
#' cached in a file named \code{.httr-oauth} in the current working directory,
#' from where they can be automatically refreshed, as necessary.
#'
#' Most users, most of the time, do not need to call this function explicitly --
#' it will be triggered by the first action that requires authorization. Even
#' when called, the default arguments will often suffice. However, when
#' necessary, this function allows the user to
#'
#' \itemize{
#' \item TODO: force the creation of a new token
#' \item TODO: retrieve current token as an object, for possible storage to an
#' \code{.rds} file
#' \item TODO: read the token from an object or from an \code{.rds} file
#' \item TODO: provide your own app key and secret -- this requires setting up
#' a new project in \href{https://console.developers.google.com}{Google Developers Console}
#' \item TODO: prevent caching of credentials in \code{.httr-oauth}
#' }
#'
#' In a direct call to \code{meetup_auth}, the user can provide the token, app
#' key and secret explicitly and can dictate whether interactively-obtained
#' credentials will be cached in \code{.httr_oauth}. If unspecified, these
#' arguments are controlled via options, which, if undefined at the time
#' \code{meetupr} is loaded, are defined like so:
#'
#' \describe{
#' \item{key}{Set to option \code{meetupr.client_id}, which defaults to a
#' client ID that ships with the package}
#' \item{secret}{Set to option \code{meetupr.client_secret}, which defaults to
#' a client secret that ships with the package}
#' \item{cache}{Set to option \code{meetupr.httr_oauth_cache}, which defaults
#' to \code{TRUE}}
#' }
#'
#' To override these defaults in persistent way, predefine one or more of them
#' with lines like this in a \code{.Rprofile} file:
#' \preformatted{
#' options(meetupr.client_id = "FOO",
#' meetupr.client_secret = "BAR",
#' meetupr.httr_oauth_cache = FALSE)
#' }
#' See \code{\link[base]{Startup}} for possible locations for this file and the
#' implications thereof.
#'
#' More detail is available from
#' \href{https://www.meetup.com/meetup_api/auth/#oauth2-resources}{Authenticating
#' with the Meetup API}.
#'
#' @param token optional; an actual token object or the path to a valid token
#' stored as an \code{.rds} file
#' @param new_user logical, defaults to \code{FALSE}. Set to \code{TRUE} if you
#' want to wipe the slate clean and re-authenticate with the same or different
#' Google account. This disables the \code{.httr-oauth} file in current
#' working directory.
#' @param key,secret the "Client ID" and "Client secret" for the application;
#' defaults to the ID and secret built into the \code{googlesheets} package
#' @param cache logical indicating if \code{googlesheets} should cache
#' credentials in the default cache file \code{.httr-oauth}
#' @param verbose logical; do you want informative messages?
#'
#' @examples
#' \dontrun{
#' ## load/refresh existing credentials, if available
#' ## otherwise, go to browser for authentication and authorization
#' gs_auth()
#'
#' ## store token in an object and then to file
#' ttt <- gs_auth()
#' saveRDS(ttt, "ttt.rds")
#'
#' ## load a pre-existing token
#' gs_auth(token = ttt) # from an object
#' gs_auth(token = "ttt.rds") # from .rds file
#' }
meetup_auth <- function(token = NULL,
new_user = FALSE,
key = getOption("meetupr.client_id"),
secret = getOption("meetupr.client_secret"),
cache = getOption("meetupr.httr_oauth_cache"),
verbose = TRUE) {
if (new_user) {
meetup_deauth(clear_cache = TRUE, verbose = verbose)
}
token = readRDS("meetup_token.rds")
if (is.null(token)) {
message(paste0('Meetup is moving to OAuth *only* as of 2019-08-15. Set\n',
'`meetupr.use_oauth = FALSE` in your .Rprofile, to use\nthe ',
'legacy `api_key` authorization.'))
meetup_app <- httr::oauth_app("meetup", key = key, secret = secret)
meetup_endpoints <- httr::oauth_endpoint(
authorize = 'https://secure.meetup.com/oauth2/authorize',
access = 'https://secure.meetup.com/oauth2/access'
)
meetup_token <- httr::oauth2.0_token(meetup_endpoints, meetup_app,
cache = cache)
stopifnot(is_legit_token(meetup_token, verbose = TRUE))
.state$token <- meetup_token
} else if (inherits(token, "Token2.0")) {
stopifnot(is_legit_token(token, verbose = TRUE))
.state$token <- token
} else if (inherits(token, "character")) {
meetup_token <- try(suppressWarnings(readRDS(token)), silent = TRUE)
if (inherits(meetup_token, "try-error")) {
spf("Cannot read token from alleged .rds file:\n%s", token)
} else if (!is_legit_token(meetup_token, verbose = TRUE)) {
spf("File does not contain a proper token:\n%s", token)
}
.state$token <- meetup_token
} else {
spf(paste0("Input provided via 'token' is neither a token,\n",
"nor a path to an .rds file containing a token."))
}
invisible(.state$token)
}
#' Produce Meetup token
#'
#' If token is not already available, call \code{\link{meetup_auth}} to either
#' load from cache or initiate OAuth2.0 flow. Return the token -- not "bare"
#' but, rather, prepared for inclusion in downstream requests.
#'
#' @return a \code{request} object (an S3 class provided by \code{httr})
#'
#' @keywords internal
meetup_token <- function(verbose = FALSE) {
if (getOption("meetupr.use_oauth")) {
if (!token_available(verbose = verbose)) meetup_auth(verbose = verbose)
httr::config(token = .state$token)
} else {
httr::config()
}
}
#' Check token availability
#'
#' Check if a token is available in \code{\link{meetupr}}'s internal
#' \code{.state} environment.
#'
#' @return logical
#'
#' @keywords internal
token_available <- function(verbose = TRUE) {
if (is.null(.state$token)) {
if (verbose) {
if (file.exists(".httr-oauth")) {
message("A .httr-oauth file exists in current working ",
"directory.\nWhen/if needed, the credentials cached in ",
".httr-oauth will be used for this session.\nOr run ",
"meetup_auth() for explicit authentication and authorization.")
} else {
message("No .httr-oauth file exists in current working directory.\n",
"When/if needed, 'meetupr' will initiate authentication ",
"and authorization.\nOr run meetup_auth() to trigger this ",
"explicitly.")
}
}
return(FALSE)
}
TRUE
}
#' Suspend authorization
#'
#' Suspend \code{\link{meetupr}}'s authorization to place requests to the Meetup
#' APIs on behalf of the authenticated user.
#'
#' @param clear_cache logical indicating whether to disable the
#' \code{.httr-oauth} file in working directory, if such exists, by renaming
#' to \code{.httr-oauth-SUSPENDED}
#' @param verbose logical; do you want informative messages?
#' @export
#' @family auth functions
#' @examples
#' \dontrun{
#' gs_deauth()
#' }
meetup_deauth <- function(clear_cache = TRUE, verbose = TRUE) {
if (clear_cache && file.exists(".httr-oauth")) {
if (verbose) {
message("Disabling .httr-oauth by renaming to .httr-oauth-SUSPENDED")
}
file.rename(".httr-oauth", ".httr-oauth-SUSPENDED")
}
if (token_available(verbose = FALSE)) {
if (verbose) {
message("Removing google token stashed internally in 'meetupr'.")
}
rm("token", envir = .state)
} else {
message("No token currently in force.")
}
invisible(NULL)
}
#' Check that token appears to be legitimate
#'
#' @keywords internal
is_legit_token <- function(x, verbose = FALSE) {
if (!inherits(x, "Token2.0")) {
if (verbose) message("Not a Token2.0 object.")
return(FALSE)
}
if ("invalid_client" %in% unlist(x$credentials)) {
# shouldn't happen if id and secret are good
if (verbose) {
message("Authorization error. Please check client_id and client_secret.")
}
return(FALSE)
}
if ("invalid_request" %in% unlist(x$credentials)) {
# in past, this could happen if user clicks "Cancel" or "Deny" instead of
# "Accept" when OAuth2 flow kicks to browser ... but httr now catches this
if (verbose) message("Authorization error. No access token obtained.")
return(FALSE)
}
TRUE
}
#' Store a legacy API key in the .state environment
#'
#' @keywords internal
set_api_key <- function(x = NULL) {
if (is.null(x)) {
key <- Sys.getenv("MEETUP_KEY")
if (key == "") {
spf(paste0("You have not set a MEETUP_KEY environment variable.\nIf you ",
"do not yet have a meetup.com API key, use OAuth2\ninstead, ",
"as API keys are now deprecated - see here:\n",
"* https://www.meetup.com/meetup_api/auth/"))
}
.state$legacy_api_key <- key
} else {
.state$legacy_api_key <- x
}
invisible(NULL)
}
#' Get the legacy API key from the .state environment
#'
#' @keywords internal
get_api_key <- function() {
if (is.null(.state$legacy_api_key)) {
set_api_key()
}
.state$legacy_api_key
}
options(meetupr.httr_oauth_cache=TRUE)
options(meetupr.use_oauth = TRUE)
get_rladies()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.