aboutsummaryrefslogtreecommitdiffstats
path: root/admin/create_listing_file.php
blob: c4f88042498542e30459eb35166a589f3270e5d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<?php
/***************************************************************************
 *                          create_listing_file.php                        *
 *                            -------------------                          *
 *   application   : PhpWebGallery 1.3 <http://phpwebgallery.net>          *
 *   author        : Pierrick LE GALL <pierrick@z0rglub.com>               *
 *                                                                         *
 *   $Id$
 *                                                                         *
 ***************************************************************************/

$conf['prefix_thumbnail'] = 'TN-';
$conf['picture_ext'] = array ( 'jpg', 'gif', 'png', 'JPG', 'GIF', 'PNG' );

$listing = '';

$end = strrpos( $_SERVER['PHP_SELF'], '/' ) + 1;
$local_folder = substr( $_SERVER['PHP_SELF'], 0, $end );
$url = 'http://'.$_SERVER['HTTP_HOST'].$local_folder;

$listing.= '<url>'.$url.'</url>';

/**
 * returns an array with all picture files according to $conf['picture_ext']
 *
 * @param string $dir
 * @return array
 */
function get_picture_files( $dir )
{
  global $conf;

  $pictures = array();
  if ( $opendir = opendir( $dir ) )
  {
    while ( $file = readdir( $opendir ) )
    {
      if ( in_array( get_extension( $file ), $conf['picture_ext'] ) )
      {
        array_push( $pictures, $file );
      }
    }
  }
  return $pictures;
}

/**
 * returns an array with all thumbnails according to $conf['picture_ext']
 * and $conf['prefix_thumbnail']
 *
 * @param string $dir
 * @return array
 */
function get_thumb_files( $dir )
{
  global $conf;

  $prefix_length = strlen( $conf['prefix_thumbnail'] );
  
  $thumbnails = array();
  if ( $opendir = @opendir( $dir ) )
  {
    while ( $file = readdir( $opendir ) )
    {
      if ( in_array( get_extension( $file ), $conf['picture_ext'] )
           and substr($file,0,$prefix_length) == $conf['prefix_thumbnail'] )
      {
        array_push( $thumbnails, $file );
      }
    }
  }
  return $thumbnails;
}

// get_dirs retourne un tableau contenant tous les sous-r�pertoires d'un
// r�pertoire
function get_dirs( $basedir, $indent, $level )
{
  $fs_dirs = array();
  $dirs = "";

  if ( $opendir = opendir( $basedir ) )
  {
    while ( $file = readdir( $opendir ) )
    {
      if ( $file != '.'
           and $file != '..'
           and is_dir ( $basedir.'/'.$file )
           and $file != 'thumbnail' )
      {
        array_push( $fs_dirs, $file );
        if ( !preg_match( '/^[a-zA-Z0-9-_.]+$/', $file ) )
        {
          echo '<span style="color:red;">"'.$file.'" : ';
          echo 'The name of the directory should be composed of ';
          echo 'letters, figures, "-", "_" or "." ONLY';
          echo '</span><br />';
        }
      }
    }
  }
  // write of the dirs
  foreach ( $fs_dirs as $fs_dir ) {
    $dirs.= "\n".$indent.'<dir'.$level.' name="'.$fs_dir.'">';
    $dirs.= get_pictures( $basedir.'/'.$fs_dir, $indent.'  ' );
    $dirs.= get_dirs( $basedir.'/'.$fs_dir, $indent.'  ', $level + 1 );
    $dirs.= "\n".$indent.'</dir'.$level.'>';
  }
  return $dirs;		
}

// get_extension returns the part of the string after the last "."
function get_extension( $filename )
{
  return substr( strrchr( $filename, '.' ), 1, strlen ( $filename ) );
}

// get_filename_wo_extension returns the part of the string before the last
// ".".
// get_filename_wo_extension( 'test.tar.gz' ) -> 'test.tar'
function get_filename_wo_extension( $filename )
{
  return substr( $filename, 0, strrpos( $filename, '.' ) );
}

function get_pictures( $dir, $indent )
{
  global $conf;
  
  // fs means filesystem : $fs_pictures contains pictures in the filesystem
  // found in $dir, $fs_thumbnails contains thumbnails...
  $fs_pictures   = get_picture_files( $dir );
  $fs_thumbnails = get_thumb_files( $dir.'/thumbnail' );

  $root = "\n".$indent.'<root>';

  foreach ( $fs_pictures as $fs_picture ) {
    $file_wo_ext = get_filename_wo_extension( $fs_picture );
    $tn_ext = '';
    foreach ( $conf['picture_ext'] as $ext ) {
      $test = $conf['prefix_thumbnail'].$file_wo_ext.'.'.$ext;
      if ( !in_array( $test, $fs_thumbnails ) ) continue;
      else { $tn_ext = $ext; break; }
    }
    // if we found a thumnbnail corresponding to our picture...
    if ( $tn_ext != '' )
    {
      list( $width,$height ) = @getimagesize( $dir.'/'.$fs_picture );

      $root.= "\n".$indent.'  ';
      $root.= '<picture';
      $root.= ' file="'.    $fs_picture.'"';
      $root.= ' tn_ext="'.  $tn_ext.'"';
      $root.= ' filesize="'.floor(filesize($dir.'/'.$fs_picture)/1024).'"';
      $root.= ' width="'.   $width.'"';
      $root.= ' height="'.  $height.'"';
      $root.= ' />';
      
      if ( !preg_match( '/^[a-zA-Z0-9-_.]+$/', $fs_picture ) )
      {
        echo '<span style="color:red;">"'.$fs_picture.'" : ';
        echo 'The name of the picture should be composed of ';
        echo 'letters, figures, "-", "_" or "." ONLY';
        echo '</span><br />';
      }
    }
    else
    {
      echo 'The thumbnail is missing for '.$dir.'/'.$fs_picture;
      echo '-> '.$dir.'/thumbnail/';
      echo $conf['prefix_thumbnail'].$file_wo_ext.'.xxx';
      echo ' ("xxx" can be : ';
      echo implode( ', ', $conf['picture_ext'] );
      echo ')<br />';
    }
  }

  $root.= "\n".$indent.'</root>';

  return $root;
}

$listing.= get_dirs( '.', '', 0 );

if ( $fp = @fopen("./listing.xml","w") )
{
  fwrite( $fp, $listing );
  fclose( $fp );
  echo "listing.xml created";
}
else
{
  echo "I can't write the file listing.xml";
}
?>