使用自定义浏览器协议启动应用程序
动作菜单项 (AMI) 非常实用的一个版本是将在本地计算机上运行应用程序或脚本的版本。要实现这一点,需要在浏览器与要运行的脚本或应用程序之间设置连接。此链接称为自定义浏览器协议。
您可能想要设置一种类型的链接,用户单击它时将启动 [foo] 应用程序。不是将“http”作为前缀,而是需要指定自定义协议,例如“foo”。理想情况下,链接类似如下: foo://some/info/here.
操作系统必须知道如何处理协议。默认情况下,所有当前操作系统都知道“http”应由默认 Web 浏览器处理,“mailto”应由默认邮件客户端处理。有时,安装应用程序时,它们会向操作系统注册并告诉它针对特定协议启动应用程序。
例如,如果您安装 RV,则该应用程序向操作系统注册 rvlink://,并告知它 RV 将处理所有 rvlink:// 协议请求以在 RV 中显示图像或镜头序列。因此,当用户单击以 rvlink:// 开头的链接时(正如您可以在 Shotgun 中执行的操作),操作系统将知道对该链接启动 RV,而该应用程序将解析链接并知道如何处理它。
有关 RV 如何充当 URL 和“rvlink”协议的协议处理程序的详细信息,请参见 RV 用户手册。
注册协议
在 Windows 上注册协议
在 Windows 上,注册协议处理程序涉及修改 Windows 注册表。下面是您所需的注册表项的常规示例:
1
2
3
4
5
6
7
HKEY_CLASSES_ROOT
foo
(Default) = "URL:foo Protocol"
URL Protocol = ""
shell
open
command (Default) = "foo_path" "%1"
目标 URL 如下所示:
1
foo://host/path...
注意:有关详细信息,请参见 https://msdn.microsoft.com/zh-cn/library/aa767914(VS.85).aspx。
Windows QT/QSetting 示例
如果您开发的应用程序是使用 QT(或 PyQT/PySide)框架编写的,可以利用 QSetting 对象来为您管理注册表项的创建。
自动让应用程序设置注册表项的代码如下所示:
1
2
3
4
5
6
7
// cmdLine points to the foo path.
//Add foo to the Os protocols and set foobar to handle the protocol
QSettings fooKey("HKEY_CLASSES_ROOT\\foo", QSettings::NativeFormat);
mxKey.setValue(".", "URL:foo Protocol");
mxKey.setValue("URL Protocol", "");
QSettings fooOpenKey("HKEY_CLASSES_ROOT\\foo\\shell\\open\\command", QSettings::NativeFormat);
mxOpenKey.setValue(".", cmdLine);
通过 Shotgun AMI 启动 Python 脚本的 Windows 示例
在本地运行的许多 AMI 可能选择通过 Python 解释器启动简单的 Python 脚本。这样,您可以使用 GUI(PyQT、PySide 或您选择的 GUI 框架)运行简单脚本甚至应用。让我们看一个实际示例来帮您入门。
步骤 1:设置自定义“shotgun”协议
使用 Windows 注册表编辑器:
1
2
3
4
5
6
7
[HKEY_CLASSES_ROOT\shotgun]
@="URL:shotgun Protocol"
"URL Protocol"=""
[HKEY_CLASSES_ROOT\shotgun\shell]
[HKEY_CLASSES_ROOT\shotgun\shell\open]
[HKEY_CLASSES_ROOT\shotgun\shell\open\command]
@="\"python\" \"sgTriggerScript.py\" \"%1\""
此设置将注册 shotgun:// 协议以启动 python 解释器,第一个参数为脚本 sgTriggerScript.py,第二个参数为 %1。请务必了解,%1 将替换为在浏览器中单击的 URL 或调用的 AMI 的 URL。这将成为您的 Python 脚本的第一个参数。
注意:您可能需要提供您的 Python 解释器和您的 Python 脚本的完整路径。请进行相应的调整。
步骤 2:在您的 Python 脚本中解析传入 URL
在您的脚本中,您将获取提供的第一个参数 (URL),然后向下解析到其各个组成部分以了解调用 AMI 的上下文。我们在以下代码中提供了一些简单的基架,显示如何执行此操作。
Python 脚本
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
import sys
import urlparse
import pprint
def main(args):
# Make sure we have only one arg, the URL
if len(args) != 1:
return 1
# Parse the URL:
protocol, fullPath = args[0].split(":", 1)
path, fullArgs = fullPath.split("?", 1)
action = path.strip("/")
args = fullArgs.split("&")
params = urlparse.parse_qs(fullArgs)
# This is where you can do something productive based on the params and the
# action value in the URL. For now we'll just print out the contents of the
# parsed URL.
fh = open('output.txt', 'w')
fh.write(pprint.pformat((action, params)))
fh.close()
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))
步骤 3:使用您的自定义协议连接 Shotgun 界面,并最终连接您的脚本
最后,在 Shotgun 中创建其 URL 值为 shotgun://processVersion 的 AMI。您可以将此 AMI 指定到您希望的任何实体类型,但此示例使用版本实体。
转到某个版本页面,右键单击一个版本并从菜单中选择您的 AMI。这应使您的浏览器打开 shotgun:// URL,此 URL 将通过注册的自定义协议重定向到您的脚本。
在您的脚本所在目录中的 output.txt 文件中,您现在应该会看到类似如下的内容:
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
('processVersion',
{'cols': ['code',
'image',
'entity',
'sg_status_list',
'user',
'description',
'created_at'],
'column_display_names': ['Version Name',
'Thumbnail',
'Link',
'Status',
'Artist',
'Description',
'Date Created'],
'entity_type': ['Version'],
'ids': ['6933,6934,6935'],
'page_id': ['4606'],
'project_id': ['86'],
'project_name': ['Test'],
'referrer_path': ['/detail/HumanUser/24'],
'selected_ids': ['6934'],
'server_hostname': ['patrick.shotgunstudio.com'],
'session_uuid': ['9676a296-7e16-11e7-8758-0242ac110004'],
'sort_column': ['created_at'],
'sort_direction': ['asc'],
'user_id': ['24'],
'user_login': ['shotgun_admin'],
'view': ['Default']})
可能的版本
通过变换您的 AMI 中 URL 的 // 部分后面的关键字,可以更改您的脚本中 action 变量的内容,同时保持相同的 shotgun:// 协议并且仅注册一个自定义协议。然后,根据 action 变量的内容和参数的内容,您的脚本可以获知预期行为应是什么。
通过使用此方法,您可以打开应用程序、通过 FTP 等服务上传内容、归档数据、发送电子邮件或生成 PDF 报告。
在 OSX 上注册协议
要在 OSX 上注册协议,需要创建配置为运行您的应用程序或脚本的 .app 包。
先在 AppleScript 脚本编辑器中编写以下脚本:
1
2
3
on open location this_URL
do shell script "sgTriggerScript.py '" & this_URL & "'"
end open location
专业提示:为了确保从特定 Shell(如 Tcsh)运行 Python,您可以更改 do shell script,如下所示:
1
do shell script "tcsh -c \"sgTriggerScript.py '" & this_URL & "'\""
在脚本编辑器中,将您的简短脚本保存为“应用程序包”。
找到保存的应用程序包,并打开内容。然后打开 info.plist 文件,并将以下内容添加到 plist dict:
1
2
3
4
5
6
7
8
9
10
11
12
13
<key>CFBundleIdentifier</key>
<string>com.mycompany.AppleScript.Shotgun</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLName</key>
<string>Shotgun</string>
<key>CFBundleURLSchemes</key>
<array>
<string>shotgun</string>
</array>
</dict>
</array>
您可能需要更改以下三个字符串:
1
2
3
com.mycompany.AppleScript.Shotgun
Shotgun
shotgun
第三个字符串是协议处理程序;因此 URL 为: shotgun://something
最后,将您的 .app 包移到您的 Mac 上的 Applications 文件夹中。然后双击它,这将向操作系统注册您的协议。
数据流如下:在 Shotgun 中单击 AMI 后,或单击以 shotgun:// 开头的 URL 后,.app 包将响应它,并将 URL 传递到您的 Python 脚本。此时,可以使用在 Windows 示例中所用的同一脚本,且所有相同的可能情况均适用。
在 Linux 上注册协议
使用以下代码:
1
2
3
gconftool-2 -t string -s /desktop/gnome/url-handlers/foo/command 'foo "%s"'
gconftool-2 -s /desktop/gnome/url-handlers/foo/needs_terminal false -t bool
gconftool-2 -s /desktop/gnome/url-handlers/foo/enabled true -t bool
然后将您本地 GConf 文件中的设置用于以下文件中的全局默认设置: /etc/gconf/gconf.xml.defaults/%gconf-tree.xml
尽管仅在 GNOME 设置中进行更改,但对 KDE 也有效。Firefox 和 GNU IceCat 在遇到无法识别的前缀(例如 foo://)时会采用 gnome-open,无论运行的窗口管理器是什么。因此,在这种情况下,其他浏览器(例如 KDE 中的 Konqueror)无法运行。
有关如何在 Ubuntu 中为动作菜单项设置协议处理程序的详细信息,请参见 https://askubuntu.com/questions/527166/how-to-set-subl-protocol-handler-with-unity。
写在最后
以上方法有些许坑点,不能完全照抄,写在填坑后。