[2242] | 1 | <?php |
---|
| 2 | // +-----------------------------------------------------------------------+ |
---|
[2297] | 3 | // | Piwigo - a PHP based picture gallery | |
---|
| 4 | // +-----------------------------------------------------------------------+ |
---|
[3049] | 5 | // | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org | |
---|
[2297] | 6 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
---|
| 7 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
---|
| 8 | // +-----------------------------------------------------------------------+ |
---|
| 9 | // | This program is free software; you can redistribute it and/or modify | |
---|
| 10 | // | it under the terms of the GNU General Public License as published by | |
---|
| 11 | // | the Free Software Foundation | |
---|
| 12 | // | | |
---|
| 13 | // | This program is distributed in the hope that it will be useful, but | |
---|
| 14 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
| 15 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
| 16 | // | General Public License for more details. | |
---|
| 17 | // | | |
---|
| 18 | // | You should have received a copy of the GNU General Public License | |
---|
| 19 | // | along with this program; if not, write to the Free Software | |
---|
| 20 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
| 21 | // | USA. | |
---|
| 22 | // +-----------------------------------------------------------------------+ |
---|
[2242] | 23 | |
---|
| 24 | if( !defined("PHPWG_ROOT_PATH") ) |
---|
| 25 | { |
---|
| 26 | die ("Hacking attempt!"); |
---|
| 27 | } |
---|
| 28 | |
---|
[2263] | 29 | include_once(PHPWG_ROOT_PATH.'admin/include/plugins.class.php'); |
---|
[2255] | 30 | |
---|
[2530] | 31 | $template->set_filenames(array('plugins' => 'plugins_update.tpl')); |
---|
[2242] | 32 | |
---|
[2264] | 33 | $base_url = get_root_url().'admin.php?page='.$page['page']; |
---|
[2242] | 34 | |
---|
[2264] | 35 | $plugins = new plugins(); |
---|
| 36 | |
---|
[2242] | 37 | //-----------------------------------------------------------automatic upgrade |
---|
[2647] | 38 | if (isset($_GET['plugin']) and isset($_GET['revision']) and !is_adviser()) |
---|
[2242] | 39 | { |
---|
[2264] | 40 | $plugin_id = $_GET['plugin']; |
---|
[2647] | 41 | $revision = $_GET['revision']; |
---|
[2264] | 42 | |
---|
| 43 | if (isset($plugins->db_plugins_by_id[$plugin_id]) |
---|
| 44 | and $plugins->db_plugins_by_id[$plugin_id]['state'] == 'active') |
---|
| 45 | { |
---|
| 46 | $plugins->perform_action('deactivate', $plugin_id); |
---|
| 47 | |
---|
| 48 | redirect($base_url |
---|
[2647] | 49 | . '&revision=' . $revision |
---|
[2264] | 50 | . '&plugin=' . $plugin_id |
---|
| 51 | . '&reactivate=true'); |
---|
| 52 | } |
---|
| 53 | |
---|
[2647] | 54 | $upgrade_status = $plugins->extract_plugin_files('upgrade', $revision, $plugin_id); |
---|
[2264] | 55 | |
---|
| 56 | if (isset($_GET['reactivate'])) |
---|
| 57 | { |
---|
| 58 | $plugins->perform_action('activate', $plugin_id); |
---|
| 59 | } |
---|
| 60 | redirect($base_url.'&plugin='.$plugin_id.'&upgradestatus='.$upgrade_status); |
---|
[2242] | 61 | } |
---|
| 62 | |
---|
| 63 | //--------------------------------------------------------------upgrade result |
---|
| 64 | if (isset($_GET['upgradestatus']) and isset($_GET['plugin'])) |
---|
| 65 | { |
---|
[2264] | 66 | switch ($_GET['upgradestatus']) |
---|
| 67 | { |
---|
| 68 | case 'ok': |
---|
| 69 | array_push($page['infos'], |
---|
| 70 | sprintf( |
---|
| 71 | l10n('plugins_upgrade_ok'), |
---|
| 72 | $plugins->fs_plugins[$_GET['plugin']]['name'])); |
---|
| 73 | break; |
---|
| 74 | |
---|
| 75 | case 'temp_path_error': |
---|
| 76 | array_push($page['errors'], l10n('plugins_temp_path_error')); |
---|
| 77 | break; |
---|
| 78 | |
---|
| 79 | case 'dl_archive_error': |
---|
| 80 | array_push($page['errors'], l10n('plugins_dl_archive_error')); |
---|
| 81 | break; |
---|
| 82 | |
---|
| 83 | case 'archive_error': |
---|
| 84 | array_push($page['errors'], l10n('plugins_archive_error')); |
---|
| 85 | break; |
---|
| 86 | |
---|
| 87 | default: |
---|
| 88 | array_push($page['errors'], |
---|
[3143] | 89 | sprintf(l10n('plugins_extract_error'), $_GET['upgradestatus']), |
---|
[2264] | 90 | l10n('plugins_check_chmod')); |
---|
| 91 | } |
---|
[2242] | 92 | } |
---|
| 93 | |
---|
[2264] | 94 | //--------------------------------------------------------------------Tabsheet |
---|
[2272] | 95 | set_plugins_tabsheet($page['page']); |
---|
[2264] | 96 | |
---|
[2242] | 97 | // +-----------------------------------------------------------------------+ |
---|
| 98 | // | start template output | |
---|
| 99 | // +-----------------------------------------------------------------------+ |
---|
[2880] | 100 | if ($plugins->get_server_plugins()) |
---|
[2242] | 101 | { |
---|
[2263] | 102 | foreach($plugins->fs_plugins as $plugin_id => $fs_plugin) |
---|
[2243] | 103 | { |
---|
| 104 | if (isset($fs_plugin['extension']) |
---|
[2263] | 105 | and isset($plugins->server_plugins[$fs_plugin['extension']])) |
---|
[2243] | 106 | { |
---|
[2263] | 107 | $plugin_info = $plugins->server_plugins[$fs_plugin['extension']]; |
---|
[2245] | 108 | |
---|
[2647] | 109 | list($date, ) = explode(' ', $plugin_info['revision_date']); |
---|
| 110 | |
---|
[3143] | 111 | $ext_desc = '<i>'.l10n('Downloads').':</i> '.$plugin_info['extension_nb_downloads']."\r\n" |
---|
| 112 | ."\r\n" |
---|
| 113 | .$plugin_info['extension_description']; |
---|
[2245] | 114 | |
---|
[3143] | 115 | $rev_desc = '<i>'.l10n('Version').':</i> '.$plugin_info['revision_name']."\r\n" |
---|
| 116 | .'<i>'.l10n('Released on').':</i> '.$date."\r\n" |
---|
| 117 | .'<i>'.l10n('Downloads').':</i> '.$plugin_info['revision_nb_downloads']."\r\n" |
---|
| 118 | ."\r\n" |
---|
| 119 | .$plugin_info['revision_description']; |
---|
| 120 | |
---|
[2647] | 121 | if ($plugins->plugin_version_compare($fs_plugin['version'], $plugin_info['revision_name'])) |
---|
[2243] | 122 | { |
---|
| 123 | // Plugin is up to date |
---|
[2647] | 124 | $template->append('plugins_uptodate', array( |
---|
[3143] | 125 | 'URL' => PEM_URL.'/extension_view.php?eid='.$plugin_info['extension_id'], |
---|
[2647] | 126 | 'NAME' => $fs_plugin['name'], |
---|
[3143] | 127 | 'EXT_DESC' => $ext_desc, |
---|
| 128 | 'VERSION' => $fs_plugin['version'], |
---|
| 129 | 'VER_DESC' => $rev_desc)); |
---|
[2243] | 130 | } |
---|
| 131 | else |
---|
| 132 | { |
---|
| 133 | // Plugin need upgrade |
---|
[2264] | 134 | $url_auto_update = $base_url |
---|
[2647] | 135 | . '&revision=' . $plugin_info['revision_id'] |
---|
| 136 | . '&plugin=' . $plugin_id; |
---|
[2245] | 137 | |
---|
[2647] | 138 | $template->append('plugins_not_uptodate', array( |
---|
| 139 | 'EXT_NAME' => $fs_plugin['name'], |
---|
[3143] | 140 | 'EXT_URL' => PEM_URL.'/extension_view.php?eid='.$plugin_info['extension_id'], |
---|
| 141 | 'EXT_DESC' => $ext_desc, |
---|
[2647] | 142 | 'VERSION' => $fs_plugin['version'], |
---|
| 143 | 'NEW_VERSION' => $plugin_info['revision_name'], |
---|
[3143] | 144 | 'NEW_VER_DESC' => $rev_desc, |
---|
[2647] | 145 | 'URL_UPDATE' => $url_auto_update, |
---|
| 146 | 'URL_DOWNLOAD' => $plugin_info['download_url'] . '&origin=piwigo_download')); |
---|
[2243] | 147 | } |
---|
| 148 | } |
---|
[2245] | 149 | else |
---|
[2243] | 150 | { |
---|
| 151 | // Can't check plugin |
---|
[2647] | 152 | $template->append('plugins_cant_check', array( |
---|
| 153 | 'NAME' => $fs_plugin['name'], |
---|
| 154 | 'VERSION' => $fs_plugin['version'])); |
---|
[2243] | 155 | } |
---|
| 156 | } |
---|
[2242] | 157 | } |
---|
| 158 | else |
---|
| 159 | { |
---|
[2243] | 160 | array_push($page['errors'], l10n('plugins_server_error')); |
---|
[2242] | 161 | } |
---|
| 162 | |
---|
[2255] | 163 | $template->assign_var_from_handle('ADMIN_CONTENT', 'plugins'); |
---|
[2242] | 164 | ?> |
---|