2021-02-15 05:23:51 +00:00
|
|
|
import boto3
|
2021-04-03 23:36:05 +00:00
|
|
|
import botocore.credentials
|
|
|
|
from botocore.awsrequest import AWSRequest
|
|
|
|
from botocore.endpoint import URLLib3Session
|
|
|
|
from botocore.auth import SigV4Auth
|
|
|
|
from aws_xray_sdk.core import xray_recorder
|
|
|
|
from aws_xray_sdk.core import patch_all
|
2021-02-15 05:23:51 +00:00
|
|
|
import json
|
|
|
|
import os
|
2021-04-03 23:36:05 +00:00
|
|
|
from datetime import datetime, timedelta, timezone
|
|
|
|
import sys, traceback
|
2021-04-28 11:32:22 +00:00
|
|
|
import uuid
|
2021-02-15 05:23:51 +00:00
|
|
|
|
2021-04-03 23:36:05 +00:00
|
|
|
HOST = os.getenv("ES")
|
|
|
|
# get current sondes, filter by date, location
|
2021-04-28 11:32:22 +00:00
|
|
|
s3 = boto3.resource('s3')
|
2021-04-03 23:36:05 +00:00
|
|
|
def history(event, context):
|
|
|
|
path = "telm-*/_search"
|
|
|
|
payload = {
|
|
|
|
"aggs": {
|
|
|
|
"3": {
|
|
|
|
"date_histogram": {
|
|
|
|
"field": "datetime",
|
|
|
|
"fixed_interval": "1s",
|
|
|
|
"min_doc_count": 1,
|
|
|
|
},
|
|
|
|
"aggs": {
|
|
|
|
"1": {
|
|
|
|
"top_hits": {
|
|
|
|
"size": 1,
|
|
|
|
"sort": [{"datetime": {"order": "desc"}}],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"query": {
|
|
|
|
"bool": {
|
|
|
|
"filter": [
|
|
|
|
{"match_all": {}},
|
|
|
|
{
|
|
|
|
"match_phrase": {
|
|
|
|
"serial": str(event["pathParameters"]["serial"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
results = es_request(payload, path, "POST")
|
|
|
|
output = [
|
2021-04-28 11:32:22 +00:00
|
|
|
{k: v for k, v in data["1"]["hits"]["hits"][0]["_source"].items() if k != 'user-agent' and k != 'upload_time_delta'}
|
|
|
|
|
2021-04-03 23:36:05 +00:00
|
|
|
for data in results["aggregations"]["3"]["buckets"]
|
|
|
|
]
|
2021-04-28 11:32:22 +00:00
|
|
|
s3 = boto3.resource('s3')
|
|
|
|
object = s3.Object('sondehub-open-data', 'export/' + str(uuid.uuid4()))
|
|
|
|
object.put(Body=json.dumps(output).encode('utf-8'), ACL='public-read', ContentType='application/json')
|
|
|
|
return {"statusCode": 302, "headers": {"Location": f'https://{object.bucket_name}.s3.amazonaws.com/{object.key}'}}
|
2021-02-15 05:23:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2021-04-03 23:36:05 +00:00
|
|
|
def es_request(payload, path, method):
|
|
|
|
# get aws creds
|
|
|
|
session = boto3.Session()
|
2021-02-15 05:23:51 +00:00
|
|
|
|
2021-04-03 23:36:05 +00:00
|
|
|
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)
|
2021-02-15 05:23:51 +00:00
|
|
|
|
2021-04-03 23:36:05 +00:00
|
|
|
session = URLLib3Session()
|
|
|
|
r = session.send(request.prepare())
|
|
|
|
return json.loads(r.text)
|
2021-02-15 05:23:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
print(
|
|
|
|
history(
|
2021-04-28 11:32:22 +00:00
|
|
|
{"pathParameters": {"serial": "S3530044"}}, {}
|
2021-02-15 05:23:51 +00:00
|
|
|
)
|
|
|
|
)
|
2021-04-03 23:36:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|