5 # A.k.a 'Best web-album Of the world, Or your money back, Humerus'.
7 # The acronyn sucks, however this is a tribute to Dragon Ball by
8 # Akira Toriyama, where the last enemy beaten by heroes of Dragon
9 # Ball is named "Boo". But there was already a free software project
10 # called Boo, so this one will be it "Booh". Or whatever.
13 # Copyright (c) 2005 Guillaume Cottenceau <gc3 at bluewin.ch>
15 # This software may be freely redistributed under the terms of the GNU
16 # public license version 2.
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., 675 Mass Ave, Cambridge, MA 02139, USA.
25 require 'rexml/document'
28 require 'booh/booh-lib'
29 require 'booh/html-merges'
31 #- bind text domain as soon as possible because some _() functions are called early to build data structures
32 bindtextdomain("booh")
36 [ '--help', '-h', GetoptLong::NO_ARGUMENT, _("Get help message") ],
37 [ '--version', '-V', GetoptLong::NO_ARGUMENT, _("Print version and exit") ],
39 [ '--source', '-s', GetoptLong::REQUIRED_ARGUMENT, _("Directory which contains original images/videos as files or subdirs") ],
40 [ '--destination', '-d', GetoptLong::REQUIRED_ARGUMENT, _("Directory which will contain the web-album") ],
41 # [ '--clean', '-c', GetoptLong::NO_ARGUMENT, _("Clean destination directory") ],
43 [ '--theme', '-t', GetoptLong::REQUIRED_ARGUMENT, _("Select HTML theme to use") ],
44 [ '--config', '-C', GetoptLong::REQUIRED_ARGUMENT, _("File containing config listing images and videos within directories with captions") ],
45 [ '--config-skel', '-k', GetoptLong::REQUIRED_ARGUMENT, _("Filename where the script will output a config skeleton") ],
46 [ '--merge-config', '-M', GetoptLong::REQUIRED_ARGUMENT, _("File containing config listing, where to merge new/removed images/videos from --source, and change theme info") ],
47 [ '--merge-config-onedir', '-O', GetoptLong::REQUIRED_ARGUMENT, _("File containing config listing, for merging the subdir specified with --dir") ],
48 [ '--merge-config-subdirs', '-U', GetoptLong::REQUIRED_ARGUMENT, _("File containing config listing, for merging the new subdirs down the subdir specified with --dir") ],
49 [ '--dir', '-D', GetoptLong::REQUIRED_ARGUMENT, _("Directory for merge with --merge-config-onedir or --merge-config-subdirs") ],
50 [ '--use-config', '-u', GetoptLong::REQUIRED_ARGUMENT, _("File containing config listing, where to change theme info") ],
51 [ '--force', '-f', GetoptLong::NO_ARGUMENT, _("Force generation of album even if the GUI marked some directories as already generated") ],
53 [ '--sizes', '-S', GetoptLong::REQUIRED_ARGUMENT, _("Specify the list of images sizes to use instead of all specified in the theme (this is a comma-separated list)") ],
54 [ '--thumbnails-per-row', '-T', GetoptLong::REQUIRED_ARGUMENT, _("Specify the amount of thumbnails per row in the thumbnails page (if applicable in theme)") ],
55 [ '--optimize-for-32', '-o', GetoptLong::NO_ARGUMENT, _("Resize images with optimized sizes for 3/2 aspect ratio rather than 4/3 (typical aspect ratio of pictures from non digital cameras are 3/2 when pictures from digital cameras are 4/3)") ],
56 [ '--made-with', '-n', GetoptLong::REQUIRED_ARGUMENT, _("Specify the HTML markup to use on the bottom of pages") ],
57 [ '--empty-comments','-e', GetoptLong::NO_ARGUMENT, _("Prefer empty comments over filename when creating new albums") ],
59 [ '--mproc', '-m', GetoptLong::REQUIRED_ARGUMENT, _("Specify the number of processors for multi-processors machines") ],
61 [ '--for-gui', '-g', GetoptLong::NO_ARGUMENT, _("Do the minimum work to be able to see the album under the GUI (don't generate all thumbnails)") ],
63 [ '--verbose-level', '-v', GetoptLong::REQUIRED_ARGUMENT, _("Set max verbosity level (0: errors, 1: warnings, 2: important messages, 3: other messages)") ],
64 [ '--info-pipe', '-i', GetoptLong::REQUIRED_ARGUMENT, _("Name a file where to write information about what's going on (used by the GUI)") ],
67 #- default values for some globals
71 $ignore_videos = false
76 puts _("Usage: %s [OPTION]...") % File.basename($0)
78 printf " %3s, %-18s %s\n", ary[1], ary[0], ary[3]
83 parser = GetoptLong.new
84 parser.set_options(*$options.collect { |ary| ary[0..2] })
86 parser.each_option do |name, arg|
93 puts _("Booh version %s
95 Copyright (c) 2005 Guillaume Cottenceau.
96 This is free software; see the source for copying conditions. There is NO
97 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.") % $VERSION
102 $source = File.expand_path(arg.sub(%r|/$|, ''))
103 if !File.directory?($source)
104 die _("Argument to --source must be a directory")
107 $dest = File.expand_path(arg.sub(%r|/$|, ''))
108 if File.exists?($dest) && !File.directory?($dest)
109 die _("If --destination exists, it must be a directory")
111 if $dest != make_dest_filename($dest)
112 die _("Sorry, destination directory can't contain non simple alphanumeric characters.")
115 # system("rm -rf #{$dest}")
120 arg = File.expand_path(arg)
121 if File.readable?(arg)
122 $xmldoc = REXML::Document.new File.new(arg)
125 die _('Config file does not exist or is unreadable.')
128 arg = File.expand_path(arg)
130 if File.directory?(arg)
131 die _("Config skeleton file (%s) already exists and is a directory! Please change the filename.") % arg
133 msg 1, _("Config skeleton file already exists, backuping to %s.backup") % arg
134 File.rename(arg, "#{arg}.backup")
137 $config_writeto = arg
139 when '--merge-config'
140 arg = File.expand_path(arg)
141 if File.readable?(arg)
142 msg 2, _("Merge config notice: backuping current config file to %s.backup") % arg
143 $xmldoc = REXML::Document.new File.new(arg)
144 File.rename(arg, "#{arg}.backup")
145 $config_writeto = arg
146 $mode = 'merge_config'
148 die _('Config file does not exist or is unreadable.')
150 when '--merge-config-onedir'
151 arg = File.expand_path(arg)
152 if File.readable?(arg)
153 msg 2, _("Merge config notice: backuping current config file to %s.backup") % arg
154 $xmldoc = REXML::Document.new File.new(arg)
155 File.rename(arg, "#{arg}.backup")
156 $config_writeto = arg
157 $mode = 'merge_config_onedir'
159 die _('Config file does not exist or is unreadable.')
161 when '--merge-config-subdirs'
162 arg = File.expand_path(arg)
163 if File.readable?(arg)
164 msg 2, _("Merge config notice: backuping current config file to %s.backup") % arg
165 $xmldoc = REXML::Document.new File.new(arg)
166 File.rename(arg, "#{arg}.backup")
167 $config_writeto = arg
168 $mode = 'merge_config_subdirs'
170 die _('Config file does not exist or is unreadable.')
173 arg = File.expand_path(arg)
174 if !File.readable?(arg)
175 die _('Specified directory to merge with --dir is not readable')
180 arg = File.expand_path(arg)
181 if File.readable?(arg)
182 msg 2, _("Use config notice: backuping current config file to %s.backup") % arg
183 $xmldoc = REXML::Document.new File.new(arg)
184 File.rename(arg, "#{arg}.backup")
185 $config_writeto = arg
186 $mode = 'use_config_changetheme'
188 die _('Config file does not exist or is unreadable.')
194 when '--thumbnails-per-row'
197 when '--optimize-for-32'
198 $optimize_for_32 = true
203 when '--empty-comments'
204 $empty_comments = true
216 when '--verbose-level'
217 $verbose_level = arg.to_i
220 $info_pipe = File.open(arg, File::WRONLY)
221 $info_pipe.sync = true
230 if !$source && $xmldoc
231 $source = from_utf8($xmldoc.root.attributes['source'])
232 $dest = from_utf8($xmldoc.root.attributes['destination'])
233 $theme ||= $xmldoc.root.attributes['theme']
234 $limit_sizes ||= $xmldoc.root.attributes['limit-sizes']
235 if $mode == 'use_config' || $mode =~ /^merge_config/
236 $optimize_for_32 = !$xmldoc.root.attributes['optimize-for-32'].nil?
237 $N_per_row = $xmldoc.root.attributes['thumbnails-per-row']
238 $madewith = $xmldoc.root.attributes['made-with']
242 if $mode == 'merge_config_onedir' && !$onedir
243 die _("Missing --dir for --merge-config-onedir")
245 if $mode == 'merge_config_subdirs' && !$onedir
246 die _("Missing --dir for --merge-config-subdirs")
254 die _("Missing --destination parameter.")
260 select_theme($theme, $limit_sizes, $optimize_for_32, $N_per_row)
263 additional_params = ''
265 additional_params += "limit-sizes='#{$limit_sizes}'"
268 additional_params += " optimize-for-32='true'"
271 additional_params += " thumbnails-per-row='#{$N_per_row}'"
274 additional_params += " made-with='#{$madewith}'"
276 $xmldoc = Document.new "<booh version='#{$VERSION}' source='#{utf8($source)}' destination='#{utf8($dest)}' theme='#{$theme}' #{additional_params}/>"
277 $xmldoc << XMLDecl.new(XMLDecl::DEFAULT_VERSION, $CURRENT_CHARSET)
281 if $mode == 'merge_config' || $mode == 'use_config_changetheme'
282 $xmldoc.root.add_attribute('theme', $theme)
283 $xmldoc.root.add_attribute('version', $VERSION)
285 $xmldoc.root.add_attribute('limit-sizes', $limit_sizes)
287 $xmldoc.root.delete_attribute('limit-sizes')
290 $xmldoc.root.add_attribute('optimize-for-32', 'true')
292 $xmldoc.root.delete_attribute('optimize-for-32')
295 $xmldoc.root.add_attribute('thumbnails-per-row', $N_per_row)
297 $xmldoc.root.delete_attribute('thumbnails-per-row')
300 $xmldoc.root.add_attribute('made-with', $madewith)
302 $xmldoc.root.delete_attribute('made-with')
307 $madewith = $madewith.gsub('%booh', '"http://zarb.org/~gc/html/booh.html"')
320 $info_pipe.puts(value)
326 $info_pipe.puts("die: " + value)
331 def check_installation
332 if !system("which convert >/dev/null 2>/dev/null")
333 die _("The program 'convert' is needed. Please install it.
334 It is generally available with the 'ImageMagick' software package.")
336 if !system("which identify >/dev/null 2>/dev/null")
337 msg 1, _("the program 'identify' is needed to get images sizes and EXIF data. Please install it.
338 It is generally available with the 'ImageMagick' software package.")
341 missing = %w(transcode mencoder).delete_if { |prg| system("which #{prg} >/dev/null 2>/dev/null") }
343 msg 1, _("the following program(s) are needed to handle videos: '%s'. Videos will be ignored.") % missing.join(', ')
344 $ignore_videos = true
348 def replace_line(surround, keyword, line)
350 contents = eval "$#{keyword}"
351 line.sub!(/#{surround}#{keyword}#{surround}/, contents)
353 die _("No '%s' found for substitution") % keyword
357 def build_html_skeletons
358 $html_images = File.open("#{$FPATH}/themes/#{$theme}/skeleton_image.html").readlines
359 $html_thumbnails = File.open("#{$FPATH}/themes/#{$theme}/skeleton_thumbnails.html").readlines
360 $html_index = File.open("#{$FPATH}/themes/#{$theme}/skeleton_index.html").readlines
361 for line in $html_images + $html_thumbnails + $html_index
362 while line =~ /~~~(\w+)~~~/
363 replace_line('~~~', $1, line)
368 def find_caption_value(xmldir, filename)
369 if cap = xmldir.elements["*[@filename='#{utf8(filename)}']"].attributes['caption']
370 return cap.gsub("\n", '<br/>')
376 def find_captions(xmldir, images)
377 return images.collect { |img| find_caption_value(xmldir, img) }
380 #- stolen from CVSspam
382 text.sub(/[^a-zA-Z0-9\-,.*_\/]/) do
383 "%#{sprintf('%2X', $&[0])}"
388 return $limit_sizes =~ /original/ ? $images_size + [ { 'name' => 'original' } ] : $images_size
391 def html_reload_to_thumbnails
392 html_reload_to_thumbnails = $preferred_size_reloader.clone
393 html_reload_to_thumbnails.gsub!(/~~theme~~/, $theme)
394 html_reload_to_thumbnails.gsub!(/~~default_size~~/, $default_size['name'])
395 html_reload_to_thumbnails.gsub!(/~~all_sizes~~/, all_images_sizes.collect { |s| "\"#{size2js(s['name'])}\"" }.join(', '))
396 return html_reload_to_thumbnails
399 def discover_iterations(iterations, line)
400 if line =~ /~~iterate(\d)_open(_max(\d+|N))?~~/
401 for iter in iterations.values
404 iter['close_wait'] = $1.to_i
407 max = $3 == 'N' ? ($N_per_row || $default_N) : $3
408 iterations[$1.to_i] = { 'open' => true, 'max' => max, 'opening' => '', 'closing' => '' }
410 line.sub!(/.*/, '~~thumbnails~~')
414 elsif line =~ /~~iterate(\d)_close~~/
415 iterations[$1.to_i]['open'] = false;
416 iterations[$1.to_i]['close'] = true;
419 for iter in iterations.values
421 iter['opening'] += line
424 if !iter['close'] && iter['close_wait'] && iterations[iter['close_wait']]['close']
425 iter['closing'] += line
432 def reset_iterations(iterations)
433 for iter in iterations.values
438 def run_iterations(iterations, amount)
441 for level in iterations.keys.sort
442 if iterations[level]['value'] == 0
443 html += iterations[level]['opening']
444 elsif level == iterations.keys.max
445 if !iterations[level]['max'] || iterations[level]['max'] && iterations[level]['value'] + amount <= iterations[level]['max'].to_i
446 html += iterations[level]['opening']
451 iterations[level]['value'] += amount
452 if iterations[level]['max'] && iterations[level]['value'] > iterations[level]['max'].to_i
453 iterations[level]['value'] = 0
454 iterations[level-1]['value'] = 0
455 html += iterations[level-1]['closing']
459 return html + run_iterations(iterations, amount)
465 def close_iterations(iterations)
467 for level in iterations.keys.sort.reverse
468 html += iterations[level]['closing']
473 def img_element(fullpath)
474 if size = get_image_size(fullpath)
475 sizespec = 'width="' + size[:x].to_s + '" height="' + size[:y].to_s + '"'
479 return '<img src="' + File.basename(fullpath) + '" ' + sizespec + ' class="image" alt="image"/>'
483 return name.gsub(/-/, '')
486 def substitute_html_sizes(html, sizeobj, type)
488 if $images_size.length > 1 || (type == 'image' && $limit_sizes =~ /original/)
489 for sizeobj2 in $images_size
490 if sizeobj != sizeobj2
491 if type == 'thumbnails'
492 sizestrings << '<a href="thumbnails-' + size2js(sizeobj2['name']) + '.html">' + sizename(sizeobj2['name']) + '</a>'
494 sizestrings << '<a id="link' + size2js(sizeobj2['name']) + '">' + sizename(sizeobj2['name']) + '</a>'
497 sizestrings << sizename(sizeobj2['name'])
500 if type == 'image' && $limit_sizes =~ /original/
501 sizestrings << '<a id="linkoriginal" target="newframe">' + sizename('original') + '</a>'
504 html.sub!(/~~sizes~~(.+)~~/) { sizestrings.join($1) }
507 def xmldir2destdir(xmldir)
508 return make_dest_filename(from_utf8(File.basename(xmldir.attributes['path'])))
511 def find_previous_album(xmldir)
514 #- move to previous dir element if exists
515 if prevelem = xmldir.previous_element_byname_notattr('dir', 'deleted')
517 relative_pos += '../' + xmldir2destdir(xmldir) + '/'
519 #- after having moved to previous dir, we need to go down last subdir until the last one
520 while child = xmldir.elements['dir']
521 while nextchild = child.next_element_byname_notattr('dir', 'deleted')
524 relative_pos += xmldir2destdir(child) + '/'
528 #- previous dir doesn't exist, move to previous dir element if exists
529 xmldir = xmldir.parent
530 if xmldir.name == 'dir' && !xmldir.attributes['deleted']
531 relative_pos += '../'
536 end while !xmldir.child_byname_notattr('image', 'deleted') && !xmldir.child_byname_notattr('video', 'deleted')
537 return File.reduce_path(relative_pos)
540 def find_next_album(xmldir)
543 #- first child dir element (catches when initial xmldir has both thumbnails and subdirs)
544 if firstchild = xmldir.child_byname_notattr('dir', 'deleted')
546 relative_pos += xmldir2destdir(xmldir) + '/'
548 elsif nextbro = xmldir.next_element_byname_notattr('dir', 'deleted')
550 relative_pos += '../' + xmldir2destdir(xmldir) + '/'
552 #- go up until we have a next brother or we are finished
554 xmldir = xmldir.parent
555 relative_pos += '../'
556 end while xmldir && !xmldir.next_element_byname_notattr('dir', 'deleted')
558 xmldir = xmldir.next_element_byname('dir')
559 relative_pos += '../' + xmldir2destdir(xmldir) + '/'
564 end while !xmldir.child_byname_notattr('image', 'deleted') && !xmldir.child_byname_notattr('video', 'deleted')
565 return File.reduce_path(relative_pos)
568 def sub_previous_next_album(previous_album, next_album, html)
570 html.gsub!(/~~previous_album~~/, '<a href="' + previous_album + 'thumbnails.html">' + utf8(_('previous album')) + '</a>')
571 html.gsub!(/~~ifprevious_album\?~~(.+?)~~fi~~/) { $1 }
573 html.gsub!(/~~previous_album~~/, '')
574 html.gsub!(/~~ifprevious_album\?~~(.+?)~~fi~~/, '')
577 html.gsub!(/~~next_album~~/, '<a href="' + next_album + 'thumbnails.html">' + utf8(_('next album')) + '</a>')
578 html.gsub!(/~~ifnext_album\?~~(.+?)~~fi~~/) { $1 }
580 html.gsub!(/~~next_album~~/, '')
581 html.gsub!(/~~ifnext_album\?~~(.+?)~~fi~~/, '')
588 #- preprocess the path->dir, rexml is very slow with that; we seem to improve speed by 7%
590 $xmldoc.elements.each('//dir') { |elem|
591 optxpath[elem.attributes['path']] = elem
595 if $mode == 'merge_config_onedir'
596 examined_dirs = [ $onedir ]
597 elsif $mode == 'merge_config_subdirs'
598 examined_dirs = `find '#{$onedir}' -type d -follow`.sort.collect { |v| v.chomp }.delete_if { |v| optxpath.has_key?(utf8(v)) }
600 examined_dirs = `find '#{$source}' -type d -follow`.sort.collect { |v| v.chomp }
601 if $mode == 'merge_config'
602 $xmldoc.elements.each('//dir') { |elem|
603 if ! examined_dirs.include?(elem.attributes['path'])
604 msg 2, _("Merging config: removing directory %s from config, isn't on filesystem anymore") % elem.attributes['path']
610 info("directories: #{examined_dirs.length}, sizes: #{$images_size.length}")
612 examined_dirs.each { |dir|
613 if File.basename(dir) =~ /^\./
614 msg 1, _("Ignoring directory %s, begins with a dot (indicating a hidden directory)") % dir
619 die _("Source directory or sub-directories can't contain a single-quote character, sorry: %s") % dir
622 #- place xml document on proper node if exists, else create
623 xmldir = optxpath[utf8(dir)]
624 if $mode == 'use_config' || $mode == 'use_config_changetheme'
625 if !xmldir || (xmldir.attributes['already-generated'] && !$force) || xmldir.attributes['deleted']
626 info("walking: #{dir}|#{$source}, 0 elements")
630 if $mode == 'gen_config' || (($mode == 'merge_config' || $mode == 'merge_config_subdirs') && !xmldir)
631 #- add the <dir..> element if necessary
632 parent = File.dirname(dir)
633 xmldir = $xmldoc.elements["//dir[@path='#{utf8(parent)}']"]
635 xmldir = $xmldoc.root
637 #- need to remove the already-generated mark of the parent because of the sub-albums page containing now one more element
638 xmldir.delete_attribute('already-generated')
639 xmldir = optxpath[utf8(dir)] = xmldir.add_element('dir', { 'path' => utf8(dir) })
642 xmldir.delete_attribute('already-generated')
644 #- read images/videos entries from config or from directories depending on mode
646 if $mode == 'use_config' || $mode == 'use_config_changetheme'
647 msg 2, _("Handling %s from config list...") % dir
648 xmldir.elements.each { |element|
649 if %w(image video).include?(element.name) && !element.attributes['deleted']
650 entries << from_utf8(element.attributes['filename'])
654 msg 2, _("Examining %s...") % dir
655 entries = Dir.entries(dir).sort
656 #- populate config in case of gen_config, add new files in case of merge_config
658 if file =~ /['"\[\]]/
659 msg 1, _("Ignoring %s, contains one of forbidden characters: '\"[]") % "#{dir}/#{file}"
661 type = entry2type(file)
662 if type && !xmldir.elements["#{type}[@filename='#{utf8(file)}']"]
663 xmldir.add_element type, { "filename" => utf8(file), "caption" => $empty_comments ? '' : utf8cut(file.sub(/\.[^\.]+$/, ''), 18) }
667 if $mode != 'gen_config'
668 #- cleanup removed files from config and reread entries from config to get proper ordering
670 xmldir.elements.each { |element|
671 fullpath = "#{dir}/#{from_utf8(element.attributes['filename'])}"
672 if %w(image video).include?(element.name)
673 if !File.readable?(fullpath)
674 msg 1, _("Config merge: removing %s from config; use the backup file to retrieve caption info if this was a mistake") % fullpath
675 xmldir.delete(element)
676 elsif !element.attributes['deleted']
677 entries << from_utf8(element.attributes['filename'])
681 #- if there is no more elements here, there is no album here anymore
682 if !xmldir.child_byname_notattr('image', 'deleted') && !xmldir.child_byname_notattr('video', 'deleted')
683 xmldir.delete_attribute('thumbnails-caption')
684 xmldir.delete_attribute('thumbnails-captionfile')
688 images = entries.find_all { |e| entry2type(e) == 'image' }
689 msg 3, _("\t%s images") % images.length
690 videos = entries.find_all { |e| entry2type(e) == 'video' }
691 msg 3, _("\t%s videos") % videos.length
692 info("walking: #{dir}|#{$source}, #{images.length + videos.length} elements")
694 dest_dir = make_dest_filename(dir.sub(/^#{Regexp.quote($source)}/, $dest))
695 system("mkdir -p '#{dest_dir}'")
697 #- pass through if there are no images and videos
698 if images.size == 0 && videos.size == 0
700 #- cleanup old images/videos, especially if this directory contained images/videos previously.
701 themestuff = Dir.entries("#{$FPATH}/themes/#{$theme}").
702 find_all { |e| !%w(. .. skeleton_image.html skeleton_thumbnails.html skeleton_index.html metadata CVS).include?(e) }
703 if $mode != 'gen_config'
705 if xmldir.attributes['thumbnails-caption']
706 rightful_images << 'thumbnails-thumbnail.jpg'
708 xmldir.elements.each('dir') { |child|
709 if child.attributes['deleted']
712 subdir = make_dest_filename(from_utf8(File.basename(child.attributes['path'])))
713 rightful_images << "thumbnails-#{subdir}.jpg"
715 to_del = Dir.entries(dest_dir).find_all { |e| !File.directory?("#{dest_dir}/#{e}") && !rightful_images.include?(e) } - themestuff
717 system("rm -f " + to_del.collect { |e| "#{dest_dir}/#{e}" }.join(' '))
721 #- copy any resource file that goes with the theme (css, images..)
722 themestuff.each { |entry|
723 if !File.exists?("#{dest_dir}/#{entry}")
724 psys("cp '#{$FPATH}/themes/#{$theme}/#{entry}' '#{dest_dir}'")
731 msg 2, _("Outputting in %s...") % dest_dir
733 #- populate data structure with sizes from theme
734 for sizeobj in $images_size
735 fullscreen_images ||= {}
736 fullscreen_images[sizeobj['name']] = []
737 thumbnail_images ||= {}
738 thumbnail_images[sizeobj['name']] = []
739 thumbnail_videos ||= {}
740 thumbnail_videos[sizeobj['name']] = []
742 #- a special dummy size to keep 'references' to thumbnails in case of panorama, because the GUI will use the regular thumbnails
743 thumbnail_images['dont-delete-file-for-gui'] = []
744 if $limit_sizes =~ /original/
745 fullscreen_images['original'] = []
748 images.size >= 1 and msg 3, _("\tcreating images thumbnails...")
750 #- create thumbnails for images
752 info("processing element")
753 base_dest_img = dest_dir + '/' + make_dest_filename(img.sub(/\.[^\.]+$/, ''))
755 thumbnail_dest_img = base_dest_img + "-#{$default_size['thumbnails']}.jpg"
756 gen_thumbnails_element("#{dir}/#{img}", xmldir, true, [ { 'filename' => thumbnail_dest_img, 'size' => $default_size['thumbnails'] } ])
759 elem = xmldir.elements["image[@filename='#{utf8(img)}']"]
760 for sizeobj in $images_size
761 size_fullscreen = sizeobj['fullscreen']
762 size_thumbnails = sizeobj['thumbnails']
763 fullscreen_dest_img = base_dest_img + "-#{size_fullscreen}.jpg"
764 fullscreen_images[sizeobj['name']] << File.basename(fullscreen_dest_img)
765 todo << { 'filename' => fullscreen_dest_img, 'size' => size_fullscreen }
766 if pano = pano_amount(elem)
767 thumbnail_images['dont-delete-file-for-gui'] << File.basename(base_dest_img + "-#{size_thumbnails}.jpg")
768 size_thumbnails = size_thumbnails.sub(/(\d+)/) { ($1.to_i * pano).to_i }
770 thumbnail_dest_img = base_dest_img + "-#{size_thumbnails}.jpg"
771 thumbnail_images[sizeobj['name']] << File.basename(thumbnail_dest_img)
772 todo << { 'filename' => thumbnail_dest_img, 'size' => size_thumbnails }
774 gen_thumbnails_element("#{dir}/#{img}", xmldir, true, todo)
775 if $limit_sizes =~ /original/
776 fullscreen_images['original'] << img
778 destimg = "#{dest_dir}/#{img}"
779 if $limit_sizes =~ /original/ && !File.exists?(destimg)
781 if ! sys("ln '#{dir}/#{img}' '#{destimg}'")
782 $hardlinks_ok = false
786 psys("cp '#{dir}/#{img}' '#{destimg}'")
792 videos.size >= 1 and msg 3, _("\tcreating videos thumbnails...")
794 #- create thumbnails for videos
795 videos.each { |video|
796 info("processing element")
798 thumbnail_dest_img = dest_dir + '/' + make_dest_filename(video.sub(/\.[^\.]+$/, '')) + "-#{$default_size['thumbnails']}.jpg"
799 gen_thumbnails_element("#{dir}/#{video}", xmldir, true, [ { 'filename' => thumbnail_dest_img, 'size' => $default_size['thumbnails'] } ])
802 for sizeobj in $images_size
803 size_thumbnails = sizeobj['thumbnails']
804 thumbnail_dest_img = dest_dir + '/' + make_dest_filename(video.sub(/\.[^\.]+$/, '')) + "-#{size_thumbnails}.jpg"
805 thumbnail_videos[sizeobj['name']] << File.basename(thumbnail_dest_img)
806 todo << { 'filename' => thumbnail_dest_img, 'size' => size_thumbnails }
808 gen_thumbnails_element("#{dir}/#{video}", xmldir, true, todo)
810 destvideo = "#{dest_dir}/#{video}"
811 if !File.exists?(destvideo)
813 if ! sys("ln '#{dir}/#{video}' '#{destvideo}'")
814 $hardlinks_ok = false
818 psys("cp '#{dir}/#{video}' '#{destvideo}'")
824 themestuff = Dir.entries("#{$FPATH}/themes/#{$theme}").
825 find_all { |e| !%w(. .. skeleton_image.html skeleton_thumbnails.html skeleton_index.html metadata CVS).include?(e) }
827 #- cleanup old images/videos (for when removing elements or sizes)
828 all_elements = fullscreen_images.collect { |e| e[1] }.flatten.
829 concat(thumbnail_images.collect { |e| e[1] }.flatten).
830 concat(thumbnail_videos.collect { |e| e[1] }.flatten).
832 to_del = Dir.entries(dest_dir).find_all { |e| !File.directory?("#{dest_dir}/#{e}") && !all_elements.include?(e) && e !~ /^thumbnails-\w+\.jpg/ } - themestuff
834 msg 3, _("\tcleaning up: #{to_del.join(', ')}")
835 system("rm -f " + to_del.collect { |e| "#{dest_dir}/#{e}" }.join(' '))
838 #- copy any resource file that goes with the theme (css, images..)
839 themestuff.each { |entry|
840 if !File.exists?("#{dest_dir}/#{entry}")
841 psys("cp '#{$FPATH}/themes/#{$theme}/#{entry}' '#{dest_dir}'")
845 #- generate .htaccess file if needed
846 if auth_user_file = xmldir.attributes['password-protect']
847 msg 3, _("\tgenerating password protection file #{dest_dir}/.htaccess")
848 ios = File.open("#{dest_dir}/.htaccess", "w")
849 ios.write("AuthType Basic\nAuthName \"protected area\"\nAuthUserFile #{auth_user_file}\nrequire valid-user\n")
853 msg 3, _("\tgenerating HTML pages...")
855 #- generate thumbnails.html (page with thumbnails)
856 for sizeobj in $images_size
857 info("processing size")
858 html = $html_thumbnails.collect { |l| l.clone }
861 i.sub!(/~~run_slideshow~~/, images.size <= 1 ? '' : '<a href="image-' + size2js(sizeobj['name']) + '.html#run_slideshow=1">' + utf8(_('Run slideshow!'))+'</a>')
862 i.sub!(/~~title~~/, xmldir.attributes['thumbnails-caption'] || utf8(File.basename(dir)))
863 substitute_html_sizes(i, sizeobj, 'thumbnails')
864 discover_iterations(iterations, i)
867 reset_iterations(iterations)
869 type = images.include?(file) ? 'image' : videos.include?(file) ? 'video' : nil
871 if type == 'image' && elem = xmldir.elements["image[@filename='#{utf8(file)}']"]
872 if pano = pano_amount(elem)
873 html_thumbnails += run_iterations(iterations, pano)
874 html_thumbnails.gsub!(/~~colspan~~/) { 'colspan="' + pano.ceil.to_s + '"' }
876 html_thumbnails += run_iterations(iterations, 1)
877 html_thumbnails.gsub!(/~~colspan~~/, '')
880 html_thumbnails += run_iterations(iterations, 1)
881 html_thumbnails.gsub!(/~~colspan~~/, '')
884 index = images.index(file)
885 html_thumbnails.gsub!(/~~image_iteration~~/,
886 '<a href="image-' + size2js(sizeobj['name']) + '.html#current=' + fullscreen_images[sizeobj['name']][index] +
887 '" name="' + fullscreen_images[sizeobj['name']][index] + '">' +
888 img_element("#{dest_dir}/#{thumbnail_images[sizeobj['name']][index]}") + '</a>')
889 html_thumbnails.gsub!(/~~caption_iteration~~/,
890 find_caption_value(xmldir, images[index]) || utf8(images[index]))
891 html_thumbnails.gsub!(/~~ifimage\?~~(.+?)~~fi~~/) { $1 }
892 html_thumbnails.gsub!(/~~ifvideo\?~~(.+?)~~fi~~/, '')
893 elsif type == 'video'
894 index = videos.index(file)
895 if File.exists?("#{dest_dir}/#{thumbnail_videos[sizeobj['name']][index]}")
896 html_thumbnails.gsub!(/~~image_iteration~~/,
897 '<a href="' + videos[index] + '">' + img_element("#{dest_dir}/#{thumbnail_videos[sizeobj['name']][index]}") + '</a>')
899 html_thumbnails.gsub!(/~~image_iteration~~/,
900 '<a href="' + videos[index] + '">' + utf8(_("(no preview)")) + '</a>')
902 html_thumbnails.gsub!(/~~caption_iteration~~/,
903 find_caption_value(xmldir, videos[index]) || utf8(videos[index]))
904 html_thumbnails.gsub!(/~~ifimage\?~~(.+?)~~fi~~/, '')
905 html_thumbnails.gsub!(/~~ifvideo\?~~(.+?)~~fi~~/) { $1 }
909 html_thumbnails += close_iterations(iterations)
911 i.sub!(/~~thumbnails~~/, html_thumbnails)
912 i.gsub!(/~~theme~~/, $theme)
913 i.gsub!(/~~current_size~~/, sizeobj['name'])
914 i.gsub!(/~~current_size_js~~/, size2js(sizeobj['name']))
915 i.gsub!(/~~madewith~~/, $madewith || '')
917 ios = File.open("#{dest_dir}/thumbnails-#{size2js(sizeobj['name'])}.html", "w")
922 info("finished processing sizes")
924 #- generate "main" thumbnails.html page that will reload to correct size thanks to cookie
925 ios = File.open("#{dest_dir}/thumbnails.html", "w")
926 ios.write(html_reload_to_thumbnails)
929 #- generate image.html (page with fullscreen images)
931 captions4js = find_captions(xmldir, images).collect { |e| e ? '"' + e.gsub('"', '\"') + '"' : '""' }.join(', ')
933 for sizeobj in $images_size
934 html = $html_images.collect { |l| l.clone }
935 images4js = fullscreen_images[sizeobj['name']].collect { |e| "\"#{e}\"" }.join(', ')
938 for sizeobj2 in all_images_sizes
939 if sizeobj != sizeobj2
940 otherimages4js += "var images_#{size2js(sizeobj2['name'])} = new Array(" + fullscreen_images[sizeobj2['name']].collect { |e| "\"#{e}\"" }.join(', ') + ")\n"
941 othersizes << "\"#{size2js(sizeobj2['name'])}\""
945 i.gsub!(/~~images~~/, images4js)
946 i.gsub!(/~~other_images~~/, otherimages4js)
947 i.gsub!(/~~other_sizes~~/, othersizes.join(', '))
948 i.gsub!(/~~captions~~/, captions4js)
949 i.gsub!(/~~title~~/, xmldir.attributes['thumbnails-caption'] || utf8(File.basename(dir)))
950 i.gsub!(/~~thumbnails~~/, '<a href="thumbnails-' + size2js(sizeobj['name']) + '.html" id="thumbnails">' + utf8(_('return to thumbnails')) + '</a>')
951 i.gsub!(/~~theme~~/, $theme)
952 i.gsub!(/~~current_size~~/, size2js(sizeobj['name']))
953 i.gsub!(/~~madewith~~/, $madewith || '')
954 substitute_html_sizes(i, sizeobj, 'image')
956 ios = File.open("#{dest_dir}/image-#{size2js(sizeobj['name'])}.html", "w")
966 #- add attributes to <dir..> elements needing so
967 if $mode != 'use_config'
968 msg 3, _("\tfixating configuration file...")
969 $xmldoc.elements.each('//dir') { |element|
970 path = captionpath = element.attributes['path']
971 descendant_element = element.elements['descendant::image'] || element.elements['descendant::video']
972 if !descendant_element
973 msg 3, _("\t\tremoving %s, no element in it") % path
974 element.remove #- means we have a directory with nothing interesting in it
976 captionfile = "#{descendant_element.parent.attributes['path']}/#{descendant_element.attributes['filename']}"
977 basename = File.basename(path)
978 if element.elements['dir']
979 if !element.attributes['subdirs-caption']
980 element.add_attribute('subdirs-caption', basename)
982 if !element.attributes['subdirs-captionfile']
983 element.add_attribute('subdirs-captionfile', captionfile)
986 if element.child_byname_notattr('image', 'deleted') || element.child_byname_notattr('video', 'deleted')
987 if !element.attributes['thumbnails-caption']
988 element.add_attribute('thumbnails-caption', basename)
990 if !element.attributes['thumbnails-captionfile']
991 element.add_attribute('thumbnails-captionfile', captionfile)
998 #- write down to disk config if necessary
1000 ios = File.open($config_writeto, "w")
1001 $xmldoc.write(ios, 0)
1006 msg 3, _(" completed necessary stuff for GUI, exiting.")
1010 #- second pass to create index.html files and previous/next links
1011 info("creating index.html")
1012 msg 3, _("\trescanning directories to generate all 'index.html' files...")
1014 #- recompute the memoization because elements mights have been removed (the ones with no element in them)
1016 $xmldoc.elements.each('//dir') { |elem|
1017 optxpath[elem.attributes['path']] = elem
1020 examined_dirs.each { |dir|
1021 info("index.html: #{dir}|#{$source}")
1023 xmldir = optxpath[utf8(dir)]
1024 if !xmldir || (xmldir.attributes['already-generated'] && !$force) || xmldir.attributes['deleted']
1027 dest_dir = make_dest_filename(dir.sub(/^#{Regexp.quote($source)}/, $dest))
1029 previous_album = find_previous_album(xmldir)
1030 next_album = find_next_album(xmldir)
1032 if xmldir.elements['dir']
1033 html = $html_index.collect { |l| l.clone }
1036 caption = xmldir.attributes['subdirs-caption']
1037 i.gsub!(/~~title~~/, caption)
1038 if xmldir.parent.name == 'dir'
1041 parent = xmldir.parent
1042 while parent.name == 'dir'
1043 parentcaption = parent.attributes['subdirs-caption']
1044 nav = "<a href='#{path}/index.html'>#{parentcaption}</a> #{utf8(_(" > "))} #{nav}"
1046 parent = parent.parent
1048 i.gsub!(/~~ifnavigation\?~~(.+?)~~fi~~/) { $1 }
1049 i.gsub!(/~~navigation~~/, nav + caption)
1051 i.gsub!(/~~ifnavigation\?~~(.+?)~~fi~~/, '')
1053 discover_iterations(iterations, i)
1057 reset_iterations(iterations)
1059 #- deal with "current" album (directs to "thumbnails" page)
1060 if xmldir.attributes['thumbnails-caption']
1061 thumbnail = "#{dest_dir}/thumbnails-thumbnail.jpg"
1062 gen_thumbnails_subdir(from_utf8(xmldir.attributes['thumbnails-captionfile']), xmldir, false,
1063 [ { 'filename' => thumbnail, 'size' => $albums_thumbnail_size } ], 'thumbnails')
1064 html_index += run_iterations(iterations, 1)
1065 html_index.gsub!(/~~image_iteration~~/, "<a href='thumbnails.html'>" + img_element(thumbnail) + '</a>')
1066 html_index.gsub!(/~~caption_iteration~~/, xmldir.attributes['thumbnails-caption'])
1069 #- deal with sub-albums (direct to subdirs/index.html pages)
1070 xmldir.elements.each('dir') { |child|
1071 if child.attributes['deleted']
1074 subdir = make_dest_filename(from_utf8(File.basename(child.attributes['path'])))
1075 thumbnail = "#{dest_dir}/thumbnails-#{subdir}.jpg"
1076 html_index += run_iterations(iterations, 1)
1077 captionfile, caption = find_subalbum_caption_info(child)
1078 gen_thumbnails_subdir(captionfile, child, false,
1079 [ { 'filename' => thumbnail, 'size' => $albums_thumbnail_size } ], find_subalbum_info_type(child))
1080 html_index.gsub!(/~~caption_iteration~~/, caption)
1081 html_index.gsub!(/~~image_iteration~~/, "<a href='#{make_dest_filename(subdir)}/index.html'>" + img_element(thumbnail) + '</a>')
1084 html_index += close_iterations(iterations)
1087 i.gsub!(/~~thumbnails~~/, html_index)
1088 i.gsub!(/~~madewith~~/, $madewith || '')
1092 html = html_reload_to_thumbnails
1095 ios = File.open("#{dest_dir}/index.html", "w")
1099 #- substitute "return to albums" and previous/next correctly
1100 if xmldir.child_byname_notattr('image', 'deleted') || xmldir.child_byname_notattr('video', 'deleted')
1101 for sizeobj in $images_size
1102 substInFile("#{dest_dir}/thumbnails-#{size2js(sizeobj['name'])}.html") { |line|
1103 sub_previous_next_album(previous_album, next_album, line)
1104 if xmldir.elements['dir']
1105 line.sub!(/~~return_to_albums~~/, '<a href="index.html">' + utf8(_('return to albums')) + '</a>')
1107 if xmldir.parent.name == 'dir'
1108 line.sub!(/~~return_to_albums~~/, '<a href="../index.html">' + utf8(_('return to albums')) + '</a>')
1110 line.sub!(/~~return_to_albums~~/, '')
1115 if xmldir.child_byname_notattr('image', 'deleted')
1116 substInFile("#{dest_dir}/image-#{size2js(sizeobj['name'])}.html") { |line|
1117 sub_previous_next_album(previous_album, next_album, line)
1124 msg 3, _(" all done.")
1131 build_html_skeletons