Skip to content

chomutovskij/device-service

Repository files navigation

device-service

How to run locally

Running the server

  • clone the repo
  • cd device-service
  • set JAVA_HOME to java 15
  • update the Rapid API token in the var/conf.yml
    • vim device-service-server/var/conf/conf.yml (and replace api-key value)
    • you can leave it as is, the service will fall back to the gsmarena_dataset.csv
  • ./gradlew run

Checking the state of DB

  • sqlite3 database.db
  • SELECT * FROM devices;

APIs

Device registration and deletion:

curl -X POST "http://localhost:8346/api/v1/management/create/Samsung%20Galaxy%20S5"
curl -X DELETE "http://localhost:8346/api/v1/management/delete/11"
curl -X DELETE "http://localhost:8346/api/v1/management/delete/all"

Retrieving information about the device:

curl -X GET -H "Content-Type: application/json" "http://localhost:8346/api/v1/info/byname/Samsung%20Galaxy%20S9" | jq
curl -X GET -H "Content-Type: application/json" "http://localhost:8346/api/v1/info/byid/2" | jq
curl -X GET -H "Content-Type: application/json" "http://localhost:8346/api/v1/info/all" | jq
curl -X GET -H "Content-Type: application/json" "http://localhost:8346/api/v1/info/all/available" | jq

Reserving and returning the device:

using the device name

curl -X PUT -H "Content-Type: application/json" -d '{"person": "Andrej", "deviceName": "Nokia 3310"}' "http://localhost:8346/api/v1/booking/reserve"
curl -X PUT -H "Content-Type: application/json" -d '{"person": "Andrej", "deviceName": "Nokia 3310"}' "http://localhost:8346/api/v1/booking/return"

using the device ID

curl -X PUT -H "Content-Type: application/json" -d '{"person": "Andrej", "deviceId": 10}' "http://localhost:8346/api/v1/booking/reserve"
curl -X PUT -H "Content-Type: application/json" -d '{"person": "Andrej", "deviceId": 10}' "http://localhost:8346/api/v1/booking/return" 

Tools and Libraries

This service uses the following tools and libraries, please consult their respective documentation for more information.

  • conjure - IDL for defining APIs once and generating client/server interfaces in different languages.
    • conjure-java-runtime - conjure libraries for HTTP&JSON-based RPC using Retrofit, Feign, OkHttp as clients and Jetty/Jersey as servers
    • conjure-java - conjure generator for java clients and servers
    • conjure-typescript - conjure generator for typescript clients
  • gradle - a highly flexible build tool. Some of the gradle plugins applied are:
    • gradle-conjure - a gradle plugin that contains tasks to generate conjure bindings.
    • gradle-baseline - a gradle plugin for configuring code quality tools in builds and projects.
  • undertow - a simple framework for building web services

Project Structure

  • device-service-api - a sub-project that defines device-service APIs in Conjure and generates both java and typescript bindings.

    This is what the api project looks like:

    ├── device-service-api
    │   ├── build.gradle
    │   ├── device-service-api-dialogue
    │   ├── device-service-api-objects
    │   ├── device-service-api-typescript
    │   ├── device-service-api-undertow
    │   └── src
    │       └── main
    │           └── conjure
    │               └── device-service-api.yml
    
    • build.gradle - a gradle script that
      1. configures sub-projects with needed dependencies to generate java bindings. e.g. device-service-api-dialogue
      2. configures publishTypescript task to generate .npmrc in the generated root folder, device-service-api-typescript/src for publishing the generated npm module.
      3. modifies the conjure extension to specify the package name under which the npm module will be published.
    • device-service-api-dialogue - the sub-project where all generated service interfaces live.
    • device-service-api-objects - the sub-project where all generated object classes live.
    • device-service-api-typescript - the sub-project where all generated typescript bindings live.
    • src/main/conjure - directory containing conjure definition yml files where recipe APIs are defined, please refer to specification.md for more details.
  • device-service-server - an Undertow application project that uses conjure generated Undertow binding for resource class implementation

    This is what the server project looks like:

    ├── device-service-server
    │   ├── build.gradle
    │   ├── src
    │   │   ├── main/java
    │   │   └── test/java
    │   └── var
    │       └── conf
    │           └── conf.yml
    
    • build.gradle - configures the project with needed dependencies and applies the gradle-conjure and application plugins, so we can run the server locally or in IDE.
    • src/main/java - source classes for the Undertow application. e.g. DeviceBookingResource.java class implements the generated Undertow interface.
    • test/main/java - test source classes for simple integration tests that uses generated jersey interface for client interaction.
    • var/conf/conf.yml - the Undertow application configuration yml file
  • build.gradle - the root level gradle script where a set of gradle plugins are configured, including gradle-conjure.

  • settings.gradle - the gradle settings file where all sub projects are configured.

  • versions.props - a property file of the nebula version recommender plugin with which we can specify versions of project dependencies, including conjure generators.

Development

Useful Gradle Commands:

  • ./gradlew tasks for tasks available in this project.
  • ./gradlew idea for IntelliJ
  • ./gradlew eclipse for Eclipse
  • ./gradlew run for running the server or use IDE to debug it

Certificates

/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\
/!\ Please do not use these certificates in prod!  /!\
/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\/!\

The certificates presented with this server are an example so that the tests run in HTTPs. These were generated by following the steps below. All passwords are "changeit"

keytool -genkey -alias bmc -keyalg RSA -keystore keystore.jks -keysize 2048 -dname "CN=localhost,OU=AQ,O=AQ,C=AQ" -ext "SAN:c=DNS:localhost,IP:127.0.0.1" -validity 3650

openssl req -new -x509 -keyout ca-key -out ca-cert

keytool -keystore KeyStore.jks -alias bmc -certreq -file cert-file

openssl x509 -req -CA ca-cert -CAkey ca-key -in cert-file -out cert-signed -days 365 -CAcreateserial -passin pass:changeit

keytool -keystore KeyStore.jks -alias CARoot -import -file ca-cert

keytool -keystore KeyStore.jks -alias bmc -import -file cert-signed

keytool -keystore truststore.jks -alias bmc -import -file ca-cert

About

Java Microservice to book and return mobile devices, and fetch mobile network information about them

Topics

Resources

License

Stars

Watchers

Forks