source: extensions/akBookStyle/trunk/include/akContent.class.php @ 3792

Last change on this file since 3792 was 3792, checked in by nikrou, 15 years ago

Generate square thumbnails (css clip)
Allow admin to define thumbnail size

File size: 4.5 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | akBookStyle  - a plugin for Piwigo                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2009      Nicolas Roudaire        http://www.nikrou.net  |
6// | Copyright(C) 2009      vdigital                                       |
7// +-----------------------------------------------------------------------+
8// | This program is free software; you can redistribute it and/or modify  |
9// | it under the terms of the GNU General Public License as published by  |
10// | the Free Software Foundation                                          |
11// |                                                                       |
12// | This program is distributed in the hope that it will be useful, but   |
13// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
14// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
15// | General Public License for more details.                              |
16// |                                                                       |
17// | You should have received a copy of the GNU General Public License     |
18// | along with this program; if not, write to the Free Software           |
19// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
20// | USA.                                                                  |
21// +-----------------------------------------------------------------------+
22
23if (!defined('PHPWG_ROOT_PATH')) {
24  die('Hacking attempt!');
25}
26
27include_once(PHPWG_ROOT_PATH.'include/functions_picture.inc.php');
28
29class akContent
30{
31  public function __construct($config) {
32    $this->plugin_config = $config;
33    $this->current_picture = 0;
34  }
35
36  public function loc_begin_index_thumbnails($images) {
37    global $template;
38
39    $this->category_url = make_index_url(array('section' => 'category',
40                                               'category' => $GLOBALS['page']['category'],
41                                               'start' => $GLOBALS['page']['start']
42                                               ) 
43                                         );
44    $this->current_picture = $this->getPictureId($images);
45
46    $template->set_filenames(array('index_thumbnails'=> AK_PLUGIN_TEMPLATE . '/ak_thumbnails.tpl'));
47    $template->assign('AK_PLUGIN_CSS', AK_PLUGIN_CSS);
48    $template->assign('AK_PLUGIN_JS', AK_PLUGIN_JS);
49
50    $template->assign('AK_DIR_THUMBNAIL', isset($GLOBALS['conf']['dir_thumbnail'])?$GLOBALS['conf']['dir_thumbnail']:'thumbnail');
51    $template->assign('AK_PREFIX_THUMBNAIL', $GLOBALS['conf']['prefix_thumbnail']);
52    $template->assign('AK_PIC_SRC', get_image_url($images[$this->current_picture]));
53    $template->assign('AK_BY_LINE', $this->plugin_config->ak_by_line);
54    $template->assign('AK_THUMBNAIL_SIZE', $this->plugin_config->ak_thumbnail_size);
55    $template->assign('AK_RELOADED_IMAGE_TPL', AK_PLUGIN_TEMPLATE. '/ak_reloaded_image.tpl');
56  }
57
58
59  public function loc_end_index_thumbnails($tpl_vars, $images) {
60    foreach ($tpl_vars as &$tpl_var) {
61      $tpl_var['AK_URL'] = $this->makeAkUrl($tpl_var);
62
63      list($thumbnail_width, $thumbnail_height) = getimagesize($tpl_var['TN_SRC']);
64      $thumbnail_x_center = $thumbnail_width/2;
65      $thumbnail_y_center = $thumbnail_height/2;
66      $tpl_var['CLIP_TOP'] = round($thumbnail_y_center - $this->plugin_config->ak_thumbnail_size/2);
67      $tpl_var['CLIP_RIGHT'] = round($thumbnail_x_center + $this->plugin_config->ak_thumbnail_size/2);
68      $tpl_var['CLIP_BOTTOM'] = round($thumbnail_y_center + $this->plugin_config->ak_thumbnail_size/2);
69      $tpl_var['CLIP_LEFT'] = round($thumbnail_x_center - $this->plugin_config->ak_thumbnail_size/2);
70    }
71
72    return $tpl_vars;
73  }
74
75  /*** privates methods ***/
76  private function makeAkUrl($image) {
77    return sprintf('%s/picture/%d', $this->category_url, $image['ID']);
78
79  }
80
81  private function getPictureId($images) {
82    if ($GLOBALS['conf']['question_mark_in_urls']==false and
83        isset($_SERVER["PATH_INFO"]) and !empty($_SERVER["PATH_INFO"]) ) {
84      $rewritten = $_SERVER["PATH_INFO"];
85      $rewritten = str_replace('//', '/', $rewritten);
86    } else {
87      $rewritten = '';
88      foreach (array_keys($_GET) as $keynum => $key) {
89        $rewritten = $key;
90        break;
91      }
92    }
93    $rewritten = make_index_url().$rewritten;
94    $pattern = sprintf('`^%s/(?:start\-\d+/)?picture/(\d+)$`',
95                       str_replace('?', '\?', $this->category_url)
96                       );
97
98    if (preg_match($pattern, $rewritten, $matches)) {
99      foreach ($images as $index => $image) {
100        if ($image['id']==$matches[1]) {
101          return $index;
102        }
103      }
104      return false;
105    } else {
106      return false;
107    }
108  }
109}
110?>
Note: See TracBrowser for help on using the repository browser.