generated from areed1192/sigma-template
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcosmos.py
191 lines (138 loc) · 4.89 KB
/
cosmos.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
import time
import textwrap
import datetime
from typing import List
from typing import Dict
from typing import Union
from azure.cosmos import documents
from azure.cosmos import cosmos_client
from azure.cosmos import ContainerProxy
from azure.cosmos import DatabaseProxy
from azure.cosmos import exceptions
from azure.cosmos.partition_key import PartitionKey
from azure.mgmt.resource import SubscriptionClient
from azure.common.credentials import ServicePrincipalCredentials
from finnews.client import News
from azure_data_pipeline.query import QueryBuilder
class AzureCosmosClient():
def __init__(self, account_uri: str, account_key: str) -> None:
"""Initializes the `AzureCosmosClient` object.
Arguments:
----
account_uri (str): Your Azure Cosmos Account ID.
account_key (str): Your Azure Cosmos Account Key.
"""
self.connected = False
self.authenticated = False
# Define the client info.
self.account_uri = account_uri
self.account_key = account_key
self._database_name = None
self._database_client: DatabaseProxy = None
self._container_name = None
self._container_client: ContainerProxy = None
# Create the News Client object.
self._news_client = News()
self._query_client: QueryBuilder = None
self._cosmos_client: cosmos_client.CosmosClient = self.connect()
self._cosmos_client_connection: cosmos_client.CosmosClientConnection = self._cosmos_client.client_connection
def __repr__(self):
"""String representation of our `AzureSQLClient` instance."""
# define the string representation
str_representation = '<AzureCosmosClient (connected={login_state}, authorized={auth_state})>'.format(
login_state=self.connected,
auth_state=self.authenticated
)
return str_representation
@property
def news_client(self) -> News:
"""Returns the `NewsClient` object.
Returns:
----
News: A `NewsClient` object.
"""
return self._news_client
@property
def query_client(self) -> QueryBuilder:
"""Returns the `QueryBuilder` client object.
Returns:
----
QueryBuilder: The query builder client.
"""
# Initialize the Client.
self._query_client = QueryBuilder()
return self._query_client
def connect(self) -> cosmos_client.CosmosClient:
"""Connects to the Cosmos Database.
Returns:
----
cosmos_client.CosmosClient: A cosmos client object.
"""
client = cosmos_client.CosmosClient(
url=self.account_uri,
credential={"masterKey": self.account_key}
)
return client
def grab_database(self, database_name: str) -> DatabaseProxy:
"""Used to query the a database using it's name.
Arguments:
----
database_name (str): The database name (ID).
Returns:
----
DatabaseProxy: A database proxy object which can be used to
query other items.
"""
# Set the name attribute.
self._database_name = database_name
# Get the database.
database = self._cosmos_client.get_database_client(
database=self._database_name
)
self._database_client = database
return self._database_client
def grab_container(self, container_id: str) -> ContainerProxy:
"""Used to grab a container from the database.
Arguments:
----
container_id (str): The name of the container (ID).
Returns:
----
ContainerProxy: A container proxy object.
"""
container = self._database_client.get_container_client(
container=container_id
)
self._container_client = container
return self._container_client
def upsert_article(self, article: dict) -> dict:
"""Used to upsert an article to our database.
Arguments:
----
article (dict): An article resource, in the form of
a dictionary.
Returns:
----
dict: A dictionary representing the upserted item.
"""
# Add the item.
response = self._container_client.upsert_item(
body=article
)
return response
def grab_all_items(self, container_id: str) -> List[dict]:
"""Used to grab all the items from a container.
Overview:
----
If no container ID is speicified then will use the
container queried from the `grab_container` method.
Arguments:
----
container_id (str): The name of the container (ID).
Returns:
----
(List[Dict]): A collection of documents.
"""
# Add the item.
documents = self._container_client.read_all_items()
return documents