source: extensions/AMetaData/amd_pip.class.inc.php @ 7443

Last change on this file since 7443 was 6920, checked in by grum, 14 years ago

Using metadata on HD picture (fix bug and forgotten files), release 0.5.1
bug:1846

  • Property svn:executable set to *
File size: 7.0 KB
Line 
1<?php
2/*
3 * -----------------------------------------------------------------------------
4 * Plugin Name: Advanced MetaData
5 * -----------------------------------------------------------------------------
6 * Author     : Grum
7 *   email    : grum@piwigo.org
8 *   website  : http://photos.grum.fr
9 *   PWG user : http://forum.piwigo.org/profile.php?id=3706
10 *
11 *   << May the Little SpaceFrog be with you ! >>
12 *
13 * -----------------------------------------------------------------------------
14 *
15 * See main.inc.php for release information
16 *
17 * PIP classe => manage integration in public interface
18 * -----------------------------------------------------------------------------
19*/
20
21if (!defined('PHPWG_ROOT_PATH')) { die('Hacking attempt!'); }
22
23include_once('amd_root.class.inc.php');
24
25class AMD_PIP extends AMD_root
26{
27  private $pictureProperties=array(
28    'id' => 0,
29    'analyzed' => 'n'
30  );
31  function AMD_PIP($prefixeTable, $filelocation)
32  {
33    parent::__construct($prefixeTable, $filelocation);
34
35    $this->loadConfig();
36    $this->initEvents();
37  }
38
39
40  /* ---------------------------------------------------------------------------
41  Public classe functions
42  --------------------------------------------------------------------------- */
43
44
45  /*
46    initialize events call for the plugin
47  */
48  public function initEvents()
49  {
50    parent::initEvents();
51    add_event_handler('loc_begin_picture', array(&$this, 'loadMetadata'));
52    add_event_handler('loc_end_page_tail', array(&$this, 'applyJS'));
53  }
54
55  /**
56   * override piwigo's metadata with picture metadata
57   *
58   */
59  public function loadMetadata()
60  {
61    global $conf, $template, $page, $user;
62
63    L10n::setLanguage($user['language']);
64
65    $path=dirname(dirname(dirname(__FILE__)));
66    $filename="";
67    $this->pictureProperties['id']=$page['image_id'];
68
69    $sql="SELECT ti.path, tai.analyzed, ti.has_high FROM ".IMAGES_TABLE." ti
70            LEFT JOIN ".$this->tables['images']." tai ON tai.imageId = ti.id
71          WHERE ti.id=".$page['image_id'].";";
72    $result=pwg_query($sql);
73    if($result)
74    {
75      $hasHigh='';
76      while($row=pwg_db_fetch_assoc($result))
77      {
78        $filename=$row['path'];
79        $hasHigh=$row['has_high'];
80        $this->pictureProperties['analyzed']=$row['analyzed'];
81      }
82      $filename=$path."/".$filename;
83
84      if($hasHigh==='true' and $this->config['amd_UseMetaFromHD']=='y')
85      {
86        $filename=dirname($filename)."/pwg_high/".basename($filename);
87      }
88    }
89
90
91
92    $this->jpegMD->load(
93      $filename,
94      Array(
95        'filter' => AMD_JpegMetaData::TAGFILTER_IMPLEMENTED,
96        'optimizeIptcDateTime' => true,
97        'exif' => true,
98        'iptc' => true,
99        'xmp' => true,
100        'magic' => true,
101      )
102    );
103
104    trigger_action('amd_jpegMD_loaded', $this->jpegMD);
105
106    $conf['show_exif']=false;
107    $conf['show_iptc']=false;
108
109    $picturesTags=$this->jpegMD->getTags();
110    $tagsList=Array();
111    $userDefinedList=array(
112      'list' => array(),
113      'values' => array(),
114    );
115    $sql="SELECT st.tagId, gn.name as gName, ut.numId, ut.name
116          FROM ((".$this->tables['selected_tags']." st
117            LEFT JOIN ".$this->tables['groups']." gr
118              ON gr.groupId = st.groupId)
119            LEFT JOIN ".$this->tables['groups_names']." gn
120              ON st.groupId = gn.groupId)
121            LEFT JOIN ".$this->tables['used_tags']." ut
122              ON ut.tagId = st.tagId
123          WHERE gn.lang='".$user['language']."'
124            AND st.groupId <> -1
125          ORDER BY gr.order, st.order;";
126    $result=pwg_query($sql);
127    if($result)
128    {
129      while($row=pwg_db_fetch_assoc($result))
130      {
131        $tagsList[$row['tagId']]=$row;
132        if(preg_match('/^userDefined\./i', $row['tagId']))
133        {
134          $userDefinedList['list'][]=$row['numId'];
135        }
136        else
137        {
138          if(array_key_exists($row['tagId'], $picturesTags))
139          {
140            $value=$picturesTags[$row['tagId']]->getLabel();
141
142            if($value instanceof DateTime)
143            {
144              $value=$value->format("Y-m-d H:i:s");
145            }
146            elseif(is_array($value))
147            {
148              /*
149               * array values are stored in a serialized string
150               */
151              $value=serialize($value);
152            }
153            $userDefinedList['values'][$row['numId']]=AMD_root::prepareValueForDisplay($value, $picturesTags[$row['tagId']]->isTranslatable());;
154          }
155        }
156      }
157    }
158
159    $metadata=$template->get_template_vars('metadata');
160    $md=null;
161    $group=null;
162
163    $userDefinedValues=$this->pictureGetUserDefinedTags($userDefinedList['list'], $userDefinedList['values']);
164
165    trigger_action('amd_jpegMD_userDefinedValues_built',
166      array(
167        'picture' => $userDefinedList['values'],
168        'user'    => $userDefinedValues,
169      )
170    );
171
172    foreach($tagsList as $key => $tagProperties)
173    {
174      $keyExist=array_key_exists($key, $picturesTags);
175      $userDefined=preg_match('/^userDefined\./i', $key);
176
177      if(($group!=$tagProperties['gName']) and
178         ( $keyExist or $userDefined) )
179      {
180        $group=$tagProperties['gName'];
181        if(!is_null($md))
182        {
183          $metadata[]=$md;
184          unset($md);
185        }
186        $md=Array(
187          'TITLE' => $tagProperties['gName'],
188          'lines' => Array()
189        );
190      }
191
192      if($keyExist)
193      {
194        $value=$picturesTags[$key]->getLabel();
195
196        if($value instanceof DateTime)
197        {
198          $value=$value->format("Y-m-d H:i:s");
199        }
200        elseif(is_array($value))
201        {
202          /*
203           * array values are stored in a serialized string
204           */
205          $value=serialize($value);
206        }
207
208        if($value!="")
209        {
210          $md['lines'][L10n::get($picturesTags[$key]->getName())]=AMD_root::prepareValueForDisplay($value, $picturesTags[$key]->isTranslatable());
211        }
212      }
213      elseif($userDefined and isset($userDefinedValues[$tagProperties['numId']]) and $userDefinedValues[$tagProperties['numId']]!='')
214      {
215        $md['lines'][$tagProperties['name']]=$userDefinedValues[$tagProperties['numId']];
216      }
217    }
218
219    if(!is_null($md) and count($md['lines'])>0)
220    {
221      $metadata[]=$md;
222    }
223
224    $template->assign('metadata', $metadata);
225  }
226
227  /**
228   * used by the 'loc_end_page_tail' event
229   *
230   * on each public page viewed, add a script to do an ajax call to the "public.makeStats.doPictureAnalyze" function
231   */
232  public function applyJS()
233  {
234    global $template;
235
236    if($this->config['amd_FillDataBaseContinuously']=='y' and
237       $this->config['amd_AllPicturesAreAnalyzed']=='n')
238    {
239      $template->set_filename('applyJS',
240                    dirname($this->getFileLocation()).'/templates/doAnalyze.tpl');
241
242      $datas=array(
243        'urlRequest' => $this->getAdminLink('ajax'),
244        'id' => ($this->pictureProperties['analyzed']=='n')?$this->pictureProperties['id']:'0'
245      );
246
247      $template->assign('datas', $datas);
248      $template->append('footer_elements', $template->parse('applyJS', true));
249    }
250  }
251
252} // AMD_PIP class
253
254
255?>
Note: See TracBrowser for help on using the repository browser.