blob: 70b05ed91e8786c06d6ca0b82fb34f5c110c00b3 [file] [log] [blame]
Rushabh Mehta3966f1d2012-02-23 12:35:32 +05301# ERPNext - web based ERP (http://erpnext.com)
2# Copyright (C) 2012 Web Notes Technologies Pvt Ltd
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
Anand Doshi486f9df2012-07-19 13:40:31 +053017from __future__ import unicode_literals
Rushabh Mehta571377a2012-12-07 11:00:26 +053018
19import os
20import conf
Rushabh Mehtaab1148c2012-01-31 18:01:16 +053021import webnotes
Rushabh Mehta571377a2012-12-07 11:00:26 +053022from webnotes.utils import cstr
23
24template_map = {
25 'Web Page': 'html/web_page.html',
26 'Blog': 'html/blog_page.html',
27 'Item': 'html/product_page.html',
28}
Rushabh Mehtaab1148c2012-01-31 18:01:16 +053029
Rushabh Mehta89c7b412012-12-06 14:58:44 +053030def render(page_name):
31 """render html page"""
Rushabh Mehta89c7b412012-12-06 14:58:44 +053032 try:
33 if page_name:
34 html = get_html(page_name)
35 else:
36 html = get_html('index')
37 except Exception, e:
38 html = get_html('404')
39
40 from webnotes.handler import eprint, print_zip
41 eprint("Content-Type: text/html")
42 print_zip(html)
43
44def get_html(page_name):
45 """get page html"""
46 page_name = scrub_page_name(page_name)
47 comments = get_comments(page_name)
48
Rushabh Mehta571377a2012-12-07 11:00:26 +053049 html = ''
50
51 # load from cache, if auto cache clear is falsy
52 if not (hasattr(conf, 'auto_cache_clear') and conf.auto_cache_clear or 0):
53 html = webnotes.cache().get_value("page:" + page_name)
54 comments += "\nload status: fresh"
55
56 if not html:
57 html = load_into_cache(page_name)
58 comments += "\nload status: cache"
59
60 # insert comments
61 html += """\n<!-- %s -->""" % webnotes.utils.cstr(comments)
62
Rushabh Mehta89c7b412012-12-06 14:58:44 +053063 return html
64
Rushabh Mehtadf0b00a2012-12-06 16:15:38 +053065def get_comments(page_name):
Rushabh Mehta89c7b412012-12-06 14:58:44 +053066 if page_name == '404':
67 comments = """error: %s""" % webnotes.getTraceback()
68 else:
69 comments = """page: %s""" % page_name
70
71 return comments
72
Anand Doshi51146c02012-07-12 18:41:12 +053073def scrub_page_name(page_name):
74 if page_name.endswith('.html'):
75 page_name = page_name[:-5]
76
77 return page_name
78
Rushabh Mehtaab1148c2012-01-31 18:01:16 +053079def page_name(title):
Anand Doshi72c945b2012-06-22 20:01:07 +053080 """make page name from title"""
81 import re
82 name = title.lower()
83 name = re.sub('[~!@#$%^&*()<>,."\']', '', name)
84 return '-'.join(name.split()[:4])
Rushabh Mehtadf0b00a2012-12-06 16:15:38 +053085
86def update_page_name(doc, title):
87 """set page_name and check if it is unique"""
Rushabh Mehtaa2e4cb02012-12-06 17:09:38 +053088 webnotes.conn.set(doc, "page_name", page_name(title))
Rushabh Mehtadf0b00a2012-12-06 16:15:38 +053089
90 res = webnotes.conn.sql("""\
91 select count(*) from `tab%s`
92 where page_name=%s and name!=%s""" % (doc.doctype, '%s', '%s'),
93 (doc.page_name, doc.name))
94 if res and res[0][0] > 0:
95 webnotes.msgprint("""A %s with the same title already exists.
96 Please change the title of %s and save again."""
97 % (doc.doctype, doc.name), raise_exception=1)
Rushabh Mehta571377a2012-12-07 11:00:26 +053098
99 delete_page_cache(doc.page_name)
100
101def load_into_cache(page_name):
102 args = prepare_args(page_name)
103 html = build_html(args)
104 webnotes.cache().set_value("page:" + page_name, html)
105 return html
106
107def build_html(args):
108 from jinja2 import Environment, FileSystemLoader
109
110 templates_path = os.path.join(os.path.dirname(conf.__file__),
111 'app', 'website', 'templates')
112
113 jenv = Environment(loader = FileSystemLoader(templates_path))
114 html = jenv.get_template(args['template']).render(args)
115
116 return html
117
118def prepare_args(page_name):
119 if page_name == 'index':
120 page_name = get_home_page()
121
122 if page_name in get_template_pages():
123 args = {
124 'template': 'pages/%s.html' % page_name,
125 'name': page_name,
126 }
127 else:
128 args = get_doc_fields(page_name)
129
130 args.update(get_outer_env())
131
132 return args
133
134def get_template_pages():
135 pages_path = os.path.join(os.path.dirname(conf.__file__), 'app',
136 'website', 'templates', 'pages')
137 page_list = []
138 for page in os.listdir(pages_path):
139 page_list.append(scrub_page_name(page))
140
141 return page_list
142
143def get_doc_fields(page_name):
144 doc_type, doc_name = get_source_doc(page_name)
145
146 obj = webnotes.get_obj(doc_type, doc_name)
147
148 if hasattr(obj, 'prepare_template_args'):
149 obj.prepare_template_args()
150
151 args = obj.doc.fields
152 args['template'] = template_map[doc_type]
153
154 return args
155
156def get_source_doc(page_name):
157 """get source doc for the given page name"""
158 for doctype in [('Web Page', 'published'), ('Blog', 'published'),
159 ('Item', 'show_in_website')]:
160 name = webnotes.conn.sql("""select name from `tab%s` where
161 page_name=%s and ifnull(`%s`, 0)=1""" % (doctype[0], "%s", doctype[1]),
162 page_name)
163 if name:
164 return doctype[0], name[0][0]
165
166 return None, None
167
168def get_outer_env():
169 all_top_items = webnotes.conn.sql("""\
170 select * from `tabTop Bar Item`
171 where parent='Website Settings' and parentfield='top_bar_items'
172 order by idx asc""", as_dict=1)
173
174 top_items = [d for d in all_top_items if not d['parent_label']]
175
176 # attach child items to top bar
177 for d in all_top_items:
178 if d['parent_label']:
179 for t in top_items:
180 if t['label']==d['parent_label']:
181 if not 'child_items' in t:
182 t['child_items'] = []
183 t['child_items'].append(d)
184 break
185
186 return {
187 'top_bar_items': top_items,
188
189 'footer_items': webnotes.conn.sql("""\
190 select * from `tabTop Bar Item`
191 where parent='Website Settings' and parentfield='footer_items'
192 order by idx asc""", as_dict=1),
193
194 'brand': webnotes.conn.get_value('Website Settings', None, 'brand_html') or 'ERPNext',
195 'copyright': webnotes.conn.get_value('Website Settings', None, 'copyright'),
196 'favicon': webnotes.conn.get_value('Website Settings', None, 'favicon')
197 }
198
199def get_home_page():
200 doc_name = webnotes.conn.get_value('Website Settings', None, 'home_page')
201 if doc_name:
202 page_name = webnotes.conn.get_value('Web Page', doc_name, 'page_name')
203 else:
204 page_name = 'login'
205
206 return page_name
207
208def clear_cache(page_name):
209 if page_name:
210 delete_page_cache(page_name)
211 else:
212 webnotes.cache().delete_keys("page:")
213
214def delete_page_cache(page_name):
215 webnotes.cache().delete_value("page:" + page_name)