Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: create connectHost function to input Host header #18

Closed
wants to merge 5 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions R/connectHost.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
##' Creates a server object containing the base URL of the PEcAn API server,
##' the username & password, which can be simply passed into other functions
##' to make requests to the PEcAn API.
##' Currently, there is no validation. In future, we may validate the username-password
##' pair by hitting the appropriate API endpoint
##'
##' @name connect
##' @title Creates a server object that can be passed into other functions for making requests to the PEcAn API
##' @param url Base URL of the PEcAn API Server
##' @param username Username
##' @param password Password corresponding to the username
##' @param host host corresponds to host runner machine
##' @return A server object that can be passed into other functions for making requests to the PEcAn API
##' @export
##' @examples
##' server <- connectHost(url="http://localhost:8000", username="carya", password="illinois", host="pecan.localhost")

connectHost <- function(url, username=NULL, password=NULL, host){
header <- add_headers(Host = host)

res <- list(url=sub('^/|/$','',url), username=username, password=password, headers = header)
return(res)
}