source: trunk/admin/picture_modify.php @ 25085

Last change on this file since 25085 was 25019, checked in by mistic100, 10 years ago

replace some mass_updates/inserts by single_update/insert

  • Property svn:eol-style set to LF
File size: 13.0 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2013 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
36check_input_parameter('image_id', $_GET, false, PATTERN_ID);
37check_input_parameter('cat_id', $_GET, false, PATTERN_ID);
38
39// represent
40$query = '
41SELECT id
42  FROM '.CATEGORIES_TABLE.'
43  WHERE representative_picture_id = '.$_GET['image_id'].'
44;';
45$represent_options_selected = array_from_query($query, 'id');
46
47// +-----------------------------------------------------------------------+
48// |                             delete photo                              |
49// +-----------------------------------------------------------------------+
50
51if (isset($_GET['delete']))
52{
53  check_pwg_token();
54
55  delete_elements(array($_GET['image_id']), true);
56  invalidate_user_cache();
57
58  // where to redirect the user now?
59  //
60  // 1. if a category is available in the URL, use it
61  // 2. else use the first reachable linked category
62  // 3. redirect to gallery root
63
64  if (isset($_GET['cat_id']) and !empty($_GET['cat_id']))
65  {
66    redirect(
67      make_index_url(
68        array(
69          'category' => get_cat_info($_GET['cat_id'])
70          )
71        )
72      );
73  }
74
75  $query = '
76SELECT category_id
77  FROM '.IMAGE_CATEGORY_TABLE.'
78  WHERE image_id = '.$_GET['image_id'].'
79;';
80
81  $authorizeds = array_diff(
82    array_from_query($query, 'category_id'),
83    explode(',', calculate_permissions($user['id'], $user['status']))
84    );
85 
86  foreach ($authorizeds as $category_id)
87  {
88    redirect(
89      make_index_url(
90        array(
91          'category' => get_cat_info($category_id)
92          )
93        )
94      );
95  }
96
97  redirect(make_index_url());
98}
99
100// +-----------------------------------------------------------------------+
101// |                          synchronize metadata                         |
102// +-----------------------------------------------------------------------+
103
104if (isset($_GET['sync_metadata']))
105{
106  sync_metadata(array( intval($_GET['image_id'])));
107  $page['infos'][] = l10n('Metadata synchronized from file');
108}
109
110//--------------------------------------------------------- update informations
111
112// first, we verify whether there is a mistake on the given creation date
113if (isset($_POST['date_creation_action'])
114    and 'set' == $_POST['date_creation_action'])
115{
116  if (!is_numeric($_POST['date_creation_year'])
117    or !checkdate(
118          $_POST['date_creation_month'],
119          $_POST['date_creation_day'],
120          $_POST['date_creation_year'])
121    )
122  {
123    $page['errors'][] = l10n('wrong date');
124  }
125}
126
127if (isset($_POST['submit']) and count($page['errors']) == 0)
128{
129  $data = array();
130  $data{'id'} = $_GET['image_id'];
131  $data{'name'} = $_POST['name'];
132  $data{'author'} = $_POST['author'];
133  $data['level'] = $_POST['level'];
134
135  if ($conf['allow_html_descriptions'])
136  {
137    $data{'comment'} = @$_POST['description'];
138  }
139  else
140  {
141    $data{'comment'} = strip_tags(@$_POST['description']);
142  }
143
144  if (!empty($_POST['date_creation_year']))
145  {
146    $data{'date_creation'} =
147      $_POST['date_creation_year']
148      .'-'.$_POST['date_creation_month']
149      .'-'.$_POST['date_creation_day']
150      .' '.$_POST['date_creation_time'];
151  }
152  else
153  {
154    $data{'date_creation'} = null;
155  }
156
157  single_update(
158    IMAGES_TABLE,
159    $data,
160    array('id' => $data['id'])
161    );
162
163  // time to deal with tags
164  $tag_ids = array();
165  if (!empty($_POST['tags']))
166  {
167    $tag_ids = get_tag_ids($_POST['tags']);
168  }
169  set_tags($tag_ids, $_GET['image_id']);
170
171  // association to albums
172  if (!isset($_POST['associate']))
173  {
174    $_POST['associate'] = array();
175  }
176  move_images_to_categories(array($_GET['image_id']), $_POST['associate']);
177
178  // thumbnail for albums
179  if (!isset($_POST['represent']))
180  {
181    $_POST['represent'] = array();
182  }
183 
184  $no_longer_thumbnail_for = array_diff($represent_options_selected, $_POST['represent']);
185  if (count($no_longer_thumbnail_for) > 0)
186  {
187    set_random_representant($no_longer_thumbnail_for);
188  }
189
190  $new_thumbnail_for = array_diff($_POST['represent'], $represent_options_selected);
191  if (count($new_thumbnail_for) > 0)
192  {
193    $query = '
194UPDATE '.CATEGORIES_TABLE.'
195  SET representative_picture_id = '.$_GET['image_id'].'
196  WHERE id IN ('.implode(',', $new_thumbnail_for).')
197;';
198    pwg_query($query);
199  }
200
201  $represent_options_selected = $_POST['represent'];
202 
203  $page['infos'][] = l10n('Photo informations updated');
204}
205
206// tags
207$query = '
208SELECT
209    id,
210    name
211  FROM '.IMAGE_TAG_TABLE.' AS it
212    JOIN '.TAGS_TABLE.' AS t ON t.id = it.tag_id
213  WHERE image_id = '.$_GET['image_id'].'
214;';
215$tag_selection = get_taglist($query);
216
217$query = '
218SELECT
219    id,
220    name
221  FROM '.TAGS_TABLE.'
222;';
223$tags = get_taglist($query, false);
224
225// retrieving direct information about picture
226$query = '
227SELECT *
228  FROM '.IMAGES_TABLE.'
229  WHERE id = '.$_GET['image_id'].'
230;';
231$row = pwg_db_fetch_assoc(pwg_query($query));
232
233$storage_category_id = null;
234if (!empty($row['storage_category_id']))
235{
236  $storage_category_id = $row['storage_category_id'];
237}
238
239$image_file = $row['file'];
240
241// +-----------------------------------------------------------------------+
242// |                             template init                             |
243// +-----------------------------------------------------------------------+
244
245$template->set_filenames(
246  array(
247    'picture_modify' => 'picture_modify.tpl'
248    )
249  );
250
251$admin_url_start = $admin_photo_base_url.'-properties';
252$admin_url_start.= isset($_GET['cat_id']) ? '&amp;cat_id='.$_GET['cat_id'] : '';
253
254$template->assign(
255  array(
256    'tag_selection' => $tag_selection,
257    'tags' => $tags,
258    'U_SYNC' => $admin_url_start.'&amp;sync_metadata=1',
259    'U_DELETE' => $admin_url_start.'&amp;delete=1&amp;pwg_token='.get_pwg_token(),
260
261    'PATH'=>$row['path'],
262
263    'TN_SRC' => DerivativeImage::thumb_url($row),
264
265    'NAME' =>
266      isset($_POST['name']) ?
267        stripslashes($_POST['name']) : @$row['name'],
268
269    'TITLE' => render_element_name($row),
270
271    'DIMENSIONS' => @$row['width'].' * '.@$row['height'],
272
273    'FILESIZE' => @$row['filesize'].' KB',
274
275    'REGISTRATION_DATE' => format_date($row['date_available']),
276
277    'AUTHOR' => htmlspecialchars(
278      isset($_POST['author'])
279        ? stripslashes($_POST['author'])
280        : @$row['author']
281      ),
282
283    'DESCRIPTION' =>
284      htmlspecialchars( isset($_POST['description']) ?
285        stripslashes($_POST['description']) : @$row['comment'] ),
286
287    'F_ACTION' =>
288        get_root_url().'admin.php'
289        .get_query_string_diff(array('sync_metadata'))
290    )
291  );
292
293$added_by = 'N/A';
294$query = '
295SELECT '.$conf['user_fields']['username'].' AS username
296  FROM '.USERS_TABLE.'
297  WHERE '.$conf['user_fields']['id'].' = '.$row['added_by'].'
298;';
299$result = pwg_query($query);
300while ($user_row = pwg_db_fetch_assoc($result))
301{
302  $row['added_by'] = $user_row['username'];
303}
304
305$intro_vars = array(
306  'file' => l10n('Original file : %s', $row['file']),
307  'add_date' => l10n('Posted %s on %s', time_since($row['date_available'], 'year'), format_date($row['date_available'], false, false)),
308  'added_by' => l10n('Added by %s', $row['added_by']),
309  'size' => $row['width'].'&times;'.$row['height'].' pixels, '.sprintf('%.2f', $row['filesize']/1024).'MB',
310  'stats' => l10n('Visited %d times', $row['hit']),
311  'id' => l10n('Numeric identifier : %d', $row['id']),
312  );
313
314if ($conf['rate'] and !empty($row['rating_score']))
315{
316  $query = '
317SELECT
318    COUNT(*)
319  FROM '.RATE_TABLE.'
320  WHERE element_id = '.$_GET['image_id'].'
321;';
322  list($row['nb_rates']) = pwg_db_fetch_row(pwg_query($query));
323 
324  $intro_vars['stats'].= ', '.sprintf(l10n('Rated %d times, score : %.2f'), $row['nb_rates'], $row['rating_score']);
325}
326
327$template->assign('INTRO', $intro_vars);
328 
329
330if (in_array(get_extension($row['path']),$conf['picture_ext']))
331{
332  $template->assign('U_COI', get_root_url().'admin.php?page=picture_coi&amp;image_id='.$_GET['image_id']);
333}
334
335// image level options
336$selected_level = isset($_POST['level']) ? $_POST['level'] : $row['level'];
337$template->assign(
338    array(
339      'level_options'=> get_privacy_level_options(),
340      'level_options_selected' => array($selected_level)
341    )
342  );
343
344// creation date
345unset($day, $month, $year);
346
347if (isset($_POST['date_creation_action'])
348    and 'set' == $_POST['date_creation_action'])
349{
350  foreach (array('day', 'month', 'year', 'time') as $varname)
351  {
352    $$varname = $_POST['date_creation_'.$varname];
353  }
354}
355else if (isset($row['date_creation']) and !empty($row['date_creation']))
356{
357  list($year, $month, $day) = explode('-', substr($row['date_creation'],0,10));
358  $time = substr($row['date_creation'],11);
359}
360else
361{
362  list($year, $month, $day) = array('', 0, 0);
363  $time = '00:00:00';
364}
365
366
367$month_list = $lang['month'];
368$month_list[0]='------------';
369ksort($month_list);
370
371$template->assign(
372    array(
373      'DATE_CREATION_DAY_VALUE' => (int)$day,
374      'DATE_CREATION_MONTH_VALUE' => (int)$month,
375      'DATE_CREATION_YEAR_VALUE' => $year,
376      'DATE_CREATION_TIME_VALUE' => $time,
377      'month_list' => $month_list,
378      )
379    );
380
381$query = '
382SELECT category_id, uppercats
383  FROM '.IMAGE_CATEGORY_TABLE.' AS ic
384    INNER JOIN '.CATEGORIES_TABLE.' AS c
385      ON c.id = ic.category_id
386  WHERE image_id = '.$_GET['image_id'].'
387;';
388$result = pwg_query($query);
389
390while ($row = pwg_db_fetch_assoc($result))
391{
392  $name =
393    get_cat_display_name_cache(
394      $row['uppercats'],
395      get_root_url().'admin.php?page=album-',
396      false
397      );
398
399  if ($row['category_id'] == $storage_category_id)
400  {
401    $template->assign('STORAGE_CATEGORY', $name);
402  }
403  else
404  {
405    $template->append('related_categories', $name);
406  }
407}
408
409// jump to link
410//
411// 1. find all linked categories that are reachable for the current user.
412// 2. if a category is available in the URL, use it if reachable
413// 3. if URL category not available or reachable, use the first reachable
414//    linked category
415// 4. if no category reachable, no jumpto link
416
417$query = '
418SELECT category_id
419  FROM '.IMAGE_CATEGORY_TABLE.'
420  WHERE image_id = '.$_GET['image_id'].'
421;';
422
423$authorizeds = array_diff(
424  array_from_query($query, 'category_id'),
425  explode(
426    ',',
427    calculate_permissions($user['id'], $user['status'])
428    )
429  );
430
431if (isset($_GET['cat_id'])
432    and in_array($_GET['cat_id'], $authorizeds))
433{
434  $url_img = make_picture_url(
435    array(
436      'image_id' => $_GET['image_id'],
437      'image_file' => $image_file,
438      'category' => $cache['cat_names'][ $_GET['cat_id'] ],
439      )
440    );
441}
442else
443{
444  foreach ($authorizeds as $category)
445  {
446    $url_img = make_picture_url(
447      array(
448        'image_id' => $_GET['image_id'],
449        'image_file' => $image_file,
450        'category' => $cache['cat_names'][ $category ],
451        )
452      );
453    break;
454  }
455}
456
457if (isset($url_img))
458{
459  $template->assign( 'U_JUMPTO', $url_img );
460}
461
462// associate to albums
463$query = '
464SELECT id
465  FROM '.CATEGORIES_TABLE.'
466    INNER JOIN '.IMAGE_CATEGORY_TABLE.' ON id = category_id
467  WHERE image_id = '.$_GET['image_id'].'
468;';
469$associate_options_selected = array_from_query($query, 'id');
470
471$query = '
472SELECT id,name,uppercats,global_rank
473  FROM '.CATEGORIES_TABLE.'
474;';
475display_select_cat_wrapper($query, $associate_options_selected, 'associate_options');
476display_select_cat_wrapper($query, $represent_options_selected, 'represent_options');
477
478//----------------------------------------------------------- sending html code
479
480$template->assign_var_from_handle('ADMIN_CONTENT', 'picture_modify');
481?>
Note: See TracBrowser for help on using the repository browser.