forked from dokufreaks/plugin-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
helper.php
189 lines (161 loc) · 6.33 KB
/
helper.php
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
<?php
/**
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
* @author Esther Brunner <[email protected]>
*/
class helper_plugin_blog extends DokuWiki_Plugin {
var $sort = ''; // sort key
/**
* Constructor
*/
function __construct() {
// load sort key from settings
$this->sort = $this->getConf('sortkey');
}
function getMethods() {
$result = array();
$result[] = array(
'name' => 'getBlog',
'desc' => 'returns blog entries in reverse chronological order',
'params' => array(
'namespace' => 'string',
'number (optional)' => 'integer'),
'return' => array('pages' => 'array'),
);
$result[] = array(
'name' => 'getFlags',
'desc' => 'get values for flags, or defaults where not supplied',
'params' => array('flags' => 'array'),
'return' => array('flags' => 'array'),
);
return $result;
}
/**
* Get blog entries from a given namespace
*
* @param $ns
* @param null $num
* @param null $author
* @return array
*/
function getBlog($ns, $num = NULL, $author = NULL) {
// add pages in given namespace
$result = array();
global $conf;
$pages = array();
$unique_keys_memoize = array();
$dir = str_replace(':', '/', $ns);
search($pages, $conf['datadir'], 'search_pagename', array('query' => '.txt'), $dir);
foreach ($pages as $page) {
$id = $page['id'];
$file = wikiFN($id);
// do some checks first
if (isHiddenPage($id)) continue; // skip excluded pages
$excluded_pages = $this->getConf('excluded_pages');
if (strlen($excluded_pages) > 0 && preg_match($excluded_pages, $id)) continue;
if (($ns) && (strpos($id, $ns.':') !== 0)) continue; // filter namespaces
if (!@file_exists($file)) continue; // skip deleted
$perm = auth_quickaclcheck($id);
if ($perm < AUTH_READ) continue; // check ACL
// skip drafts unless for users with create priviledge
$meta = p_get_metadata($id, '', false);
$draft = isset($meta['type']) && ($meta['type'] == 'draft');
if ($draft && ($perm < AUTH_CREATE)) continue;
// filter by author
if ($author && ($meta['user'] != $author)) continue;
$date = $meta['date']['modified'];
if (!$date) $date = filemtime(wikiFN($id));
if ($this->sort != 'mdate') {
$cdate = $meta['date']['created'];
if (!$cdate) $cdate = filectime(wikiFN($id));
// prefer the date further in the past:
$date = min($date, $cdate);
}
if (isset($meta['title'])) {
$title = $meta['title'];
} else {
$title = $id;
}
// determine the sort key
if ($this->sort == 'id') $key = $id;
elseif ($this->sort == 'pagename') $key = noNS($id);
elseif ($this->sort == 'title') $key = $title;
else $key = $date;
// get a unique sortable key
$key = $this->_uniqueKey($key, $unique_keys_memoize);
$result[$key] = array(
'id' => $id,
'title' => $title,
'date' => $date,
'user' => $meta['creator'],
'desc' => $meta['description']['abstract'],
'exists' => true,
'perm' => $perm,
'draft' => $draft,
);
}
// finally sort by sort key
if ($this->getConf('sortorder') == 'ascending') ksort($result);
else krsort($result);
if (is_numeric($num)) $result = array_slice($result, 0, $num);
return $result;
}
/**
* Turn a list of user-supplied flags into a complete list of all flags
* required by the Blog plugin (not including those for the Include plugin),
* using global configuration options or plugin defaults where flags have
* not been supplied.
*
* Currently handles 'formpos' and 'newentrytitle'.
*
* @author Sam Wilson <[email protected]>
* @param array $setflags Flags that have been set by the user
* @return array All flags required by the Blog plugin (only)
*/
function getFlags($setflags) {
$flags = array();
// Form Position
$flags['formpos'] = $this->getConf('formposition');
if(in_array('topform', $setflags)) {
$flags['formpos'] = 'top';
}elseif(in_array('bottomform', $setflags)) {
$flags['formpos'] = 'bottom';
}elseif(in_array('noform', $setflags)) {
$flags['formpos'] = 'none';
}
// New Entry Title
$newentrytitle = preg_grep('|newentrytitle=.*|', $setflags);
if (count($newentrytitle) > 0) {
$newentrytitle = array_pop(explode('=', array_pop($newentrytitle), 2));
if (!empty($newentrytitle)) {
$flags['newentrytitle'] = $newentrytitle;
}
} elseif ($conf_title = $this->getConf('newentrytitle')) {
$flags['newentrytitle'] = $conf_title;
} else {
$flags['newentrytitle'] = $this->getLang('newentry');
}
// Paging Controls
$flags['pagingcontrols'] = !in_array('nopagingcontrols', $setflags);
return $flags;
}
/**
* Function to create sortable, unique array keys
*
* @param $key
* @param $unique_keys_memoize
* @return string
*
* @author Esther Brunner <[email protected]>
* @author Ilya S. Lebedev <[email protected]>
* @author Balazs Attila-Mihaly <[email protected]>
*/
function _uniqueKey($key, &$unique_keys_memoize){
//convert numeric keys to string
if (is_numeric($key))
$key = sprintf('%08x', $key);
if (!array_key_exists($key, $unique_keys_memoize))
$unique_keys_memoize[$key] = 0;
return sprintf('%s_%s', $key, $unique_keys_memoize[$key]++);
}
}