Add device registry
- add RegistryController - add DeviceRegistryService - add Helper.kt - add device registry property - set up registry property
This commit is contained in:
@@ -12,6 +12,7 @@ Classes and endpoints, to shape and to steer, Devices and sensors, their purpose
|
|||||||
| server.ssl.key-store | * | HTTP Keystore |
|
| server.ssl.key-store | * | HTTP Keystore |
|
||||||
| server.ssl.key-store-type | * | HTTP Cert Type |
|
| server.ssl.key-store-type | * | HTTP Cert Type |
|
||||||
| server.ssl.key-store-password | ** | HTTP Cert Pass |
|
| server.ssl.key-store-password | ** | HTTP Cert Pass |
|
||||||
|
| device-registry.url | * | Device Register URL |
|
||||||
|
|
||||||
Required: * can be stored as text, and ** need to be stored as secret.
|
Required: * can be stored as text, and ** need to be stored as secret.
|
||||||
|
|
||||||
|
|||||||
@@ -8,8 +8,11 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
implementation(hlaeja.fasterxml.jackson.module.kotlin)
|
||||||
|
implementation(hlaeja.kotlin.logging)
|
||||||
implementation(hlaeja.kotlin.reflect)
|
implementation(hlaeja.kotlin.reflect)
|
||||||
implementation(hlaeja.kotlinx.coroutines)
|
implementation(hlaeja.kotlinx.coroutines)
|
||||||
|
implementation(hlaeja.library.hlaeja.common.messages)
|
||||||
implementation(hlaeja.springboot.starter.actuator)
|
implementation(hlaeja.springboot.starter.actuator)
|
||||||
implementation(hlaeja.springboot.starter.webflux)
|
implementation(hlaeja.springboot.starter.webflux)
|
||||||
|
|
||||||
|
|||||||
7
http/registry.http
Normal file
7
http/registry.http
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
### register device for a type
|
||||||
|
POST {{hostname}}/register
|
||||||
|
Content-Type: application/json
|
||||||
|
|
||||||
|
{
|
||||||
|
"type": "00000000-0000-0000-0000-000000000000"
|
||||||
|
}
|
||||||
@@ -1,8 +1,13 @@
|
|||||||
package ltd.hlaeja
|
package ltd.hlaeja
|
||||||
|
|
||||||
|
import ltd.hlaeja.property.DeviceRegistryProperty
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication
|
import org.springframework.boot.autoconfigure.SpringBootApplication
|
||||||
|
import org.springframework.boot.context.properties.EnableConfigurationProperties
|
||||||
import org.springframework.boot.runApplication
|
import org.springframework.boot.runApplication
|
||||||
|
|
||||||
|
@EnableConfigurationProperties(
|
||||||
|
DeviceRegistryProperty::class,
|
||||||
|
)
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
class Application
|
class Application
|
||||||
|
|
||||||
|
|||||||
18
src/main/kotlin/ltd/hlaeja/controller/RegistryController.kt
Normal file
18
src/main/kotlin/ltd/hlaeja/controller/RegistryController.kt
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
package ltd.hlaeja.controller
|
||||||
|
|
||||||
|
import ltd.hlaeja.library.deviceRegistry.Device
|
||||||
|
import ltd.hlaeja.service.DeviceRegistryService
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping
|
||||||
|
import org.springframework.web.bind.annotation.RequestBody
|
||||||
|
import org.springframework.web.bind.annotation.RestController
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
class RegistryController(
|
||||||
|
private val registryService: DeviceRegistryService,
|
||||||
|
) {
|
||||||
|
|
||||||
|
@PostMapping("/register")
|
||||||
|
suspend fun addDevice(
|
||||||
|
@RequestBody request: Device.Request,
|
||||||
|
): Device.Response = registryService.registerDevice(request)
|
||||||
|
}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
package ltd.hlaeja.property
|
||||||
|
|
||||||
|
import org.springframework.boot.context.properties.ConfigurationProperties
|
||||||
|
|
||||||
|
@ConfigurationProperties(prefix = "device-registry")
|
||||||
|
data class DeviceRegistryProperty(
|
||||||
|
val url: String,
|
||||||
|
)
|
||||||
24
src/main/kotlin/ltd/hlaeja/service/DeviceRegistryService.kt
Normal file
24
src/main/kotlin/ltd/hlaeja/service/DeviceRegistryService.kt
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
package ltd.hlaeja.service
|
||||||
|
|
||||||
|
import ltd.hlaeja.library.deviceRegistry.Device
|
||||||
|
import ltd.hlaeja.util.logCall
|
||||||
|
import ltd.hlaeja.property.DeviceRegistryProperty
|
||||||
|
import org.springframework.http.HttpStatus.REQUEST_TIMEOUT
|
||||||
|
import org.springframework.stereotype.Service
|
||||||
|
import org.springframework.web.reactive.function.client.WebClient
|
||||||
|
import org.springframework.web.reactive.function.client.awaitBodyOrNull
|
||||||
|
import org.springframework.web.server.ResponseStatusException
|
||||||
|
|
||||||
|
@Service
|
||||||
|
class DeviceRegistryService(
|
||||||
|
private val webClient: WebClient,
|
||||||
|
private val deviceRegistryProperty: DeviceRegistryProperty,
|
||||||
|
) {
|
||||||
|
suspend fun registerDevice(
|
||||||
|
request: Device.Request,
|
||||||
|
): Device.Response = webClient.post()
|
||||||
|
.uri("${deviceRegistryProperty.url}/device".also(::logCall))
|
||||||
|
.bodyValue(request)
|
||||||
|
.retrieve()
|
||||||
|
.awaitBodyOrNull<Device.Response>() ?: throw ResponseStatusException(REQUEST_TIMEOUT)
|
||||||
|
}
|
||||||
9
src/main/kotlin/ltd/hlaeja/util/Helper.kt
Normal file
9
src/main/kotlin/ltd/hlaeja/util/Helper.kt
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
package ltd.hlaeja.util
|
||||||
|
|
||||||
|
import mu.KotlinLogging
|
||||||
|
|
||||||
|
private val log = KotlinLogging.logger {}
|
||||||
|
|
||||||
|
fun logCall(url: String) {
|
||||||
|
log.debug("calling: {}", url)
|
||||||
|
}
|
||||||
@@ -19,6 +19,11 @@
|
|||||||
"name": "spring.application.build.os.version",
|
"name": "spring.application.build.os.version",
|
||||||
"type": "java.lang.String",
|
"type": "java.lang.String",
|
||||||
"description": "Application build os version."
|
"description": "Application build os version."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "device-registry.url",
|
||||||
|
"type": "java.lang.String",
|
||||||
|
"description": "Url for device registry service."
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,6 +27,9 @@ server:
|
|||||||
key-store-type: PKCS12
|
key-store-type: PKCS12
|
||||||
key-store-password: password
|
key-store-password: password
|
||||||
|
|
||||||
|
device-registry:
|
||||||
|
url: http://localhost:9010
|
||||||
|
|
||||||
---
|
---
|
||||||
##########################
|
##########################
|
||||||
### Docker environment ###
|
### Docker environment ###
|
||||||
@@ -44,6 +47,9 @@ server:
|
|||||||
key-store-type: PKCS12
|
key-store-type: PKCS12
|
||||||
key-store-password: password
|
key-store-password: password
|
||||||
|
|
||||||
|
device-registry:
|
||||||
|
url: http://DeviceRegistry:8080
|
||||||
|
|
||||||
---
|
---
|
||||||
##############################
|
##############################
|
||||||
### Production environment ###
|
### Production environment ###
|
||||||
|
|||||||
Reference in New Issue
Block a user