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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575
|
"""Bring api implementation."""
import asyncio
from http import HTTPStatus
import json
from json import JSONDecodeError
import logging
import os
import time
import traceback
from typing import cast
import aiohttp
from .const import (
API_BASE_URL,
BRING_DEFAULT_LOCALE,
BRING_SUPPORTED_LOCALES,
DEFAULT_HEADERS,
LOCALES_BASE_URL,
MAP_LANG_TO_LOCALE,
)
from .exceptions import (
BringAuthException,
BringEMailInvalidException,
BringParseException,
BringRequestException,
BringTranslationException,
BringUserUnknownException,
)
from .types import (
BringAuthResponse,
BringAuthTokenResponse,
BringItem,
BringItemOperation,
BringItemsResponse,
BringListItemDetails,
BringListItemsDetailsResponse,
BringListResponse,
BringNotificationsConfigType,
BringNotificationType,
BringSyncCurrentUserResponse,
BringUserListSettingEntry,
BringUserSettingsEntry,
BringUserSettingsResponse,
)
_LOGGER = logging.getLogger(__name__)
class Bring:
"""Unofficial Bring API interface."""
def __init__(
self, session: aiohttp.ClientSession, mail: str, password: str
) -> None:
"""Init function for Bring API."""
self._session = session
self.mail = mail
self.password = password
self.public_uuid = ""
self.user_list_settings: dict[str, dict[str, str]] = {}
self.user_locale = BRING_DEFAULT_LOCALE
self.__translations: dict[str, dict[str, str]] = {}
self.uuid = ""
self.url = API_BASE_URL
self.headers = DEFAULT_HEADERS.copy()
self.loop = asyncio.get_running_loop()
self.refresh_token = ""
self.__expires_in: int
@property
def expires_in(self) -> int:
"""Refresh token expiration."""
return max(0, self.__expires_in - int(time.time()))
@expires_in.setter
def expires_in(self, expires_in: int | str) -> None:
self.__expires_in = int(time.time()) + int(expires_in)
async def login(self) -> BringAuthResponse:
"""Try to login.
Returns
-------
Response
The server response object.
Raises
------
BringRequestException
If the request fails.
BringParseException
If the parsing of the request response fails.
BringAuthException
If the login fails due invalid credentials.
You should check your email and password.
"""
user_data = {"email": self.mail, "password": self.password}
try:
url = f"{self.url}v2/bringauth"
async with self._session.post(url, data=user_data) as r:
_LOGGER.debug(
"Response from %s [%s]: %s",
url,
r.status,
await r.text()
if r.status != 200
else "", # do not log response on success, as it contains sensible data
)
if r.status == HTTPStatus.UNAUTHORIZED:
try:
errmsg = await r.json()
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot parse login request response:\n %s",
traceback.format_exc(),
)
raise BringParseException(
"Login failed due to authorization failure "
"but error response could not be parsed."
) from e
_LOGGER.debug("Exception: Cannot login: %s", errmsg["message"])
raise BringAuthException(
"Login failed due to authorization failure, "
"please check your email and password."
)
if r.status == HTTPStatus.BAD_REQUEST:
_LOGGER.debug("Exception: Cannot login: %s", await r.text())
raise BringAuthException(
"Login failed due to bad request, please check your email."
)
r.raise_for_status()
try:
data = cast(
BringAuthResponse,
{
key: val
for key, val in (await r.json()).items()
if key in BringAuthResponse.__annotations__
},
)
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot login:\n %s", traceback.format_exc()
)
raise BringParseException(
"Cannot parse login request response."
) from e
except TimeoutError as e:
_LOGGER.debug("Exception: Cannot login:\n %s", traceback.format_exc())
raise BringRequestException(
"Authentication failed due to connection timeout."
) from e
except aiohttp.ClientError as e:
_LOGGER.debug("Exception: Cannot login:\n %s", traceback.format_exc())
raise BringRequestException(
"Authentication failed due to request exception."
) from e
self.uuid = data["uuid"]
self.public_uuid = data.get("publicUuid", "")
self.headers["X-BRING-USER-UUID"] = self.uuid
self.headers["Authorization"] = f'{data["token_type"]} {data["access_token"]}'
self.refresh_token = data["refresh_token"]
self.expires_in = data["expires_in"]
locale = (await self.get_user_account())["userLocale"]
self.headers["X-BRING-COUNTRY"] = locale["country"]
self.user_locale = self.map_user_language_to_locale(locale)
self.user_list_settings = await self.__load_user_list_settings()
self.__translations = await self.__load_article_translations()
return data
async def load_lists(self) -> BringListResponse:
"""Load all shopping lists.
Returns
-------
BringListResponse
The JSON response.
Raises
------
BringRequestException
If the request fails.
BringParseException
If the parsing of the request response fails.
BringAuthException
If the request fails due to invalid or expired authorization token.
"""
try:
url = f"{self.url}bringusers/{self.uuid}/lists"
async with self._session.get(url, headers=self.headers) as r:
_LOGGER.debug(
"Response from %s [%s]: %s", url, r.status, await r.text()
)
if r.status == HTTPStatus.UNAUTHORIZED:
try:
errmsg = await r.json()
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot parse request response:\n %s",
traceback.format_exc(),
)
raise BringParseException(
"Loading lists failed due to authorization failure but "
"error response could not be parsed."
) from e
_LOGGER.debug(
"Exception: Cannot get lists: %s",
errmsg["message"],
)
raise BringAuthException(
"Loading lists failed due to authorization failure, "
"the authorization token is invalid or expired."
)
r.raise_for_status()
try:
data = cast(
BringListResponse,
{
key: val
for key, val in (await r.json()).items()
if key in BringListResponse.__annotations__
},
)
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot get lists:\n %s", traceback.format_exc()
)
raise BringParseException(
"Loading lists failed during parsing of request response."
) from e
else:
return data
except TimeoutError as e:
_LOGGER.debug("Exception: Cannot get lists:\n %s", traceback.format_exc())
raise BringRequestException(
"Loading list failed due to connection timeout."
) from e
except aiohttp.ClientError as e:
_LOGGER.debug("Exception: Cannot get lists:\n %s", traceback.format_exc())
raise BringRequestException(
"Loading lists failed due to request exception."
) from e
async def get_list(self, list_uuid: str) -> BringItemsResponse:
"""Get all items from a shopping list.
Parameters
----------
list_uuid : str
A list uuid returned by load_lists()
Returns
-------
BringItemsResponse
The JSON response.
Raises
------
BringRequestException
If the request fails.
BringParseException
If the parsing of the request response fails.
BringAuthException
If the request fails due to invalid or expired authorization token.
"""
try:
url = f"{self.url}v2/bringlists/{list_uuid}"
async with self._session.get(url, headers=self.headers) as r:
_LOGGER.debug(
"Response from %s [%s]: %s", url, r.status, await r.text()
)
if r.status == HTTPStatus.UNAUTHORIZED:
try:
errmsg = await r.json()
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot parse request response:\n %s",
traceback.format_exc(),
)
raise BringParseException(
"Loading list items failed due to authorization failure but "
"error response could not be parsed."
) from e
_LOGGER.debug(
"Exception: Cannot get list items: %s",
errmsg["message"],
)
raise BringAuthException(
"Loading list items failed due to authorization failure, "
"the authorization token is invalid or expired."
)
r.raise_for_status()
try:
data = await r.json()
for lst in data["items"].values():
for item in lst:
item["itemId"] = self.__translate(
item["itemId"],
to_locale=self.__locale(list_uuid),
)
return BringItemsResponse(
uuid=data["uuid"],
status=data["status"],
purchase=data["items"]["purchase"],
recently=data["items"]["recently"],
)
except (JSONDecodeError, KeyError) as e:
_LOGGER.debug(
"Exception: Cannot get items for list %s:\n%s",
list_uuid,
traceback.format_exc(),
)
raise BringParseException(
"Loading list items failed during parsing of request response."
) from e
except TimeoutError as e:
_LOGGER.debug(
"Exception: Cannot get items for list %s:\n%s",
list_uuid,
traceback.format_exc(),
)
raise BringRequestException(
"Loading list items failed due to connection timeout."
) from e
except aiohttp.ClientError as e:
_LOGGER.debug(
"Exception: Cannot get items for list %s:\n%s",
list_uuid,
traceback.format_exc(),
)
raise BringRequestException(
"Loading list items failed due to request exception."
) from e
async def get_all_item_details(
self, list_uuid: str
) -> BringListItemsDetailsResponse:
"""Get all details from a shopping list.
Parameters
----------
list_uuid : str
A list uuid returned by load_lists()
Returns
-------
BringListItemsDetailsResponse
The JSON response. A list of item details.
Caution: This is NOT a list of the items currently marked as 'to buy'.
See get_list() for that.
This contains the items that where customized by changing
their default icon, category or uploading an image.
Raises
------
BringRequestException
If the request fails.
BringParseException
If the parsing of the request response fails.
BringAuthException
If the request fails due to invalid or expired authorization token.
"""
try:
url = f"{self.url}bringlists/{list_uuid}/details"
async with self._session.get(url, headers=self.headers) as r:
_LOGGER.debug(
"Response from %s [%s]: %s", url, r.status, await r.text()
)
if r.status == HTTPStatus.UNAUTHORIZED:
try:
errmsg = await r.json()
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot parse request response:\n %s",
traceback.format_exc(),
)
raise BringParseException(
"Loading list details failed due to authorization failure but "
"error response could not be parsed."
) from e
_LOGGER.debug(
"Exception: Cannot get list details: %s",
errmsg["message"],
)
raise BringAuthException(
"Loading list details failed due to authorization failure, "
"the authorization token is invalid or expired."
)
r.raise_for_status()
try:
data = [
cast(
BringListItemDetails,
{
key: val
for key, val in item.items()
if key in BringListItemDetails.__annotations__
},
)
for item in await r.json()
]
return cast(BringListItemsDetailsResponse, data)
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot get item details for list %s:\n%s",
list_uuid,
traceback.format_exc(),
)
raise BringParseException(
"Loading list details failed during parsing of request response."
) from e
except TimeoutError as e:
_LOGGER.debug(
"Exception: Cannot get item details for list %s:\n%s",
list_uuid,
traceback.format_exc(),
)
raise BringRequestException(
"Loading list details failed due to connection timeout."
) from e
except aiohttp.ClientError as e:
_LOGGER.debug(
"Exception: Cannot get item details for list %s:\n%s",
list_uuid,
traceback.format_exc(),
)
raise BringRequestException(
"Loading list details failed due to request exception."
) from e
async def save_item(
self,
list_uuid: str,
item_name: str,
specification: str = "",
item_uuid: str = "",
) -> aiohttp.ClientResponse:
"""Save an item to a shopping list.
Parameters
----------
list_uuid : str
A list uuid returned by load_lists()
item_name : str
The name of the item you want to save.
specification : str, optional
The details you want to add to the item.
item_uuid : str, optional
The uuid for the item to add. If a unique identifier is
required it is recommended to generate a random uuid4.
Returns
-------
Response
The server response object.
Raises
------
BringRequestException
If the request fails.
"""
data = BringItem(
itemId=item_name,
spec=specification,
uuid=item_uuid,
)
try:
return await self.batch_update_list(list_uuid, data, BringItemOperation.ADD)
except BringRequestException as e:
_LOGGER.debug(
"Exception: Cannot save item %s (%s) to list %s:\n%s",
item_name,
specification,
list_uuid,
traceback.format_exc(),
)
raise BringRequestException(
f"Saving item {item_name} ({specification}) to list {list_uuid} "
"failed due to request exception."
) from e
async def update_item(
self,
list_uuid: str,
item_name: str,
specification: str = "",
item_uuid: str = "",
) -> aiohttp.ClientResponse:
"""Update an existing list item.
Caution: Do not update `item_name`. Providing `item_uuid` makes it
possible to update a specific item in case there are multiple
items with the same name. If uuid is not specified, the newest
item with the given `item_name` will be updated.
Parameters
----------
list_uuid : str
A list uuid returned by load_lists()
item_name : str
The name of the item you want to update.
specification : str, optional
The details you want to update on the item.
item_uuid : str, optional
The uuid of the item to update.
Returns
-------
Response
The server response object.
Raises
------
BringRequestException
If the request fails.
"""
data = BringItem(
itemId=item_name,
spec=specification,
uuid=item_uuid,
)
try:
return await self.batch_update_list(list_uuid, data, BringItemOperation.ADD)
except BringRequestException as e:
_LOGGER.debug(
"Exception: Cannot update item %s (%s) to list %s:\n%s",
item_name,
specification,
list_uuid,
traceback.format_exc(),
)
raise BringRequestException(
f"Updating item {item_name} ({specification}) in list {list_uuid} "
"failed due to request exception."
) from e
async def remove_item(
self, list_uuid: str, item_name: str, item_uuid: str = ""
) -> aiohttp.ClientResponse:
"""Remove an item from a shopping list.
Parameters
----------
list_uuid : str
A list uuid returned by load_lists()
item_name : str
The name of the item you want to remove.
item_uuid : str, optional
The uuid of the item you want to remove. The item to remove can be remove by only
referencing its uuid and setting item_name to any nonempty string.
Returns
-------
Response
The server response object.
Raises
------
BringRequestException
If the request fails.
"""
data = BringItem(
itemId=item_name,
spec="",
uuid=item_uuid,
)
try:
return await self.batch_update_list(
list_uuid, data, BringItemOperation.REMOVE
)
except BringRequestException as e:
_LOGGER.debug(
"Exception: Cannot delete item %s from list %s:\n%s",
item_name,
list_uuid,
traceback.format_exc(),
)
raise BringRequestException(
f"Removing item {item_name} from list {list_uuid} "
"failed due to request exception."
) from e
async def complete_item(
self,
list_uuid: str,
item_name: str,
specification: str = "",
item_uuid: str = "",
) -> aiohttp.ClientResponse:
"""Complete an item from a shopping list. This will add it to recent items.
If it was not on the list, it will still be added to recent items.
Parameters
----------
list_uuid : str
A list uuid returned by load_lists()
item_name : str
The name of the item you want to complete.
specification : str, optional
The details you want to update on the item.
item_uuid : str, optional
The uuid of the item you want to complete.
Returns
-------
Response
The server response object.
Raises
------
BringRequestException
If the request fails.
"""
data = BringItem(
itemId=item_name,
spec=specification,
uuid=item_uuid,
)
try:
return await self.batch_update_list(
list_uuid, data, BringItemOperation.COMPLETE
)
except BringRequestException as e:
_LOGGER.debug(
"Exception: Cannot complete item %s in list %s:\n%s",
item_name,
list_uuid,
traceback.format_exc(),
)
raise BringRequestException(
f"Completing item {item_name} from list {list_uuid} "
"failed due to request exception."
) from e
async def notify(
self,
list_uuid: str,
notification_type: BringNotificationType,
item_name: str | None = None,
) -> aiohttp.ClientResponse:
"""Send a push notification to all other members of a shared list.
Parameters
----------
list_uuid : str
A list uuid returned by loadLists()
notification_type : BringNotificationType
The type of notification to be sent
item_name : str, optional
The item_name **must** be included when notication_type
is BringNotificationType.URGENT_MESSAGE
Returns
-------
Response
The server response object.
Raises
------
BringRequestException
If the request fails.
BringAuthException
If the request fails due to invalid or expired authorization token.
TypeError
if the notification_type parameter is invalid.
ValueError
If the value for item_name is invalid.
"""
json_data = BringNotificationsConfigType(
arguments=[],
listNotificationType=notification_type.value,
senderPublicUserUuid=self.public_uuid,
)
if not isinstance(notification_type, BringNotificationType):
raise TypeError(
f"notificationType {notification_type} not supported,"
"must be of type BringNotificationType."
)
if notification_type is BringNotificationType.URGENT_MESSAGE:
if not item_name or len(item_name) == 0:
raise ValueError(
"notificationType is URGENT_MESSAGE but argument itemName missing."
)
json_data["arguments"] = [item_name]
try:
url = f"{self.url}v2/bringnotifications/lists/{list_uuid}"
async with self._session.post(
url, headers=self.headers, json=json_data
) as r:
_LOGGER.debug(
"Response from %s [%s]: %s", url, r.status, await r.text()
)
if r.status == HTTPStatus.UNAUTHORIZED:
try:
errmsg = await r.json()
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot parse request response:\n %s",
traceback.format_exc(),
)
raise BringParseException(
"Sending notification failed due to authorization failure but "
"error response could not be parsed."
) from e
_LOGGER.debug(
"Exception: Cannot send notification: %s",
errmsg["message"],
)
raise BringAuthException(
"Sending notification failed due to authorization failure, "
"the authorization token is invalid or expired."
)
r.raise_for_status()
return r
except TimeoutError as e:
_LOGGER.debug(
"Exception: Cannot send notification %s for list %s:\n%s",
notification_type,
list_uuid,
traceback.format_exc(),
)
raise BringRequestException(
f"Sending notification {notification_type} for list {list_uuid}"
"failed due to connection timeout."
) from e
except aiohttp.ClientError as e:
_LOGGER.debug(
"Exception: Cannot send notification %s for list %s:\n%s",
notification_type,
list_uuid,
traceback.format_exc(),
)
raise BringRequestException(
f"Sending notification {notification_type} for list {list_uuid}"
"failed due to request exception."
) from e
async def does_user_exist(self, mail: str | None = None) -> bool:
"""Check if e-mail is valid and user exists.
Parameters
----------
mail : str
An e-mail address.
Returns
-------
bool
True if user exists.
Raises
------
BringRequestException
If the request fails.
BringEMailInvalidException
If the email is invalid.
BringUserUnknownException
If the user is does not exist
"""
mail = mail or self.mail
if not mail:
raise ValueError("Argument mail missing.")
params = {"email": mail}
try:
url = f"{self.url}bringusers"
async with self._session.get(url, headers=self.headers, params=params) as r:
_LOGGER.debug(
"Response from %s [%s]: %s", url, r.status, await r.text()
)
if r.status == HTTPStatus.NOT_FOUND:
raise BringUserUnknownException(f"User {mail} does not exist.")
r.raise_for_status()
except TimeoutError as e:
_LOGGER.debug(
"Exception: Cannot get verification for %s:\n%s",
mail,
traceback.format_exc(),
)
raise BringRequestException(
"Verifying email failed due to connection timeout."
) from e
except aiohttp.ClientError as e:
raise BringEMailInvalidException(f"E-mail {mail} is invalid.") from e
return True
def __load_article_translations_from_file(self, locale: str) -> dict[str, str]:
"""Read localization ressource files from disk.
Parameters
----------
locale : str
A locale string
Returns
-------
dict[str, str]:
A translation table as a dict
"""
dictionary_from_file: dict[str, str]
path = os.path.join(
os.path.dirname(os.path.abspath(__file__)),
"locales",
f"articles.{locale}.json",
)
with open(path, encoding="UTF-8") as f:
dictionary_from_file = json.load(f)
return dictionary_from_file
async def __load_article_translations(self) -> dict[str, dict[str, str]]:
"""Load all required translation dictionaries into memory.
Raises
------
BringRequestException
If the request fails.
BringParseException
If the parsing of the request response fails.
Returns
-------
dict
dict of downloaded dictionaries
"""
dictionaries: dict[str, dict[str, str]] = {}
locales_required = list(
dict.fromkeys(
[
list_setting.get("listArticleLanguage", self.user_locale)
for list_setting in self.user_list_settings.values()
]
+ [self.user_locale]
)
)
for locale in locales_required:
if locale == BRING_DEFAULT_LOCALE or locale not in BRING_SUPPORTED_LOCALES:
continue
try:
dictionaries[locale] = await self.loop.run_in_executor(
None, self.__load_article_translations_from_file, locale
)
continue
except OSError:
_LOGGER.warning(
"Locale file articles.%s.json could not be loaded from filesystem. "
"Will continue trying to download locale.",
locale,
)
try:
url = f"{LOCALES_BASE_URL}articles.{locale}.json"
async with self._session.get(url) as r:
_LOGGER.debug("Response from %s [%s]", url, r.status)
r.raise_for_status()
try:
dictionaries[locale] = await r.json()
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot load articles.%s.json:\n%s",
locale,
traceback.format_exc(),
)
raise BringParseException(
f"Loading article translations for locale {locale} "
"failed during parsing of request response."
) from e
except TimeoutError as e:
_LOGGER.debug(
"Exception: Cannot load articles.%s.json::\n%s",
locale,
traceback.format_exc(),
)
raise BringRequestException(
f"Loading article translations for locale {locale} "
"failed due to connection timeout."
) from e
except aiohttp.ClientError as e:
_LOGGER.debug(
"Exception: Cannot load articles.%s.json:\n%s",
locale,
traceback.format_exc(),
)
raise BringRequestException(
f"Loading article translations for locale {locale} "
"failed due to request exception."
) from e
return dictionaries
def __translate(
self,
item_id: str,
*,
to_locale: str | None = None,
from_locale: str | None = None,
) -> str:
"""Translate a catalog item from or to a language.
Parameters
----------
item_id : str
Item name.
to_locale : str
locale to translate to.
from_locale : str
locale to translate from.
Returns
-------
str
Translated Item name.
Raises
------
BringTranslationException
If the translation fails.
"""
locale = to_locale or from_locale
if locale == BRING_DEFAULT_LOCALE:
return item_id
if not locale:
raise ValueError("One of the arguments from_locale or to_locale required.")
if locale not in BRING_SUPPORTED_LOCALES:
_LOGGER.debug("Locale %s not supported by Bring.", locale)
raise ValueError(f"Locale {locale} not supported by Bring.")
try:
return (
self.__translations[locale].get(item_id, item_id)
if to_locale
else (
{value: key for key, value in self.__translations[locale].items()}
).get(item_id, item_id)
)
except Exception as e:
_LOGGER.debug(
"Exception: Cannot load translation dictionary:\n%s",
traceback.format_exc(),
)
raise BringTranslationException(
"Translation failed due to error loading translation dictionary."
) from e
async def __load_user_list_settings(self) -> dict[str, dict[str, str]]:
"""Load user list settings into memory.
Raises
------
BringTranslationException
If the user list settings could not be loaded.
Returns
-------
dict[str, dict[str, str]]
A dict of settings of the users lists
"""
try:
return {
user_list_setting["listUuid"]: {
user_setting["key"]: user_setting["value"]
for user_setting in user_list_setting["usersettings"]
}
for user_list_setting in (await self.get_all_user_settings())[
"userlistsettings"
]
}
except Exception as e:
_LOGGER.debug(
"Exception: Cannot load user list settings:\n%s",
traceback.format_exc(),
)
raise BringTranslationException(
"Translation failed due to error loading user list settings."
) from e
async def get_all_user_settings(self) -> BringUserSettingsResponse:
"""Load all user settings and user list settings.
Returns
-------
BringUserSettingsResponse
The JSON response.
Raises
------
BringRequestException
If the request fails.
BringParseException
If the parsing of the request response fails.
BringAuthException
If the request fails due to invalid or expired authorization token.
"""
try:
url = f"{self.url}bringusersettings/{self.uuid}"
async with self._session.get(url, headers=self.headers) as r:
_LOGGER.debug(
"Response from %s [%s]: %s", url, r.status, await r.text()
)
if r.status == HTTPStatus.UNAUTHORIZED:
try:
errmsg = await r.json()
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot parse request response:\n %s",
traceback.format_exc(),
)
raise BringParseException(
"Loading user settings failed due to authorization failure but "
"error response could not be parsed."
) from e
_LOGGER.debug(
"Exception: Cannot get user settings: %s",
errmsg["message"],
)
raise BringAuthException(
"Loading user settings failed due to authorization failure, "
"the authorization token is invalid or expired."
)
r.raise_for_status()
try:
usersettings = [
cast(
BringUserSettingsEntry,
{
key: val
for key, val in item.items()
if key in BringUserSettingsEntry.__annotations__
},
)
for item in (await r.json())["usersettings"]
]
userlistsettings = (await r.json())["userlistsettings"]
for i, listitem in enumerate(userlistsettings):
userlistsettings[i]["usersettings"] = [
cast(
BringUserSettingsEntry,
{
key: val
for key, val in item.items()
if key in BringUserSettingsEntry.__annotations__
},
)
for item in listitem["usersettings"]
]
userlistsettings = [
cast(
BringUserListSettingEntry,
{
key: val
for key, val in item.items()
if key in BringUserListSettingEntry.__annotations__
},
)
for item in userlistsettings
]
data = cast(
BringUserSettingsResponse,
{
"usersettings": usersettings,
"userlistsettings": userlistsettings,
},
)
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot get user settings for uuid %s:\n%s",
self.uuid,
traceback.format_exc(),
)
raise BringParseException(
"Loading user settings failed during parsing of request response."
) from e
else:
return data
except TimeoutError as e:
_LOGGER.debug(
"Exception: Cannot get user settings for uuid %s:\n%s",
self.uuid,
traceback.format_exc(),
)
raise BringRequestException(
"Loading user settings failed due to connection timeout."
) from e
except aiohttp.ClientError as e:
_LOGGER.debug(
"Exception: Cannot get user settings for uuid %s:\n%s",
self.uuid,
traceback.format_exc(),
)
raise BringRequestException(
"Loading user settings failed due to request exception."
) from e
def __locale(self, list_uuid: str) -> str:
"""Get list or user locale.
Returns
-------
str
The locale from userlistsettings or user.
Raises
------
BringTranslationException
If list locale could not be determined from the userlistsettings or user.
"""
if list_uuid in self.user_list_settings:
return self.user_list_settings[list_uuid].get(
"listArticleLanguage", self.user_locale
)
return self.user_locale
def map_user_language_to_locale(self, user_locale: dict[str, str]) -> str:
"""Map user language to a supported locale.
The userLocale returned from the user account settings is not necessarily one of the 20
locales used by the Bring App but rather what the user has set as language on their phone
and the country where they are located. Usually the locale for the lists is always returned
from the bringusersettings API endpoint. One exception exists, when user onboarding happens
through the webApp, then the locale for the automatically created initial list is not set.
For other lists this does not happen, as it is not possible to create more lists in the
webApp, only in the mobile apps.
Parameters
----------
user_locale : dict
user locale as a dict containing `language` and `country`.
Returns
-------
str
The locale corresponding to the users language.
"""
locale = f'{user_locale["language"]}-{user_locale["country"]}'
# if locale is a valid and supported locale we can use it.
if locale in BRING_SUPPORTED_LOCALES:
return locale
# if language and country are not valid locales, we use only the language part and
# map it to a corresponding locale or the most common for that language.
return MAP_LANG_TO_LOCALE.get(user_locale["language"], BRING_DEFAULT_LOCALE)
async def get_user_account(self) -> BringSyncCurrentUserResponse:
"""Get current user account.
Returns
-------
BringSyncCurrentUserResponse
The JSON response.
Raises
------
BringRequestException
If the request fails.
BringParseException
If the parsing of the request response fails.
BringAuthException
If the request fails due to invalid or expired authorization token.
"""
try:
url = f"{self.url}v2/bringusers/{self.uuid}"
async with self._session.get(url, headers=self.headers) as r:
_LOGGER.debug(
"Response from %s [%s]: %s", url, r.status, await r.text()
)
if r.status == HTTPStatus.UNAUTHORIZED:
try:
errmsg = await r.json()
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot parse request response:\n %s",
traceback.format_exc(),
)
raise BringParseException(
"Loading current user settings failed due to authorization failure but "
"error response could not be parsed."
) from e
_LOGGER.debug(
"Exception: Cannot get current user settings: %s",
errmsg["message"],
)
raise BringAuthException(
"Loading current user settings failed due to authorization failure, "
"the authorization token is invalid or expired."
)
r.raise_for_status()
try:
data = cast(
BringSyncCurrentUserResponse,
{
key: val
for key, val in (await r.json()).items()
if key in BringSyncCurrentUserResponse.__annotations__
},
)
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot get lists:\n %s", traceback.format_exc()
)
raise BringParseException(
"Loading lists failed during parsing of request response."
) from e
else:
return data
except TimeoutError as e:
_LOGGER.debug(
"Exception: Cannot get current user settings:\n %s",
traceback.format_exc(),
)
raise BringRequestException(
"Loading current user settings failed due to connection timeout."
) from e
except aiohttp.ClientError as e:
_LOGGER.debug(
"Exception: Cannot current user settings:\n %s", traceback.format_exc()
)
raise BringRequestException(
"Loading current user settings failed due to request exception."
) from e
async def batch_update_list(
self,
list_uuid: str,
items: BringItem | list[BringItem] | list[dict[str, str]],
operation: BringItemOperation | None = None,
) -> aiohttp.ClientResponse:
"""Batch update items on a shopping list.
Parameters
----------
list_uuid : str
The listUuid of the list to make the changes to
items : BringItem or List of BringItem
Item(s) to add, complete or remove from the list
operation : BringItemOperation, optional
The Operation (ADD, COMPLETE, REMOVE) to perform for the supplied items on the list.
Parameter can be ommited, and the BringItem key 'operation' can be set to TO_PURCHASE,
TO_RECENTLY or REMOVE. Defaults to BringItemOperation.ADD if operation is neither
passed as parameter nor is set in the BringItem.
Returns
-------
Response
The server response object.
Raises
------
BringRequestException
If the request fails.
BringParseException
If the parsing of the request response fails.
BringAuthException
If the request fails due to invalid or expired authorization token.
"""
if operation is None:
operation = BringItemOperation.ADD
_base_params = {
"accuracy": "0.0",
"altitude": "0.0",
"latitude": "0.0",
"longitude": "0.0",
}
if isinstance(items, dict):
items = [items]
json_data = {
"changes": [
{
**_base_params,
**item,
"itemId": self.__translate(
item["itemId"],
from_locale=self.__locale(list_uuid),
),
"operation": str(item.get("operation", operation)),
}
for item in items
],
"sender": "",
}
try:
url = f"{self.url}v2/bringlists/{list_uuid}/items"
async with self._session.put(
url, headers=self.headers, json=json_data
) as r:
_LOGGER.debug(
"Response from %s [%s]: %s", url, r.status, await r.text()
)
if r.status == HTTPStatus.UNAUTHORIZED:
try:
errmsg = await r.json()
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot parse request response:\n %s",
traceback.format_exc(),
)
raise BringParseException(
"Batch operation failed due to authorization failure but "
"error response could not be parsed."
) from e
_LOGGER.debug(
"Exception: Cannot get execute batch operation: %s",
errmsg["message"],
)
raise BringAuthException(
"Batch operation failed due to authorization failure, "
"the authorization token is invalid or expired."
)
r.raise_for_status()
return r
except TimeoutError as e:
_LOGGER.debug(
"Exception: Cannot execute batch operations for list %s:\n%s",
list_uuid,
traceback.format_exc(),
)
raise BringRequestException(
f"Batch operation for list {list_uuid} failed due to connection timeout."
) from e
except aiohttp.ClientError as e:
_LOGGER.debug(
"Exception: Cannot execute batch operations for %s:\n%s",
list_uuid,
traceback.format_exc(),
)
raise BringRequestException(
f"Batch operation for list {list_uuid} failed due to request exception."
) from e
async def retrieve_new_access_token(
self, refresh_token: str | None = None
) -> BringAuthTokenResponse:
"""Refresh the access token.
Parameters
----------
refresh_token : str, optional
The refresh token to use to retrieve a new access token
Returns
-------
BringAuthTokenRespone
The JSON response.
Raises
------
BringRequestException
If the request fails.
BringAuthException
If the request fails due to invalid or expired refresh token.
"""
refresh_token = refresh_token or self.refresh_token
user_data = {"grant_type": "refresh_token", "refresh_token": refresh_token}
try:
url = f"{self.url}v2/bringauth/token"
async with self._session.post(
url, headers=self.headers, data=user_data
) as r:
_LOGGER.debug(
"Response from %s [%s]: %s",
url,
r.status,
await r.text()
if r.status != 200
else "", # do not log response on success, as it contains sensible data
)
if r.status == HTTPStatus.UNAUTHORIZED:
try:
errmsg = await r.json()
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot parse token request response:\n %s",
traceback.format_exc(),
)
raise BringParseException(
"Retrieve new access token failed due to authorization failure but "
"error response could not be parsed."
) from e
_LOGGER.debug(
"Exception: Cannot retrieve new access token: %s",
errmsg["message"],
)
raise BringAuthException(
"Retrieve new access token failed due to authorization failure, "
"the refresh token is invalid or expired."
)
r.raise_for_status()
try:
data = cast(
BringAuthTokenResponse,
{
key: val
for key, val in (await r.json()).items()
if key in BringAuthTokenResponse.__annotations__
},
)
except JSONDecodeError as e:
_LOGGER.debug(
"Exception: Cannot retrieve new access token:\n %s",
traceback.format_exc(),
)
raise BringParseException(
"Cannot parse token request response."
) from e
except TimeoutError as e:
_LOGGER.debug("Exception: Cannot login:\n %s", traceback.format_exc())
raise BringRequestException(
"Retrieve new access token failed due to connection timeout."
) from e
except aiohttp.ClientError as e:
_LOGGER.debug("Exception: Cannot login:\n %s", traceback.format_exc())
raise BringRequestException(
"Retrieve new access token failed due to request exception."
) from e
self.headers["Authorization"] = f'{data["token_type"]} {data["access_token"]}'
self.expires_in = data["expires_in"]
return data
async def set_list_article_language(
self, list_uuid: str, language: str
) -> aiohttp.ClientResponse:
"""Set the article language for a specified list.
Parameters
----------
list_uuid : str
The unique identifier for the list.
language : str
The language to set for the list articles.
Returns
-------
aiohttp.ClientResponse
The server response object.
Raises
------
ValueError
If the specified language is not supported.
BringRequestException
If the request fails.
BringAuthException
If the request fails due to invalid or expired authorization token.
"""
if language not in BRING_SUPPORTED_LOCALES:
raise ValueError(f"Language {language} not supported.")
url = f"{self.url}bringusersettings/{self.uuid}/{list_uuid}/listArticleLanguage"
data = {"value": language}
try:
async with self._session.post(url, headers=self.headers, data=data) as r:
_LOGGER.debug(
"Response from %s [%s]: %s", url, r.status, await r.text()
)
if r.status == HTTPStatus.UNAUTHORIZED:
raise BringAuthException(
"Set list article language failed due to authorization failure, "
"the authorization token is invalid or expired."
)
r.raise_for_status()
self.user_list_settings = await self.__load_user_list_settings()
self.__translations = await self.__load_article_translations()
return r
except TimeoutError as e:
_LOGGER.debug(
"Exception: Cannot set article language to %s for list %s:\n%s",
language,
list_uuid,
traceback.format_exc(),
)
raise BringRequestException(
"Set list article language failed due to connection timeout."
) from e
except aiohttp.ClientError as e:
_LOGGER.debug(
"Exception: Cannot set article language to %s for list %s:\n%s",
language,
list_uuid,
traceback.format_exc(),
)
raise BringRequestException(
"Set list article language failed due to request exception."
) from e
|