Skip to content

Commit

Permalink
LANTERN-806: Adding webscraper for interop url
Browse files Browse the repository at this point in the history
  • Loading branch information
archita-ekkirala committed Nov 24, 2024
1 parent 97c3462 commit 17c9637
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ var curemdURL = "https://www.curemd.com/developer/base-fhir-urls/"
var emdscloudURL = "https://identity.emdscloud.com/api/api-resource/fhir"
var betaAfoundriaURL = "https://beta.afoundria.com/api/fhir/urls"
var ehealthlineURL = "http://ehealthline.com/dev/pdf/FHIR%20API%20Endpoints.htm"
var interopURL = "https://interop.ehnote.com/fhir"

var bundleQuerierArray = [30]string{"https://ac-fhir.harrisambulatory.com/endpoints/r4", "https://dynamicfhirpresentation.dynamicfhirsandbox.com/fhir/r4/endpoints",
"https://ct-fhir.harrisambulatory.com/Endpoints/R4", "https://kantime.com/wp-content/uploads/2024/03/fhir-base-urls.json",
Expand Down Expand Up @@ -586,6 +587,8 @@ func QueryCHPLEndpointList(chplURL string, fileToWriteTo string) {
CSVParser(chplURL, fileToWriteTo, "./endpoints.csv", -1, 0, true, 1, 0)
} else if URLsEqual(chplURL, ehealthlineURL) {
EhealthlineWebscraper(ehealthlineURL, fileToWriteTo)
} else if URLsEqual(chplURL, interopURL) {
InteropWebscraper(chplURL, fileToWriteTo)
} else {
log.Warnf("Handler is required for url %s", chplURL)
}
Expand Down
22 changes: 22 additions & 0 deletions endpointmanager/pkg/chplendpointquerier/interopwebscraper.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package chplendpointquerier

import (
"strings"

log "github.com/sirupsen/logrus"
)

func InteropWebscraper(CHPLURL string, fileToWriteTo string) {

var lanternEntryList []LanternEntry
var endpointEntryList EndpointList
var entry LanternEntry
entry.URL = strings.TrimSpace(CHPLURL)
lanternEntryList = append(lanternEntryList, entry)
endpointEntryList.Endpoints = lanternEntryList
err := WriteCHPLFile(endpointEntryList, fileToWriteTo)
if err != nil {
log.Fatal(err)
}

}

0 comments on commit 17c9637

Please sign in to comment.