This class provides access to FormShare to perform analytics and data queries directly on data repositories.
This class encapsulates all functions to execute analytics in FormShare.
user_id
The user ID in FormShare.
api_key
The API key used to connect to FormShare.
api_secret
The API secret used to connect to FormShare
server_url
The FormShare server to connect to
logged_in
Whether the used has a valid connection
api_token
Token to use in other functions
token_url
FormShare URL to retrieve a valid token
new()
Create a new FormShare object.
= FormShare$new(
my_connection server_url = "https://formshare.org",
user_id = "",
api_key = "",
api_secret = ""
)
server_url
Server URL. By default https://formshare.org
user_id
The user ID to use
api_key
The API Key to use.
api_secret
The API Secret to use.
A new FormShare
object.
get_api_key()
Get the current API key.
= my_connection$get_api_key() current_api
set_api_key()
Sets the current API key.
$set_api_key(new_key) my_connection
new_key
New API key
get_api_secret()
Get the current API secret
= my_connection$get_api_secret() current_secret
set_api_secret()
Sets the current API secret.
$set_api_secret(new_secret) my_connection
new_secret
New API secret
get_server_url()
Get the current server URL
= my_connection$get_server_url() current_server
set_server_url()
Sets the current server URL.
$set_server_url(new_url) my_connection
new_url
New server URL
login()
Log-in to the FormShare server and stores a API token
$login() my_connection
True of False if the connection was successful.
get_repositories()
Return the repositories that the user has access to.
$get_repositories() my_connection
A data frame with repositories that the user has access to.
get_tables()
Get the tables in a repository.
= my_connection$get_tables(repository) tables
repository
The repository to use
A data frame with tables inside a repository.
get_fields()
Get the fields in a table of a repository.
= my_connection$get_fields(repository, table) fields
repository
The repository to use
table
The table to use
A data frame with fields inside a table.
execute()
Executes an SQL and returns it result.
= my_connection$execute(repository, sql) result
repository
The repository to use
sql
SQL to execute
A data frame with the result of the execution.
get_table()
A convenient function to return the contents of a table.
= my_connection$get_table(repository, table) data
repository
The repository to use
table
Table to retrieve
A data frame with data of the table
clone()
The objects of this class are cloneable with this method.
= my_connection$clone(deep = FALSE) clone
deep
Whether to make a deep clone.