info.php
8.7 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
<?php
/* ======================================================
# Web357 Framework - Joomla! System Plugin v1.5.1
# -------------------------------------------------------
# For Joomla! 3.x
# Author: Yiannis Christodoulou (yiannis@web357.eu)
# Copyright (©) 2009-2018 Web357. All rights reserved.
# License: GNU/GPLv3, http://www.gnu.org/licenses/gpl-3.0.html
# Website: https://www.web357.eu/
# Support: support@web357.eu
# Last modified: 09 Feb 2018, 13:55:18
========================================================= */
defined('JPATH_BASE') or die;
require_once('elements_helper.php');
jimport('joomla.form.formfield');
class JFormFieldinfo extends JFormField {
protected $type = 'info';
// check if url exists
protected function url_exists($url) {
if ($this->_isCurl()):
// cUrl method
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_exec($ch);
$retcode = curl_getinfo($ch, CURLINFO_HTTP_CODE); // $retcode >= 400 -> not found, $retcode = 200, found.
curl_close($ch);
if ($retcode == 200):
return true;
else:
return false;
endif;
else:
// default method
$file_headers = @get_headers($url);
if($file_headers[0] == 'HTTP/1.1 404 Not Found'):
return false;
else:
return true;
endif;
endif;
}
protected function getInput()
{
return ' ';
}
protected function getLabel()
{
// Retrieving request data using JInput
$jinput = JFactory::getApplication()->input;
// get extension's details
$position = $this->element['position']; // version's position (top + bottom)
$extension_type_single = $this->element['extension_type']; // component, module, plugin
$extension_type = $this->element['extension_type'].'s'; // components, modules, plugins
$extension_name = $this->element['extension_name']; // mod_name, com_name, plg_system_name
$plugin_type = $this->element['plugin_type']; // system, authentication, content etc.
$plugin_folder = (!empty($plugin_type) && $plugin_type != '') ? $plugin_type.'/' : '';
$real_name = $this->element['real_name'];
if (empty($extension_type) || empty($extension_name)):
JFactory::getApplication()->enqueueMessage("Error in XML. Please, contact us at support@web357.eu!", "error");
return false;
endif;
// BEGIN: get joomla version & insert some style
JLoader::import( "joomla.version" );
$version = new JVersion();
$j25 = false;
$j3x = false;
if ($version->RELEASE <= '2.5'):
// j25
$w357_ext_uptodate_class = 'w357_ext_uptodate_j25';
$j25 = true;
else:
// j3x
$w357_ext_uptodate_class = 'w357_ext_uptodate_j3x';
$j3x = true;
endif;
// END: get joomla version & insert some style
$html = '';
$html .= '<div>';
// get current extension's version & creationDate from database
$db = JFactory::getDBO();
$query = "SELECT manifest_cache "
."FROM #__extensions "
."WHERE element = '".$extension_name."' and type = '".$extension_type_single."' "
;
$db->setQuery($query);
$db->query();
$manifest = json_decode( $db->loadResult(), true );
$current_version = (!empty($manifest['version'])) ? $manifest['version'] : '1.0.0';
$current_creationDate = (!empty($manifest['creationDate'])) ? $manifest['creationDate'] : '10 Oct 1985';
// get download path
$download_path = 'https://www.web357.eu/downloads';
// get the latest extensions's version & creationDate
if ($extension_type == 'components'):
// administrator/components/com_name.xml
$base_path = 'http://demoj3x.web357.eu/administrator/'.$extension_type.'/'.$extension_name.'/'.str_replace('com_', '', $extension_name).'.xml';
$changelog_path = 'http://demoj3x.web357.eu/administrator/'.$extension_type.'/'.$plugin_folder.''.$extension_name.'/changelog.html';
else:
// modules/mod_name/mod_name.xml
$base_path = 'http://demoj3x.web357.eu/'.$extension_type.'/'.$plugin_folder.''.$extension_name.'/'.$extension_name.'.xml';
$changelog_path = 'http://demoj3x.web357.eu/'.$extension_type.'/'.$plugin_folder.''.$extension_name.'/changelog.html'; // modules/mod_name/changelog.html
endif;
// get changelog's url
$real_ext_name_with_dashes = JText::_($real_name);
$real_ext_name_with_dashes = str_replace(" FREEPROLIVE", "", $real_ext_name_with_dashes);
$real_ext_name_with_dashes = str_replace(" (Pro version)", "", $real_ext_name_with_dashes);
$real_ext_name_with_dashes = str_replace(" (Free version)", "", $real_ext_name_with_dashes);
$real_ext_name_with_dashes = str_replace(" PRO", "", $real_ext_name_with_dashes);
$real_ext_name_with_dashes = str_replace(" FREE", "", $real_ext_name_with_dashes);
$real_ext_name_with_dashes = str_replace("System - ", "", $real_ext_name_with_dashes);
$real_ext_name_with_dashes = str_replace("Authentication - ", "", $real_ext_name_with_dashes);
$real_ext_name_with_dashes = str_replace("Web357 ", "", $real_ext_name_with_dashes);
$real_ext_name_with_dashes = strtolower(str_replace(" ", "-", $real_ext_name_with_dashes));
$changelog_url = 'https://www.web357.eu/extensions/'.$real_ext_name_with_dashes.'#changelog'; // e.g. support-hours
// get changelog content
if ($this->url_exists($changelog_path)):
if ($this->_isCurl()): // check if extension=php_curl.dll is enabled from php.ini
$curl = curl_init($changelog_path);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$changelog_content = curl_exec($curl);
elseif ($this->_allowUrlFopen()):
$changelog_content = file_get_contents($changelog_path);
else:
$changelog_content = 'no data';
endif;
else:
$changelog_content = 'no data';
endif;
$changelog_content = preg_match('/<pre>(.*?)<\/pre>/s', $changelog_content, $match);
$changelog_content = isset($match[0]) ? $match[0] : 'No content!';
// output
if ($this->url_exists($base_path)):
if ($this->_isCurl()): // check if extension=php_curl.dll is enabled from php.ini
$curl = curl_init($base_path);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($curl);
$ext_xml_live = simplexml_load_string($data);
$latest_version = trim($ext_xml_live->version);
$latest_creationDate = trim($ext_xml_live->creationDate);
elseif ($this->_allowUrlFopen()):
$data = file_get_contents($base_path);
$ext_xml_live = simplexml_load_string($data);
$latest_version = trim($ext_xml_live->version);
$latest_creationDate = trim($ext_xml_live->creationDate);
else:
return '<div class="w357_ext_uptodate '.$jinput->get('option').'">'.JText::_('W357FRM_UP_TO_DATE').'</div>';
endif;
// BEGIN: MODAL POPUP (Powered by: https://codyhouse.co/gem/morphing-modal-window/)
$juri_base = str_replace('/administrator', '', JURI::base());
$morphing_modal_window_dir_path = $juri_base.'plugins/system/web357framework/elements/assets/morphing-modal-window';
$html .= '
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="'.$morphing_modal_window_dir_path.'/css/style.css"> <!-- Resource style -->
<section class="cd-section" style="padding:0;">';
// END: MODAL POPUP
// ==
if ($current_version == $latest_version) :
$html .= '<div class="w357_ext_uptodate '.$jinput->get('option').' '.$w357_ext_uptodate_class.'">';
$html .= '<div class="cd-modal-action">'.JText::_('W357FRM_YOUR_CURRENT_VERSION_IS').': <a title="'.JText::_('W357FRM_VIEW_THE_CHANGELOG').'" href="'.$changelog_url.'" class="btn_view_changelog" target="_blank">'.$current_version.' ('.$current_creationDate.')</a><span class="cd-modal-bg"></span><br />'.JText::_('W357FRM_UP_TO_DATE').'</div>';
$html .= '</div>';
// !=
elseif ($current_version != $latest_version) :
$current_version = (!empty($current_version)) ? $current_version : '1.0.0' ;
$html .= '<div class="w357_ext_notuptodate '.$jinput->get('option').'">'.JText::_('W357FRM_YOUR_CURRENT_VERSION_IS').': '.$current_version.' ('.$current_creationDate.').<br /><span>'.JText::_('W357FRM_UPDATE_TO_THE_LATEST_VERSION').' '.$latest_version.' ('.$latest_creationDate.')'.' {<a href="'.$changelog_url.'" target="_blank">'.JText::_('W357FRM_VIEW_THE_CHANGELOG').'</a>}.</span>
<br />
<a href="index.php?option=com_installer&view=update">'.JText::_('W357FRM_UPDATE_VIA_THE_JOOMLA_UPDATE_MANAGER').'</a>
'.JText::_('W357FRM_OR').'
<a href="'.$download_path.'" target="_blank">'.JText::_('W357FRM_GO_TO_DOWNLOAD_AREA').'</a>
</div>';
endif;
else:
$html .= '<div class="w357_ext_uptodate '.$jinput->get('option').'">'.JText::_('W357FRM_UP_TO_DATE').'</div>';
endif;
$html .= '</div>';
return $html;
}
protected function _isCurl(){
return function_exists('curl_version');
}
protected function _allowUrlFopen(){
return ini_get('allow_url_fopen');
}
}