File manager - Edit - /home/jardides/www/Jardi-design/old/administrator/components/com_j2store/models/eupdates.php
Back
<?php /** * @package J2Store * @copyright Copyright (c)2014-17 Ramesh Elamathi / J2Store.org * @license GNU GPL v3 or later */ defined('_JEXEC') or die; //F0FModel class J2StoreModelEupdates extends F0FModel { private $url = 'http://cdn.j2store.net/extensions.json'; public function getUpdates() { $updates = array(); $all_plugins = $this->folder('j2store')->getList(); $json = $this->sendRequest($this->url); $update_data = array(); if(!empty($json)) { $registry = new JRegistry($json); $update_data = $registry->toArray(); }else { return $updates; } //get plugins that have updates foreach($all_plugins as $plugin) { if(isset($update_data[$plugin->element])) { //load manifest cache to get the version $manifest = json_decode($plugin->manifest_cache); if($manifest) { $version = (string) $manifest->version; if(version_compare($update_data[$plugin->element], $version, 'gt')) { $plugin->current_version = $version; $plugin->new_version = $update_data[$plugin->element]; $updates[] = $plugin; } } } } return $updates; } private function sendRequest($request_url) { $curl = curl_init(); // Set some options - we are passing in a useragent too here curl_setopt_array($curl, array( CURLOPT_RETURNTRANSFER => 1, CURLOPT_URL => $request_url )); // Send the request & save response to $resp $resp = curl_exec($curl); // Close request to clear up some resources curl_close($curl); return $resp; } public function getSubscriptionDetails(){ //1.chk download id in config //2. send download id //3. display response $config = J2Store::config(); $download_id = $config->get('downloadid',''); $message_data = array(); if ( J2Store::isPro () && !empty($download_id)){ $url = 'https://www.j2store.org/index.php?j2storetask=getj2subscription&download_id='.$download_id; $json = $this->sendRequest($url); if(!empty($json)) { $registry = new JRegistry($json); $response_data = $registry->toArray(); if(isset($response_data['success']) && $response_data['success']){ return $response_data; } } } return $message_data; } public function getDownloadIdStatus($download_id){ $message_data = array(); if( J2Store::isPro () && !empty($download_id) ){ $url = 'https://www.j2store.org/index.php?j2storetask=getj2subscription&download_id='.$download_id; $json = $this->sendRequest($url); if(!empty($json)) { $registry = new JRegistry($json); $response_data = $registry->toArray(); if(isset($response_data['valid']) && $response_data['valid']){ $config = J2Store::config(); $config->saveOne('downloadid',$download_id); } return $response_data; } } return $message_data; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings