awacke1 commited on
Commit
b30c308
·
1 Parent(s): 3428f6c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +113 -49
app.py CHANGED
@@ -1,64 +1,128 @@
1
  import os
2
  import streamlit as st
3
  from azure.cosmos import CosmosClient, PartitionKey
 
 
 
4
  import glob
5
 
6
  # Environment Variables
7
  COSMOS_CONNECTION_STRING = os.getenv('COSMOS_CONNECTION_STRING')
 
8
 
9
- # Initialize Azure Cosmos DB Client
10
  cosmos_client = CosmosClient.from_connection_string(COSMOS_CONNECTION_STRING)
 
11
 
12
- # Function to Retrieve, Display, and Manage Cosmos DB Images
13
- def manage_cosmos_db_images():
14
- st.subheader('Manage Cosmos DB Images')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  db_properties = next(cosmos_client.list_databases(), None)
16
- if db_properties:
17
- db_name = db_properties['id']
18
- database_client = cosmos_client.get_database_client(db_name)
19
- container_properties = next(database_client.list_containers(), None)
20
- if container_properties:
21
- container_name = container_properties['id']
22
- container_client = database_client.get_container_client(container_name)
23
- items = list(container_client.read_all_items())
24
-
25
- # Display existing items with delete option
26
- for item in items:
27
- item_desc = f"Item: `{item['id']}`"
28
- if 'file_name' in item and item['file_name'].endswith('.png'):
29
- st.markdown(item_desc)
30
- st.image(item['file_name'])
31
- if st.button(f"🗑️ Delete {item['id']}", key=f"delete_{item['id']}"):
32
- container_client.delete_item(item=item, partition_key=item['id'])
33
- st.success(f"Deleted Item: {item['id']}")
34
-
35
- # Add or update PNG files from directory
36
- png_files = glob.glob('*.png')
37
- for file_name in png_files:
38
- item_id = os.path.splitext(file_name)[0]
39
- item_data = {"id": item_id, "file_name": file_name}
40
- if item_id not in {item['id'] for item in items}:
41
- container_client.create_item(body=item_data)
42
- st.write(f"Added Item: {item_id}")
43
-
44
- # UI to Manage PNG Images
45
- st.title('Manage PNG Images in Cosmos DB')
46
- if st.button('Manage PNG Images'):
47
- manage_cosmos_db_images()
48
 
49
- # Azure Blob Storage - Upload/Download
50
- st.subheader('Azure Blob Storage - Upload/Download')
51
- blob_container = st.text_input('Blob Container')
52
- blob_file = st.file_uploader('Upload file to Blob')
 
 
 
 
 
 
 
 
 
 
53
 
54
- if blob_file is not None and st.button('Upload to Blob'):
55
- blob_client = blob_service.get_blob_client(container=blob_container, blob=blob_file.name)
56
- blob_client.upload_blob(blob_file.getvalue())
57
 
58
- # Azure Functions - Trigger
59
- st.subheader('Azure Functions - Trigger')
60
- function_url = st.text_input('Function URL')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
 
62
- if st.button('Call Azure Function'):
63
- response = requests.get(function_url)
64
- st.write('Function Response:', response.text)
 
1
  import os
2
  import streamlit as st
3
  from azure.cosmos import CosmosClient, PartitionKey
4
+ from azure.storage.blob import BlobServiceClient
5
+ from azure.cosmos.exceptions import CosmosResourceNotFoundError
6
+ import requests
7
  import glob
8
 
9
  # Environment Variables
10
  COSMOS_CONNECTION_STRING = os.getenv('COSMOS_CONNECTION_STRING')
11
+ BLOB_STORAGE_CONNECTION_STRING = os.getenv('BLOB_STORAGE_CONNECTION_STRING')
12
 
13
+ # Initialize Azure Clients
14
  cosmos_client = CosmosClient.from_connection_string(COSMOS_CONNECTION_STRING)
15
+ blob_service = BlobServiceClient.from_connection_string(BLOB_STORAGE_CONNECTION_STRING)
16
 
