forked from oracle-samples/oracle-functions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunc.py
46 lines (42 loc) · 1.59 KB
/
func.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#
# oci-objectstorage-get-object version 1.0.
#
# Copyright (c) 2020 Oracle, Inc.
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
#
import io
import os
import json
import sys
from fdk import response
import oci.object_storage
def handler(ctx, data: io.BytesIO=None):
try:
body = json.loads(data.getvalue())
bucketName = body["bucketName"]
objectName = body["objectName"]
except Exception:
error = 'Input a JSON object in the format: \'{"bucketName": "<bucket name>"}, "objectName": "<object name>"}\' '
raise Exception(error)
resp = get_object(bucketName, objectName)
return response.Response(
ctx,
response_data=json.dumps(resp),
headers={"Content-Type": "application/json"}
)
def get_object(bucketName, objectName):
signer = oci.auth.signers.get_resource_principals_signer()
client = oci.object_storage.ObjectStorageClient(config={}, signer=signer)
namespace = client.get_namespace().data
try:
print("Searching for bucket and object", flush=True)
object = client.get_object(namespace, bucketName, objectName)
print("found object", flush=True)
if object.status == 200:
print("Success: The object " + objectName + " was retrieved with the content: " + object.data.text, flush=True)
message = object.data.text
else:
message = "Failed: The object " + objectName + " could not be retrieved."
except Exception as e:
message = "Failed: " + str(e.message)
return { "content": message }