-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Support for Microsoft Busystatus #1220
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -299,6 +299,14 @@ def symbol_strings(self) -> Dict[str, str]: | |||||||||||||||||||||||||||||||||||||
'right_arrow': '->' | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
@property | ||||||||||||||||||||||||||||||||||||||
def allowed_busystatus(self) -> Dict[str, str]: | ||||||||||||||||||||||||||||||||||||||
return {'BUSY': 'Busy', | ||||||||||||||||||||||||||||||||||||||
'FREE': 'Free', | ||||||||||||||||||||||||||||||||||||||
'TENTATIVE': 'Tentative', | ||||||||||||||||||||||||||||||||||||||
'WORKINGELSEWHERE': 'Work elsewhere', | ||||||||||||||||||||||||||||||||||||||
'OOF': 'Out of office'} | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
@property | ||||||||||||||||||||||||||||||||||||||
def start_local(self) -> dt.datetime: | ||||||||||||||||||||||||||||||||||||||
"""self.start() localized to local timezone""" | ||||||||||||||||||||||||||||||||||||||
|
@@ -343,6 +351,27 @@ def organizer(self) -> str: | |||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||||
return email | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
@property | ||||||||||||||||||||||||||||||||||||||
def busystatus(self) -> str: | ||||||||||||||||||||||||||||||||||||||
if 'X-MICROSOFT-CDO-BUSYSTATUS' not in self._vevents[self.ref]: | ||||||||||||||||||||||||||||||||||||||
return 'BUSY' | ||||||||||||||||||||||||||||||||||||||
Comment on lines
+356
to
+357
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If this property is not set, I don't think we should fall back to |
||||||||||||||||||||||||||||||||||||||
return self._vevents[self.ref]['X-MICROSOFT-CDO-BUSYSTATUS'] | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
@property | ||||||||||||||||||||||||||||||||||||||
def busystatus_formatted(self) -> str: | ||||||||||||||||||||||||||||||||||||||
if 'X-MICROSOFT-CDO-BUSYSTATUS' not in self._vevents[self.ref]: | ||||||||||||||||||||||||||||||||||||||
return '' | ||||||||||||||||||||||||||||||||||||||
busystatus = self._vevents[self.ref]['X-MICROSOFT-CDO-BUSYSTATUS'] | ||||||||||||||||||||||||||||||||||||||
if busystatus not in self.allowed_busystatus.keys(): | ||||||||||||||||||||||||||||||||||||||
return '' | ||||||||||||||||||||||||||||||||||||||
return self.allowed_busystatus[busystatus] | ||||||||||||||||||||||||||||||||||||||
Comment on lines
+362
to
+367
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Non blocking hint: You can use
Suggested change
Which can be further simplified into:
Suggested change
|
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
def update_busystatus(self, busystatus: str) -> None: | ||||||||||||||||||||||||||||||||||||||
if busystatus and busystatus in self.allowed_busystatus.keys(): | ||||||||||||||||||||||||||||||||||||||
self._vevents[self.ref]['X-MICROSOFT-CDO-BUSYSTATUS'] = busystatus | ||||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||||
self._vevents[self.ref].pop('X-MICROSOFT-CDO-BUSYSTATUS') | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
@property | ||||||||||||||||||||||||||||||||||||||
def url(self) -> str: | ||||||||||||||||||||||||||||||||||||||
if 'URL' not in self._vevents[self.ref]: | ||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We don't need to define this dictionary inside a function, just make it a global dictionary. Otherwise it gets recreated each time the function is called, which is kinda pointless.