aboutsummaryrefslogtreecommitdiff
path: root/doc/plugins/contrib
diff options
context:
space:
mode:
authorhttps://id.koumbit.net/anarcat <https://id.koumbit.net/anarcat@web>2016-05-16 22:40:50 -0400
committeradmin <admin@branchable.com>2016-05-16 22:40:50 -0400
commit01eeb89d59cc3d88712f6559acdaa51328756729 (patch)
treebb59ecbd1c2ccfb8977fcf88b995fa346e0c1f86 /doc/plugins/contrib
parente13dc8bbc744411da0c256d61b389efe48b7aa11 (diff)
downloadikiwiki-01eeb89d59cc3d88712f6559acdaa51328756729.tar
ikiwiki-01eeb89d59cc3d88712f6559acdaa51328756729.tar.gz
little irc integration plugin
Diffstat (limited to 'doc/plugins/contrib')
-rw-r--r--doc/plugins/contrib/irker.mdwn128
1 files changed, 128 insertions, 0 deletions
diff --git a/doc/plugins/contrib/irker.mdwn b/doc/plugins/contrib/irker.mdwn
new file mode 100644
index 000000000..bbc24e57d
--- /dev/null
+++ b/doc/plugins/contrib/irker.mdwn
@@ -0,0 +1,128 @@
+[[!template id=plugin name=irker author="[[anarcat]]"]]
+[[!tag type/special-purpose]]
+
+This plugin will configure your wiki to send IRC notifications using the [irker](http://www.catb.org/esr/irker/) notification bot.
+
+It is fairly simple and requires no configuration but installation of the irker package. For template configuration, patches from [Debian bug #824512](https://bugs.debian.org/824512) are necessary.
+
+[[!format perl """
+package IkiWiki::Plugin::irker;
+
+use warnings;
+use strict;
+use IkiWiki 3.00;
+
+sub import {
+ hook(type => "getsetup", id => "irker", call => \&getsetup);
+ hook(type => "checkconfig", id => "branchable", call => \&checkconfig,
+ first => 1);
+ hook(type => "genwrapper", id => "irker", call => \&genwrapper,
+ last => 1);
+}
+
+sub getsetup() {
+ return
+ plugin => {
+ safe => 0,
+ rebuild => undef,
+ section => "core",
+ },
+ irker_channels => {
+ type => "string",
+ example => ['ircs://irc.example.com/example'],
+ description => "IRC channels to send notifications to",
+ safe => 1,
+ rebuild => 0,
+ },
+ irker_template => {
+ type => "string",
+ example => "'%(bold)s%(project)s:%(reset)s %(green)s%(author)s%(reset)s %(repo)s:%(yellow)s%(branch)s%(reset)s * %(bold)s%(rev)s%(reset)s / %(bold)s%(files)s%(reset)s: %(logmsg)s %(brown)s%(url)s%(reset)s",
+ description => "Template to use for messages. Only supported with patch from https://bugs.debian.org/824512",
+ safe => 1,
+ rebuild => 0,
+ },
+ irker_hook => {
+ type => "string",
+ example => "irkerhook-git",
+ description => 'Hook to setup for notifications, will look in $PATH if File::Which is available, otherwise use absolute path.',
+ safe => 1,
+ rebuild => 0,
+ },
+}
+
+sub checkconfig {
+ use URI; # ikiwiki Depends on it
+ foreach my $channel (@{$config{'irker_channels'}}) {
+ my $uri = URI->new( $channel );
+ # inspired by http://stackoverflow.com/a/2599378/1174784
+ # and http://stackoverflow.com/a/4953329/1174784
+ if (!$uri->scheme || $uri->path =~ m/^([#&]?[^\x07\x2C\s]{,200})/) {
+ error("$channel is not a valid IRC channel URI");
+ }
+ }
+ # check if hook exists
+ if (-x $config{irker_hook}) {
+ # shortcut: already configured
+ return;
+ }
+ eval q{use File::Which};
+ # check with which, i available
+ if (!$@) {
+ my $hook;
+ if (!defined $config{'irker_hook'}) {
+ $config{'irker_hook'} = 'irkerhook-git';
+ }
+ $hook = which($config{'irker_hook'});
+ if (defined $hook) {
+ $config{'irker_hook'} = $hook;
+ }
+ else {
+ error("irker hook '$config{irker_hook}' not found in PATH");
+ }
+ }
+ if (!-x $config{irker_hook}) {
+ error("irker hook '$config{irker_hook}' not executable");
+ }
+}
+
+# Parses git_wrapper to find out where the git repository is.
+# cargo-culted from branchable.pm
+sub find_git_repository {
+ if ($config{rcs} eq 'git' &&
+ $config{git_wrapper}=~m!^(.*)/hooks/post-update$!) {
+ return $1;
+ }
+ else {
+ return undef;
+ }
+}
+
+# setup the hook symlink and git configuration
+sub genwrapper() {
+ my $repo=find_git_repository();
+ if (defined $repo && defined $config{'irker_channels'}) {
+ if (!-l $repo . '/hooks/post-receive') {
+ if (-e $repo . '/hooks/post-receive') {
+ error('post-receive hook exists and is not a symlink, failed to setup hook');
+ }
+ symlink($config{'irker_hook'}, $repo . '/hooks/post-receive') || error('failed to symlink: $!');
+ }
+ my $channels = join(",", @{$config{'irker_channels'}});
+ exec { 'git' } ('config', '-C', $repo, 'config', 'irker.channels', $channels);
+ exec { 'git' } ('config', '-C', $repo, 'config', 'irker.channels', $config{'wikiname'});
+ if ($config{'irker_template'}) {
+ exec { 'git' } ('config', '-C', $repo, 'config', 'irker.channels', $config{'irker_template'});
+ }
+ }
+ else {
+ exec { 'git' } ('config', '-C', $repo, 'config', '--remove-section', 'irker');
+ if (-l $repo . '/hooks/post-receive' &&
+ readlink($repo . '/hooks/post-receive') =~ m/irkerhook/) {
+ unlink($repo . '/hooks/post-receive');
+ }
+ }
+ return "";
+}
+
+1
+"""]]