Allows CommandPost to respond to URLs
CommandPost is configured to react to URLs that start with commandpost://
when they are opened by OS X.
This extension allows you to register callbacks for these URL events and their parameters, offering a flexible way to receive events from other applications.
You can also choose to make CommandPost the default for http://
and https://
URLs, which lets you route the URLs in your Lua code
Given a URL such as commandpost://someEventToHandle?someParam=things&otherParam=stuff
, in the literal, RFC1808 sense of the URL, someEventToHandle
is the hostname (or net_loc) of the URL, but given that these are not network resources, we consider someEventToHandle
to be the name of the event. No path should be specified in the URL - it should consist purely of a hostname and, optionally, query parameters.
See also hs.ipc
for a command line IPC mechanism that is likely more appropriate for shell scripts or command line use. Unlike hs.ipc
, hs.urlevent
is not able to return any data to its caller.
NOTE: If CommandPost is not running when a commandpost://
URL is opened, CommandPost will be launched, but it will not react to the URL event. Nor will it react to any events until this extension is loaded and event callbacks have been bound.
NOTE: Any event which is received, for which no callback has been bound, will be logged to the CommandPost Console
NOTE: When you trigger a URL from another application, it is usually best to have the URL open in the background, if that option is available. Otherwise, OS X will activate CommandPost (i.e. give it focus), which makes URL events difficult to use for things like window management.
Signature |
hs.urlevent.httpCallback |
Type |
Variable |
Description |
A function that should handle http:// and https:// URL events |
Notes |
- The function should handle four arguments:
- scheme - A string containing the URL scheme (i.e. "http")
- host - A string containing the host requested (e.g. "www.commandpost.org")
- params - A table containing the key/value pairs of all the URL parameters
- fullURL - A string containing the full, original URL
|
Signature |
hs.urlevent.bind(eventName, callback) |
Type |
Function |
Description |
Registers a callback for a commandpost:// URL event |
Parameters |
- eventName - A string containing the name of an event
- callback - A function that will be called when the specified event is received, or nil to remove an existing callback
|
Returns |
|
Notes |
- The callback function should accept two parameters:
- eventName - A string containing the name of the event
- params - A table containing key/value string pairs containing any URL parameters that were specified in the URL
- Given the URL
commandpost://doThingA?value=1 The event name is doThingA and the callback's params argument will be a table containing {["value"] = "1"}
|
Signature |
hs.urlevent.getAllHandlersForScheme(scheme) -> table |
Type |
Function |
Description |
Gets all of the application bundle identifiers of applications able to handle a URL scheme |
Parameters |
- scheme - A string containing a URL scheme (e.g. 'http')
|
Returns |
- A table containing the bundle identifiers of all applications that can handle the scheme
|
Signature |
hs.urlevent.getDefaultHandler(scheme) -> string |
Type |
Function |
Description |
Gets the application bundle identifier of the application currently registered to handle a URL scheme |
Parameters |
- scheme - A string containing a URL scheme (e.g. 'http')
|
Returns |
- A string containing the bundle identifier of the current default application
|
Signature |
hs.urlevent.openURL(url) |
Type |
Function |
Description |
Opens a URL with the default application |
Parameters |
- url - A string containing a URL, which must contain a scheme and '://'
|
Returns |
- A boolean, true if the URL was opened successfully, otherwise false
|
Signature |
hs.urlevent.openURLWithBundle(url, bundleID) -> boolean |
Type |
Function |
Description |
Opens a URL with a specified application |
Parameters |
- url - A string containing a URL
- bundleID - A string containing an application bundle identifier (e.g. "com.apple.Safari")
|
Returns |
- True if the application was launched successfully, otherwise false
|
Signature |
hs.urlevent.setDefaultHandler(scheme[, bundleID]) |
Type |
Function |
Description |
Sets the default system handler for URLs of a given scheme |
Parameters |
- scheme - A string containing the URL scheme to change. This must be 'http' or 'https' (although entering either will change the handler for both)
- bundleID - An optional string containing an application bundle identifier for the application to set as the default handler. Defaults to
org.latenitefilms.CommandPost .
|
Returns |
|
Notes |
- Changing the default handler for http/https URLs will display a system prompt asking the user to confirm the change
|
Signature |
hs.urlevent.setRestoreHandler(scheme, bundleID) |
Type |
Function |
Description |
Stores a URL handler that will be restored when CommandPost or reloads its config |
Parameters |
- scheme - A string containing the URL scheme to change. This must be 'http' (although both http:// and https:// URLs will be affected)
- bundleID - A string containing an application bundle identifier (e.g. 'com.apple.Safari') for the application to set as the default handler when CommandPost exits or reloads its config
|
Returns |
|
Notes |
- You don't have to call this function if you want CommandPost to permanently be your default handler. Only use this if you want the handler to be automatically reverted to something else when CommandPost exits/reloads.
|