UrlBuilder.py :  » Database » PyDO » skunkweb-3.4.4 » SkunkWeb » Services » templating » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Database » PyDO 
PyDO » skunkweb 3.4.4 » SkunkWeb » Services » templating » UrlBuilder.py
#  
#  Copyright (C) 2001 Andrew T. Csillag <drew_csillag@geocities.com>
#  
#      You may distribute under the terms of either the GNU General
#      Public License or the SkunkWeb License, as specified in the
#      README file.
#   
# Time-stamp: <01/04/25 16:10:18 smulloni>
########################################################################
"""
This is the module responsible for building URLs for basic templating 
personality

Services desiring more complex naming schemes should write their own
functions and / or tags which would utilize them.
"""



import types
import urllib

import DT
import skunklib
from SkunkExcept import *
import AE.Component
from web.protocol import Redirect
from SkunkWeb.LogObj import DEBUG
from SkunkWeb.ServiceRegistry import TEMPLATING
import SkunkWeb.Configuration as Config
from DT.DTUtil import htmlquote

# for img tag, try to import PIL (to get default image width and height)
try:
    import PIL.Image as Image
    import AE.Cache as Cache
    _havePIL=1
    import pil_preload
except:
    _havePIL=0

Config.mergeDefaults(tagsGenerateXHTML=1,
                     autosizeImages=1)
                     

def _genUrl ( path, query = {}, need_full = 0, noescape=None ):
    """
    Generate the URL given a URI. If need_full is 1, the generated URL 
    will contain the server part.
    """

    if noescape is None:
  path = urllib.quote(path)

    if query:
        path = path + htmlquote(skunklib.urlencode(query))

    if need_full:
        if path[0] != '/':
            raise SkunkRuntimeError, \
                'full url being generated with relative path: %s' % path
        conn=AE.Component.componentStack[0].namespace['CONNECTION']
        if conn.env.get('HTTPS')=='on':
            scheme='https'
        else:
            scheme='http'
        host=conn.requestHeaders.get('Host')
        if not host:
            host=conn.env.get('SERVER_NAME')
            port=conn.env.get("SERVER_PORT")
            if port:
                if (scheme=='http' and not port=='80') or (scheme=='https' and not port=='443'):
                    host='%s:%s' % (host, port)
        url='%s://%s%s' % (scheme, host, path)

    else:
        url = path

    return url

def _genKwArgs ( kwargs ):
    """
    Add keyword arguments to tags
    """
    ret = ''
    for k, v in kwargs.items():
        ret = ret + ' %s="%s"' % (k, v)

    return ret

def url (path, queryargs, text = None,
         kwargs = {}, noescape = None, need_full=None,
         url = None):
    """
    The url function we expose.

    Returns either the url part of the request (http://path) or (if text is not
    None) the complete link:
    <A href="http://path">text</A>

    If 'url' is given, it is used in place of path / query
    """
    if not url:
         url = _genUrl(path, query = queryargs, noescape=noescape, need_full=need_full)

    # Generate the URL 
    if text is not None:
        # Use the kwargs here
        ret = '<a href="%s"%s>%s</a>' % ( url, _genKwArgs(kwargs), text )
    else:
        ret = url

    return ret

def image ( path, queryargs = None, kwargs={}, noescape = None  ):
    """
    Create an image tag
    """
    if Config.autosizeImages and _havePIL and not path.startswith('http://'):
        w=kwargs.get('width')
        h=kwargs.get('height')
        DEBUG(TEMPLATING, "width: %s; height: %s" % (w, h))
        if w is None and h is None:
            try:
                im=Image.open(Cache._openDocRoot(path))
            except:
                DEBUG(TEMPLATING, "failed to read doc root for path %s" % path)
            else:
                kwargs['width'], kwargs['height']=im.size
    if Config.tagsGenerateXHTML:
        template='<img src="%s"%s />'
    else:
        template='<img src="%s"%s>'
    ret = template % (_genUrl(path,
                              query=queryargs, 
                              noescape=noescape),
                      _genKwArgs(kwargs))

    return ret

def form ( path, kwargs = {}, noescape = None ):
    """
    Create a form tag
    """

    return '<form action="%s"%s>' % (_genUrl(path, noescape=noescape), _genKwArgs ( kwargs ))

def redirect ( path = None, url = None, queryargs = {}, 
               noescape = None, ):
    """
    Issue a redirect
    """

    if not url and not path:
        raise SkunkStandardError, 'either url or path argument must be given'
    elif url and path:
        raise SkunkStandardError, 'only one of url or path arguments needed'

    if not url:
        # This is a path, and needs http://hostname prepended
  # the tag code guarantees that the REQUEST object is available
  # to the tag (i.e. a cached component is not trying to suck
  # the server name out of REQUEST!)
        url = _genUrl ( path, query = queryargs, 
                        need_full = 1, noescape=noescape )

    # The url should already be a fully qualified URL by now
    AE.Component.componentStack[0].namespace['CONNECTION'].redirect(url)
    raise Redirect()

def hidden ( dict ):
    """
    Make hidden form fields for the items in the dictionry
    """
    if Config.tagsGenerateXHTML:
        template='<input type="hidden" name="%s" value="%s" />'
    else:
        template='<input type="hidden" name="%s" value="%s">' 
    l = []
    for k,v in dict.items():
        enck = DT.DTUtil.htmlquote(str(k))
        if type(v) == types.ListType:
            for vi in v:
                if vi is None:
                    encv = ""
                else:
                    encv=DT.DTUtil.htmlquote(str(vi))
                l.append(template % (enck, encv))
        else: 
            if v is None:
                encv = ""
            else:
                encv=DT.DTUtil.htmlquote(str(v))
            l.append(template % (enck, encv))
    return '\n'.join(l)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.