Connecting from the backend
Our backend application, in the Backend
resources folder, is a Symfony 4 web app. You can find out more about Symfony from the project website, but in short it’s a modern PHP development framework, on which several of the leading PHP projects, like Laravel, Drupal and Concrete (to name a few) are built.
To make it simple to get this project up and running the folder contains all of the dependencies required already in there, so if you’re familiar with Symfony there’s no need to run composer install
or yarn install
because everything’s already there. I’ve done this specifically for this workshop to save bandwidth at the point everyone wants to start this activity. This app is also in GitHub if you want to use it as a base for building something else.
First up we need to do a little configuration. Open the Backend
folder in your IDE (or text editor). Locate the file .env.local
and update the settings in there following the comments provided. If you’re working on this at home you’ll need to change the server to point to the FileMaker server you’ve uploaded the resource files to (see activity one where we prepared the files)
To get the app up and running:
- open a terminal window on your Mac (Applications > Utilities > Terminal) or PowerShell on Windows (type powershell in the search is the easiest way to locate it)
- change to the directory you saved the resources to, e.g.
cd C:\dapi\resources\Backend
- start the built-in web server with
php bin/console server:run
and hit enter - check that the app is up by directing your browser to the url given (most likely
http://127.0.0.1:8000
)
Using Guzzle
To communicate with the FileMaker Data API we’re going to use the Guzzle HTTP client. This is easier than using cURL natively as it abstracts away a lot of the minor details and gives us a nice simple to use API. For full details of Guzzle see its documentation.
At it’s simplest level a Guzzle request looks like this
In the FileMaker Data API context, it’s the $options
where we need to do all the work. For example a Guzzle request to log a user in would look something like this.
If the credentials are correct then you’ll get a JSON response from the server which includes the token you’ll need for subsequent requests. To save that token you’ll need to json_decode
the response like this:
To use that token and make a subsequent request, for example to create a new record you’d do something like this:
Lots of this should look really familiar to what we’ve done in Postman, then in FileMaker, and then JavaScript – essentially all we’re doing is translating the same basic parameters and structures as we’ve used previously into a slightly different structure which works with the Guzzle API.
Activity
Now that the application is up and running and we’ve had an overview of how Guzzle works we need to make a number of changes to get connected to the FileMaker Data API.
- Head back to the
Backend
folder in your IDE - Locate the file
src/Service/FileMakerAPI.php
and open that - Complete the TODOs in
fetchToken()
andperformRequest()
- Open
src/Service/ChartService.php
- Complete the TODOs in
loadData()
Solution
An example of fetchToken
using Guzzle
An example of performRequest
using Guzzle