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 | class AppplicationsAction(BaseAction):
"""Applications Action class."""
type = "Application"
label = "Application action"
identifier = "ayon_app"
_launch_identifier_with_id = None
# 30 seconds
cache_lifetime = 30
def __init__(self, *args, **kwargs):
super(AppplicationsAction, self).__init__(*args, **kwargs)
self._applications_manager = None
self._applications_addon = None
self._expire_time = 0
self._icons_mapping = {}
@property
def applications_addon(self):
if self._applications_addon is None:
addons_manager = AddonsManager()
self._applications_addon = addons_manager.get("applications")
return self._applications_addon
@property
def applications_manager(self):
"""
Applications manager is refreshed in regular interval. Interval is
defined by 'cache_lifetime' property.
Returns:
ApplicationManager: Application manager instance.
"""
current_time = time.time()
if self._applications_manager is None:
self._applications_manager = (
self.applications_addon.get_applications_manager()
)
self._expire_time = current_time + self.cache_lifetime
elif self._expire_time < current_time:
self._applications_manager.refresh()
self._expire_time = current_time + self.cache_lifetime
return self._applications_manager
@property
def discover_identifier(self):
if self._discover_identifier is None:
self._discover_identifier = "{}.{}".format(
self.identifier, self.process_identifier()
)
return self._discover_identifier
@property
def launch_identifier(self):
if self._launch_identifier is None:
self._launch_identifier = "{}.*".format(self.identifier)
return self._launch_identifier
@property
def launch_identifier_with_id(self):
if self._launch_identifier_with_id is None:
self._launch_identifier_with_id = "{}.{}".format(
self.identifier, self.process_identifier()
)
return self._launch_identifier_with_id
def construct_requirements_validations(self):
# Override validation as this action does not need them
return
def register(self):
"""Registers the action, subscribing the discover and launch topics."""
discovery_subscription = (
"topic=ftrack.action.discover and source.user.username={0}"
).format(self.session.api_user)
self.session.event_hub.subscribe(
discovery_subscription,
self._discover,
priority=self.priority
)
launch_subscription = (
"topic=ftrack.action.launch"
" and data.actionIdentifier={0}"
" and source.user.username={1}"
).format(
self.launch_identifier,
self.session.api_user
)
self.session.event_hub.subscribe(
launch_subscription,
self._launch
)
def _discover(self, event):
entities = self._translate_event(event)
items = self.discover(self.session, entities, event)
if items:
return {"items": items}
def discover(self, session, entities, event):
"""Return true if we can handle the selected entities.
Args:
session (ftrack_api.Session): Helps to query necessary data.
entities (list): Object of selected entities.
event (ftrack_api.Event): ftrack event causing discover callback.
"""
if (
len(entities) != 1
or entities[0].entity_type.lower() != "task"
):
return False
entity = entities[0]
if entity["parent"].entity_type.lower() == "project":
return False
# TODO we only need project name
ft_project = self.get_project_from_entity(entity)
project_name = ft_project["full_name"]
ayon_project_entity = self.get_ayon_project_from_event(
event, project_name
)
if not ayon_project_entity:
return False
project_settings = self.get_project_settings_from_event(
event, project_name
)
ftrack_settings = project_settings.get("ftrack")
if (
not ftrack_settings
or not is_ftrack_enabled_in_settings(ftrack_settings)
):
return False
folder_path = self._get_folder_path(session, entity["parent"])
task_name = entity["name"]
folder_entity = ayon_api.get_folder_by_path(project_name, folder_path)
task_entity = ayon_api.get_task_by_name(
project_name, folder_entity["id"], task_name
)
only_available = project_settings["applications"].get(
"only_available", False
)
app_names = get_applications_for_context(
project_name,
folder_entity,
task_entity,
project_settings=project_settings,
project_entity=ayon_project_entity
)
items = []
for app_name in app_names:
app = self.applications_manager.applications.get(app_name)
if not app or not app.enabled:
continue
# Skip applications without valid executables
if only_available and not app.find_executable():
continue
app_icon = self.applications_addon.get_app_icon_url(
app.icon, server=False
)
items.append({
"label": app.group.label,
"variant": app.label,
"description": None,
"actionIdentifier": "{}.{}".format(
self.launch_identifier_with_id, app_name
),
"icon": self._get_icon_mapping(app_icon),
})
return items
def _get_icon_mapping(self, icon: Optional[str]):
"""Get icon mapping.
This function does create and store mapping of icon url. Urls with
'127.0.0.1' IP address are replaced with 'localhost'. Otherwise
is icon kept as was.
"""
if not icon:
return icon
if icon not in self._icons_mapping:
# ftrack frontend does not allow redirect to IP address, but
# allows redirect to 'localhost'
result = urlparse(icon)
if result.hostname == "127.0.0.1":
port = ""
if result.port:
port = f":{result.port}"
icon = urlunparse(
result._replace(netloc=f"localhost{port}")
)
self._icons_mapping[icon] = icon
return self._icons_mapping[icon]
def _launch(self, event):
event_identifier = event["data"]["actionIdentifier"]
# Check if identifier is same
# - show message that acion may not be triggered on this machine
if event_identifier.startswith(self.launch_identifier_with_id):
return BaseAction._launch(self, event)
return {
"success": False,
"message": (
"There are running more AYON processes"
" where Application can be launched."
)
}
def launch(self, session, entities, event):
"""Callback method for the custom action.
return either a bool (True if successful or False if the action failed)
or a dictionary with they keys `message` and `success`, the message
should be a string and will be displayed as feedback to the user,
success should be a bool, True if successful or False if the action
failed.
*session* is a `ftrack_api.Session` instance
*entities* is a list of tuples each containing the entity type and
the entity id. If the entity is a hierarchical you will always get
the entity type TypedContext, once retrieved through a get operation
you will have the "real" entity type ie. example Shot, Sequence
or Asset Build.
*event* the unmodified original event
"""
identifier = event["data"]["actionIdentifier"]
id_identifier_len = len(self.launch_identifier_with_id) + 1
app_name = identifier[id_identifier_len:]
entity = entities[0]
task_name = entity["name"]
folder_path = self._get_folder_path(session, entity["parent"])
project_name = entity["project"]["full_name"]
self.log.info(
f"ftrack launch app: \"{app_name}\""
f" on {project_name}{folder_path}/{task_name}"
)
try:
self.applications_manager.launch(
app_name,
project_name=project_name,
folder_path=folder_path,
task_name=task_name
)
except ApplicationExecutableNotFound as exc:
self.log.warning(exc.exc_msg)
return {
"success": False,
"message": exc.msg
}
except ApplicationLaunchFailed as exc:
self.log.error(str(exc))
return {
"success": False,
"message": str(exc)
}
except Exception:
msg = "Unexpected failure of application launch {}".format(
self.label
)
self.log.error(msg, exc_info=True)
return {
"success": False,
"message": msg
}
return {
"success": True,
"message": "Launching {0}".format(self.label)
}
def _get_folder_path(self, session, entity):
entity_id = entity["id"]
return get_folder_path_for_entities(session, [entity])[entity_id]
|