]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/plugins/write.mdwn
web commit by PaulWise: add headinganchors plugin
[git.ikiwiki.info.git] / doc / plugins / write.mdwn
1 ikiwiki [[plugins]] are written in perl. Each plugin is a perl module, in
2 the `IkiWiki::Plugin` namespace. The name of the plugin is typically in
3 lowercase, such as `IkiWiki::Plugin::inline`. Ikiwiki includes a
4 `IkiWiki::Plugin::skeleton` that can be fleshed out to make a useful
5 plugin. `IkiWiki::Plugin::pagecount` is another simple example.
7 [[toc levels=2]]
9 ## Considerations
11 One thing to keep in mind when writing a plugin is that ikiwiki is a wiki
12 *compiler*. So plugins influence pages when they are built, not when they
13 are loaded. A plugin that inserts the current time into a page, for
14 example, will insert the build time. Also, as a compiler, ikiwiki avoids
15 rebuilding pages unless they have changed, so a plugin that prints some
16 random or changing thing on a page will generate a static page that won't
17 change until ikiwiki rebuilds the page for some other reason, like the page
18 being edited.
20 ## Registering plugins
22 All plugins should `use IkiWiki` to import the ikiwiki plugin interface.
23 It's a good idea to include the version number of the plugin interface that
24 your plugin expects: `use IkiWiki 2.00`
26 Plugins should, when imported, call `hook()` to hook into ikiwiki's
27 processing. The function uses named parameters, and use varies depending on
28 the type of hook being registered -- see below. Note that a plugin can call
29 the function more than once to register multiple hooks. All calls to
30 `hook()` should be passed a "type" parameter, which gives the type of
31 hook, a "id" paramter, which should be a unique string for this plugin, and
32 a "call" parameter, which is a reference to a function to call for the
33 hook.
35 An optional "last" parameter, if set to a true value, makes the hook run
36 after all other hooks of its type. Useful if the hook depends on some other
37 hook being run first.
39 ## Types of hooks
41 In roughly the order they are called.
43 ### getopt
45         hook(type => "getopt", id => "foo", call => \&getopt);
47 This allows for plugins to perform their own processing of command-line
48 options and so add options to the ikiwiki command line. It's called during
49 command line processing, with @ARGV full of any options that ikiwiki was
50 not able to process on its own. The function should process any options it
51 can, removing them from @ARGV, and probably recording the configuration
52 settings in %config. It should take care not to abort if it sees
53 an option it cannot process, and should just skip over those options and
54 leave them in @ARGV.
56 ### checkconfig
58         hook(type => "checkconfig", id => "foo", call => \&checkconfig);
60 This is useful if the plugin needs to check for or modify ikiwiki's
61 configuration. It's called early in the startup process. The
62 function is passed no values. It's ok for the function to call
63 `error()` if something isn't configured right.
65 ### needsbuild
67         hook(type => "needsbuild", id => "foo", call => \&needsbuild);
69 This allows a plugin the manipulate the list of files that need to be
70 built when the wiki is refreshed. The function is passed a reference to an
71 array of pages that will be rebuilt, and can modify the array, either
72 adding or removing files from it.
74 ### filter
76         hook(type => "filter", id => "foo", call => \&filter);
78 Runs on the raw source of a page, before anything else touches it, and can
79 make arbitrary changes. The function is passed named parameters "page",
80 "destpage", and "content". It should return the filtered content.
82 ### preprocess
84 Adding a [[PreProcessorDirective]] is probably the most common use of a
85 plugin.
87         hook(type => "preprocess", id => "foo", call => \&preprocess);
89 Replace "foo" with the command name that will be used inside brackets for
90 the preprocessor directive.
92 Each time the directive is processed, the referenced function (`preprocess`
93 in the example above) is called, and is passed named parameters. A "page"
94 parameter gives the name of the page that embedded the preprocessor
95 directive, while a "destpage" parameter gives the name of the page the
96 content is going to (different for inlined pages), and a "preview"
97 parameter is set to a true value if the page is being previewed. All
98 parameters included in the directive are included as named parameters as
99 well. Whatever the function returns goes onto the page in place of the
100 directive.
102 An optional "scan" parameter, if set to a true value, makes the hook be
103 called during the preliminary scan that ikiwiki makes of updated pages,
104 before begining to render pages. This parameter should be set to true if
105 the hook modifies data in `%links`. Note that doing so will make the hook
106 be run twice per page build, so avoid doing it for expensive hooks.
108 Note that if the [[htmlscrubber]] is enabled, html in
109 [[PreProcessorDirective]] output is sanitised, which may limit what your
110 plugin can do. Also, the rest of the page content is not in html format at
111 preprocessor time. Text output by a preprocessor directive will be
112 linkified and passed through markdown (or whatever engine is used to htmlize
113 the page) along with the rest of the page.
115 ### htmlize
117         hook(type => "htmlize", id => "ext", call => \&htmlize);
119 Runs on the raw source of a page and turns it into html. The id parameter
120 specifies the filename extension that a file must have to be htmlized using
121 this plugin. This is how you can add support for new and exciting markup
122 languages to ikiwiki.
124 The function is passed named parameters: "page" and "content" and should
125 return the htmlized content.
127 ### pagetemplate
129         hook(type => "pagetemplate", id => "foo", call => \&pagetemplate);
131 [[Templates|wikitemplate]] are filled out for many different things in
132 ikiwiki, like generating a page, or part of a blog page, or an rss feed, or
133 a cgi. This hook allows modifying the variables available on those
134 templates. The function is passed named parameters. The "page" and
135 "destpage" parameters are the same as for a preprocess hook. The "template"
136 parameter is a [[cpan HTML::Template]] object that is the template that
137 will be used to generate the page. The function can manipulate that
138 template object.
140 The most common thing to do is probably to call `$template->param()` to add
141 a new custom parameter to the template.
143 ### templatefile
145         hook(type => "templatefile", id => "foo", call => \&templatefile);
147 This hook allows plugins to change the [[template|wikitemplate]] that is
148 used for a page in the wiki. The hook is passed a "page" parameter, and
149 should return the name of the template file to use, or undef if it doesn't
150 want to change the default ("page.tmpl"). Template files are looked for in
151 /usr/share/ikiwiki/templates by default.
153 ### sanitize
155         hook(type => "sanitize", id => "foo", call => \&sanitize);
157 Use this to implement html sanitization or anything else that needs to
158 modify the body of a page after it has been fully converted to html.
160 The function is passed named parameters: "page" and "content", and 
161 should return the sanitized content.
163 ### format
165         hook(type => "format", id => "foo", call => \&format);
167 The difference between format and sanitize is that sanitize only acts on
168 the page body, while format can modify the entire html page including the
169 header and footer inserted by ikiwiki, the html document type, etc.
171 The function is passed named parameters: "page" and "content", and 
172 should return the formatted content.
174 ### delete
176         hook(type => "delete", id => "foo", call => \&delete);
178 Each time a page or pages is removed from the wiki, the referenced function
179 is called, and passed the names of the source files that were removed.
181 ### change
183         hook(type => "change", id => "foo", call => \&render);
185 Each time ikiwiki renders a change or addition (but not deletion) to the
186 wiki, the referenced function is called, and passed the names of the
187 source files that were rendered.
189 ### cgi
191         hook(type => "cgi", id => "foo", call => \&cgi);
193 Use this to hook into ikiwiki's cgi script. Each registered cgi hook is
194 called in turn, and passed a CGI object. The hook should examine the
195 parameters, and if it will handle this CGI request, output a page (including the http headers) and
196 terminate the program.
198 ### auth
200         hook(type => "auth", id => "foo", call => \&auth);
202 This hook can be used to implement a different authentication method than
203 the standard web form. When a user needs to be authenticated, each registered
204 auth hook is called in turn, and passed a CGI object and a session object. 
206 If the hook is able to authenticate the user, it should set the session
207 object's "name" parameter to the authenticated user's name. Note that
208 if the name is set to the name of a user who is not registered,
209 a basic registration of the user will be automatically performed.
211 ### sessioncgi
213         hook(type => "sessioncgi", id => "foo", call => \&sessioncgi);
215 Unlike the cgi hook, which is run as soon as possible, the sessioncgi hook
216 is only run once a session object is available. It is passed both a CGI
217 object and a session object. To check if the user is in fact signed in, you
218 can check if the session object has a "name" parameter set.
220 ### canedit
222         hook(type => "canedit", id => "foo", call => \&pagelocked);
224 This hook can be used to implement arbitrary access methods to control when
225 a page can be edited using the web interface (commits from revision control
226 bypass it). When a page is edited, each registered canedit hook is called
227 in turn, and passed the page name, a CGI object, and a session object.
229 If edit can proceed, the hook should return "". If the edit is not allowed
230 by this hook, the hook should return an error message for the user to see.
231 If the hook has no opinion about whether the edit can proceed, return
232 `undef`, and the next plugin will be asked to decide.
234 ### formbuilder
236         hook(type => "formbuilder_setup", id => "foo", call => \&formbuilder_setup);
237         hook(type => "formbuilder", id => "foo", call => \&formbuilder);
239 These hooks allow tapping into the parts of ikiwiki that use [[cpan
240 CGI::FormBuilder]] to generate web forms. These hooks are passed named
241 parameters: `cgi`, `session`, and `form`. These are, respectively, the
242 `CGI` object, the user's `CGI::Session`, and a `CGI::FormBuilder`.
244 Each time a form is set up, the `formbuilder_setup` hook is called.
245 Typically the `formbuilder_setup` hook will check the form's title, and if
246 it's a form that it needs to modify, will call various methods to
247 add/remove/change fields, tweak the validation code for the fields, etc. It
248 will not validate or display the form.
250 Form validation and display can be overridden by the formbuilder hook.
251 By default, ikiwiki will do a basic validation and display of the form,
252 but if this hook is registered, it will stop that and let the hook take
253 over. This hook is passed an additional named parameter: `buttons` is an
254 array of the submit buttons for the form.
256 ### savestate
258         hook(type => "savestate", id => "foo", call => \&savestate);
260 This hook is called wheneven ikiwiki normally saves its state, just before
261 the state is saved. The function can save other state, modify values before
262 they're saved, etc.
264 ## Plugin interface
266 To import the ikiwiki plugin interface:
268         use IkiWiki '1.00';
270 This will import several variables and functions into your plugin's
271 namespace. These variables and functions are the ones most plugins need,
272 and a special effort will be made to avoid changing them in incompatible
273 ways, and to document any changes that have to be made in the future.
275 Note that IkiWiki also provides other variables functions that are not
276 exported by default. No guarantee is made about these in the future, so if
277 it's not exported, the wise choice is to not use it.
279 ### %config
281 A plugin can access the wiki's configuration via the `%config`
282 hash. The best way to understand the contents of the hash is to look at
283 [[ikiwiki.setup]], which sets the hash content to configure the wiki.
285 ### Other variables
287 If your plugin needs to access data about other pages in the wiki. It can
288 use the following hashes, using a page name as the key:
290 * `links` lists the names of each page that a page links to, in an array
291   reference.
292 * `%destsources` contains the name of the source file used to create each
293   destination file.
294 * `%pagesources` contains the name of the source file for each page.
296 Also, the %IkiWiki::version variable contains the version number for the
297 ikiwiki program.
299 ### Library functions
301 #### `hook(@)`
303 Hook into ikiwiki's processing. See the discussion of hooks above.
305 Note that in addition to the named parameters described above, a parameter
306 named `no_override` is supported, If it's set to a true value, then this hook
307 will not override any existing hook with the same id. This is useful if
308 the id can be controled by the user.
310 #### `debug($)`
312 Logs a debugging message. These are supressed unless verbose mode is turned
313 on.
315 #### `error($;$)`
317 Aborts with an error message. If the second parameter is passed, it is a
318 function that is called after the error message is printed, to do any final
319 cleanup.
321 Note that while any plugin can use this for a fatal error, plugins should
322 try to avoid dying on bad input, as that will halt the entire wiki build
323 and make the wiki unusable. So for example, if a [[PreProcessorDirective]]
324 is passed bad parameters, it's better to return an error message, which can
325 appear on the wiki page, rather than calling error().
327 #### `template($;@)`
329 Creates and returns a [[cpan HTML::Template]] object. The first parameter
330 is the name of the file in the template directory. The optional remaining
331 parameters are passed to `HTML::Template->new`.
333 #### `htmlpage($)`
335 Passed a page name, returns the base name that will be used for a the html
336 page created from it. (Ie, it appends ".html".)
338 #### `add_depends($$)`
340 Makes the specified page depend on the specified [[PageSpec]].
342 #### `pagespec_match($$;@)`
344 Passed a page name, and [[PageSpec]], returns true if the [[PageSpec]]
345 matches the page.
347 Additional named parameters can be passed, to further limit the match.
348 The most often used is "location", which specifies the location the
349 PageSpec should match against. If not passed, relative PageSpecs will match
350 relative to the top of the wiki.
352 #### `bestlink($$)`
354 Given a page and the text of a link on the page, determine which
355 existing page that link best points to. Prefers pages under a
356 subdirectory with the same name as the source page, failing that
357 goes down the directory tree to the base looking for matching
358 pages, as described in [[SubPage/LinkingRules]].
360 #### `htmllink($$$;@)`
362 Many plugins need to generate html links and add them to a page. This is
363 done by using the `htmllink` function. The usual way to call
364 `htmlllink` is:
366         htmllink($page, $page, $link)
368 Why is `$page` repeated? Because if a page is inlined inside another, and a
369 link is placed on it, the right way to make that link is actually:
371         htmllink($page, $destpage, $link)
373 Here `$destpage` is the inlining page. A `destpage` parameter is passed to
374 some of the hook functions above; the ones that are not passed it are not used
375 during inlining and don't need to worry about this issue.
377 After the three required parameters, named parameters can be used to
378 control some options. These are:
380 * noimageinline - set to true to avoid turning links into inline html images
381 * forcesubpage  - set to force a link to a subpage
382 * linktext - set to force the link text to something
383 * anchor - set to make the link include an anchor
384 * rel - set to add a rel attribute to the link.
386 #### `readfile($;$)`
388 Given a filename, reads and returns the entire file.
390 The optional second parameter, if set to a true value, makes the file be read
391 in binary mode.
393 A failure to read the file will result in it dying with an error.
395 #### `writefile($$$;$$)`
397 Given a filename, a directory to put it in, and the file's content,
398 writes a file. 
400 The optional fourth parameter, if set to a true value, makes the file be
401 written in binary mode.
403 The optional fifth parameter can be used to pass a function reference that
404 will be called to handle writing to the file. The function will be called
405 and passed a file descriptor it should write to, and an error recovery
406 function it should call if the writing fails. (You will not normally need to
407 use this interface.)
409 A failure to write the file will result in it dying with an error.
411 If the destination directory doesn't exist, it will first be created.
413 #### `will_render($$)`
415 Given a page name and a destination file name (not including the base
416 destination directory), register that the page will result in that file
417 being rendered. It's important to call this before writing to any file in
418 the destination directory.
420 #### `pagetype($)`
422 Given the name of a source file, returns the type of page it is, if it's
423 a type that ikiwiki knowns how to htmlize. Otherwise, returns undef.
425 #### `pagename($)`
427 Given the name of a source file, returns the name of the wiki page
428 that corresponds to that file.
430 #### `srcfile($)`
432 Given the name of a source file in the wiki, searches for the file in
433 the source directory and the underlay directory, and returns the full
434 path to the first file found.
436 #### `displaytime($)`
438 Given a time, formats it for display.
440 #### `gettext`
442 This is the standard gettext function, although slightly optimised.
444 #### `urlto($$)`
446 Construct a relative url to the first parameter from the page named by the
447 second. The first parameter can be either a page name, or some other
448 destination file, as registered by `will_render`.
450 #### `targetpage($$)`
452 Passed a page and an extension, returns the filename that page will be
453 rendered to.
455 ## RCS plugins
457 ikiwiki's support for revision control systems also uses pluggable perl
458 modules. These are in the `IkiWiki::RCS` namespace, for example
459 `IkiWiki::RCS::svn`. 
461 Each RCS plugin must support all the `IkiWiki::rcs_*` functions.
462 See IkiWiki::RCS::Stub for the full list of functions. It's ok if
463 `rcs_getctime` does nothing except for throwing an error.
465 See [[about_RCS_backends]] for some more info.
467 ## PageSpec plugins
469 It's also possible to write plugins that add new functions to
470 [[PageSpecs|PageSpec]]. Such a plugin should add a function to the
471 IkiWiki::PageSpec package, that is named `match_foo`, where "foo()" is
472 how it will be accessed in a [[PageSpec]]. The function will be passed
473 two parameters: The name of the page being matched, and the thing to match
474 against. It may also be passed additional, named parameters. It should return
475 a IkiWiki::SuccessReason object if the match succeeds, or an
476 IkiWiki::FailReason object if the match fails.