Skip to content

Commit c53fe00

Browse files
committed
Standardize event IDs
1 parent 80b3da3 commit c53fe00

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

outlook/indico_outlook/calendar.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
# them and/or modify them under the terms of the MIT License; see
66
# the LICENSE file for more details.
77

8+
from datetime import datetime
9+
import pytz
810
from pprint import pformat
11+
from urllib.parse import urlsplit
912

1013
import requests
1114
from markupsafe import Markup
@@ -14,6 +17,7 @@
1417
from werkzeug.datastructures import MultiDict
1518

1619
from indico.core import signals
20+
from indico.core.config import config
1721
from indico.core.db import db
1822
from indico.util.signals import values_from_signal
1923
from indico.util.string import strip_control_chars
@@ -113,7 +117,11 @@ def _update_calendar_entry(entry, settings):
113117
logger.debug('User %s has disabled calendar entries', user)
114118
return True
115119

116-
unique_id = '{}{}_{}'.format(settings['id_prefix'], user.id, entry.event_id)
120+
# Use common format for event calendar ID if the event was created on or after 2025-04-06
121+
if entry.event.created_dt >= datetime(2025, 4, 6, tzinfo=pytz.UTC):
122+
unique_id = entry.event.ical_uid
123+
else:
124+
unique_id = '{}{}_{}'.format(settings['id_prefix'], user.id, entry.event_id)
117125
path = f'/api/v1/users/{user.email}/events/{unique_id}'
118126
url = settings['service_url'].rstrip('/') + path
119127
if entry.action in {OutlookAction.add, OutlookAction.update}:

0 commit comments

Comments
 (0)