Subversion Repository Public Repository

litesoft

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
// This Source Code is in the Public Domain per: http://litesoft.org/License.txt
package org.litesoft.servlets;

import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;

import org.litesoft.commonfoundation.typeutils.*;
import org.litesoft.util.*;
import org.litesoft.util.template.*;

public abstract class TemplateServlet extends HttpServlet
{
    private String mCSS = "";
    private String mJS = "";

    protected TemplateServlet( String pCSShref, String... pJSsrcs )
    {
        addCSS( pCSShref );
        if ( pJSsrcs != null )
        {
            for ( String zJSsrc : pJSsrcs )
            {
                addJS( zJSsrc );
            }
        }
    }

    public void addCSS( String pCSShref )
    {
        if ( null != (pCSShref = Strings.noEmpty( pCSShref )) )
        {
            mCSS += "\n<link rel=\"stylesheet\" type=\"text/css\" href=\"" + pCSShref + "\" />";
        }
    }

    public void addJS( String pJSsrc )
    {
        if ( null != (pJSsrc = Strings.noEmpty( pJSsrc )) )
        {
            mJS += "\n<script type=\"text/javascript\" src=\"" + pJSsrc + "\"></script>";
        }
    }

    @Override
    public final void doGet( HttpServletRequest pRequest, HttpServletResponse pResponse )
            throws ServletException, IOException
    {
        HttpSession zSession = pRequest.getSession( true );

        String query = Utils.fixPercentsInURLs( Strings.noEmpty( pRequest.getQueryString() ) );
//        System.out.println( "service: " + query );
//        System.out.println( "RequestURI: " + pHttpServletRequest.getRequestURI() );
//        System.out.println( "RequestURL: " + pHttpServletRequest.getRequestURL() );
//        System.out.println( "PathInfo: " + pHttpServletRequest.getPathInfo() );
//        System.out.println( "PathTranslated: " + pHttpServletRequest.getPathTranslated() );
        TemplateControl zTC = resolveQuery( pRequest, query, pResponse, zSession );
        if ( zTC == null )
        {
            throw new ServletException( "Unable to process request: " + query );
        }
        try
        {
            if ( zTC.isForwardTo() )
            {
                String newURL = pResponse.encodeRedirectURL( zTC.getForwardTo() );
                pResponse.setStatus( HttpServletResponse.SC_SEE_OTHER );
                pResponse.setHeader( "Location", newURL );
            }
            else
            {
                zTC.add( "CSS", mCSS );
                zTC.add( "JS", mJS );
                pResponse.setCharacterEncoding( FileUtils.UTF_8 );
                pResponse.setContentType( "text/html" );
                ServletUtils.noCache( pResponse );
                Writer zWriter = new OutputStreamWriter( pResponse.getOutputStream(), FileUtils.UTF_8 );
                try
                {
                    zTC.applyTo( zWriter, null );
                }
                finally
                {
                    zWriter.close();
                }
            }
        }
        finally
        {
            zTC.dispose();
        }
    }

    protected String getTemplatePath( String pTemplateName )
    {
        String zTemplateFilePath = Strings.noEmpty( getServletConfig().getInitParameter( pTemplateName ) );
        if ( zTemplateFilePath == null )
        {
            String zTemplateBase = Strings.noEmpty( getServletConfig().getServletContext().getInitParameter( "TemplateFilePathBase" ) );
            zTemplateFilePath = ((zTemplateBase != null) ? zTemplateBase + "/" + pTemplateName : pTemplateName) + ".template.html";
        }
        if ( !zTemplateFilePath.startsWith( "/" ) )
        {
            String zBasePath = Strings.noEmpty( System.getenv( "TemplateDevBasePath" ) );
            if ( zBasePath != null )
            {
                zTemplateFilePath = zBasePath + "/" + zTemplateFilePath;
            }
        }
        return zTemplateFilePath;
    }

    abstract protected TemplateControl resolveQuery( HttpServletRequest pRequest, String pQuery, HttpServletResponse pResponse, HttpSession pSession )
            throws IOException;
}

Commits for litesoft/trunk/Java/core/Server/src/org/litesoft/servlets/TemplateServlet.java

Diff revisions: vs.
Revision Author Commited Message
939 Diff Diff GeorgeS picture GeorgeS Mon 02 Jun, 2014 21:30:31 +0000

Extracting commonfoundation

801 Diff Diff GeorgeS picture GeorgeS Wed 15 Aug, 2012 03:59:02 +0000
610 Diff Diff GeorgeS picture GeorgeS Mon 12 Mar, 2012 00:54:00 +0000
49 Diff Diff GeorgeS picture GeorgeS Mon 12 Apr, 2010 02:59:10 +0000

License Text

11 Diff Diff GeorgeS picture GeorgeS Wed 10 Feb, 2010 01:48:32 +0000
10 Diff Diff kkifa picture kkifa Wed 10 Feb, 2010 00:59:24 +0000

iPhone template changes

9 Diff Diff GeorgeS picture GeorgeS Tue 09 Feb, 2010 23:08:17 +0000
2 GeorgeS picture GeorgeS Sun 07 Feb, 2010 12:50:58 +0000