mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 13:24:54 +01:00
30 lines
958 B
Python
30 lines
958 B
Python
import os
|
|
from openpype.modules import (
|
|
PypeModule, IPluginPaths, ILaunchHookPaths)
|
|
|
|
SLACK_MODULE_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
|
class SlackIntegrationModule(PypeModule, IPluginPaths, ILaunchHookPaths):
|
|
"""Allows sending notification to Slack channels during publishing."""
|
|
|
|
name = "slack"
|
|
|
|
def initialize(self, modules_settings):
|
|
slack_settings = modules_settings[self.name]
|
|
self.enabled = slack_settings["enabled"]
|
|
|
|
def connect_with_modules(self, _enabled_modules):
|
|
"""Nothing special."""
|
|
return
|
|
|
|
def get_launch_hook_paths(self):
|
|
"""Implementation of `ILaunchHookPaths`."""
|
|
return os.path.join(SLACK_MODULE_DIR, "launch_hooks")
|
|
|
|
def get_plugin_paths(self):
|
|
"""Deadline plugin paths."""
|
|
current_dir = os.path.dirname(os.path.abspath(__file__))
|
|
return {
|
|
"publish": [os.path.join(current_dir, "plugins", "publish")]
|
|
}
|