source: documentViewer/documentViewer.py @ 203:1737b7eb7945

Last change on this file since 203:1737b7eb7945 was 203:1737b7eb7945, checked in by abukhman, 14 years ago

* empty log message *

File size: 31.7 KB
Line 
1
2from OFS.Folder import Folder
3from Products.PageTemplates.ZopePageTemplate import ZopePageTemplate
4from Products.PageTemplates.PageTemplateFile import PageTemplateFile
5from AccessControl import ClassSecurityInfo
6from AccessControl import getSecurityManager
7from Globals import package_home
8
9from Ft.Xml import EMPTY_NAMESPACE, Parse
10import Ft.Xml.Domlette
11import os.path
12import sys
13import urllib
14import urllib2
15import logging
16import math
17import urlparse 
18import cStringIO
19import re
20
21def logger(txt,method,txt2):
22    """logging"""
23    logging.info(txt+ txt2)
24   
25   
26def getInt(number, default=0):
27    """returns always an int (0 in case of problems)"""
28    try:
29        return int(number)
30    except:
31        return int(default)
32
33def getTextFromNode(nodename):
34    """get the cdata content of a node"""
35    if nodename is None:
36        return ""
37    nodelist=nodename.childNodes
38    rc = ""
39    for node in nodelist:
40        if node.nodeType == node.TEXT_NODE:
41           rc = rc + node.data
42    return rc
43
44def serializeNode(node, encoding='utf-8'):
45    """returns a string containing node as XML"""
46    buf = cStringIO.StringIO()
47    Ft.Xml.Domlette.Print(node, stream=buf, encoding=encoding)
48    s = buf.getvalue()
49    buf.close()
50    return s
51
52       
53def getParentDir(path):
54    """returns pathname shortened by one"""
55    return '/'.join(path.split('/')[0:-1])
56       
57
58def getHttpData(url, data=None, num_tries=3, timeout=10):
59    """returns result from url+data HTTP request"""
60    # we do GET (by appending data to url)
61    if isinstance(data, str) or isinstance(data, unicode):
62        # if data is string then append
63        url = "%s?%s"%(url,data)
64    elif isinstance(data, dict) or isinstance(data, list) or isinstance(data, tuple):
65        # urlencode
66        url = "%s?%s"%(url,urllib.urlencode(data))
67   
68    response = None
69    errmsg = None
70    for cnt in range(num_tries):
71        try:
72            logging.debug("getHttpData(#%s %ss) url=%s"%(cnt+1,timeout,url))
73            if sys.version_info < (2, 6):
74                # set timeout on socket -- ugly :-(
75                import socket
76                socket.setdefaulttimeout(float(timeout))
77                response = urllib2.urlopen(url)
78            else:
79                response = urllib2.urlopen(url,timeout=float(timeout))
80            # check result?
81            break
82        except urllib2.HTTPError, e:
83            logging.error("getHttpData: HTTP error(%s): %s"%(e.code,e))
84            errmsg = str(e)
85            # stop trying
86            break
87        except urllib2.URLError, e:
88            logging.error("getHttpData: URLLIB error(%s): %s"%(e.reason,e))
89            errmsg = str(e)
90            # stop trying
91            #break
92
93    if response is not None:
94        data = response.read()
95        response.close()
96        return data
97   
98    raise IOError("ERROR fetching HTTP data from %s: %s"%(url,errmsg))
99    #return None
100
101
102
103##
104## documentViewer class
105##
106class documentViewer(Folder):
107    """document viewer"""
108    meta_type="Document viewer"
109   
110    security=ClassSecurityInfo()
111    manage_options=Folder.manage_options+(
112        {'label':'main config','action':'changeDocumentViewerForm'},
113        )
114
115    # templates and forms
116    viewer_main = PageTemplateFile('zpt/viewer_main', globals())
117    toc_thumbs = PageTemplateFile('zpt/toc_thumbs', globals())
118    toc_text = PageTemplateFile('zpt/toc_text', globals())
119    toc_figures = PageTemplateFile('zpt/toc_figures', globals())
120    page_main_images = PageTemplateFile('zpt/page_main_images', globals())
121    page_main_text = PageTemplateFile('zpt/page_main_text', globals())
122    page_main_text_dict = PageTemplateFile('zpt/page_main_text_dict', globals())
123    page_main_gis =PageTemplateFile ('zpt/page_main_gis', globals())
124    page_main_xml = PageTemplateFile('zpt/page_main_xml', globals())
125    head_main = PageTemplateFile('zpt/head_main', globals())
126    docuviewer_css = PageTemplateFile('css/docuviewer.css', globals())
127    info_xml = PageTemplateFile('zpt/info_xml', globals())
128   
129   
130    thumbs_main_rss = PageTemplateFile('zpt/thumbs_main_rss', globals())
131    security.declareProtected('View management screens','changeDocumentViewerForm')   
132    changeDocumentViewerForm = PageTemplateFile('zpt/changeDocumentViewer', globals())
133
134   
135    def __init__(self,id,imageScalerUrl=None,textServerName=None,title="",digilibBaseUrl=None,thumbcols=2,thumbrows=5,authgroups="mpiwg"):
136        """init document viewer"""
137        self.id=id
138        self.title=title
139        self.thumbcols = thumbcols
140        self.thumbrows = thumbrows
141        # authgroups is list of authorized groups (delimited by ,)
142        self.authgroups = [s.strip().lower() for s in authgroups.split(',')]
143        # create template folder so we can always use template.something
144       
145        templateFolder = Folder('template')
146        #self['template'] = templateFolder # Zope-2.12 style
147        self._setObject('template',templateFolder) # old style
148        try:
149            import MpdlXmlTextServer
150            textServer = MpdlXmlTextServer.MpdlXmlTextServer(id='fulltextclient',serverName=textServerName)
151            #templateFolder['fulltextclient'] = xmlRpcClient
152            templateFolder._setObject('fulltextclient',textServer)
153        except Exception, e:
154            logging.error("Unable to create MpdlXmlTextServer for fulltextclient: "+str(e))
155        try:
156            from Products.zogiLib.zogiLib import zogiLib
157            zogilib = zogiLib(id="zogilib", title="zogilib for docuviewer", dlServerURL=imageScalerUrl, layout="book")
158            #templateFolder['zogilib'] = zogilib
159            templateFolder._setObject('zogilib',zogilib)
160        except Exception, e:
161            logging.error("Unable to create zogiLib for zogilib: "+str(e))
162       
163       
164    # proxy text server methods to fulltextclient
165    def getTextPage(self, **args):
166        """get page"""
167        return self.template.fulltextclient.getTextPage(**args)
168
169    def getQuery(self, **args):
170        """get query"""
171        return self.template.fulltextclient.getQuery(**args)
172
173    def getSearch(self, **args):
174        """get search"""
175        return self.template.fulltextclient.getSearch(**args)
176
177    def getNumPages(self, docinfo):
178        """get numpages"""
179        return self.template.fulltextclient.getNumPages(docinfo)
180   
181    def getNumTextPages(self, docinfo):
182        """get numpages text"""
183        return self.template.fulltextclient.getNumTextPages(docinfo)
184   
185    def getTranslate(self, **args):
186        """get translate"""
187        return self.template.fulltextclient.getTranslate(**args)
188
189    def getLemma(self, **args):
190        """get lemma"""
191        return self.template.fulltextclient.getLemma(**args)
192
193    def getToc(self, **args):
194        """get toc"""
195        return self.template.fulltextclient.getToc(**args)
196
197    def getTocPage(self, **args):
198        """get tocpage"""
199        return self.template.fulltextclient.getTocPage(**args)
200
201   
202    security.declareProtected('View','thumbs_rss')
203    def thumbs_rss(self,mode,url,viewMode="auto",start=None,pn=1):
204        '''
205        view it
206        @param mode: defines how to access the document behind url
207        @param url: url which contains display information
208        @param viewMode: if images display images, if text display text, default is images (text,images or auto)
209       
210        '''
211        logging.debug("HHHHHHHHHHHHHH:load the rss")
212        logger("documentViewer (index)", logging.INFO, "mode: %s url:%s start:%s pn:%s"%(mode,url,start,pn))
213       
214        if not hasattr(self, 'template'):
215            # create template folder if it doesn't exist
216            self.manage_addFolder('template')
217           
218        if not self.digilibBaseUrl:
219            self.digilibBaseUrl = self.findDigilibUrl() or "http://nausikaa.mpiwg-berlin.mpg.de/digitallibrary"
220           
221        docinfo = self.getDocinfo(mode=mode,url=url)
222        pageinfo = self.getPageinfo(start=start,current=pn,docinfo=docinfo)
223        pt = getattr(self.template, 'thumbs_main_rss')
224       
225        if viewMode=="auto": # automodus gewaehlt
226            if docinfo.has_key("textURL") or docinfo.has_key('textURLPath'): #texturl gesetzt und textViewer konfiguriert
227                viewMode="text"
228            else:
229                viewMode="images"
230               
231        return pt(docinfo=docinfo,pageinfo=pageinfo,viewMode=viewMode)
232 
233    security.declareProtected('View','index_html')
234    def index_html(self,url,mode="texttool",viewMode="auto",tocMode="thumbs",start=None,pn=1,mk=None, query=None, querySearch=None, characterNormalization=""):
235        '''
236        view it
237        @param mode: defines how to access the document behind url
238        @param url: url which contains display information
239        @param viewMode: if images display images, if text display text, default is auto (text,images or auto)
240        @param tocMode: type of 'table of contents' for navigation (thumbs, text, figures, none)
241        @param characterNormalization type of text display (reg, norm, none)
242        @param querySearch: type of different search modes (fulltext, fulltextMorph, xpath, xquery, ftIndex, ftIndexMorph, fulltextMorphLemma)
243        '''
244       
245        logging.debug("documentViewer (index) mode: %s url:%s start:%s pn:%s"%(mode,url,start,pn))
246       
247        if not hasattr(self, 'template'):
248            # this won't work
249            logging.error("template folder missing!")
250            return "ERROR: template folder missing!"
251           
252        if not getattr(self, 'digilibBaseUrl', None):
253            self.digilibBaseUrl = self.findDigilibUrl() or "http://digilib.mpiwg-berlin.mpg.de/digitallibrary"
254           
255        docinfo = self.getDocinfo(mode=mode,url=url)
256       
257        if tocMode != "thumbs":
258            # get table of contents
259            docinfo = self.getToc(mode=tocMode, docinfo=docinfo)
260           
261        if viewMode=="auto": # automodus gewaehlt
262            if docinfo.has_key('textURL') or docinfo.has_key('textURLPath'): #texturl gesetzt und textViewer konfiguriert
263                viewMode="text_dict"
264            else:
265                viewMode="images"
266               
267        pageinfo = self.getPageinfo(start=start,current=pn,docinfo=docinfo,viewMode=viewMode,tocMode=tocMode)
268       
269        pt = getattr(self.template, 'viewer_main')               
270        return pt(docinfo=docinfo,pageinfo=pageinfo,viewMode=viewMode,mk=self.generateMarks(mk))
271 
272    def generateMarks(self,mk):
273        ret=""
274        if mk is None:
275            return ""
276        if not isinstance(mk, list):
277            mk=[mk]
278        for m in mk:
279            ret+="mk=%s"%m
280        return ret
281
282
283    def findDigilibUrl(self):
284        """try to get the digilib URL from zogilib"""
285        url = self.template.zogilib.getDLBaseUrl()
286        return url
287
288    def getDocumentViewerURL(self):
289        """returns the URL of this instance"""
290        return self.absolute_url()
291   
292    def getStyle(self, idx, selected, style=""):
293        """returns a string with the given style and append 'sel' if path == selected."""
294        #logger("documentViewer (getstyle)", logging.INFO, "idx: %s selected: %s style: %s"%(idx,selected,style))
295        if idx == selected:
296            return style + 'sel'
297        else:
298            return style
299   
300    def getLink(self,param=None,val=None):
301        """link to documentviewer with parameter param set to val"""
302        params=self.REQUEST.form.copy()
303        if param is not None:
304            if val is None:
305                if params.has_key(param):
306                    del params[param]
307            else:
308                params[param] = str(val)
309               
310        if params.get("mode", None) == "filepath": #wenn beim erst Aufruf filepath gesetzt wurde aendere das nun zu imagepath
311                params["mode"] = "imagepath"
312                params["url"] = getParentDir(params["url"])
313               
314        # quote values and assemble into query string
315        #ps = "&".join(["%s=%s"%(k,urllib.quote(v)) for (k, v) in params.items()])
316        ps = urllib.urlencode(params)
317        url=self.REQUEST['URL1']+"?"+ps
318        return url
319
320    def getLinkAmp(self,param=None,val=None):
321        """link to documentviewer with parameter param set to val"""
322        params=self.REQUEST.form.copy()
323        if param is not None:
324            if val is None:
325                if params.has_key(param):
326                    del params[param]
327            else:
328                params[param] = str(val)
329               
330        # quote values and assemble into query string
331        logging.debug("XYXXXXX: %s"%repr(params.items()))
332        ps = "&amp;".join(["%s=%s"%(k,urllib.quote(v)) for (k, v) in params.items()])
333        url=self.REQUEST['URL1']+"?"+ps
334        return url
335   
336    def getInfo_xml(self,url,mode):
337        """returns info about the document as XML"""
338
339        if not self.digilibBaseUrl:
340            self.digilibBaseUrl = self.findDigilibUrl() or "http://nausikaa.mpiwg-berlin.mpg.de/digitallibrary"
341       
342        docinfo = self.getDocinfo(mode=mode,url=url)
343        pt = getattr(self.template, 'info_xml')
344        return pt(docinfo=docinfo)
345
346   
347    def isAccessible(self, docinfo):
348        """returns if access to the resource is granted"""
349        access = docinfo.get('accessType', None)
350        logging.debug("documentViewer (accessOK) access type %s"%access)
351        if access is not None and access == 'free':
352            logging.debug("documentViewer (accessOK) access is free")
353            return True
354        elif access is None or access in self.authgroups:
355            # only local access -- only logged in users
356            user = getSecurityManager().getUser()
357            logging.debug("documentViewer (accessOK) user=%s ip=%s"%(user,self.REQUEST.getClientAddr()))
358            if user is not None:
359                #print "user: ", user
360                return (user.getUserName() != "Anonymous User")
361            else:
362                return False
363       
364        logging.error("documentViewer (accessOK) unknown access type %s"%access)
365        return False
366   
367               
368    def getDirinfoFromDigilib(self,path,docinfo=None,cut=0):
369        """gibt param von dlInfo aus"""
370        if docinfo is None:
371            docinfo = {}
372       
373        for x in range(cut):
374               
375                path=getParentDir(path)
376       
377        infoUrl=self.digilibBaseUrl+"/dirInfo-xml.jsp?mo=dir&fn="+path
378   
379        logging.debug("documentViewer (getparamfromdigilib) dirInfo from %s"%(infoUrl))
380       
381        txt = getHttpData(infoUrl)
382        if txt is None:
383            raise IOError("Unable to get dir-info from %s"%(infoUrl))
384
385        dom = Parse(txt)
386        sizes=dom.xpath("//dir/size")
387        logging.debug("documentViewer (getparamfromdigilib) dirInfo:size"%sizes)
388       
389        if sizes:
390            docinfo['numPages'] = int(getTextFromNode(sizes[0]))
391        else:
392            docinfo['numPages'] = 0
393           
394        # TODO: produce and keep list of image names and numbers
395                       
396        return docinfo
397   
398    def getIndexMetaPath(self,url):
399        """gib nur den Pfad zurueck"""
400        regexp = re.compile(r".*(experimental|permanent)/(.*)")
401        regpath = regexp.match(url)
402        if (regpath==None):
403            return ""
404                     
405        return ("/mpiwg/online/"+regpath.group(1)+"/"+regpath.group(2))
406     
407    def getIndexMetaUrl(self,url):
408        """returns utr  of index.meta document at url"""
409     
410        metaUrl = None
411        if url.startswith("http://"):
412            # real URL
413            metaUrl = url
414        else:
415            # online path
416            server=self.digilibBaseUrl+"/servlet/Texter?fn="
417            metaUrl=server+url.replace("/mpiwg/online","")
418            if not metaUrl.endswith("index.meta"):
419                metaUrl += "/index.meta"
420       
421        return metaUrl
422   
423    def getDomFromIndexMeta(self, url):
424        """get dom from index meta"""
425        dom = None
426        metaUrl = self.getIndexMetaUrl(url)
427               
428        logging.debug("(getDomFromIndexMeta): METAURL: %s"%metaUrl)
429        txt=getHttpData(metaUrl)
430        if txt is None:
431            raise IOError("Unable to read index meta from %s"%(url))
432       
433        dom = Parse(txt)
434        return dom
435   
436    def getPresentationInfoXML(self, url):
437        """returns dom of info.xml document at url"""
438        dom = None
439        metaUrl = None
440        if url.startswith("http://"):
441            # real URL
442            metaUrl = url
443        else:
444            # online path
445            server=self.digilibBaseUrl+"/servlet/Texter?fn="
446            metaUrl=server+url.replace("/mpiwg/online","")
447       
448        txt=getHttpData(metaUrl)
449        if txt is None:
450            raise IOError("Unable to read infoXMLfrom %s"%(url))
451           
452        dom = Parse(txt)
453        return dom
454                       
455       
456    def getAuthinfoFromIndexMeta(self,path,docinfo=None,dom=None,cut=0):
457        """gets authorization info from the index.meta file at path or given by dom"""
458        logging.debug("documentViewer (getauthinfofromindexmeta) path: %s"%(path))
459       
460        access = None
461       
462        if docinfo is None:
463            docinfo = {}
464           
465        if dom is None:
466            for x in range(cut):
467                path=getParentDir(path)
468            dom = self.getDomFromIndexMeta(path)
469       
470        acctype = dom.xpath("//access-conditions/access/@type")
471        if acctype and (len(acctype)>0):
472            access=acctype[0].value
473            if access in ['group', 'institution']:
474                access = getTextFromNode(dom.xpath("//access-conditions/access/name")[0]).lower()
475           
476        docinfo['accessType'] = access
477        return docinfo
478   
479       
480    def getBibinfoFromIndexMeta(self,path,docinfo=None,dom=None,cut=0):
481        """gets bibliographical info from the index.meta file at path or given by dom"""
482        logging.debug("documentViewer (getbibinfofromindexmeta) path: %s"%(path))
483       
484        if docinfo is None:
485            docinfo = {}
486       
487        if dom is None:
488            for x in range(cut):
489                path=getParentDir(path)
490            dom = self.getDomFromIndexMeta(path)
491       
492        docinfo['indexMetaPath']=self.getIndexMetaPath(path);
493       
494        logging.debug("documentViewer (getbibinfofromindexmeta cutted) path: %s"%(path))
495        # put in all raw bib fields as dict "bib"
496        bib = dom.xpath("//bib/*")
497        if bib and len(bib)>0:
498            bibinfo = {}
499            for e in bib:
500                bibinfo[e.localName] = getTextFromNode(e)
501            docinfo['bib'] = bibinfo
502       
503        # extract some fields (author, title, year) according to their mapping
504        metaData=self.metadata.main.meta.bib
505        bibtype=dom.xpath("//bib/@type")
506        if bibtype and (len(bibtype)>0):
507            bibtype=bibtype[0].value
508        else:
509            bibtype="generic"
510           
511        bibtype=bibtype.replace("-"," ") # wrong typesiin index meta "-" instead of " " (not wrong! ROC)
512        docinfo['bib_type'] = bibtype
513        bibmap=metaData.generateMappingForType(bibtype)
514        logging.debug("documentViewer (getbibinfofromindexmeta) bibmap:"+repr(bibmap))
515        logging.debug("documentViewer (getbibinfofromindexmeta) bibtype:"+repr(bibtype))
516        # if there is no mapping bibmap is empty (mapping sometimes has empty fields)
517        if len(bibmap) > 0 and len(bibmap['author'][0]) > 0:
518            try:
519                docinfo['author']=getTextFromNode(dom.xpath("//bib/%s"%bibmap['author'][0])[0])
520            except: pass
521            try:
522                docinfo['title']=getTextFromNode(dom.xpath("//bib/%s"%bibmap['title'][0])[0])
523            except: pass
524            try:
525                docinfo['year']=getTextFromNode(dom.xpath("//bib/%s"%bibmap['year'][0])[0])
526            except: pass
527            logging.debug("documentViewer (getbibinfofromindexmeta) using mapping for %s"%bibtype)
528            try:
529                docinfo['lang']=getTextFromNode(dom.xpath("//bib/lang")[0])
530            except:
531                docinfo['lang']=''
532
533        return docinfo
534   
535   
536    def getDocinfoFromTextTool(self, url, dom=None, docinfo=None):
537        """parse texttool tag in index meta"""
538        logging.debug("documentViewer (getdocinfofromtexttool) url: %s" % (url))
539        if docinfo is None:
540           docinfo = {}
541        if docinfo.get('lang', None) is None:
542            docinfo['lang'] = '' # default keine Sprache gesetzt
543        if dom is None:
544            dom = self.getDomFromIndexMeta(url)
545       
546        archivePath = None
547        archiveName = None
548   
549        archiveNames = dom.xpath("//resource/name")
550        if archiveNames and (len(archiveNames) > 0):
551            archiveName = getTextFromNode(archiveNames[0])
552        else:
553            logging.warning("documentViewer (getdocinfofromtexttool) resource/name missing in: %s" % (url))
554       
555        archivePaths = dom.xpath("//resource/archive-path")
556        if archivePaths and (len(archivePaths) > 0):
557            archivePath = getTextFromNode(archivePaths[0])
558            # clean up archive path
559            if archivePath[0] != '/':
560                archivePath = '/' + archivePath
561            if archiveName and (not archivePath.endswith(archiveName)):
562                archivePath += "/" + archiveName
563        else:
564            # try to get archive-path from url
565            logging.warning("documentViewer (getdocinfofromtexttool) resource/archive-path missing in: %s" % (url))
566            if (not url.startswith('http')):
567                archivePath = url.replace('index.meta', '')
568               
569        if archivePath is None:
570            # we balk without archive-path
571            raise IOError("Missing archive-path (for text-tool) in %s" % (url))
572       
573        imageDirs = dom.xpath("//texttool/image")
574        if imageDirs and (len(imageDirs) > 0):
575            imageDir = getTextFromNode(imageDirs[0])
576           
577        else:
578            # we balk with no image tag / not necessary anymore because textmode is now standard
579            #raise IOError("No text-tool info in %s"%(url))
580            imageDir = ""
581            #xquery="//pb" 
582            docinfo['imagePath'] = "" # keine Bilder
583            docinfo['imageURL'] = ""
584           
585        if imageDir and archivePath:
586            #print "image: ", imageDir, " archivepath: ", archivePath
587            imageDir = os.path.join(archivePath, imageDir)
588            imageDir = imageDir.replace("/mpiwg/online", '')
589            docinfo = self.getDirinfoFromDigilib(imageDir, docinfo=docinfo)
590            docinfo['imagePath'] = imageDir
591           
592            docinfo['imageURL'] = self.digilibBaseUrl + "/servlet/Scaler?fn=" + imageDir
593           
594        viewerUrls = dom.xpath("//texttool/digiliburlprefix")
595        if viewerUrls and (len(viewerUrls) > 0):
596            viewerUrl = getTextFromNode(viewerUrls[0])
597            docinfo['viewerURL'] = viewerUrl
598       
599        # old style text URL
600        textUrls = dom.xpath("//texttool/text")
601        if textUrls and (len(textUrls) > 0):
602            textUrl = getTextFromNode(textUrls[0])
603            if urlparse.urlparse(textUrl)[0] == "": #keine url
604                textUrl = os.path.join(archivePath, textUrl) 
605            # fix URLs starting with /mpiwg/online
606            if textUrl.startswith("/mpiwg/online"):
607                textUrl = textUrl.replace("/mpiwg/online", '', 1)
608           
609            docinfo['textURL'] = textUrl
610   
611        # new style text-url-path
612        textUrls = dom.xpath("//texttool/text-url-path")
613        if textUrls and (len(textUrls) > 0):
614            textUrl = getTextFromNode(textUrls[0])
615            docinfo['textURLPath'] = textUrl
616            if not docinfo['imagePath']:
617                # text-only, no page images
618                docinfo = self.getTextPages(docinfo)
619         
620        presentationUrls = dom.xpath("//texttool/presentation")
621        docinfo = self.getBibinfoFromIndexMeta(url, docinfo=docinfo, dom=dom)   # get info von bib tag
622       
623        if presentationUrls and (len(presentationUrls) > 0): # ueberschreibe diese durch presentation informationen
624             # presentation url ergiebt sich ersetzen von index.meta in der url der fuer die Metadaten
625             # durch den relativen Pfad auf die presentation infos
626            presentationPath = getTextFromNode(presentationUrls[0])
627            if url.endswith("index.meta"): 
628                presentationUrl = url.replace('index.meta', presentationPath)
629            else:
630                presentationUrl = url + "/" + presentationPath
631               
632            docinfo = self.getBibinfoFromTextToolPresentation(presentationUrl, docinfo=docinfo, dom=dom)
633   
634        docinfo = self.getAuthinfoFromIndexMeta(url, docinfo=docinfo, dom=dom)   # get access info
635       
636        return docinfo
637   
638   
639    def getBibinfoFromTextToolPresentation(self,url,docinfo=None,dom=None):
640        """gets the bibliographical information from the preseantion entry in texttools
641        """
642        dom=self.getPresentationInfoXML(url)
643        try:
644            docinfo['author']=getTextFromNode(dom.xpath("//author")[0])
645        except:
646            pass
647        try:
648            docinfo['title']=getTextFromNode(dom.xpath("//title")[0])
649        except:
650            pass
651        try:
652            docinfo['year']=getTextFromNode(dom.xpath("//date")[0])
653        except:
654            pass
655        return docinfo
656   
657    def getDocinfoFromImagePath(self,path,docinfo=None,cut=0):
658        """path ist the path to the images it assumes that the index.meta file is one level higher."""
659        logging.debug("documentViewer (getdocinfofromimagepath) path: %s"%(path))
660        if docinfo is None:
661            docinfo = {}
662        path=path.replace("/mpiwg/online","")
663        docinfo['imagePath'] = path
664        docinfo=self.getDirinfoFromDigilib(path,docinfo=docinfo,cut=cut)
665       
666        pathorig=path
667        for x in range(cut):       
668                path=getParentDir(path)
669        logging.debug("documentViewer (getdocinfofromimagepath) PATH:"+path)
670        imageUrl=self.digilibBaseUrl+"/servlet/Scaler?fn="+path
671        docinfo['imageURL'] = imageUrl
672       
673        #path ist the path to the images it assumes that the index.meta file is one level higher.
674        docinfo = self.getBibinfoFromIndexMeta(pathorig,docinfo=docinfo,cut=cut+1)
675        docinfo = self.getAuthinfoFromIndexMeta(pathorig,docinfo=docinfo,cut=cut+1)
676        return docinfo
677   
678   
679    def getDocinfo(self, mode, url):
680        """returns docinfo depending on mode"""
681        logging.debug("documentViewer (getdocinfo) mode: %s, url: %s"%(mode,url))
682        # look for cached docinfo in session
683        if self.REQUEST.SESSION.has_key('docinfo'):
684            docinfo = self.REQUEST.SESSION['docinfo']
685            # check if its still current
686            if docinfo is not None and docinfo.get('mode') == mode and docinfo.get('url') == url:
687                logging.debug("documentViewer (getdocinfo) docinfo in session: %s"%docinfo)
688                return docinfo
689        # new docinfo
690        docinfo = {'mode': mode, 'url': url}
691        if mode=="texttool": #index.meta with texttool information
692            docinfo = self.getDocinfoFromTextTool(url, docinfo=docinfo)
693        elif mode=="imagepath":
694            docinfo = self.getDocinfoFromImagePath(url, docinfo=docinfo)
695        elif mode=="filepath":
696            docinfo = self.getDocinfoFromImagePath(url, docinfo=docinfo,cut=1)
697        else:
698            logging.error("documentViewer (getdocinfo) unknown mode: %s!"%mode)
699            raise ValueError("Unknown mode %s! Has to be one of 'texttool','imagepath','filepath'."%(mode))
700                       
701        logging.debug("documentViewer (getdocinfo) docinfo: %s"%docinfo)
702        self.REQUEST.SESSION['docinfo'] = docinfo
703        return docinfo
704               
705    def getPageinfo(self, current, start=None, rows=None, cols=None, docinfo=None, viewMode=None, tocMode=None,characterNormalization=""):
706        """returns pageinfo with the given parameters"""
707        pageinfo = {}
708        current = getInt(current)
709        pageinfo['current'] = current
710        rows = int(rows or self.thumbrows)
711        pageinfo['rows'] = rows
712        cols = int(cols or self.thumbcols)
713        pageinfo['cols'] = cols
714        grpsize = cols * rows
715        pageinfo['groupsize'] = grpsize
716        start = getInt(start, default=(math.ceil(float(current)/float(grpsize))*grpsize-(grpsize-1)))
717        # int(current / grpsize) * grpsize +1))
718        pageinfo['start'] = start
719        pageinfo['end'] = start + grpsize
720        if (docinfo is not None) and ('numPages' in docinfo):
721            np = int(docinfo['numPages'])
722            pageinfo['end'] = min(pageinfo['end'], np)
723            pageinfo['numgroups'] = int(np / grpsize)
724            if np % grpsize > 0:
725                pageinfo['numgroups'] += 1       
726        pageinfo['viewMode'] = viewMode
727        pageinfo['tocMode'] = tocMode
728        #pageinfo['characterNormalization'] =characterNormalization
729        pageinfo['characterNormalization'] = self.REQUEST.get('characterNormalization',' ')
730        pageinfo['query'] = self.REQUEST.get('query',' ')
731        pageinfo['queryType'] = self.REQUEST.get('queryType',' ')
732        pageinfo['querySearch'] =self.REQUEST.get('querySearch', 'fulltext')
733        pageinfo['textPN'] = self.REQUEST.get('textPN','1')
734        pageinfo['highlightQuery'] = self.REQUEST.get('highlightQuery','')
735        pageinfo['tocPageSize'] = self.REQUEST.get('tocPageSize', '30')
736        pageinfo['queryPageSize'] =self.REQUEST.get('queryPageSize', '10')
737        pageinfo['tocPN'] = self.REQUEST.get('tocPN', '1')
738        toc = int (pageinfo['tocPN'])
739        pageinfo['textPages'] =int (toc)
740       
741        if 'tocSize_%s'%tocMode in docinfo:
742            tocSize = int(docinfo['tocSize_%s'%tocMode])
743            tocPageSize = int(pageinfo['tocPageSize'])
744            # cached toc           
745            if tocSize%tocPageSize>0:
746                tocPages=tocSize/tocPageSize+1
747            else:
748                tocPages=tocSize/tocPageSize
749            pageinfo['tocPN'] = min (tocPages,toc)                   
750        pageinfo['searchPN'] =self.REQUEST.get('searchPN','1')
751        pageinfo['sn'] =self.REQUEST.get('sn','')
752        return pageinfo
753   
754def changeDocumentViewer(self,title="",digilibBaseUrl=None,thumbrows=2,thumbcols=5,authgroups='mpiwg',RESPONSE=None):
755        """init document viewer"""
756        self.title=title
757        self.digilibBaseUrl = digilibBaseUrl
758        self.thumbrows = thumbrows
759        self.thumbcols = thumbcols
760        self.authgroups = [s.strip().lower() for s in authgroups.split(',')]
761        if RESPONSE is not None:
762            RESPONSE.redirect('manage_main')
763       
764def manage_AddDocumentViewerForm(self):
765    """add the viewer form"""
766    pt=PageTemplateFile('zpt/addDocumentViewer', globals()).__of__(self)
767    return pt()
768 
769def manage_AddDocumentViewer(self,id,imageScalerUrl="",textServerName="",title="",RESPONSE=None):
770    """add the viewer"""
771    newObj=documentViewer(id,imageScalerUrl=imageScalerUrl,title=title,textServerName=textServerName)
772    self._setObject(id,newObj)
773   
774    if RESPONSE is not None:
775        RESPONSE.redirect('manage_main')
776
777## DocumentViewerTemplate class
778class DocumentViewerTemplate(ZopePageTemplate):
779    """Template for document viewer"""
780    meta_type="DocumentViewer Template"
781
782
783def manage_addDocumentViewerTemplateForm(self):
784    """Form for adding"""
785    pt=PageTemplateFile('zpt/addDocumentViewerTemplate', globals()).__of__(self)
786    return pt()
787
788def manage_addDocumentViewerTemplate(self, id='viewer_main', title=None, text=None,
789                           REQUEST=None, submit=None):
790    "Add a Page Template with optional file content."
791
792    self._setObject(id, DocumentViewerTemplate(id))
793    ob = getattr(self, id)
794    txt=file(os.path.join(package_home(globals()),'zpt/viewer_main.zpt'),'r').read()
795    logging.info("txt %s:"%txt)
796    ob.pt_edit(txt,"text/html")
797    if title:
798        ob.pt_setTitle(title)
799    try:
800        u = self.DestinationURL()
801    except AttributeError:
802        u = REQUEST['URL1']
803       
804    u = "%s/%s" % (u, urllib.quote(id))
805    REQUEST.RESPONSE.redirect(u+'/manage_main')
806    return ''
807
808
809   
Note: See TracBrowser for help on using the repository browser.