mirror of
https://github.com/projecthorus/sondehub-infra.git
synced 2025-02-20 17:12:50 +00:00
add in basic query system
This commit is contained in:
parent
f4c92f6599
commit
21f67212ef
61
main.tf
61
main.tf
@ -1,4 +1,5 @@
|
||||
# add sns / sqs
|
||||
# TODO
|
||||
# add sns / sqs, AWS IoT actions
|
||||
terraform {
|
||||
backend "s3" {
|
||||
bucket = "sondehub-terraform"
|
||||
@ -400,6 +401,13 @@ data "archive_file" "api_to_iot" {
|
||||
output_path = "${path.module}/build/sonde-api-to-iot-core.zip"
|
||||
}
|
||||
|
||||
data "archive_file" "query" {
|
||||
type = "zip"
|
||||
source_file = "query/lambda_function.py"
|
||||
output_path = "${path.module}/build/query.zip"
|
||||
}
|
||||
|
||||
|
||||
data "archive_file" "sign_socket" {
|
||||
type = "zip"
|
||||
source_file = "sign-websocket/lambda_function.py"
|
||||
@ -430,6 +438,30 @@ resource "aws_lambda_function" "LambdaFunction" {
|
||||
]
|
||||
}
|
||||
|
||||
resource "aws_lambda_function" "get_sondes" {
|
||||
function_name = "query"
|
||||
handler = "lambda_function.get_sondes"
|
||||
filename = "${path.module}/build/query.zip"
|
||||
source_code_hash = data.archive_file.query.output_base64sha256
|
||||
publish = true
|
||||
memory_size = 256
|
||||
role = aws_iam_role.IAMRole5.arn
|
||||
runtime = "python3.7"
|
||||
timeout = 10
|
||||
tracing_config {
|
||||
mode = "Active"
|
||||
}
|
||||
environment {
|
||||
variables = {
|
||||
"ES" = "es.${local.domain_name}"
|
||||
}
|
||||
}
|
||||
layers = [
|
||||
"arn:aws:lambda:us-east-1:${data.aws_caller_identity.current.account_id}:layer:xray-python:1",
|
||||
"arn:aws:lambda:us-east-1:${data.aws_caller_identity.current.account_id}:layer:iot:3"
|
||||
]
|
||||
}
|
||||
|
||||
resource "aws_lambda_function" "sign_socket" {
|
||||
function_name = "sign-websocket"
|
||||
handler = "lambda_function.lambda_handler"
|
||||
@ -461,6 +493,13 @@ resource "aws_lambda_permission" "sign_socket" {
|
||||
source_arn = "arn:aws:execute-api:us-east-1:${data.aws_caller_identity.current.account_id}:r03szwwq41/*/*/sondes/websocket"
|
||||
}
|
||||
|
||||
resource "aws_lambda_permission" "get_sondes" {
|
||||
action = "lambda:InvokeFunction"
|
||||
function_name = aws_lambda_function.get_sondes.arn
|
||||
principal = "apigateway.amazonaws.com"
|
||||
source_arn = "arn:aws:execute-api:us-east-1:${data.aws_caller_identity.current.account_id}:r03szwwq41/*/*/sondes"
|
||||
}
|
||||
|
||||
resource "aws_lambda_permission" "LambdaPermission2" {
|
||||
action = "lambda:InvokeFunction"
|
||||
function_name = aws_lambda_function.LambdaFunction.arn
|
||||
@ -513,7 +552,7 @@ resource "aws_apigatewayv2_stage" "ApiGatewayV2Stage" {
|
||||
}
|
||||
auto_deploy = true
|
||||
lifecycle {
|
||||
ignore_changes = ["deployment_id"]
|
||||
ignore_changes = [deployment_id]
|
||||
}
|
||||
}
|
||||
|
||||
@ -550,6 +589,14 @@ resource "aws_apigatewayv2_route" "sign_socket" {
|
||||
target = "integrations/${aws_apigatewayv2_integration.sign_socket.id}"
|
||||
}
|
||||
|
||||
resource "aws_apigatewayv2_route" "get_sondes" {
|
||||
api_id = aws_apigatewayv2_api.ApiGatewayV2Api.id
|
||||
api_key_required = false
|
||||
authorization_type = "NONE"
|
||||
route_key = "GET /sondes"
|
||||
target = "integrations/${aws_apigatewayv2_integration.get_sondes.id}"
|
||||
}
|
||||
|
||||
resource "aws_apigatewayv2_integration" "sign_socket" {
|
||||
api_id = aws_apigatewayv2_api.ApiGatewayV2Api.id
|
||||
connection_type = "INTERNET"
|
||||
@ -560,6 +607,16 @@ resource "aws_apigatewayv2_integration" "sign_socket" {
|
||||
payload_format_version = "2.0"
|
||||
}
|
||||
|
||||
resource "aws_apigatewayv2_integration" "get_sondes" {
|
||||
api_id = aws_apigatewayv2_api.ApiGatewayV2Api.id
|
||||
connection_type = "INTERNET"
|
||||
integration_method = "POST"
|
||||
integration_type = "AWS_PROXY"
|
||||
integration_uri = aws_lambda_function.get_sondes.arn
|
||||
timeout_milliseconds = 30000
|
||||
payload_format_version = "2.0"
|
||||
}
|
||||
|
||||
resource "aws_apigatewayv2_integration" "ApiGatewayV2Integration" {
|
||||
api_id = aws_apigatewayv2_api.ApiGatewayV2Api.id
|
||||
connection_type = "INTERNET"
|
||||
|
115
query/lambda_function.py
Normal file
115
query/lambda_function.py
Normal file
@ -0,0 +1,115 @@
|
||||
import boto3
|
||||
import botocore.credentials
|
||||
from botocore.awsrequest import AWSRequest
|
||||
from botocore.endpoint import URLLib3Session
|
||||
from botocore.auth import SigV4Auth
|
||||
import json
|
||||
import os
|
||||
|
||||
HOST=os.getenv("ES")
|
||||
# get current sondes, filter by date, location
|
||||
|
||||
def get_sondes(event, context):
|
||||
path = "telm-*/_search"
|
||||
payload = {
|
||||
"aggs": {
|
||||
"2": {
|
||||
"terms": {
|
||||
"field": "serial.keyword",
|
||||
"order": {
|
||||
"_key": "desc"
|
||||
},
|
||||
"size": 10000
|
||||
},
|
||||
"aggs": {
|
||||
"1": {
|
||||
"top_hits": {
|
||||
"size": 1,
|
||||
"sort": [
|
||||
{
|
||||
"datetime": {
|
||||
"order": "desc"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"query": {
|
||||
"bool": {
|
||||
"filter": [
|
||||
{
|
||||
"match_all": {}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# add filters
|
||||
if "queryStringParameters" in event:
|
||||
if "last" in event["queryStringParameters"]:
|
||||
payload["query"]["bool"]["filter"].append(
|
||||
{
|
||||
"range": {
|
||||
"datetime": {
|
||||
"gte": f"now-{int(event['queryStringParameters']['last'])}s",
|
||||
"lte": "now"
|
||||
}
|
||||
}
|
||||
}
|
||||
)
|
||||
if "lat" in event["queryStringParameters"] and "lon" in event["queryStringParameters"] and "distance" in event["queryStringParameters"]:
|
||||
payload["query"]["bool"]["filter"].append(
|
||||
{
|
||||
"geo_distance": {
|
||||
"distance": f"{int(event['queryStringParameters']['distance'])}m",
|
||||
"position": {
|
||||
"lat": float(event['queryStringParameters']['lat']),
|
||||
"lon": float(event['queryStringParameters']['lon'])
|
||||
}
|
||||
}
|
||||
}
|
||||
)
|
||||
# if the user doesn't specify a range we should add one - 24 hours is probably a good start
|
||||
if "range" not in payload["query"]["bool"]["filter"]:
|
||||
payload["query"]["bool"]["filter"].append(
|
||||
{
|
||||
"range": {
|
||||
"datetime": {
|
||||
"gte": "now-1d",
|
||||
"lte": "now"
|
||||
}
|
||||
}
|
||||
}
|
||||
)
|
||||
|
||||
results = es_request(payload, path, "POST")
|
||||
buckets = results["aggregations"]["2"]["buckets"]
|
||||
sondes = { bucket["1"]["hits"]["hits"][0]["_source"]["serial"]: bucket["1"]["hits"]["hits"][0]["_source"] for bucket in buckets}
|
||||
return json.dumps(sondes)
|
||||
|
||||
def es_request(payload, path, method):
|
||||
#get aws creds
|
||||
session = boto3.Session()
|
||||
|
||||
params = json.dumps(payload)
|
||||
headers = {
|
||||
'Host': HOST,
|
||||
'Content-Type': "application/json"
|
||||
}
|
||||
request = AWSRequest(method="POST", url=f"https://{HOST}/{path}", data=params, headers=headers)
|
||||
SigV4Auth(boto3.Session().get_credentials(), "es", "us-east-1").add_auth(request)
|
||||
|
||||
|
||||
session = URLLib3Session()
|
||||
r = session.send(request.prepare())
|
||||
return json.loads(r.text)
|
||||
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
#print(get_sondes({"queryStringParameters":{"lat":"-28.22717","lon":"153.82996","distance":"50000"}}, {}))
|
||||
print(get_sondes({},{}))
|
Loading…
x
Reference in New Issue
Block a user