The IRMA SMS issuer takes care of issuing a mobile phone number to Yivi app users. It consists of a Java backend API, which connects to an irma server (issuer) and an SMS gateway service, and a frontend web app.
The easiest way to run the irma_sms_issuer for development purposes is by having a phone with the Yivi app installed and Docker.
To be able to get the verification code execute socat in a separate terminal to intercept relevant local traffic:
$ socat -v TCP-LISTEN:8766,crlf,reuseaddr,fork SYSTEM:"echo HTTP/1.1 200"
If you have an Android device you can also install StartHere SMS Gateway App. This will give you a more visual experience. Make sure your development machine and phone are on the same network. And then, when the app is started, it runs a local server imitating an SMS sending gateway. SMS messages, in the form of POST requests coming from irma_sms_issuer, are sent to this messaging service and will be displayed inside the app.
Various configuration files, keys and settings need to be in place to be able to build and run the apps.
- To generate the required keys, run:
$ utils/keygen.sh ./src/main/resources/sk ./src/main/resources/pk
- Create the Java app configuration:
Copy the file
src/main/resources/config.sample.json
tosrc/main/resources/config.json
and set thesms_sender_address
to match the IP address of your localhost or the Address displayed in the StartHere SMS Gateway app. For example:
{
"sms_sender_address": "http://192.168.1.100:8766",
}
Use docker-compose up combined with your localhost IP address as environment variable to spin up the containers:
$ IP=192.168.1.105 docker-compose up
Note: do not use 127.0.0.1
or 0.0.0.0
as IP addresses as this will result in the app not being able to find the issuer.
The configuration should be mounted in the /config
directory of the container. The docker-compose.yml
file already contains this configuration.
By default, docker-compose caches docker images, so on a second run the previous built images will be used. A fresh build can be enforced using the --build flag.
$ IP=192.168.1.105 docker-compose up --build
Navigate to http://localhost:8080 in your browser and follow the instructions to test the complete flow.
The Java api and JavaScript frontend can be built and run manually. To do so:
- Generate JWT keys for the issuer
$ utils/keygen.sh ./src/main/resources/sk ./src/main/resources/pk
-
Copy the file
src/main/resources/config.sample.json
tosrc/main/resources/config.json
and modify it. -
Build the webapp:
$ cd webapp
$ yarn install
$ yarn build en
The last command builds the English version of the webapp. To build another language, for example Dutch, run yarn build nl
instead.
-
Copy the file
webapp/config.example.js
towebapp/build/assets/config.js
and modify it -
Run the following command in the root directory of this project:
$ gradle appRun
To open the webapp navigate to http://localhost:8080/irma_sms_issuer. The API is accessible via http://localhost:8080/irma_sms_issuer/api.
You can run the tests, defined in src/test/java/foundation/privacybydesign/sms/ratelimit
, using the following command:
$ gradle test