These past few days I was working on the Cool Cavemen’s photo gallery to move it to a shiny new one, powered by Zenphoto. In this post I will roughly describe how I’ve done it, code and commands included.
The old gallery was based on autogallery, a e107 plugin. We assume here that both e107 and Zenphoto are well configured and installed at the root of you web hosting space (/www in this case).
The first step is to copy the autogallery album structure, with all its content, to Zenphoto:
1$ cd /www2$ cp -ax ./e107_plugins/autogallery/Gallery/* ./zenphoto/albums/
Then we delete all previews, thumbnails and XML metadatas, to keep in Zenphoto original assets only:
1$ find ./zenphoto/albums/ -iname "*.xml" | xargs rm -f2$ find ./zenphoto/albums/ -iname "pv_*" | xargs rm -f3$ find ./zenphoto/albums/ -iname "th_*" | xargs rm -f
By now, you should be able to play with your medias using Zenphoto’s admin interface.
But if you’re unlucky as I was, you will find a strange bug which break down drag’n’drop album sorting. The fix I found was to remove, in photo filenames, the numerical prefix (and the following dot) set by autogallery to define the sort order. This operation should be performed, before the copy from autogallery to Zenphoto (= the first command in this post). By the way, if you know a one-liner to do this, please, please… share! :)
To migrate comments, I have no automatic solution. I choose to do this manually, editing the database by hand. In my case it was the quickest way as I only had a dozen of comments to migrate.
And last but not least, if you care about measuring the popularity of your photos, you should consider migrating the view counter associated with each of your media. Don’t worry, this time I wrote a script to take care of it automagically. It will generate a bunch of SQL statements you’ll have to execute on your Zenphoto MySQL database. Here is my “e107 autogallery to Zenphoto hit counter migration script” (nice name isn’t it? ;) ) that do the job:
1#!/usr/bin/python23##############################################################################4#5# Copyright (C) 2008 Kevin Deldycke <[email protected]>6#7# This program is Free Software; you can redistribute it and/or8# modify it under the terms of the GNU General Public License9# as published by the Free Software Foundation; either version 210# of the License, or (at your option) any later version.11#12# This program is distributed in the hope that it will be useful,13# but WITHOUT ANY WARRANTY; without even the implied warranty of14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15# GNU General Public License for more details.16#17# You should have received a copy of the GNU General Public License18# along with this program; if not, write to the Free Software19# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.20#21##############################################################################2223"""24Last update: 2008 aug 2125"""2627########### User config ###########2829AUTOGALLERY_ALBUM_PATH = "/www/e107_plugins/autogallery/Gallery"30ZENPHOTO_ALBUM_PATH = "/www/zenphoto/albums"31ZENPHOTO_TABLE_PREFIX = "zenphoto_"3233######## End of user config #######3435import os, hashlib36import xml.etree.ElementTree as ET3738# Calculate hash of a given file39def getHash(path):40# Calculate the hash from file raw data41if not os.path.isfile(path):42return None43try:44file_object = open(path, 'r')45data = file_object.read()46except:47return None48if not len(data):49return None50return hashlib.sha224(data).hexdigest()5152# Associate each autogallery photo having a hitcounter greater than 0 with its MD5 hash53def populateHashTable(arg, dirname, names):54global hash_table55for name in names:56file_path = os.path.join(dirname, name)57# print "Get hit count for %s" % file_path58# Check that the file as a positive hit counter associated with59xml_file_path = "%s.xml" % file_path60if not os.path.isfile(xml_file_path):61continue62try:63tree = ET.parse(xml_file_path)64except:65continue66node = tree.find("viewhits")67if node is None:68continue69try:70hits = int(node.text)71except:72continue73if not hits > 0:74continue75# Update hash table with data we care about76file_hash = getHash(file_path)77if file_hash is None:78continue79hash_table[file_hash] = hits + hash_table.get(file_hash, 0)8081# Generate hitcount SQL request for each matching file82def generateSQL(arg, dirname, names):83global sql84for name in names:85file_path = os.path.join(dirname, name)86# print "Search hitcounter matching file %s" % file_path87file_hash = getHash(file_path)88if file_hash is None:89continue90if file_hash in hash_table:91sql += "UPDATE `%simages` SET `hitcounter`=`hitcounter`+%d WHERE `filename`=%r;\n" % (ZENPHOTO_TABLE_PREFIX, hash_table[file_hash], name)9293# Core of the script94hash_table = {}95sql = ""96# Normalize path97source_path = os.path.abspath(AUTOGALLERY_ALBUM_PATH)98dest_path = os.path.abspath(ZENPHOTO_ALBUM_PATH)99100os.path.walk(source_path, populateHashTable, None)101# print repr(hash_table)102os.path.walk(dest_path, generateSQL, None)103print sql
I think code and comments are self-explanatory. And do not forget to update constants at the top of the script to match your installation paths and database’s tables prefix.
And finally, for your information, I tested all of this on following versions:
e107 0.7.11
autogallery 2.61
Zenphoto 1.2
Python 2.5.2
Linux server