This is the source code for the UGRC API. This system allows users to login to a self service website with Utahid, create API keys, and make http requests to geocode or interact with SGID data. The API endpoints are address geocoding, reverse address geocoding, milepost geocoding, reverse milepose geocoding, and search against all Open SGID spatial data.
Read the Getting Started Guide, view the documentation, and check out the working samples for geocoding in popular languages for an idea about how to get started programming against the API.
Any and all contributions are welcome! Please open an issue to discuss the feature or change before writing code and submitting a pull request.
Please use conventional commits when committing code. This allows change log and semantic versioning to be automated. Therefore, write your commit messages as you would want them to show up in the changelog.
- fix: fixing a bug
- feat: adding a new feature
- docs: writing documentation
- style: code formatting
- refactor: changing the code to be better
- test: writing tests
- chore: doing things not related the others
- ci: continuous integration
- deps: package updates
With the following scopes depending on the areas of code you are modifying.
- (api)
- (open-api)
- (developer)
- (explorer)
Examples
- fix(api): correct usage of broken thing
- feat(api): add flag to allow new feature
The API is designed to run in containers but Docker is not a requirement. These projects can be run entirely without Docker, but you will be in charge of maintaining the cloud resources and software dependencies. The current dependencies are ASP.NET, PostgreSQL, Redis, Firebase, and ArcGIS Server. ASP.NET, PostgreSQL, and Redis all have community maintained containers but ArcGIS Server does not. Until ArcGIS Server has a maintained container, it is recommended to be installed in a VM or locally. Alternatively, smocker can be used to mock ArcGIS Server responses during development. Firebase has an emulator that can be used during development and it is very inexpensive or free to configure in the Google Cloud Platform.
To make the project as flexible as possible, the connection strings, urls to services, etc required by the API are read from appsettings.json at application startup. AppSettings files can be created for multiple environments, including Development, Staging, and Production. They work well with containers and local development. The following will describe what is required before the application will function properly.
Start the firebase emulators from the developer project. This also starts the self service website.
Tip
If you want to work with the self service website, duplicate the ./src/developer/.env
file to ./src/developer/.env.local
and add the firebase project settings.
First install the self service functions dependencies:
cd src/developer/functions && npm install && cd ..
Then install the self service dependencies and start the emulators:
npm install && npm start
While the emulators are starting, start the cache and smocker containers from the root of the project.
docker-compose -f docker-compose.yml -f docker-compose.override.yml up cache smocker --detach
Once smocker is running, you can register mock requests by executing mocks.sh. Run the following command from the test/smocker
directory.
cd test/smocker && bash mocks.sh && cd ../..
To run the API you must authenticate with GCP.
gcloud auth application-default login
Start the API in watch mode from the src/api
directory.
cd src/api && FIRESTORE_EMULATOR_HOST='127.0.0.1:8080' dotnet watch run
You can now view the firebase emulator, the smocker emulator, the self service website, and the api to start making requests. Smocker will respond to requests on port 6443 over http. There is an insomnia client json file in the test/api tool
folder you can import to get started.
Tip
No containers need to be running to execute the unit tests.
cd test/api.unit.tests && dotnet watch test --collect:"XPlat Code Coverage"
Start the astro website.
cd src/explorer && npm install && npm start
You can now view the documentation website.
The API is built using ASP.NET. In order to run the API locally, the .NET Core SDK and Runtime will need to be downloaded and installed. It is possible to run the API in containers, removing the need to install the .NET Core SDK and Runtime, but the development cycle loop is slow. Currently the app is using dotnet 8.
Firestore is used to store keys and user accounts.
BigQuery is used to pull UGRC managed cache data from Google Spreadsheets which is loaded into a more durable BigQuery dataset. The API then pushes all of this data into Redis.
// TODO figure out a way to skip this requirement in development and prime Redis?
Redis 6 is used in this project for caching and analytics. While it is not required for development, it is recommended for production as it will decrease overall system stress.
// TODO Redis is required if there is no BigQuery data.
PostGIS is used to host the spatial data for searching.
Smocker is an http server that can be configured to mock requests. This service can be used in place of ArcGIS Server but every request that you plan to send to Smocker needs to have a mock registered otherwise it will return no information.
ArcGIS Server contains the geocoding services that support the API. UGRC typically deploys two geocoding services. One is sourced by road centerlines and the other with address points.
ArcGIS Server Environment Variables
- The default values an be found in appsettings.json in the
webapi.arcgis
object.
It is highly recommended to use containers for this project or at least certain parts of it.
docker-compose -f docker-compose.yml -f docker-compose.override.yml build
Building images is necessary any time values in the Dockerfile
or docker-compose.yml
change.
docker-compose -f docker-compose.yml -f docker-compose.override.yml up
Starting a container is like turning on the service. docker-compose -f docker-compose.yml -f docker-compose.override.yml up
will start all the containers referenced in this project's docker-compose.yaml
. For development purposes, we suggest running PostgreSQL and/or Redis in containers and letting Visual Studio (Code, for Mac, or Windows) run the API. PostgreSQL is required for the application to start while Redis is not required.
docker-compose -f docker-compose.yml -f docker-compose.override.yml up --detach cache
This will run redis in the background.
- openapi/v1/api.json