config.php
8.46 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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
<?php
// namespace administrator\components\com_jmap\models;
/**
*
* @package JMAP::CONFIG::administrator::components::com_jmap
* @subpackage models
* @author Joomla! Extensions Store
* @copyright (C) 2015 - Joomla! Extensions Store
* @license GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html
*/
defined ( '_JEXEC' ) or die ( 'Restricted access' );
jimport ( 'joomla.application.component.modelform' );
/**
* Config model responsibilities
*
* @package JMAP::CONFIG::administrator::components::com_jmap
* @subpackage models
* @since 1.0
*/
interface IJMapModelConfig {
/**
* Ottiene i dati di configurazione da db params field record component
*
* @access public
* @return Object
*/
public function &getData();
/**
* Effettua lo store dell'entity config
*
* @access public
* @return boolean
*/
public function storeEntity();
/**
* Manage the images and videos crawler test
*
* @access public
* @return boolean
*/
public function getCheckCrawler();
}
/**
* Config model concrete implementation
*
* @package JMAP::CONFIG::administrator::components::com_jmap
* @subpackage models
* @since 1.0
*/
class JMapModelConfig extends JModelForm implements IJMapModelConfig {
/**
* Variables in request array
*
* @access protected
* @var Object
*/
protected $requestArray;
/**
* Variables in request array name
*
* @access protected
* @var Object
*/
protected $requestName;
/**
* Clean the cache
*
* @param string $group
* The cache group
* @param integer $client_id
* The ID of the client
* @return void
* @since 11.1
*/
private function cleanComponentCache($group = null, $client_id = 0) {
// Initialise variables;
$conf = JFactory::getConfig ();
$dispatcher = JDispatcher::getInstance ();
$options = array (
'defaultgroup' => ($group) ? $group : $this->app->input->get('option'),
'cachebase' => ($client_id) ? JPATH_ADMINISTRATOR . '/cache' : $conf->get ( 'cache_path', JPATH_SITE . '/cache' )
);
$cache = JCache::getInstance ( 'callback', $options );
$cache->clean ();
// Trigger the onContentCleanCache event.
$dispatcher->trigger ( 'onContentCleanCache', $options );
}
/**
* Ottiene i dati di configurazione da db params field record component
*
* @access public
* @return Object
*/
private function &getConfigData() {
$instance = JComponentHelper::getParams ( 'com_jmap' );
return $instance;
}
/**
* Effettua lo storing dell'asset delle permissions sul component level
*
* @access protected
* @return boolean
*/
protected function storePermissionsAsset($data) {
// Save the rules.
if (isset ( $data ['params'] ) && isset ( $data ['params'] ['rules'] )) {
$form = $this->getForm ( $data );
// Validate the posted data.
$postedRules = $this->validate ( $form, $data ['params'] );
$rules = new JAccessRules ( $postedRules ['rules'] );
$asset = JTable::getInstance ( 'asset' );
if (! $asset->loadByName ( $data ['option'] )) {
$root = JTable::getInstance ( 'asset' );
$root->loadByName ( 'root.1' );
$asset->name = $data ['option'];
$asset->title = $data ['option'];
$asset->setLocation ( $root->id, 'last-child' );
}
$asset->rules = ( string ) $rules;
if (! $asset->check () || ! $asset->store ()) {
$this->setError ( $asset->getError () );
return false;
}
}
return true;
}
/**
* Method to get a form object.
*
* @param array $data
* the form.
* @param boolean $loadData
* the form is to load its own data (default case), false if not.
*
* @return mixed JForm object on success, false on failure
* @since 1.6
*/
public function getForm($data = array(), $loadData = true) {
jimport ( 'joomla.form.form' );
JForm::addFormPath ( JPATH_ADMINISTRATOR . '/components/com_jmap' );
// Get the form.
$form = $this->loadForm ( 'com_jmap.component', 'config', array (
'control' => 'params',
'load_data' => $loadData
), false, '/config' );
if (empty ( $form )) {
return false;
}
return $form;
}
/**
* Ottiene i dati di configurazione del componente
*
* @access public
* @return Object
*/
public function &getData() {
return $this->getConfigData ();
}
/**
* Effettua lo store dell'entity config
*
* @access public
* @return boolean
*/
public function storeEntity() {
$table = JTable::getInstance ( 'extension' );
// Replace SEF images links
$base = JUri::root(true) . '/';
$protocols = '[a-zA-Z0-9]+:';
$regex = '#(src|href|poster)="(?!/|' . $protocols . '|\#|\')([^"]*)"#m';
try {
// Found as installed extension
if (! $extensionID = $table->find ( array (
'element' => 'com_jmap'
) )) {
throw new JMapException ( $table->getError (), 'error' );
}
$table->load ( $extensionID );
// Translate posted jform array to params for ORM table binding
$post = $this->app->input->post;
if (! $table->bind ( $post->getArray ( $this->requestArray[$this->requestName] ) )) {
throw new JMapException ( $table->getError (), 'error' );
}
// Unserialize and replace HTML param as RAW no filter
$unserializedParams = json_decode($table->params);
$unserializedParams->custom_404_page_text = $this->requestArray[$this->requestName]['params']['custom_404_page_text'];
$unserializedParams->custom_404_page_text = preg_replace($regex, "$1=\"$base\$2\"", $unserializedParams->custom_404_page_text);
// Check to avoid buffer underrun for images sitemap precaching limit and general limit
if($unserializedParams->max_images_requests < $unserializedParams->precaching_limit_images) {
$unserializedParams->precaching_limit_images = $unserializedParams->max_images_requests;
}
$table->params = json_encode($unserializedParams);
// pre-save checks
if (! $table->check ()) {
throw new JMapException ( $table->getError (), 'error' );
}
// save the changes
if (! $table->store ()) {
throw new JMapException ( $table->getError (), 'error' );
}
// save the changes
if (! $this->storePermissionsAsset ( $post->getArray ( $this->requestArray[$this->requestName] ) )) {
throw new JMapException ( JText::_ ( 'COM_JMAP_ERROR_STORING_PERMISSIONS' ), 'error' );
}
} catch ( JMapException $e ) {
$this->setError ( $e );
return false;
} catch ( Exception $e ) {
$jmapException = new JMapException ( $e->getMessage (), 'error' );
$this->setError ( $jmapException );
return false;
}
// Clean the cache.
$this->cleanComponentCache ( '_system', 0 );
$this->cleanComponentCache ( '_system', 1 );
return true;
}
public function getCheckCrawler() {
$cParams = JComponentHelper::getParams('com_jmap');
$uriInstance = JUri::getInstance();
$customDomain = trim($cParams->get('custom_sitemap_domain', ''));
$getDomain = $customDomain ? rtrim($customDomain, '/') : rtrim($uriInstance->getScheme() . '://' . $uriInstance->getHost(), '/');
$customHttpPort = trim($cParams->get('custom_http_port', ''));
$getPort = $customHttpPort ? ':' . $customHttpPort : '';
$liveSiteCrawler = rtrim($getDomain . $getPort, '/');
// Check if we have a subdomain to append
$rootUri = trim(JUri::root(), '/');
$subDomain = trim(str_ireplace($getDomain, '', $rootUri), '/');
if($subDomain) {
$liveSiteCrawler .= '/' . $subDomain;
}
// Always append a final trailing slash to avoid redirects
$liveSiteCrawler .= '/';
try {
$httpClient = new JMapHttp();
$result = $httpClient->get($liveSiteCrawler, array('Accept'=>'text/html', 'User-Agent'=>'JSitemapbot/1.0'));
// Manage 301 redirects, follow Location header
if(in_array($result->code, array(301, 303)) && array_key_exists('Location', $result->headers)) {
$result = $httpClient->get($result->headers['Location'], array('Accept'=>'text/html', 'User-Agent'=>'JSitemapbot/1.0'));
}
} catch (JMapException $e) {
$this->app->enqueueMessage($e->getMessage(), $e->getErrorLevel());
$result = null;
} catch (Exception $e) {
$jmapException = new JMapException($e->getMessage(), 'error');
$this->app->enqueueMessage($jmapException->getMessage(), $jmapException->getErrorLevel());
$result = null;
}
return $result;
}
/**
* Class contructor
*
* @access public
* @return Object&
*/
public function __construct($config = array()) {
parent::__construct ( $config );
// App reference
$this->app = JFactory::getApplication ();
$this->requestArray = &$GLOBALS;
$this->requestName = '_' . strtoupper('post');
}
}