Data channels are named piped allowing to run profiles from user space. They can be used to:
- Allow external applications to feed data into tiki
- Create custom forms to execute complex actions
A channel is composed of:
- A unique name composed of alphanumeric characters and underscores
- A profile domain, usually tiki://local to use local pages as profiles
- A profile name
- A list of groups allowed to execute the channel
Channels are configured through the profile
Administration Interface using a textbox. The format of the textbox is comma delimited, one channel per line.
Sample configuration
svn_commit, tiki://local, SvnCommit, Subversion, Admins
create_workspace, tiki://local, WorkspaceConfiguration, ProjectLeads, Admins
The above sample creates two channels. One that will receive commit messages from subversion and save them using the profile located in the local wiki page called
SvnCommit. The channel can only be used by administrators for test purposes and users in Subversion (which likely contains a single system user with credentials stored in the SVN plugin). The second one creates a base workspace and is accessible by normal users. A custom form will be required to use it.
Channels can use remote profiles as well. However, unless the remote tiki installation is in a controlled environment, like an intranet configuration repository,
remote channels are not recommended.
Data channel profiles use the
User Input syntax to transmit information from the request to the profile.