source: trunk/admin/site_manager.php @ 8083

Last change on this file since 8083 was 8083, checked in by patdenice, 13 years ago

feature 2057: use $get_data parameter to send GET data.

  • Property svn:eol-style set to LF
File size: 9.5 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2010 Piwigo Team                  http://piwigo.org |
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// +-----------------------------------------------------------------------+
23
24if (!defined('PHPWG_ROOT_PATH'))
25{
26  die ("Hacking attempt!");
27}
28
29include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
30
31// +-----------------------------------------------------------------------+
32// | Check Access and exit when user status is not ok                      |
33// +-----------------------------------------------------------------------+
34check_status(ACCESS_ADMINISTRATOR);
35
36if (!empty($_POST) or isset($_GET['action']))
37{
38  check_pwg_token();
39}
40
41/**
42 * requests the given $url (a remote create_listing_file.php) and fills a
43 * list of lines corresponding to request output
44 *
45 * @param string $url
46 * @return void
47 */
48function remote_output($url)
49{
50  global $template, $page;
51
52  if (fetchRemote($url, $result))
53  {
54    $lines = explode("\r\n", $result);
55    // cleaning lines from HTML tags
56    foreach ($lines as $line)
57    {
58      $line = trim(strip_tags($line));
59      if (preg_match('/^PWG-([A-Z]+)-/', $line, $matches))
60      {
61        $template->append(
62          'remote_output',
63          array(
64            'CLASS' => 'remote'.ucfirst(strtolower($matches[1])),
65            'CONTENT' => $line
66           )
67         );
68      }
69    }
70  }
71  else
72  {
73    array_push($page['errors'], l10n('file create_listing_file.php on remote site was not found'));
74  }
75}
76
77
78// +-----------------------------------------------------------------------+
79// |                             template init                             |
80// +-----------------------------------------------------------------------+
81$template->set_filenames(array('site_manager'=>'site_manager.tpl'));
82
83// +-----------------------------------------------------------------------+
84// |                        new site creation form                         |
85// +-----------------------------------------------------------------------+
86if (isset($_POST['submit']) and !empty($_POST['galleries_url'])
87    and !is_adviser() )
88{
89  $is_remote = url_is_remote( $_POST['galleries_url'] );
90  $url = preg_replace('/[\/]*$/', '', $_POST['galleries_url']);
91  $url.= '/';
92  if (! $is_remote)
93  {
94    if ( ! (strpos($url, '.') === 0 ) )
95    {
96      $url = './' . $url;
97    }
98  }
99
100  // site must not exists
101  $query = '
102SELECT COUNT(id) AS count
103  FROM '.SITES_TABLE.'
104  WHERE galleries_url = \''.$url.'\'
105;';
106  $row = pwg_db_fetch_assoc(pwg_query($query));
107  if ($row['count'] > 0)
108  {
109    array_push($page['errors'],
110      l10n('This site already exists').' ['.$url.']');
111  }
112  if (count($page['errors']) == 0)
113  {
114    if ($is_remote)
115    {
116      if ( ! isset($_POST['no_check']) )
117      {
118        $clf_url = $url.'create_listing_file.php';
119        $get_data = array(
120          'action' => 'test',
121          'version' => PHPWG_VERSION,
122        );
123        if (fetchRemote($clf_url, $result, $get_data))
124        {
125          $lines = explode("\r\n", $result);
126          $first_line = strip_tags($lines[0]);
127          if (!preg_match('/^PWG-INFO-2:/', $first_line))
128          {
129            array_push($page['errors'],
130                       l10n('an error happened').' : '.$first_line);
131          }
132        }
133        else
134        {
135          array_push($page['errors'], l10n('file create_listing_file.php on remote site was not found') );
136        }
137      }
138    }
139    else
140    { // local directory
141      if ( ! file_exists($url) )
142      {
143        array_push($page['errors'],
144          l10n('Directory does not exist').' ['.$url.']');
145      }
146    }
147  }
148
149  if (count($page['errors']) == 0)
150  {
151    $query = '
152INSERT INTO '.SITES_TABLE.'
153  (galleries_url)
154  VALUES
155  (\''.$url.'\')
156;';
157    pwg_query($query);
158    array_push($page['infos'],
159               $url.' '.l10n('created'));
160  }
161}
162
163// +-----------------------------------------------------------------------+
164// |                            actions on site                            |
165// +-----------------------------------------------------------------------+
166if (isset($_GET['site']) and is_numeric($_GET['site']))
167{
168  $page['site'] = $_GET['site'];
169}
170if (isset($_GET['action']) and isset($page['site']) and !is_adviser())
171{
172  $query = '
173SELECT galleries_url
174  FROM '.SITES_TABLE.'
175  WHERE id = '.$page['site'].'
176;';
177  list($galleries_url) = pwg_db_fetch_row(pwg_query($query));
178  switch($_GET['action'])
179  {
180    case 'generate' :
181    {
182      $title = $galleries_url.' : '.l10n('generate listing');
183      remote_output($galleries_url.'create_listing_file.php?action=generate');
184      break;
185    }
186    case 'test' :
187    {
188      $title = $galleries_url.' : '.l10n('test');
189      remote_output($galleries_url.'create_listing_file.php?action=test&version='.PHPWG_VERSION);
190      break;
191    }
192    case 'clean' :
193    {
194      $title = $galleries_url.' : '.l10n('clean');
195      remote_output($galleries_url.'create_listing_file.php?action=clean');
196      break;
197    }
198    case 'delete' :
199    {
200      delete_site($page['site']);
201      array_push($page['infos'],
202                 $galleries_url.' '.l10n('deleted'));
203      break;
204    }
205  }
206}
207
208$template->assign(
209  array(
210    'U_HELP'    => get_root_url().'admin/popuphelp.php?page=site_manager',
211    'F_ACTION'  => get_root_url().'admin.php'.get_query_string_diff(array('action','site','pwg_token')),
212    'PWG_TOKEN' => get_pwg_token(),
213    )
214  );
215
216// +-----------------------------------------------------------------------+
217// |                           remote sites list                           |
218// +-----------------------------------------------------------------------+
219
220if ( is_file(PHPWG_ROOT_PATH.'listing.xml') )
221{
222  $xml_content = getXmlCode(PHPWG_ROOT_PATH.'listing.xml');
223  $local_listing_site_url = getAttribute(
224          getChild($xml_content, 'informations'),
225          'url'
226        );
227  if ( !url_is_remote($local_listing_site_url) )
228  {
229    $local_listing_site_url = null;
230  }
231}
232
233$query = '
234SELECT c.site_id, COUNT(DISTINCT c.id) AS nb_categories, COUNT(i.id) AS nb_images
235  FROM '.CATEGORIES_TABLE.' AS c LEFT JOIN '.IMAGES_TABLE.' AS i
236  ON c.id=i.storage_category_id
237  WHERE c.site_id IS NOT NULL
238  GROUP BY c.site_id
239;';
240$sites_detail = hash_from_query($query, 'site_id'); 
241
242$query = '
243SELECT *
244  FROM '.SITES_TABLE.'
245;';
246$result = pwg_query($query);
247
248while ($row = pwg_db_fetch_assoc($result))
249{
250  $is_remote = url_is_remote($row['galleries_url']);
251  $base_url = PHPWG_ROOT_PATH.'admin.php';
252  $base_url.= '?page=site_manager';
253  $base_url.= '&amp;site='.$row['id'];
254  $base_url.= '&amp;pwg_token='.get_pwg_token();
255  $base_url.= '&amp;action=';
256
257  $update_url = PHPWG_ROOT_PATH.'admin.php';
258  $update_url.= '?page=site_update';
259  $update_url.= '&amp;site='.$row['id'];
260 
261  $tpl_var =
262    array(
263      'NAME' => $row['galleries_url'],
264      'TYPE' => l10n( $is_remote ? 'Remote' : 'Local' ),
265      'CATEGORIES' => (int)@$sites_detail[$row['id']]['nb_categories'],
266      'IMAGES' => (int)@$sites_detail[$row['id']]['nb_images'],
267      'U_SYNCHRONIZE' => $update_url
268     );
269     
270   if ($is_remote)
271   {
272     $tpl_var['remote'] =
273       array(
274         'U_TEST' => $base_url.'test',
275         'U_GENERATE' => $row['galleries_url'].'create_listing_file.php?action=generate',
276         'U_CLEAN' => $base_url.'clean',
277         );
278   }
279
280  if ($row['id'] != 1)
281  {
282    $tpl_var['U_DELETE'] = $base_url.'delete';
283  }
284
285  $plugin_links = array();
286  //$plugin_links is array of array composed of U_HREF, U_HINT & U_CAPTION
287  $plugin_links =
288    trigger_event('get_admins_site_links',
289      $plugin_links, $row['id'], $is_remote);
290  $tpl_var['plugin_links'] = $plugin_links;
291
292  $template->append('sites', $tpl_var);
293
294  if ( isset($local_listing_site_url) and
295       $row['galleries_url']==$local_listing_site_url )
296  {
297    $local_listing_site_id = $row['id'];
298    $template->assign( 'local_listing',
299        array(
300          'URL' =>  $local_listing_site_url,
301          'U_SYNCHRONIZE' => $update_url.'&amp;local_listing=1'
302        )
303      );
304  }
305}
306
307if ( isset($local_listing_site_url) and !isset($local_listing_site_id) )
308{
309  $template->assign( 'local_listing',
310      array(
311        'URL' =>  $local_listing_site_url,
312        'CREATE' => true
313      )
314    );
315}
316
317
318$template->assign_var_from_handle('ADMIN_CONTENT', 'site_manager');
319?>
Note: See TracBrowser for help on using the repository browser.