.. :copyright: Copyright (c) 2014 ftrack .. _event_list: ********** Event list ********** The following is a consolidated list of events published directly by this API. For some events, a template plugin file is also listed for download (:guilabel:`Download template plugin`) to help get you started with writing your own plugin for a particular event. .. seealso:: * :ref:`handling_events` * :ref:`ftrack server event list ` .. _event_list/ftrack.api.session.get-file-type-from-string: ftrack.api.session.get-file-type-from-string ============================================ :ref:`Synchronous `. Published by the session, when creating a component, to retrieve the file extension from the given path:: Event( topic='ftrack.api.session.get-file-type-from-string', data=dict( file_path=file_path, ) ) Expects returned data to be:: A Python string .. note:: This event is to make users able to further customise the way extensions are extracted from the file names. An example are coumpound extensions such as : *a_file.geo.bz*, which are specific to some industries only. .. _event_list/ftrack.api.session.construct-entity-type: ftrack.api.session.construct-entity-type ======================================== :download:`Download template plugin ` :ref:`Synchronous `. Published by the session to retrieve constructed class for specified schema:: Event( topic='ftrack.api.session.construct-entity-type', data=dict( schema=schema, schemas=schemas ) ) Expects returned data to be:: A Python class. .. seealso:: :ref:`working_with_entities/entity_types`. .. _event_list/ftrack.api.session.configure-location: ftrack.api.session.configure-location ===================================== :download:`Download template plugin ` :ref:`Synchronous `. Published by the session to allow configuring of location instances:: Event( topic='ftrack.api.session.configure-location', data=dict( session=self ) ) .. seealso:: :ref:`Configuring locations `. .. _event_list/ftrack.location.component-added: ftrack.location.component-added =============================== Published whenever a component is added to a location:: Event( topic='ftrack.location.component-added', data=dict( component_id='e2dc0524-b576-11d3-9612-080027331d74', location_id='07b82a97-8cf9-11e3-9383-20c9d081909b' ) ) .. _event_list/ftrack.location.component-removed: ftrack.location.component-removed ================================= Published whenever a component is removed from a location:: Event( topic='ftrack.location.component-removed', data=dict( component_id='e2dc0524-b576-11d3-9612-080027331d74', location_id='07b82a97-8cf9-11e3-9383-20c9d081909b' ) ) .. _event_list/ftrack.api.session.ready: ftrack.api.session.ready ======================== :ref:`Synchronous `. Published after a :class:`~ftrack_api.session.Session` has been initialized and is ready to be used:: Event( topic='ftrack.api.session.ready', data=dict( session=, ) ) .. warning:: Since the event is synchronous and blocking, avoid doing any unnecessary work as it will slow down session initialization. .. seealso:: Also see example usage in :download:`example_plugin_using_session.py `. .. _event_list/ftrack.api.session.reset: ftrack.api.session.reset ======================== :ref:`Synchronous `. Published after a :class:`~ftrack_api.session.Session` has been reset and is ready to be used again:: Event( topic='ftrack.api.session.reset', data=dict( session=, ) )