17
+ @st.cache(allow_output_mutation=True)
18
+ def get_cosmos_client():
19
+ return cosmos_client
20
+
21
+ def get_database_client(db_name):
22
+ cosmos_client = get_cosmos_client()
23
+ return cosmos_client.get_database_client(db_name)
24
+
25
+ def get_container_client(db_name, container_name):
26
+ database_client = get_database_client(db_name)
27
+ return database_client.get_container_client(container_name)
28
+
29
+ def list_databases():
30
+ cosmos_client = get_cosmos_client()
31
+ return list(cosmos_client.list_databases())
32
+
33
+ def list_containers(db_name):
34
+ database_client = get_database_client(db_name)
35
+ return list(database_client.list_containers())
36
+
37
+ def list_items(db_name, container_name):
38
+ container_client = get_container_client(db_name, container_name)
39
+ return list(container_client.read_all_items())
40
+
41
+ def create_item(db_name, container_name, item_data):
42
+ container_client = get_container_client(db_name, container_name)
43
+ container_client.create_item(body=item_data)
44
+
45
+ def update_item(db_name, container_name, item_id, new_data):
46
+ container_client = get_container_client(db_name, container_name)
47
+ try:
48
+ item = container_client.read_item(item_id, partition_key=item_id)
49
+ for key in new_data:
50
+ item[key] = new_data[key]
51
+ container_client.replace_item(item_id, item)
52
+ except CosmosResourceNotFoundError:
53
+ st.error("Item not found for update")
54
+
55
+ def delete_item(db_name, container_name, item_id):
56
+ container_client = get_container_client(db_name, container_name)
57
+ try:
58
+ container_client.delete_item(item_id, partition_key=item_id)
59
+ except CosmosResourceNotFoundError:
60
+ st.error("Item not found for deletion")
61
+
62
+ def display_cosmos_db_structure():
63
+ # Existing function logic here
64
+
65
+ def manage_png_images():
66
+ # Get database and container names
67
  db_properties = next(cosmos_client.list_databases(), None)
68
+ if not db_properties:
69
+ st.error("No database found.")
70
+ return
71
+
72
+ db_name = db_properties['id']
73
+ database_client = get_database_client(db_name)
74
+ container_properties = next(database_client.list_containers(), None)
75
+ if not container_properties:
76
+ st.error("No container found.")
77
+ return
78
+
79
+ container_name = container_properties['id']
80
+ container_client = get_container_client(db_name, container_name)
81
+
82
+ # List existing items
83
+ existing_items = list_items(db_name, container_name)
84
+ existing_ids = {item['id']: item for item in existing_items}
85
+
86
+ # Display existing items
87
+ st.subheader("Existing PNG Images")
88
+ for item_id, item in existing_ids.items():
89
+ st.markdown(f"**{item_id}**: {item.get('file_name', 'No file name')}")
90
+ if st.button(f"🗑️ Delete {item_id}", key=f"delete_{item_id}"):
91
+ delete_item(db_name, container_name, item_id)
92
+ st.success(f"Deleted Item: {item_id}")
 
 
 
 
 
 
 
93
 
94
+ # Add or Update PNG files
95
+ st.subheader("Add or Update PNG Images")
96
+ png_files = glob.glob('*.png')
97
+ for file_name in png_files:
98
+ item_id = os.path.splitext(file_name)[0]
99
+ item_data = {"id": item_id, "file_name": file_name}
100
+ if item_id not in existing_ids:
101
+ if st.button(f"➕ Add {item_id}", key=f"add_{item_id}"):
102
+ create_item(db_name, container_name, item_data)
103
+ st.success(f"Added Item: {item_id}")
104
+ else:
105
+ if st.button(f"✏️ Update {item_id}", key=f"update_{item_id}"):
106
+ update_item(db_name, container_name, item_id, {"file_name": file_name})
107
+ st.success(f"Updated Item: {item_id}")
108
 
 
 
 
109
 
110
+ def list_blobs_in_container(container_name):
111
+ container_client = blob_service.get_container_client(container_name)
112
+ return list(container_client.list_blobs())
113
+
114
+ # UI Elements
115
+ if st.button('Show Cosmos DB Structure'):
116
+ display_cosmos_db_structure()
117
+
118
+ if st.button('Manage PNG Images'):
119
+ manage_png_images()
120
+
121
+ # Listing Blobs in a Container
122
+ blob_container = st.text_input('Enter Blob Container Name')
123
+ if st.button('List Blobs in Container'):
124
+ blobs = list_blobs_in_container(blob_container)
125
+ for blob in blobs:
126
+ st.write(blob.name)
127
 
128
+ # Remaining UI for Azure Blob Storage and Azure Functions as in the original code