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 | class ApplicationsAddon(BaseServerAddon):
settings_model = ApplicationsAddonSettings
# TODO remove this attribute when attributes support is removed
has_attributes = True
async def get_simple_actions(
self,
project_name: str | None = None,
variant: str = "production",
) -> list["SimpleActionManifest"]:
return await get_action_manifests(
self,
project_name=project_name,
variant=variant,
)
async def execute_action(
self,
executor: "ActionExecutor",
) -> "ExecuteResponseModel":
"""Execute an action provided by the addon"""
app_name = executor.identifier[len(IDENTIFIER_PREFIX):]
context = executor.context
project_name = context.project_name
task_id = context.entity_ids[0]
return await executor.get_launcher_action_response(
args=[
"addon", "applications", "launch-by-id",
"--app", app_name,
"--project", project_name,
"--task-id", task_id,
]
)
async def get_default_settings(self):
return self.get_settings_model()(**DEFAULT_VALUES)
async def pre_setup(self):
"""Make sure older version of addon use the new way of attributes."""
instance = AddonLibrary.getinstance()
app_defs = instance.data.get(self.name)
old_addon = app_defs.versions.get("0.1.0")
if old_addon is not None:
# Override 'create_applications_attribute' for older versions
# - avoid infinite server restart loop
old_addon.create_applications_attribute = (
self.create_applications_attribute
)
# Update older versions of applications addon to use new
# '_update_enums'
# - new function skips newer addon versions without 'has_attributes'
version_objs, invalid_versions = parse_versions(app_defs.versions)
for addon_version, version_obj in version_objs:
# Last release with only old attribute system
if version_obj < ATTRIBUTES_VERSION_MILESTONE:
addon = app_defs.versions[addon_version]
addon._update_enums = self._update_enums
async def convert_settings_overrides(
self,
source_version: str,
overrides: dict[str, Any],
) -> dict[str, Any]:
overrides = await super().convert_settings_overrides(
source_version, overrides
)
# Since 1.0.0 the project applications and tools are
# using settings instead of attributes.
# Disable automatically project applications and tools
# when converting settings of version < 1.0.0 so we don't break
# productions on update
if parse_version(source_version) < (1, 0, 0):
prj_apps = overrides.setdefault("project_applications", {})
prj_apps["enabled"] = False
prj_tools = overrides.setdefault("project_tools", {})
prj_tools["enabled"] = False
return overrides
# --------------------------------------
# Backwards compatibility for attributes
# --------------------------------------
def _sort_versions(self, addon_versions, reverse=False):
version_objs, invalid_versions = parse_versions(addon_versions)
valid_versions = [
addon_version
for addon_version, version_obj in (
sorted(version_objs, key=lambda x: x[1])
)
]
sorted_versions = list(sorted(invalid_versions)) + valid_versions
if reverse:
sorted_versions = reversed(sorted_versions)
for addon_version in sorted_versions:
yield addon_version
def _merge_groups(self, output, new_groups):
groups_by_name = {
o_group["name"]: o_group
for o_group in output
}
extend_groups = []
for new_group in new_groups:
group_name = new_group["name"]
if group_name not in groups_by_name:
extend_groups.append(new_group)
continue
existing_group = groups_by_name[group_name]
existing_variants = existing_group["variants"]
existing_variants_by_name = {
variant["name"]: variant
for variant in existing_variants
}
for new_variant in new_group["variants"]:
if new_variant["name"] not in existing_variants_by_name:
existing_variants.append(new_variant)
output.extend(extend_groups)
def _get_enum_items_from_groups(self, groups):
label_by_name = {}
for group in groups:
group_name = group["name"]
group_label = group.get(
"label", LABELS_BY_GROUP_NAME.get(group_name)
) or group_name
for variant in group["variants"]:
variant_name = variant["name"]
if not variant_name:
continue
variant_label = variant["label"] or variant_name
full_name = f"{group_name}/{variant_name}"
full_label = f"{group_label} {variant_label}"
label_by_name[full_name] = full_label
return [
{"value": full_name, "label": label_by_name[full_name]}
for full_name in sorted(label_by_name)
]
def _addon_has_attributes(self, addon, addon_version):
version_obj = parse_version(addon_version)
if version_obj is None or version_obj < ATTRIBUTES_VERSION_MILESTONE:
return True
return getattr(addon, "has_attributes", False)
async def _update_enums(self):
"""Updates applications and tools enums based on the addon settings.
This method is called when the addon is started (after we are sure that the
'applications' and 'tools' attributes exist) and when the addon settings are
updated (using on_settings_updated method).
"""
instance = AddonLibrary.getinstance()
app_defs = instance.data.get(self.name)
all_applications = []
all_tools = []
for addon_version in self._sort_versions(
app_defs.versions.keys(), reverse=True
):
addon = app_defs.versions[addon_version]
if not self._addon_has_attributes(addon, addon_version):
continue
for variant in ("production", "staging"):
settings_model = await addon.get_studio_settings(variant)
studio_settings = settings_model.dict()
application_settings = studio_settings["applications"]
app_groups = application_settings.pop("additional_apps")
for group_name, value in application_settings.items():
value["name"] = group_name
app_groups.append(value)
self._merge_groups(all_applications, app_groups)
self._merge_groups(all_tools, studio_settings["tool_groups"])
apps_attrib_name = "applications"
tools_attrib_name = "tools"
apps_enum = self._get_enum_items_from_groups(all_applications)
tools_enum = self._get_enum_items_from_groups(all_tools)
apps_attribute_data = {
"type": "list_of_strings",
"title": "Applications",
"enum": apps_enum,
}
tools_attribute_data = {
"type": "list_of_strings",
"title": "Tools",
"enum": tools_enum,
}
apps_scope = ["project"]
tools_scope = ["project", "folder", "task"]
apps_matches = False
tools_matches = False
async for row in Postgres.iterate(
"SELECT name, position, scope, data from public.attributes"
):
if row["name"] == apps_attrib_name:
# Check if scope is matching ftrack addon requirements
if (
set(row["scope"]) == set(apps_scope)
and row["data"].get("enum") == apps_enum
):
apps_matches = True
elif row["name"] == tools_attrib_name:
if (
set(row["scope"]) == set(tools_scope)
and row["data"].get("enum") == tools_enum
):
tools_matches = True
if apps_matches and tools_matches:
return
if not apps_matches:
await Postgres.execute(
"""
UPDATE attributes SET
scope = $1,
data = $2
WHERE
name = $3
""",
apps_scope,
apps_attribute_data,
apps_attrib_name,
)
if not tools_matches:
await Postgres.execute(
"""
UPDATE attributes SET
scope = $1,
data = $2
WHERE
name = $3
""",
tools_scope,
tools_attribute_data,
tools_attrib_name,
)
# Reset attributes cache on server
await attribute_library.load()
|