dokufreaks / plugin-cloud

This URL has Read+Write access

plugin-cloud / syntax.php
100644 206 lines (173 sloc) 7.269 kb
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
<?php
/**
* Cloud Plugin: shows a cloud of the most frequently used words
*
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Esther Brunner <wikidesign@gmail.com>
*/
// must be run within Dokuwiki
if(!defined('DOKU_INC')) die();
 
if (!defined('DOKU_LF')) define('DOKU_LF', "\n");
if (!defined('DOKU_TAB')) define('DOKU_TAB', "\t");
if (!defined('DOKU_PLUGIN')) define('DOKU_PLUGIN',DOKU_INC.'lib/plugins/');
 
require_once(DOKU_PLUGIN.'syntax.php');
 
class syntax_plugin_cloud extends DokuWiki_Syntax_Plugin {
 
    function getInfo() {
        return array(
                'author' => 'Gina Häußge, Michael Klier, Esther Brunner',
                'email' => 'dokuwiki@chimeric.de',
                'date' => @file_get_contents(DOKU_PLUGIN . 'cloud/VERSION'),
                'name' => 'Cloud Plugin',
                'desc' => 'displays the most used words in a word cloud',
                'url' => 'http://wiki.splitbrain.org/plugin:cloud',
                );
    }
 
    function getType() { return 'substition'; }
    function getPType() { return 'block'; }
    function getSort() { return 98; }
 
    function connectTo($mode) {
        $this->Lexer->addSpecialPattern('~~\w*?CLOUD.*?~~', $mode, 'plugin_cloud');
    }
 
    function handle($match, $state, $pos, &$handler) {
        $match = substr($match, 2, -2); // strip markup
        if (substr($match, 0, 3) == 'TAG') $type = 'tag';
        else $type = 'word';
 
        list($junk, $num) = explode(':', $match, 2);
        if (!is_numeric($num)) $num = 50;
 
        return array($type, $num);
    }
 
    function render($mode, &$renderer, $data) {
        global $conf;
 
        list($type, $num) = $data;
 
        if ($mode == 'xhtml') {
 
            if ($type == 'tag') { // we need the tag helper plugin
                if (plugin_isdisabled('tag') || (!$tag = plugin_load('helper', 'tag'))) {
                    msg('The Tag Plugin must be installed to display tag clouds.', -1);
                    return false;
                }
                $cloud = $this->_getTagCloud($num, $min, $max, $tag);
            } else {
                $cloud = $this->_getWordCloud($num, $min, $max);
            }
            if (!is_array($cloud) || empty($cloud)) return false;
            $delta = ($max-$min)/16;
 
            // prevent caching to ensure the included pages are always fresh
            $renderer->info['cache'] = false;
 
            // and render the cloud
            $renderer->doc .= '<div id="cloud">'.DOKU_LF;
            foreach ($cloud as $word => $size) {
                if ($size < $min+round($delta)) $class = 'cloud1';
                elseif ($size < $min+round(2*$delta)) $class = 'cloud2';
                elseif ($size < $min+round(4*$delta)) $class = 'cloud3';
                elseif ($size < $min+round(8*$delta)) $class = 'cloud4';
                else $class = 'cloud5';
 
                $name = $word;
                if ($type == 'tag') {
                    $id = $word;
                    resolve_pageID($tag->namespace, $id, $exists);
                    if($exists) {
                        $link = wl($id);
                        if($conf['useheading']) {
                            $name = p_get_first_heading($id, false);
                        }
                    } else {
                        $link = wl($id, array('do'=>'showtag', 'tag'=>noNS($id)));
                    }
                    $title = $id;
                    $class .= ($exists ? '_tag1' : '_tag2');
                } else {
                    if($conf['userewrite'] == 2) {
                        $link = wl($word, array('do'=>'search', 'id'=>$word));
                        $title = $size;
                    } else {
                        $link = wl($word, 'do=search');
                        $title = $size;
                    }
                }
 
                $renderer->doc .= DOKU_TAB . '<a href="' . $link . '" class="' . $class .'"'
                               .' title="' . $title . '">' . $name . '</a>' . DOKU_LF;
            }
            $renderer->doc .= '</div>' . DOKU_LF;
            return true;
        }
        return false;
    }
 
    /**
* Returns the sorted word cloud array
*/
    function _getWordCloud($num, &$min, &$max) {
        global $conf;
 
        // load stopwords
        $swfile = DOKU_INC.'inc/lang/'.$conf['lang'].'/stopwords.txt';
        if (@file_exists($swfile)) $stopwords = file($swfile);
        else $stopwords = array();
 
        // load extra local stopwords
        $swfile = DOKU_CONF.'stopwords.txt';
        if (@file_exists($swfile)) $stopwords = array_merge($stopwords, file($swfile));
 
        $cloud = array();
 
        if (@file_exists($conf['indexdir'].'/page.idx')) { // new word-lenght based index
            require_once(DOKU_INC.'inc/indexer.php');
 
            $n = 2; // minimum word length
            $lengths = idx_indexLengths($n);
            foreach ($lengths as $len) {
                $idx = idx_getIndex('i', $len);
                $word_idx = idx_getIndex('w', $len);
 
                $this->_addWordsToCloud($cloud, $idx, $word_idx, $stopwords);
            }
 
        } else { // old index
            $idx = file($conf['cachedir'].'/index.idx');
            $word_idx = file($conf['cachedir'].'/word.idx');
 
            $this->_addWordsToCloud($cloud, $idx, $word_idx, $stopwords);
        }
        return $this->_sortCloud($cloud, $num, $min, $max);
    }
 
    /**
* Adds all words in given index as $word => $freq to $cloud array
*/
    function _addWordsToCloud(&$cloud, $idx, $word_idx, &$stopwords) {
        $wcount = count($word_idx);
 
        // collect the frequency of the words
        for ($i = 0; $i < $wcount; $i++) {
            $key = trim($word_idx[$i]);
            if (!is_int(array_search("$key\n", $stopwords))) {
                $value = explode(':', $idx[$i]);
                if (!trim($value[0])) continue;
                $cloud[$key] = count($value);
            }
        }
    }
 
    /**
* Returns the sorted tag cloud array
*/
    function _getTagCloud($num, &$min, &$max, &$tag) {
        $cloud = array();
        if(!is_array($tag->topic_idx)) return;
        foreach ($tag->topic_idx as $key => $value) {
            if (!is_array($value) || empty($value) || (!trim($value[0]))) {
                continue;
            } else {
                $pages = array();
                foreach($value as $page) {
                    if(auth_quickaclcheck($page) < AUTH_READ) continue;
                    array_push($pages, $page);
                }
                if(!empty($pages)) $cloud[$key] = count($pages);
            }
        }
        return $this->_sortCloud($cloud, $num, $min, $max);
    }
 
    /**
* Sorts and slices the cloud
*/
    function _sortCloud($cloud, $num, &$min, &$max) {
        if(empty($cloud)) return;
 
        // sort by frequency, then alphabetically
        arsort($cloud);
        $cloud = array_chunk($cloud, $num, true);
        $max = current($cloud[0]);
        $min = end($cloud[0]);
        ksort($cloud[0]);
 
        return $cloud[0];
    }
}
// vim:ts=4:sw=4:et:enc=utf-8: