1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
declare( strict_types = 1 ); |
4
|
|
|
|
5
|
|
|
namespace Maps; |
6
|
|
|
|
7
|
|
|
use DataValues\Geo\Parsers\LatLongParser; |
8
|
|
|
use Maps\DataAccess\JsonFileParser; |
9
|
|
|
use Maps\MediaWiki\Content\GeoJsonContent; |
10
|
|
|
use Maps\MediaWiki\Content\GeoJsonContentHandler; |
11
|
|
|
use Maps\MediaWiki\ParserHooks\CoordinatesFunction; |
12
|
|
|
use Maps\MediaWiki\ParserHooks\DisplayMapFunction; |
13
|
|
|
use Maps\MediaWiki\ParserHooks\DistanceFunction; |
14
|
|
|
use Maps\MediaWiki\ParserHooks\FindDestinationFunction; |
15
|
|
|
use Maps\MediaWiki\ParserHooks\GeocodeFunction; |
16
|
|
|
use Maps\MediaWiki\ParserHooks\GeoDistanceFunction; |
17
|
|
|
use Maps\MediaWiki\ParserHooks\MapsDocFunction; |
18
|
|
|
use Maps\Presentation\WikitextParsers\CircleParser; |
19
|
|
|
use Maps\Presentation\WikitextParsers\DistanceParser; |
20
|
|
|
use Maps\Presentation\WikitextParsers\ImageOverlayParser; |
21
|
|
|
use Maps\Presentation\WikitextParsers\LineParser; |
22
|
|
|
use Maps\Presentation\WikitextParsers\LocationParser; |
23
|
|
|
use Maps\Presentation\WikitextParsers\PolygonParser; |
24
|
|
|
use Maps\Presentation\WikitextParsers\RectangleParser; |
25
|
|
|
use Maps\Presentation\WikitextParsers\WmsOverlayParser; |
26
|
|
|
use Parser; |
27
|
|
|
use PPFrame; |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* @licence GNU GPL v2+ |
31
|
|
|
* @author Jeroen De Dauw < [email protected] > |
32
|
|
|
*/ |
33
|
|
|
class MapsSetup { |
34
|
|
|
|
35
|
|
|
private $mwGlobals; |
36
|
|
|
|
37
|
|
|
public function __construct( array &$mwGlobals ) { |
38
|
|
|
$this->mwGlobals = $mwGlobals; |
39
|
|
|
} |
40
|
|
|
|
41
|
|
|
public function setup() { |
42
|
|
|
$this->defaultSettings(); |
43
|
|
|
$this->registerAllTheThings(); |
44
|
|
|
|
45
|
|
|
if ( !$this->mwGlobals['egMapsDisableSmwIntegration'] && defined( 'SMW_VERSION' ) ) { |
46
|
|
|
SemanticMaps::newFromMediaWikiGlobals( $this->mwGlobals )->initExtension(); |
47
|
|
|
} |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
private function registerAllTheThings() { |
51
|
|
|
$this->registerParserHooks(); |
52
|
|
|
$this->registerPermissions(); |
53
|
|
|
$this->registerParameterTypes(); |
54
|
|
|
$this->registerHooks(); |
55
|
|
|
|
56
|
|
|
$this->mwGlobals['wgContentHandlers'][GeoJsonContent::CONTENT_MODEL_ID] = GeoJsonContentHandler::class; |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
private function defaultSettings() { |
60
|
|
|
if ( $this->mwGlobals['egMapsGMaps3Language'] === '' ) { |
61
|
|
|
$this->mwGlobals['egMapsGMaps3Language'] = $this->mwGlobals['wgLang']; |
62
|
|
|
} |
63
|
|
|
|
64
|
|
|
if ( in_array( 'googlemaps3', $this->mwGlobals['egMapsAvailableServices'] ) ) { |
65
|
|
|
$this->mwGlobals['wgSpecialPages']['MapEditor'] = 'Maps\MediaWiki\Specials\SpecialMapEditor'; |
66
|
|
|
$this->mwGlobals['wgSpecialPageGroups']['MapEditor'] = 'maps'; |
67
|
|
|
} |
68
|
|
|
|
69
|
|
|
if ( $this->mwGlobals['egMapsGMaps3ApiKey'] === '' && array_key_exists( |
70
|
|
|
'egGoogleJsApiKey', |
71
|
|
|
$this->mwGlobals |
72
|
|
|
) ) { |
73
|
|
|
$this->mwGlobals['egMapsGMaps3ApiKey'] = $this->mwGlobals['egGoogleJsApiKey']; |
74
|
|
|
} |
75
|
|
|
} |
76
|
|
|
|
77
|
50 |
|
private function registerParserHooks() { |
78
|
|
|
if ( $this->mwGlobals['egMapsEnableCoordinateFunction'] ) { |
79
|
50 |
|
$this->mwGlobals['wgHooks']['ParserFirstCallInit'][] = function ( Parser &$parser ) { |
80
|
50 |
|
return ( new CoordinatesFunction() )->init( $parser ); |
81
|
|
|
}; |
82
|
|
|
} |
83
|
|
|
|
84
|
50 |
|
$this->mwGlobals['wgHooks']['ParserFirstCallInit'][] = function ( Parser &$parser ) { |
85
|
50 |
|
foreach ( [ 'display_map', 'display_point', 'display_points', 'display_line' ] as $hookName ) { |
86
|
50 |
|
$parser->setFunctionHook( |
87
|
50 |
|
$hookName, |
88
|
50 |
|
function ( Parser $parser, PPFrame $frame, array $arguments ) { |
89
|
19 |
|
$mapHtml = MapsFactory::newDefault()->getDisplayMapFunction()->getMapHtmlForKeyValueStrings( |
90
|
19 |
|
$parser, |
91
|
19 |
|
array_map( |
92
|
19 |
|
function ( $argument ) use ( $frame ) { |
93
|
19 |
|
return $frame->expand( $argument ); |
94
|
19 |
|
}, |
95
|
19 |
|
$arguments |
96
|
|
|
) |
97
|
|
|
); |
98
|
|
|
|
99
|
|
|
return [ |
100
|
19 |
|
$mapHtml, |
101
|
|
|
'noparse' => true, |
102
|
|
|
'isHTML' => true, |
103
|
|
|
]; |
104
|
50 |
|
}, |
105
|
50 |
|
Parser::SFH_OBJECT_ARGS |
106
|
|
|
); |
107
|
|
|
|
108
|
50 |
|
$parser->setHook( |
109
|
50 |
|
$hookName, |
110
|
50 |
|
function ( $text, array $arguments, Parser $parser ) { |
111
|
2 |
|
if ( $text !== null ) { |
112
|
2 |
|
$defaultParameters = DisplayMapFunction::getHookDefinition( "\n" )->getDefaultParameters(); |
113
|
2 |
|
$defaultParam = array_shift( $defaultParameters ); |
114
|
|
|
|
115
|
|
|
// If there is a first default parameter, set the tag contents as its value. |
116
|
2 |
|
if ( $defaultParam !== null ) { |
117
|
2 |
|
$arguments[$defaultParam] = $text; |
118
|
|
|
} |
119
|
|
|
} |
120
|
|
|
|
121
|
2 |
|
return MapsFactory::newDefault()->getDisplayMapFunction()->getMapHtmlForParameterList( $parser, $arguments ); |
122
|
50 |
|
} |
123
|
|
|
); |
124
|
|
|
} |
125
|
50 |
|
}; |
126
|
|
|
|
127
|
50 |
|
$this->mwGlobals['wgHooks']['ParserFirstCallInit'][] = function ( Parser &$parser ) { |
128
|
50 |
|
return ( new DistanceFunction() )->init( $parser ); |
129
|
|
|
}; |
130
|
|
|
|
131
|
50 |
|
$this->mwGlobals['wgHooks']['ParserFirstCallInit'][] = function ( Parser &$parser ) { |
132
|
50 |
|
return ( new FindDestinationFunction() )->init( $parser ); |
133
|
|
|
}; |
134
|
|
|
|
135
|
50 |
|
$this->mwGlobals['wgHooks']['ParserFirstCallInit'][] = function ( Parser &$parser ) { |
136
|
50 |
|
return ( new GeocodeFunction() )->init( $parser ); |
137
|
|
|
}; |
138
|
|
|
|
139
|
50 |
|
$this->mwGlobals['wgHooks']['ParserFirstCallInit'][] = function ( Parser &$parser ) { |
140
|
50 |
|
return ( new GeoDistanceFunction() )->init( $parser ); |
141
|
|
|
}; |
142
|
|
|
|
143
|
50 |
|
$this->mwGlobals['wgHooks']['ParserFirstCallInit'][] = function ( Parser &$parser ) { |
144
|
50 |
|
return ( new MapsDocFunction() )->init( $parser ); |
145
|
|
|
}; |
146
|
|
|
} |
147
|
|
|
|
148
|
|
|
private function registerPermissions() { |
149
|
|
|
$this->mwGlobals['wgAvailableRights'][] = 'geocode'; |
150
|
|
|
|
151
|
|
|
// Users that can geocode. By default the same as those that can edit. |
152
|
|
|
foreach ( $this->mwGlobals['wgGroupPermissions'] as $group => $rights ) { |
153
|
|
|
if ( array_key_exists( 'edit', $rights ) ) { |
154
|
|
|
$this->mwGlobals['wgGroupPermissions'][$group]['geocode'] = $this->mwGlobals['wgGroupPermissions'][$group]['edit']; |
155
|
|
|
} |
156
|
|
|
} |
157
|
|
|
} |
158
|
|
|
|
159
|
|
|
private function registerParameterTypes() { |
160
|
|
|
$this->mwGlobals['wgParamDefinitions']['coordinate'] = [ |
161
|
|
|
'string-parser' => LatLongParser::class, |
162
|
|
|
]; |
163
|
|
|
|
164
|
|
|
$this->mwGlobals['wgParamDefinitions']['mapslocation'] = [ |
165
|
|
|
'string-parser' => LocationParser::class, |
166
|
|
|
]; |
167
|
|
|
|
168
|
|
|
$this->mwGlobals['wgParamDefinitions']['mapsline'] = [ |
169
|
|
|
'string-parser' => LineParser::class, |
170
|
|
|
]; |
171
|
|
|
|
172
|
|
|
$this->mwGlobals['wgParamDefinitions']['mapscircle'] = [ |
173
|
|
|
'string-parser' => CircleParser::class, |
174
|
|
|
]; |
175
|
|
|
|
176
|
|
|
$this->mwGlobals['wgParamDefinitions']['mapsrectangle'] = [ |
177
|
|
|
'string-parser' => RectangleParser::class, |
178
|
|
|
]; |
179
|
|
|
|
180
|
|
|
$this->mwGlobals['wgParamDefinitions']['mapspolygon'] = [ |
181
|
|
|
'string-parser' => PolygonParser::class, |
182
|
|
|
]; |
183
|
|
|
|
184
|
|
|
$this->mwGlobals['wgParamDefinitions']['distance'] = [ |
185
|
|
|
'string-parser' => DistanceParser::class, |
186
|
|
|
]; |
187
|
|
|
|
188
|
|
|
$this->mwGlobals['wgParamDefinitions']['wmsoverlay'] = [ |
189
|
|
|
'string-parser' => WmsOverlayParser::class, |
190
|
|
|
]; |
191
|
|
|
|
192
|
|
|
$this->mwGlobals['wgParamDefinitions']['mapsimageoverlay'] = [ |
193
|
|
|
'string-parser' => ImageOverlayParser::class, |
194
|
|
|
]; |
195
|
|
|
|
196
|
|
|
$this->mwGlobals['wgParamDefinitions']['jsonfile'] = [ |
197
|
|
|
'string-parser' => JsonFileParser::class, |
198
|
|
|
]; |
199
|
|
|
} |
200
|
|
|
|
201
|
|
|
private function registerHooks() { |
202
|
|
|
$this->mwGlobals['wgHooks']['AdminLinks'][] = 'Maps\MediaWiki\MapsHooks::addToAdminLinks'; |
203
|
|
|
$this->mwGlobals['wgHooks']['MakeGlobalVariablesScript'][] = 'Maps\MediaWiki\MapsHooks::onMakeGlobalVariablesScript'; |
204
|
|
|
} |
205
|
|
|
|
206
|
|
|
} |
207
|
|
|
|