forked from microsoft/BotBuilder-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimple_graph_client.py
55 lines (44 loc) · 1.86 KB
/
simple_graph_client.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
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
import json
from urllib.parse import urlparse, urljoin
from requests_oauthlib import OAuth2Session
AUTHORITY_URL = "https://login.microsoftonline.com/common"
RESOURCE = "https://graph.microsoft.com"
API_VERSION = "beta"
class SimpleGraphClient:
def __init__(self, token: str):
self.token = token
self.client = OAuth2Session(
token={"access_token": token, "token_type": "Bearer"}
)
async def send_mail(self, to_address: str, subject: str, content: str):
# Create recipient list in required format.
recipient_list = [{"EmailAddress": {"Address": to_address}}]
# Create email message in required format.
email_msg = {
"Message": {
"Subject": subject,
"Body": {"ContentType": "Text", "Content": content},
"ToRecipients": recipient_list,
}
}
# Do a POST to Graph's sendMail API and return the response.
return self.client.post(
self.api_endpoint("me/sendMail"),
headers={"Content-Type": "application/json"},
json=email_msg,
)
async def get_me(self) -> {}:
response = self.client.get(self.api_endpoint("me"))
return json.loads(response.text)
async def get_recent_mail(self):
response = self.client.get(self.api_endpoint("me/messages"))
return json.loads(response.text)["value"]
def api_endpoint(self, url):
"""Convert a relative path such as /me/photo/$value to a full URI based
on the current RESOURCE and API_VERSION settings in config.py.
"""
if urlparse(url).scheme in ["http", "https"]:
return url # url is already complete
return urljoin(f"{RESOURCE}/{API_VERSION}/", url.lstrip("/"))