-
Notifications
You must be signed in to change notification settings - Fork 409
/
Copy pathdata_types.py
333 lines (281 loc) · 9.1 KB
/
data_types.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
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
# -*- coding: utf-8 -*-
# Copyright 2023 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License")
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Import needed to reference a class within its own class method.
# https://stackoverflow.com/a/33533514
from __future__ import annotations
from dataclasses import dataclass
from typing import Any, NotRequired, TypedDict
# List of changed fields to be used to create Activity entities
# and notify subscribed users of changes to a feature.
CHANGED_FIELDS_LIST_TYPE = list[tuple[str, Any, Any]]
# JSON representation of Stage entity data.
class StageDict(TypedDict):
id: int
created: str
feature_id: int
stage_type: int
display_name: str
intent_stage: int
intent_thread_url: str | None
# Dev trial specific fields.
announcement_url: str | None
# Origin trial specific fields.
origin_trial_id: str | None
experiment_goals: str | None
experiment_risks: str | None
extensions: list[StageDict] # type: ignore
origin_trial_feedback_url: str | None
ot_action_requested: bool
ot_activation_date: NotRequired[str | None]
ot_approval_buganizer_component: int | None
ot_approval_buganizer_custom_field_id: int | None
ot_approval_criteria_url: str | None
ot_approval_group_email: str | None
ot_chromium_trial_name: str | None
ot_description: str | None
ot_display_name: str | None
ot_documentation_url: str | None
ot_emails: list[str]
ot_feedback_submission_url: str | None
ot_has_third_party_support: bool
ot_is_critical_trial: bool
ot_is_deprecation_trial: bool
ot_owner_email: str | None
ot_require_approvals: bool
ot_setup_status: NotRequired[int]
ot_use_counter_bucket_number: int | None
ot_webfeature_use_counter: str | None
ot_request_note: NotRequired[str]
# Trial extension specific fields.
ot_stage_id: int | None
experiment_extension_reason: str | None
# Ship specific fields
finch_url: str | None
# Enterprise specific fields
rollout_details: str | None
rollout_impact: int | None
rollout_milestone: int | None
rollout_platforms: list[str]
enterprise_policies: list[str]
# Email information
pm_emails: list[str]
tl_emails: list[str]
ux_emails: list[str]
te_emails: list[str]
# Milestone fields
desktop_first: int | None
android_first: int | None
ios_first: int | None
webview_first: int | None
desktop_last: int | None
android_last: int | None
ios_last: int | None
webview_last: int | None
#############################
## FeatureDict definitions ##
#############################
# Nested JSON type definitions.
class FeatureDictInnerResourceInfo(TypedDict):
samples: list[str]
docs: list[str]
class FeatureDictInnerStandardsInfo(TypedDict):
spec: str | None
maturity: FeatureDictInnerMaturityInfo
class FeatureDictInnerMaturityInfo(TypedDict):
text: str | None
short_text: str | None
val: int
class FeatureDictInnerBrowserStatus(TypedDict):
text: str | None
val: str | None
milestone_str: str | None
class FeatureDictInnerViewInfo(TypedDict):
text: str | None
val: int | None
url: str | None
notes: str | None
class FeatureDictInnerChromeBrowserInfo(TypedDict):
bug: str | None
blink_components: list[str] | None
devrel: list[str] | None
owners: list[str] | None
origintrial: bool | None
intervention: bool | None
prefixed: bool | None
flag: bool | None
status: FeatureDictInnerBrowserStatus
# Old representation of ship dates.
# TODO(danielrsmith): find if needed and remove if unneeded.
desktop: int | None
android: int | None
webview: int | None
ios: int | None
class FeatureDictInnerSingleBrowserInfo(TypedDict):
view: FeatureDictInnerViewInfo | None
class FeatureBrowsersInfo(TypedDict):
chrome: FeatureDictInnerChromeBrowserInfo
ff: FeatureDictInnerSingleBrowserInfo
safari: FeatureDictInnerSingleBrowserInfo
webdev: FeatureDictInnerSingleBrowserInfo
other: FeatureDictInnerSingleBrowserInfo
# Basic user info displayed for create/update attributes in
# FeatureEntry edit information.
class FeatureDictInnerUserEditInfo(TypedDict):
by: str | None
when: str | None
# JSON representation of FeatureEntry entity. Created from
# converters.feature_entry_to_json_verbose().
class VerboseFeatureDict(TypedDict):
# Metadata: Creation and updates.
id: int
created: FeatureDictInnerUserEditInfo
updated: FeatureDictInnerUserEditInfo
accurate_as_of: str | None
creator_email: str | None
updater_email: str | None
# Metadata: Access controls
owner_emails: list[str]
editor_emails: list[str]
cc_emails: list[str]
spec_mentor_emails: list[str]
unlisted: bool
deleted: bool
# Renamed metadata fields
editors: list[str]
cc_recipients: list[str]
spec_mentors: list[str]
creator: str | None
# Descriptive info.
name: str
summary: str
category: str
category_int: int
blink_components: list[str]
star_count: int
search_tags: list[str]
feature_notes: str | None
enterprise_feature_categories: list[str]
enterprise_product_category: int
webdx_usecounter_enum: str | None
# Metadata: Process information
feature_type: str
feature_type_int: int
intent_stage: str
intent_stage_int: int
active_stage_id: int | None
bug_url: str | None
launch_bug_url: str | None
screenshot_links: list[str]
first_enterprise_notification_milestone: int | None
breaking_change: bool
confidential: bool
enterprise_impact: int
shipping_year: int | None
# Implementation in Chrome
flag_name: str | None
finch_name: str | None
non_finch_justification: str | None
ongoing_constraints: str | None
# Topic: Adoption
motivation: str | None
devtrial_instructions: str | None
activation_risks: str | None
measurement: str | None
availability_expectation: str | None
adoption_expectation: str | None
adoption_plan: str | None
# Gate: Standardization and Interop
initial_public_proposal_url: str | None
explainer_links: list[str]
requires_embedder_support: bool
spec_link: str | None
api_spec: str | None
prefixed: bool | None
interop_compat_risks: str | None
all_platforms: bool | None
all_platforms_descr: bool | None
tag_review: str | None
non_oss_deps: str | None
anticipated_spec_changes: str | None
# Gate: Security & Privacy
security_risks: str | None
tags: list[str]
tag_review_status: str
tag_review_status_int: int | None
security_review_status: str
security_review_status_int: int | None
privacy_review_status: str
privacy_review_status_int: int | None
# Gate: Testing / Regressions
ergonomics_risks: str | None
wpt: bool | None
wpt_descr: str | None
webview_risks: str | None
# Gate: Devrel & Docs
devrel_emails: list[str]
debuggability: str | None
doc_links: list[str]
sample_links: list[str]
stages: list[StageDict]
experiment_timeline: str | None
resources: FeatureDictInnerResourceInfo
comments: str | None # feature_notes
# Repeated in 'browsers' section. TODO(danielrsmith): delete these?
ff_views: int
safari_views: int
web_dev_views: int
browsers: FeatureBrowsersInfo
standards: FeatureDictInnerStandardsInfo
is_released: bool
is_enterprise_feature: bool
updated_display: str | None
new_crbug_url: str | None
@dataclass
class OriginTrialInfo():
def __init__(self, api_trial):
self.id = api_trial.get('id', None)
self.display_name = api_trial.get('displayName', None)
self.description = api_trial.get('description', None)
self.origin_trial_feature_name = api_trial.get('originTrialFeatureName', None)
self.enabled = api_trial.get('enabled', False)
self.status = api_trial.get('status', None)
self.chromestatus_url = api_trial.get('chromestatusUrl', None)
self.start_milestone = api_trial.get('startMilestone', None)
self.end_milestone = api_trial.get('endMilestone', None)
self.original_end_milestone = api_trial.get('originalEndMilestone', None)
self.end_time = api_trial.get('endTime', None)
self.documentation_url = api_trial.get('documentationUrl', None)
self.feedback_url = api_trial.get('feedbackUrl', None)
self.intent_to_experiment_url = api_trial.get('intentToExperimentUrl', None)
self.trial_extensions = api_trial.get('trialExtensions', None)
self.type = api_trial.get('type', None)
self.allow_third_party_origins = api_trial.get('allowThirdPartyOrigins', False)
id: str|None
display_name: str|None
description: str|None
origin_trial_feature_name: str|None
enabled: bool
status: str|None
chromestatus_url: str|None
start_milestone: str|None
end_milestone: str|None
original_end_milestone: str|None
end_time: str|None
documentation_url: str|None
feedback_url: str|None
intent_to_experiment_url: str|None
trial_extensions: list|None
type: str|None
allow_third_party_origins: bool