aboutsummaryrefslogtreecommitdiff
path: root/doc/plugins/contrib/compile/discussion.mdwn
blob: 1cad06128abddd0360ef512aa4d8656376b61a6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
This plugin sounds exactly like what I need! I too have sources I want to compile on the fly,
such as diagrams made with Dia and perhaps API reference manuals made with Doxygen.

I'd like to use it, but -

Problem: Any user can change the command to something dangerous that deletes file and
causes irreversible damage to the system. I can even happen by mistake.

Suggestion: Add an option to the setup file that forbids to override the build command in the
directive, and then only the setup file can configure build commands (if you want). Another
idea, an option to validate the build command, either against a regex or using an arbitrary
script specified in setup file - then e.g. you can choose which commands are allowed.

What do you think?

-- [[fr33domlover]]

> The problem you mention is known, and is not a problem for me, since I am the
only user of the wiki. However, if we need a *secure* version of this
command...
>
> Imagine we have a setup option `compile_unsecure`.
>
> The directive takes the following arguments 
>
> - filetype: No problem.
> - build: Forbidden.
> - source: No problem.
> - template: No problem.
> - destname and files: The problem is that right now, the command is run using a shell
>   call. Thus, a user can easily use this argument to inject malicious
>   commands (something like \[[!compile files=";rm -fr *"]] (well, this
>   actually would not work, but you get the idea)). I do want to keep the
>   ability to use shell commands, for the flexibility it provides, but I imagine
>   we can:
>   - interpret the `build` command depending on its type:
>     - if it is a string, it is interpreted as a shell command;
>     - if it is a list of strings, the first one is the command to execute,
>       the following ones are the arguments. If I am not wrong, this should
>       prevent command injection.
>     - if it is a list of lists of strings, it is a list of commands to
>       execute (execution being stopped on the first error; usefull for stuff
>       like `latex foo.tex && dvipdf foo.dvi`).
>   - the `compile_unsecure` would:
>     - forbid commands to be strings (thus, forbidding shell commands, and preventing command injections);
>     - forbid compilation using Makefile or executable present in the wiki (to prevent users from modifying those files, and executing arbitrary commands);
>     - forbid directive argument `build`.
>
>
> Any thoughts?
>
> -- [[Louis|spalax]]

---

<span id="status">
# This plugin is unmaintained
</span>

Unfortunately, since [[I am no longer using Ikiwiki|forum/Some_thoughts_about_Ikiwiki/]], this plugin is unmaintained. I had great ideas for a new version of this plugin (and [started some work](https://atelier.gresille.org/projects/gresille-ikiwiki/repository?utf8=%E2%9C%93&rev=compile2)), but I will not finish this work. I am dumping my TODO list for this plugin (in French) for those who might be interested.

[[!toggle id="TODO" text="See the TODO list."]]

[[!toggleable id="TODO" text="""
  - [ ] Ajouter un test slideshow avec un minimum de code utilisateur
    - http://slidesjs.com/
    - https://stackoverflow.com/questions/12912048/how-to-maintain-aspect-ratio-using-html-img-tag
  - [x] Faire aussi des tests qui utilisent le YAML du setup
  - [ ] Se déparrasser des ``DEST_XXX_URL``.
  - [ ] Se débarrasser des listes de ``config[destname]``.
  - [x] supprimer source, nosource.
  - [x] Voir si on supprime `make`
  - [ ] Voir si la configuration ne peut pas se faire en YAML
    - [x] Non
    - [ ] Utiliser du YAML.
  - [ ] Renommer
    - [ ] type = rule
    - [ ] destname = dest
    - [ ] filenames = src
    - [ ] ??
  - [ ] Parser correctement la configuration (fichier de setup + arguments de la directive)
  - [ ] Traiter src comme un pagespec? Au moins comme un glob?
  - [ ] Variables :
    - Génériques :
      - pagedir: sub/page
      - tmpdir: /home/user/wiki/.ikiwiki/3840938038409
      - wikidir: /home/user/wiki
      - destdir: $config{destdir}
      - id: un identifiant unique ?
    - Fichiers :
      - Variables
        - PAS DE `SRC*`: TOUT DANS DEST
        - destname: foo.pdf ($destbasename.$destextension)
        - destbasename: foo
        - destextension: pdf
        - desturl: http://...foo.pdf
        - destwikiname: sub/page/foo/foo.pdf ($dirname/$destname)
        - destfullname: /var/www/wiki/sub/page/foo/foo.pdf ($destdir/$destwikiname)
        - destcontent: contenu de foo.pdf
      - Variations
        - destname0, destname1: premier, deuxième fichier source
        - idem pour les autres variables
        - destnamelist: liste des fichiers sources, tels qu'accessibles depuis le répertoire temporaire (shell, pour la commande seulement)
        - destlist: liste des fichiers sources (en utilisant HTML::Template, pour les templates seulement)
  - [ ] Traiter ``destname`` comme un glob.
    - [ ] Accéder au premier destname avec DESTNAME.
    - [ ] Accéder à tous les destname avec DESTNAME0, DESTNAME1, etc.
    - [ ] Accéder à une liste de destname utilisable dans un `<TMPL_LOOP>`
  - [ ] Supprimer les fichiers temporaires au début.
  - [ ] Créer des dossiers temporaires en fonction du hash de ``SOURCEPAGE/FILES/COMMAND``.
  - [ ] Ne pas re-compiler si le répertoire existe déjà.
  - [ ] destname ne renomme pas le fichier : il sélectionne quel fichier publier.
  - [ ] Mais fournir des templates par défaut :
    - [ ] `compile_source`
    - [ ] `compile_link` (avec des `var_text` et `var_srctext`)
    - [ ] `compile_album` (avec un `var_width` et `var_height` et un `slideshow.js` seulement en exemple)
    - [ ] `compile_raw`
  - [ ] Doc: Fournir des exemples de règles
    - [ ] gimp, libreoffice, latex, album, etc.
  - [ ] Le fichier source n'est pas copié par défaut: si on en a besoin, il faut le mentionner dans les destnames.
  - [ ] Documentation
    - [ ] Slideshow (sans compilation)
    - [ ] Tous les moyens d'accéder aux fichiers (destname, destname0, destnamelist, destlist[destname], etc.)
  - [ ] Ne pas charger compile2 si compile est activé
    - [ ] Mettre une option pour forcer
  - [ ] wikistate: stocker compilé/erreur (rien du tout = pas encore compilé)
  - [ ] Ajouter un argument `page` pour faire comme si la commande était appelée depuis ladite page?
  - [ ] Marquer compile comme obsolète
    - [ ] Source
    - [ ] Documentation sur ikiwiki
    - [ ] Warning dans le code
    - [ ] git tag compile/v0.2
  - [ ] Prévenir que bibtex2html est obsolète
"""]]

---

# Quick and dirty replacement

For those how might be interested: I switched from Ikiwiki to [another static site generator](http://getlektor.com), which does not have a `compile` plugin. Before writing it, I used a quick and dirty solution: using a custom `Makefile`, I use `make build` to build my website, which :

- compile the files (e.g. latex documents);
- build the website.

It started as a quick and dirty fix, but I think I am keeping it.

It should work with Ikiwiki too.