30
30
*/
31
31
class action_plugin_spatialhelper extends DokuWiki_Action_Plugin {
32
32
33
+ // TODO add configurable namespace, NOTE if $mediaID is namespaced the directory may need to be created
34
+ private $ media_kml = ':sitemap.kml ' ;
35
+ private $ media_georss = ':sitemap.georss ' ;
36
+
33
37
/**
34
38
* Register for events.
35
39
*
@@ -39,23 +43,23 @@ class action_plugin_spatialhelper extends DokuWiki_Action_Plugin {
39
43
public function register (Doku_Event_Handler &$ controller ) {
40
44
// listen for page add / delete events
41
45
// http://www.dokuwiki.org/devel:event:indexer_page_add
42
- $ controller ->register_hook ( 'INDEXER_PAGE_ADD ' , 'BEFORE ' , $ this , '_updateSpatialIndex ' );
46
+ $ controller ->register_hook ( 'INDEXER_PAGE_ADD ' , 'BEFORE ' , $ this , 'handle_indexer_page_add ' );
43
47
$ controller ->register_hook ( 'IO_WIKIPAGE_WRITE ' , 'BEFORE ' , $ this , '_removeFromIndex ' );
44
48
45
49
// http://www.dokuwiki.org/devel:event:sitemap_generate
50
+ $ controller ->register_hook ( 'SITEMAP_GENERATE ' , 'BEFORE ' , $ this , 'handle_sitemap_generate_before ' );
46
51
// using after will only trigger us if a sitemap was actually created
47
- $ controller ->register_hook ( 'SITEMAP_GENERATE ' , 'AFTER ' , $ this , '_createSpatialSitemap ' );
48
-
49
- // http://www.dokuwiki.org/devel:event:sitemap_ping
50
- // $controller->register_hook('SITEMAP_PING', 'AFTER', $this, '_ping');
52
+ $ controller ->register_hook ( 'SITEMAP_GENERATE ' , 'AFTER ' , $ this , 'handle_sitemap_generate_after ' );
51
53
52
54
// handle actions we know of
53
- $ controller ->register_hook ( 'ACTION_ACT_PREPROCESS ' , 'BEFORE ' , $ this , '_trap_action ' , array () );
55
+ $ controller ->register_hook ( 'ACTION_ACT_PREPROCESS ' , 'BEFORE ' , $ this , 'handle_action_act_preprocess ' , array () );
54
56
$ controller ->register_hook ( 'TPL_ACT_UNKNOWN ' , 'BEFORE ' , $ this , '_findnearby ' , array () );
55
57
56
58
// listen for media uploads and deletes
57
59
$ controller ->register_hook ( 'MEDIA_UPLOAD_FINISH ' , 'BEFORE ' , $ this , '_handle_media_uploaded ' , array () );
58
60
$ controller ->register_hook ( 'MEDIA_DELETE_FILE ' , 'BEFORE ' , $ this , '_handle_media_deleted ' , array () );
61
+
62
+ $ controller ->register_hook ( 'TPL_METAHEADER_OUTPUT ' , 'BEFORE ' , $ this , 'handle_metaheader_output ' );
59
63
}
60
64
61
65
/**
@@ -66,19 +70,17 @@ public function register(Doku_Event_Handler &$controller) {
66
70
* @param object $param
67
71
* the parameters passed to register_hook when this handler was registered
68
72
*/
69
- function _updateSpatialIndex (Doku_Event &$ event , $ param ) {
73
+ function handle_indexer_page_add (Doku_Event &$ event , $ param ) {
70
74
// $event→data['page'] – the page id
71
75
// $event→data['body'] – empty, can be filled by additional content to index by your plugin
72
76
// $event→data['metadata'] – the metadata that shall be indexed. This is an array where the keys are the metadata indexes and the value a string or an array of strings with the values. title and relation_references will already be set.
73
77
$ id = $ event ->data ['page ' ];
74
- dbg ( "start update spatial index for page: $ id " , '--- action_plugin_spatialhelper::_updateSpatialIndex --- ' );
75
-
76
- $ indexer = plugin_load ( 'helper ' , 'spatialhelper_index ' );
78
+ $ indexer = & plugin_load ( 'helper ' , 'spatialhelper_index ' );
77
79
if ($ indexer ) {
78
80
$ entries = $ indexer ->updateSpatialIndex ( $ id );
79
- dbglog ( "Done indexing, entries: $ entries " , '--- action_plugin_spatialhelper::_updateSpatialIndex --- ' );
81
+ // dbglog ( "Done indexing, entries: $entries", '--- action_plugin_spatialhelper::_updateSpatialIndex ---' );
80
82
} else {
81
- dbglog ( $ indexer , '--- action_plugin_spatialhelper::_updateSpatialIndex: spatial indexer not found --- ' );
83
+ // dbglog ( $indexer, '--- action_plugin_spatialhelper::_updateSpatialIndex: spatial indexer not found ---' );
82
84
}
83
85
}
84
86
@@ -98,8 +100,8 @@ function _removeFromIndex(Doku_Event &$event, $param) {
98
100
// $data[1] – ns: The colon separated namespace path minus the trailing page name. (false if root ns)
99
101
// $data[2] – page_name: The wiki page name.
100
102
// $data[3] – rev: The page revision, false for current wiki pages.
101
- dbglog ( $ event ->data , "Event data in _removeFromIndex. " );
102
103
104
+ // dbglog ( $event->data, "Event data in _removeFromIndex." );
103
105
if (@file_exists ( $ event ->data [0 ] [0 ] )) {
104
106
// file not new
105
107
if (! $ event ->data [0 ] [1 ]) {
@@ -110,14 +112,27 @@ function _removeFromIndex(Doku_Event &$event, $param) {
110
112
} else {
111
113
$ id = $ event ->data [1 ] . ": " . $ event ->data [2 ];
112
114
}
113
- $ indexer = plugin_load ( 'helper ' , 'spatialhelper_index ' );
115
+ $ indexer = & plugin_load ( 'helper ' , 'spatialhelper_index ' );
114
116
if ($ indexer ) {
115
117
$ indexer ->deleteFromIndex ( $ id );
116
118
}
117
119
}
118
120
}
119
121
}
120
122
123
+ /**
124
+ * Add a new SitemapItem object that points to the KML of public geocoded pages.
125
+ *
126
+ * @param Doku_Event $event
127
+ * @param unknown $param
128
+ */
129
+ function handle_sitemap_generate_before (Doku_Event &$ event , $ param ) {
130
+ $ path = mediaFN ( $ this ->media_kml );
131
+ $ lastmod = @filemtime ( $ path );
132
+ $ event ->data ['items ' ] [] = new SitemapItem ( ml ( $ this ->media_kml , '' , true , '& ' , true ), $ lastmod );
133
+ // dbglog ( $event->data ['items'], "Added a new SitemapItem object that points to the KML of public geocoded pages." );
134
+ }
135
+
121
136
/**
122
137
* Create a spatial sitemap or attach the geo/kml map to the sitemap.
123
138
*
@@ -126,29 +141,35 @@ function _removeFromIndex(Doku_Event &$event, $param) {
126
141
* @param mixed $param
127
142
* not used
128
143
*/
129
- function _createSpatialSitemap (Doku_Event &$ event , $ param ) {
144
+ function handle_sitemap_generate_after (Doku_Event &$ event , $ param ) {
130
145
// $event→data['items']: Array of SitemapItem instances, the array of sitemap items that already contains all public pages of the wiki
131
146
// $event→data['sitemap']: The path of the file the sitemap will be saved to.
132
- dbglog ( $ event ->data , "_createSpatialSitemap " );
133
- dbglog ( $ param , "_createSpatialSitemap " );
134
- // TODO add a new SitemapItem object that point to the KML of public geocoded pages
135
- // global $conf;
136
- // $url = $conf['baseurl'].$conf['cachedir'].'/sitemap.kml';
137
- // $lastmod = @filemtime($conf['cachedir'].'/sitemap.kml);
138
- // $event->data['items'][] = new SitemapItem($url,$lastmod);
147
+ global $ conf ;
148
+
149
+ // dbglog ($event->data['items'], "createSpatialSitemap loading helper" );
150
+
151
+ if ($ helper = & plugin_load ( 'helper ' , 'spatialhelper_sitemap ' )) {
152
+ // dbglog ( $helper, "createSpatialSitemap loaded helper." );
153
+
154
+ $ kml = $ helper ->createKMLSitemap ( $ this ->media_kml );
155
+ $ rss = $ helper ->createGeoRSSSitemap ( $ this ->media_georss );
156
+
157
+ return $ kml && $ rss ;
158
+ } else {
159
+ // dbglog ( $helper, "createSpatialSitemap NOT loaded helper." );
160
+ }
139
161
}
140
162
141
163
/**
142
164
* trap findnearby action.
143
- * This addional handler is
144
- * required as described at: https://www.dokuwiki.org/devel:event:tpl_act_unknown
165
+ * This addional handler is required as described at: https://www.dokuwiki.org/devel:event:tpl_act_unknown
145
166
*
146
167
* @param Doku_Event $event
147
168
* event object by reference
148
169
* @param mixed $param
149
170
* not used
150
171
*/
151
- function _trap_action (Doku_Event &$ event , $ param ) {
172
+ function handle_action_act_preprocess (Doku_Event &$ event , $ param ) {
152
173
if ($ event ->data != 'findnearby ' )
153
174
return ;
154
175
$ event ->preventDefault ();
@@ -169,14 +190,14 @@ function _findnearby(Doku_Event &$event, $param) {
169
190
170
191
global $ INPUT ;
171
192
$ dist_prefix = '' ;
172
- if ($ helper = &plugin_load ( 'helper ' , 'spatialhelper_search ' )) {
193
+ if ($ helper = & plugin_load ( 'helper ' , 'spatialhelper_search ' )) {
173
194
if ($ INPUT ->has ( 'geohash ' )) {
174
195
$ results = $ helper ->findNearby ( $ INPUT ->str ( 'geohash ' ) );
175
- $ dist_prefix = hsc ( $ this ->getLang ('result_distance_prefix ' )). ' ' ;
196
+ $ dist_prefix = hsc ( $ this ->getLang ( 'result_distance_prefix ' ) ) . ' ' ;
176
197
} elseif ($ INPUT ->has ( 'lat ' ) && $ INPUT ->has ( 'lon ' )) {
177
198
$ results = $ helper ->findNearbyLatLon ( $ INPUT ->param ( 'lat ' ), $ INPUT ->param ( 'lon ' ) );
178
199
} else {
179
- print '<div class="level1"><p> ' . hsc ( $ this ->getLang ('invalidinput ' ) ) . '</p></div> ' ;
200
+ print '<div class="level1"><p> ' . hsc ( $ this ->getLang ( 'invalidinput ' ) ) . '</p></div> ' ;
180
201
}
181
202
$ pages = ( array ) ($ results [0 ]);
182
203
$ media = ( array ) $ results [1 ];
@@ -185,7 +206,7 @@ function _findnearby(Doku_Event &$event, $param) {
185
206
$ precision = $ results [4 ];
186
207
}
187
208
188
- print '<h1> ' . $ this ->getLang ('results_header ' ) . '</h1> ' . DOKU_LF ;
209
+ print '<h1> ' . $ this ->getLang ( 'results_header ' ) . '</h1> ' . DOKU_LF ;
189
210
print '<div class="level1"> ' . DOKU_LF ;
190
211
if (! empty ( $ pages )) {
191
212
$ pagelist = '<ol> ' . DOKU_LF ;
@@ -194,26 +215,26 @@ function _findnearby(Doku_Event &$event, $param) {
194
215
}
195
216
$ pagelist .= '</ol> ' . DOKU_LF ;
196
217
197
- print '<h2> ' . $ this ->getLang ('results_pages ' ) . hsc ( ' lat,lon: ' . $ location . ' (geohash: ' . $ geohash . ') ' ) . '</h2> ' ;
218
+ print '<h2> ' . $ this ->getLang ( 'results_pages ' ) . hsc ( ' lat,lon: ' . $ location . ' (geohash: ' . $ geohash . ') ' ) . '</h2> ' ;
198
219
print '<div class="level2"> ' . DOKU_LF ;
199
220
print $ pagelist ;
200
221
print "<p>Precision: $ precision m</p> \n" ;
201
222
print '</div> ' . DOKU_LF ;
202
223
} else {
203
- print '<p> ' . hsc ( $ this ->getLang ('nothingfound ' ) ) . '</p> ' ;
224
+ print '<p> ' . hsc ( $ this ->getLang ( 'nothingfound ' ) ) . '</p> ' ;
204
225
}
205
226
if (! empty ( $ media )) {
206
227
$ pagelist = '<ol> ' . DOKU_LF ;
207
228
foreach ( $ media as $ m ) {
208
- $ opts = array ();
229
+ $ opts = array ();
209
230
$ link = ml ( $ m ['id ' ], $ opts , false , '& ' , false );
210
231
$ opts ['w ' ] = '100px ' ;
211
232
$ src = ml ( $ m ['id ' ], $ opts );
212
- $ pagelist .= '<li><a href=" ' . $ link . '"><img src=" ' . $ src . '"></a> ( ' . $ dist_prefix . $ page ['distance ' ] . 'm) </li> ' . DOKU_LF ;
233
+ $ pagelist .= '<li><a href=" ' . $ link . '"><img src=" ' . $ src . '"></a> ( ' . $ dist_prefix . $ page ['distance ' ] . 'm) </li> ' . DOKU_LF ;
213
234
}
214
235
$ pagelist .= '</ol> ' . DOKU_LF ;
215
236
216
- print '<h2> ' . $ this ->getLang ('results_media ' ) . hsc ( ' lat,lon: ' . $ location . ' (geohash: ' . $ geohash . ') ' ) . '</h2> ' . DOKU_LF ;
237
+ print '<h2> ' . $ this ->getLang ( 'results_media ' ) . hsc ( ' lat,lon: ' . $ location . ' (geohash: ' . $ geohash . ') ' ) . '</h2> ' . DOKU_LF ;
217
238
print '<div class="level2"> ' . DOKU_LF ;
218
239
print $ pagelist ;
219
240
print "<p>Precision: $ precision m</p> \n" ;
@@ -235,7 +256,8 @@ function _handle_media_uploaded(Doku_Event &$event, $param) {
235
256
// data[3] the mime type of the file being uploaded
236
257
// data[4] true if the uploaded file exists already
237
258
// data[5] (since 2011-02-06) the PHP function used to move the file to the correct location
238
- dbglog ( $ event ->data , "_handle_media_uploaded::event data " );
259
+
260
+ // dbglog ( $event->data, "_handle_media_uploaded::event data" );
239
261
240
262
// check the list of mimetypes
241
263
// if it's a supported type call appropriate index function
@@ -257,15 +279,42 @@ function _handle_media_deleted(Doku_Event &$event, $param) {
257
279
// data['del'] Namespace directory unlink return code
258
280
// data['name'] file name data['path'] full path to the file
259
281
// data['size'] file size
260
- dbglog ( $ event ->data , "_handle_media_deleted::event data " );
282
+
283
+ // dbglog ( $event->data, "_handle_media_deleted::event data" );
261
284
262
285
// remove the media id from the index
263
- $ indexer = plugin_load ( 'helper ' , 'spatialhelper_index ' );
286
+ $ indexer = & plugin_load ( 'helper ' , 'spatialhelper_index ' );
264
287
if ($ indexer ) {
265
288
$ indexer ->deleteFromIndex ( 'media__ ' . $ event ->data ['id ' ] );
266
289
}
267
290
}
268
291
292
+ /**
293
+ * add a link to the spatial sitemap files in the header.
294
+ *
295
+ * @param Doku_Event $event
296
+ * the DokuWiki event. $event->data is a two-dimensional
297
+ * array of all meta headers. The keys are meta, link and script.
298
+ * @param unknown_type $param
299
+ *
300
+ * @see http://www.dokuwiki.org/devel:event:tpl_metaheader_output
301
+ */
302
+ public function handle_metaheader_output (Doku_Event &$ event , $ param ) {
303
+ // TODO maybe test for exist
304
+ $ event ->data ["link " ] [] = array (
305
+ "type " => "application/atom+xml " ,
306
+ "rel " => "alternate " ,
307
+ "href " => ml ( $ this ->media_georss ),
308
+ "title " => "Spatial ATOM Feed "
309
+ );
310
+ $ event ->data ["link " ] [] = array (
311
+ "type " => "application/vnd.google-earth.kml+xml " ,
312
+ "rel " => "alternate " ,
313
+ "href " => ml ( $ this ->media_kml ),
314
+ "title " => "KML Sitemap "
315
+ );
316
+ }
317
+
269
318
/**
270
319
* Calculate a new coordinate based on start, distance and bearing
271
320
*
0 commit comments