From: http://christian.amsuess.com/chrysn Date: Thu, 28 Jun 2012 22:23:26 +0000 (-0400) Subject: more details on ad-hoc plugins X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/53862f268df47f6b7df1959a11149d8421d08dd8 more details on ad-hoc plugins --- diff --git a/doc/bugs/ad-hoc_plugins.mdwn b/doc/bugs/ad-hoc_plugins.mdwn index d9266e822..9dcecb9ea 100644 --- a/doc/bugs/ad-hoc_plugins.mdwn +++ b/doc/bugs/ad-hoc_plugins.mdwn @@ -6,7 +6,7 @@ ad-hoc plugins are little code snipplets that work similar to plugins, are limit * calendar modules for non-standard calendars. - an article mentioning Maladay could note it as `\[[!template id=discdate date="The Aftermath 5, 579 YOLD"]]` could run a script parsing the date and showing an appropriate gregorian daten in parentheses after the date in [[!wikipedia Discordian calendar]] + an article mentioning Maladay could note it as `\[[!template id=discdate date="The Aftermath 5, 579 YOLD"]]`, which could run a script parsing the date and showing an appropriate gregorian daten in parentheses after the date in [[!wikipedia Discordian calendar]] * url operations for services that don't use the widespread url calculation patterns @@ -14,16 +14,38 @@ ad-hoc plugins are little code snipplets that work similar to plugins, are limit ## implementation in ikiwiki +### `\[[!pythontemplate id=foo arg=value]]` + the easiest way to enable ad-hoc plugins that came to my mind was creating a plugin like template, pythontemplate, that uses the same calling convention as the template plugin. i have implemented the plugin in perl, in a way that doesn't need any additional python code apart from what is shipped in pypy (in the [[!debpkg python-pypy.translator.sandbox]] package). the implementation is far from mature, but works. +### `\[[!foo argument option=value]]` + an implementation in the style of the [[ikiwiki/directive/shortcut]] directive would be easier to use, and would allow positional arguments too. (the template way of calling, with id= identification, requires parsing all arguments to a hash). +### `hook(type="preprocess", id="foo", call=preprocess)` + if one was to allow more features to wiki editors, one could even export the ikiwiki rpc api to python pages. (pages would get their `import()` function called via rpc, and coold `hook` into ikiwiki.) the security implications of such a feature would be much harder to overview, though, and the rpc would probably need filtering mechanisms. ## implementation in python on the python side, i've prepared a `pythontemplate` module that can be imported from the template python programs. for example, it contains an argparse module that's adapted to ikiwiki specifics by formatting help output in a way suitable for wiki inclusion, and that silently handles the `page` and `destpage` options. +The discordian calendar described above could look like this: + + """Explain dates in discordian calendar""" + from pythontemplate.argparse import ArgumentParser + p = ArgumentParser(description=__doc__) + p.add_argument("--date", help="Date in discordian calendar") + + args = p.parse_args() + + def convert_date(...): + ... + + print "%s (%s)"%(args.date, convert_date(args.date)) + +Using argparse might be a bit of overkill here, but has the nice property of enabling `\[[!pythontemplate id=discdate help=true]]` for a documentation page. + ## security implications a simple implementation like my current one or a shortcut-style one is secure by design: @@ -31,6 +53,8 @@ a simple implementation like my current one or a shortcut-style one is secure by * the perl module decides which python script inside the wiki is to be executed. it takes the arguments to preprocess and prepares them being passed over to the script in argv. * the perl module launches the secure pypy-sandbox. it tells it to allow read access to the script itself and the python library, and to run the script in an otherwise isolated environment. it passes the arguments by means of argv, receives the resulting html+directive text from stdout, and evaluates the return status and stderr in case of problems. +time and memory limits can be passed to the sandbox process, so the worst thing a wiki editor could do would be to use up both resources to the defined limit whenever someone edits a page triggering the script. + some details on pypy-sandbox internals: an interact script provides an "operating system" to the pypy sandbox binary itself, which it launches. the only syscalls the sandbox binary can do are stdio read/write, and every time the script being run inside wants to do something that would normally trigger a syscall, it talks to the interact script. for example, if the script tries to import the library, the binary asks the interact script for a file handle using an open() line, and the interact script will look in the virtual filesystem it keeps if such a file is present there. (it is, as it was instructed thus by the perl module).