Title: | Connect to Your 'Revenera' (Formerly 'Revulytics') Data |
---|---|
Description: | Facilitates making a connection to the 'Revenera' API and executing various queries. You can use it to get event data and metadata. The 'Revenera' documentation is available at <https://docs.revenera.com/ui560/report/>. This package is not supported by 'Flexera' (owner of the software). |
Authors: | Chris Umphlett [aut, cre], Avinash Panigrahi [aut] |
Maintainer: | Chris Umphlett <[email protected]> |
License: | CC0 |
Version: | 0.1.2.9999 |
Built: | 2024-10-31 18:35:59 UTC |
Source: | https://github.com/chrisumphlett/revenerar |
For a given period of time (a day, week, or month) Revenera' API summarizes and returns the number of active users. With this function you can return daily, weekly, or monthly active users for multiple product ids.
get_active_users( rev_product_ids, rev_date_type, rev_start_date, rev_end_date, rev_session_id, rev_username )
get_active_users( rev_product_ids, rev_date_type, rev_start_date, rev_end_date, rev_session_id, rev_username )
rev_product_ids |
A vector of Revenera product id's for which you want active user data. |
rev_date_type |
Level of aggregation, Revenera will accept "day", "week", or "month". |
rev_start_date |
Date formatted YYYY-MM-DD. Revenera may give an error if you try to go back too far. |
rev_end_date |
Date formatted YYYY-MM-DD. |
rev_session_id |
Session ID established by the connection to Revenera API. This can be obtained with revenera_auth(). |
rev_username |
Revenera username. |
You can specify a start and end date but Revenera does not store an indefinite period of historical data. In my experience this is three years but I do not know if this varies on a product or client level.
It is not recommended that your username be stored directly in your code. There are various methods and packages available that are more secure; this package does not require you to use any one in particular.
Data frame with active users for each product id and unique date within the range
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") start_date <- lubridate::floor_date(Sys.Date(), unit = "months") - months(6) end_date <- Sys.Date() - 1 session_id <- revenera_auth(rev_user, rev_pwd) monthly_active_users <- get_active_users( product_ids_list, "month", start_date, end_date, session_id, rev_user ) ## End(Not run)
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") start_date <- lubridate::floor_date(Sys.Date(), unit = "months") - months(6) end_date <- Sys.Date() - 1 session_id <- revenera_auth(rev_user, rev_pwd) monthly_active_users <- get_active_users( product_ids_list, "month", start_date, end_date, session_id, rev_user ) ## End(Not run)
Returns all of the unique categories and events (basic and advanced) for each product id.
get_categories_and_events(rev_product_ids, rev_session_id, rev_username)
get_categories_and_events(rev_product_ids, rev_session_id, rev_username)
rev_product_ids |
A vector of Revenera product id's for which you want active user data. |
rev_session_id |
Session ID established by the connection to Revenera API. This can be obtained with revenera_auth(). |
rev_username |
Revenera username. |
It is not recommended that your username be stored directly in your code. There are various methods and packages available that are more secure; this package does not require you to use any one in particular.
Data frame with categories, events and event type by product id.
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") session_id <- revenera_auth(rev_user, rev_pwd) category_event <- get_categories_and_events( product_ids_list, session_id, rev_user ) ## End(Not run)
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") session_id <- revenera_auth(rev_user, rev_pwd) category_event <- get_categories_and_events( product_ids_list, session_id, rev_user ) ## End(Not run)
Returns metadata (what Revenera calls "properties") for every Client Id installed during user-provided date range for all product Ids in a list.
get_client_metadata( rev_product_ids, rev_session_id, rev_username, product_properties_df, desired_properties, installed_start_date, installed_end_date, chatty = FALSE )
get_client_metadata( rev_product_ids, rev_session_id, rev_username, product_properties_df, desired_properties, installed_start_date, installed_end_date, chatty = FALSE )
rev_product_ids |
A vector of Revenera product id's for which you want active user data. |
rev_session_id |
Session ID established by the connection to Revenera API. This can be obtained with revenera_auth(). |
rev_username |
Revenera username. |
product_properties_df |
Data frame with available properties for all product ids. Can obtain with the get_product_properties function. |
desired_properties |
The property names of the metadata you want to collect. |
installed_start_date |
Date object for the starting date of product installations. |
installed_end_date |
Date object for the ending date of product installations. |
chatty |
The function can be chatty, sending a message to the console for every iteration through a product Id. Many API calls may be required and the console may get very long and it may slow down the execution. |
It is not recommended that your username be stored directly in your code. There are various methods and packages available that are more secure; this package does not require you to use any one in particular.
This API call can only return 200 Client Ids at a time. It will take a long time to execute if you have many Client Ids, as the function will submit requests to the API repeatedly; this may even result in a timeout error from the server. In order to provide data for troubleshooting this function will write a message to the console after each call. It is recommended that you divert the console output to a text file. You can do this in multiple ways, including with the sink function (see example for how to do this).
For the same reason you are encouraged to break your request into smaller chunks using the install dates and/or splitting up your product Ids.
Data frame with selected properties for each Client Id.
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") session_id <- revenera_auth(rev_user, rev_pwd) product_properties <- get_product_properties( product_ids_list, session_id, rev_user ) sink("output_filename.txt") sink(stdout(), type = "message") client_metadata <- get_client_metadata( product_ids_list, session_id, rev_user, product_properties, c("Property1", "Property2"), start_date, end_date ) sink() ## End(Not run)
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") session_id <- revenera_auth(rev_user, rev_pwd) product_properties <- get_product_properties( product_ids_list, session_id, rev_user ) sink("output_filename.txt") sink(stdout(), type = "message") client_metadata <- get_client_metadata( product_ids_list, session_id, rev_user, product_properties, c("Property1", "Property2"), start_date, end_date ) sink() ## End(Not run)
Returns the list of daily client properties for all the client Ids installed during a user provided date range for all the Product Ids.
get_daily_client_properties( rev_product_ids, rev_session_id, rev_username, product_properties_df, desired_properties, installed_start_date, installed_end_date, daily_start_date, daily_end_date, chatty = FALSE )
get_daily_client_properties( rev_product_ids, rev_session_id, rev_username, product_properties_df, desired_properties, installed_start_date, installed_end_date, daily_start_date, daily_end_date, chatty = FALSE )
rev_product_ids |
A vector of Revenera product id. |
rev_session_id |
Session ID established by the connection to Revenera API. This can be obtained with revenera_auth(). |
rev_username |
Revenera username. |
product_properties_df |
Data frame with available properties for all product ids. Can obtain with the get_product_properties function. |
desired_properties |
The property names of the metadata you want to collect. |
installed_start_date |
Date object for the starting date of product installations. |
installed_end_date |
Date object for the ending date of product installations. |
daily_start_date |
Date object for the starting date of desired properties of the product. |
daily_end_date |
Date object for the ending date of desired properties of the product. |
chatty |
The function can be chatty, sending a message to the console for every iteration through a product Id. Many API calls may be required and the console may get very long and it may slow down the execution. |
It is not recommended that your username be stored directly in your code. There are various methods and packages available that are more secure; this package does not require you to use any one in particular.
This API call can only return 200 Client Ids at a time. It will take a long time to execute if you have many Client Ids, as the function will submit requests to the API repeatedly; this may even result in a timeout error from the server. In order to provide data for troubleshooting this function will write a message to the console after each call. It is recommended that you divert the console output to a text file. You can do this in multiple ways, including with the sink function (see example for how to do this).
For the same reason you are encouraged to break your request into smaller chunks using the install dates and/or splitting up your product Ids.
Data frame with selected properties for each Client Id.
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") session_id <- revenera_auth(rev_user, rev_pwd) product_properties <- get_product_properties( product_ids_list, session_id, rev_user ) sink("output_filename.txt") sink(stdout(), type = "message") daily_client_properties <- get_daily_client_properties(product_ids_list, session_id, rev_user, product_properties, c("Property1", "Property2"), start_date, end_date, daily_start_date = "01-01-2020", daily_end_date = "01-31-2020" ) sink() ## End(Not run)
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") session_id <- revenera_auth(rev_user, rev_pwd) product_properties <- get_product_properties( product_ids_list, session_id, rev_user ) sink("output_filename.txt") sink(stdout(), type = "message") daily_client_properties <- get_daily_client_properties(product_ids_list, session_id, rev_user, product_properties, c("Property1", "Property2"), start_date, end_date, daily_start_date = "01-01-2020", daily_end_date = "01-31-2020" ) sink() ## End(Not run)
For a given period of time (a day, week, or month) Revenera' API summarizes and returns the number of new users. With this function you can return daily, weekly, or monthly new users for multiple product ids.
get_new_users( rev_product_ids, rev_date_type, rev_start_date, rev_end_date, rev_session_id, rev_username )
get_new_users( rev_product_ids, rev_date_type, rev_start_date, rev_end_date, rev_session_id, rev_username )
rev_product_ids |
A vector of Revenera product id's for which you want new user data. |
rev_date_type |
Level of aggregation, Revenera will accept "day", "week", or "month". |
rev_start_date |
Date formatted YYYY-MM-DD. Revenera may give an error if you try to go back too far. |
rev_end_date |
Date formatted YYYY-MM-DD. |
rev_session_id |
Session ID established by the connection to Revenera API. This can be obtained with revenera_auth(). |
rev_username |
Revenera username. |
You can specify a start and end date but Revenera does not store an indefinite period of historical data. In my experience this is three years but I do not know if this varies on a product or client level.
It is not recommended that your username be stored directly in your code. There are various methods and packages available that are more secure; this package does not require you to use any one in particular.
Data frame with new users for each product id and unique date within the range
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") start_date <- lubridate::floor_date(Sys.Date(), unit = "months") - months(6) end_date <- Sys.Date() - 1 session_id <- revenera_auth(rev_user, rev_pwd) monthly_new_users <- get_new_users( product_ids_list, "month", start_date, end_date, session_id, rev_user ) ## End(Not run)
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") start_date <- lubridate::floor_date(Sys.Date(), unit = "months") - months(6) end_date <- Sys.Date() - 1 session_id <- revenera_auth(rev_user, rev_pwd) monthly_new_users <- get_new_users( product_ids_list, "month", start_date, end_date, session_id, rev_user ) ## End(Not run)
Returns all of the unique properties (standard and custom) for each product id by property category.
get_product_properties(rev_product_ids, rev_session_id, rev_username)
get_product_properties(rev_product_ids, rev_session_id, rev_username)
rev_product_ids |
A vector of Revenera product id's for which you want active user data. |
rev_session_id |
Session ID established by the connection to Revenera API. This can be obtained with revenera_auth(). |
rev_username |
Revenera username. |
It is not recommended that your username be stored directly in your code. There are various methods and packages available that are more secure; this package does not require you to use any one in particular.
Data frame with properties and property attributes by product id.
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") session_id <- revenera_auth(rev_user, rev_pwd) product_properties <- get_product_properties( product_ids_list, session_id, rev_user ) ## End(Not run)
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") session_id <- revenera_auth(rev_user, rev_pwd) product_properties <- get_product_properties( product_ids_list, session_id, rev_user ) ## End(Not run)
Retrieves a list of raw data file exports that are available for a list of product IDs and the download URL for each file.
get_raw_data_files(rev_product_ids, rev_session_id, rev_username)
get_raw_data_files(rev_product_ids, rev_session_id, rev_username)
rev_product_ids |
A vector of Revenera product id's for which you want active user data. |
rev_session_id |
Session ID established by the connection to Revenera API. This can be obtained with revenera_auth(). |
rev_username |
Revenera username. |
Raw data files are an add-on service available through Revenera. If these files are available they can be downloaded manually from the user portal, or downloaded via R. This function uses the API to first retrieve the list of files, and then get the download URL for each file.
It is not recommended that your username be stored directly in your code. There are various methods and packages available that are more secure; this package does not require you to use any one in particular.
Data frame with available files and URLs.
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") session_id <- revenera_auth(rev_user, rev_pwd) files_df <- get_raw_data_files(product_ids_list, session_id, rev_user) file_list <- dplyr::pull(files_df, var = file_name) for (f in file_list) { url <- dplyr::filter(files_df, file_name == f) %>% dplyr::pull(download_url) download.file(url, mode = "wb", destfile = "download_file_location.zip") } ## End(Not run)
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") session_id <- revenera_auth(rev_user, rev_pwd) files_df <- get_raw_data_files(product_ids_list, session_id, rev_user) file_list <- dplyr::pull(files_df, var = file_name) for (f in file_list) { url <- dplyr::filter(files_df, file_name == f) %>% dplyr::pull(download_url) download.file(url, mode = "wb", destfile = "download_file_location.zip") } ## End(Not run)
For a given period of time (a day, week, or month) Revenera's API summarizes and returns the number of active users. With this function you can return daily, weekly, or monthly active users for multiple product ids.
get_users( rev_product_ids, user_type, rev_date_type, rev_start_date, rev_end_date, rev_session_id, rev_username, lost_days = 30, lost_reported = "dateLastSeen", optional_json = "" )
get_users( rev_product_ids, user_type, rev_date_type, rev_start_date, rev_end_date, rev_session_id, rev_username, lost_days = 30, lost_reported = "dateLastSeen", optional_json = "" )
rev_product_ids |
A vector of Revenera product id's for which you want active user data. |
user_type |
One of "active," "new", or "lost." |
rev_date_type |
Level of aggregation, Revenera will accept "day", "week", or "month". |
rev_start_date |
Date formatted YYYY-MM-DD. Revenera may give an error if you try to go back too far. |
rev_end_date |
Date formatted YYYY-MM-DD. |
rev_session_id |
Session ID established by the connection to Revenera API. This can be obtained with revenera_auth(). |
rev_username |
Revenera username. |
lost_days |
Required for lost users, the number of consecutive days of inactivity before a client is considered lost. |
lost_reported |
Required for lost users, should the lost date be the first day of inactivity ("dateLastSeen") or date client is considered lost ("dateDeclaredLost"). |
optional_json |
Optional JSON text to add to the request body for things like global filters. |
You can specify a start and end date but Revenera does not store an indefinite period of historical data.
It is not recommended that your username be stored directly in your code. There are various methods and packages available that are more secure; this package does not require you to use any one in particular.
The optional_json parameter is available so that other optional arguments can be added to the api request. This will require the user to consult the API documentation. See README for an example.
Data frame with active users for each product id and unique date within the range
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") start_date <- lubridate::floor_date(Sys.Date(), unit = "months") - months(6) end_date <- Sys.Date() - 1 session_id <- revenera_auth(rev_user, rev_pwd) global_filter <- paste0( ",\"globalFilters\":{\"licenseType\":", "{\"type\":\"string\",\"value\":\"purchased\"}}" ) monthly_active_users <- get_users(product_ids_list, "active", "month", start_date, end_date, session_id, rev_user, optional_json = global_filter ) ## End(Not run)
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") start_date <- lubridate::floor_date(Sys.Date(), unit = "months") - months(6) end_date <- Sys.Date() - 1 session_id <- revenera_auth(rev_user, rev_pwd) global_filter <- paste0( ",\"globalFilters\":{\"licenseType\":", "{\"type\":\"string\",\"value\":\"purchased\"}}" ) monthly_active_users <- get_users(product_ids_list, "active", "month", start_date, end_date, session_id, rev_user, optional_json = global_filter ) ## End(Not run)
A session must first be established before querying the API. This is done using your Revenera username and password.
revenera_auth(rev_username, rev_password)
revenera_auth(rev_username, rev_password)
rev_username |
Revenera username. |
rev_password |
Revenera password. |
It is not recommended that these values be stored directly in your code. There are various methods and packages available that are more secure; this package does not require you to use any one in particular.
A list with details on connection to the Revenera API.
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") start_date <- lubridate::floor_date(Sys.Date(), unit = "months") - months(6) end_date <- Sys.Date() - 1 session_id <- revenera_auth(rev_user, rev_pwd) ## End(Not run)
## Not run: rev_user <- "my_username" rev_pwd <- "super_secret" product_ids_list <- c("123", "456", "789") start_date <- lubridate::floor_date(Sys.Date(), unit = "months") - months(6) end_date <- Sys.Date() - 1 session_id <- revenera_auth(rev_user, rev_pwd) ## End(Not run)