In this example, we build a module with connection to an api - step by step.
Goal: Opening weather/wiesbaden
should show a nice weather widget.
For this example, you should be already familiar with the Flamingo basics and the helloworld tutorial.
We want to use the ports and adapters pattern for our module
Layer | Implementations |
---|---|
Infrastructure | A fake implementation and the real implementation against openweather |
Interfaces | Web controller to show weather |
Application | Simple Service as entry |
Domain | Simple model to represent weather information |
git clone git@github.com:i-love-flamingo/example-openweather.git
cd example-openweather
git checkout start-over
make frontend
make serve
open http://localhost:3322/
The start-over branch provides a skeleton Flamingo project to start with. Following the tutorial steps, you will reach the status of the master branch.
Note: While you are working you can activate the carotene file watcher via
make frontend-dev
.
- Create new Flamingo module in
src/openweather
- Create a controller that renders the page
weather/wiesbaden
, withwiesbaden
interpreted as parameter - Register a route using a Flamingo routes module and a (GET) handler
Define a useful domain model.
It's ok to conform with the api (subset) openweathermap.org/current
We will use the domain model to be passed to the template later.
Start with mocking the template variable and display the weather by using the debug
mixin:
include /atom/debug/debug
// ...
+debug(weather)
- Implement backend logic inside the module - following ports and adapters.
- Plan it: What needs to be done in which layer?
(start from inner to outer)?
- Define a
domainService
(as secondary port) - Add
applicationService
(that gets the adapter injected) - Add a
fakeImplementation
for thedomainService
- Bind the fake implementation to the
domainService
in your module'sConfigure
function - Call the
applicationService
from the controller
- Define a
-
Implement an adapter against the openweather API and adjust the template to show nice HTML instead of debug output.
Use
http://openweathermap.org/img/w/${weather.iconCode}.png
for a nice image.Push the variable content to the browser console using the
console
mixin:include /atom/console/console // ... +console(weather)
-
We suggest to use pact for consumer functional testing of api implementations
- For further reading: docs.pact.io
- Usage of Flamingo’s module
core/testutil
to support pact tests - Setup Pact on your dev host: github.com/pact-foundation/pact-go
You can start into this step with the skeleton provided in step_4_start.patch
:
git apply step_4_start.patch
- Call the external API
- Unmarshal Response to DTO (DataTransferObjects)
- Mapper DTO -> DomainModel (Anti Corruption Layer)
Add a data controller to show the current weather of „Wiesbaden“ in the Header by using Flamingo pugtemplate’s template function data
.
Ideas:
- Use „locale“ package to translate „mainCharacteristics“
- Add template function to convert kelvin to celcius
- Add form to select the city
- …