Kanchan Chauhan | e0818f8 | 2016-04-22 14:39:02 +0530 | [diff] [blame] | 1 | # Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors |
| 2 | # License: GNU General Public License v3. See license.txt |
| 3 | |
Chillar Anand | 915b343 | 2021-09-02 16:44:59 +0530 | [diff] [blame] | 4 | |
Kanchan Chauhan | e0818f8 | 2016-04-22 14:39:02 +0530 | [diff] [blame] | 5 | import frappe |
Kanchan Chauhan | e0818f8 | 2016-04-22 14:39:02 +0530 | [diff] [blame] | 6 | |
| 7 | no_cache = 1 |
Kanchan Chauhan | e0818f8 | 2016-04-22 14:39:02 +0530 | [diff] [blame] | 8 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 9 | |
Anand Doshi | e3bd78e | 2016-04-22 18:53:21 +0530 | [diff] [blame] | 10 | def get_context(context): |
Ankush Menat | 2576235 | 2022-04-01 11:55:19 +0530 | [diff] [blame] | 11 | homepage = frappe.get_cached_doc("Homepage") |
Rushabh Mehta | 4b9238a | 2016-05-12 15:22:59 +0530 | [diff] [blame] | 12 | |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 13 | homepage.title = homepage.title or homepage.company |
| 14 | context.title = homepage.title |
Rushabh Mehta | ec2d09c | 2016-08-09 16:43:15 +0530 | [diff] [blame] | 15 | context.homepage = homepage |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 16 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 17 | if homepage.hero_section_based_on == "Homepage Section" and homepage.hero_section: |
Ankush Menat | 2576235 | 2022-04-01 11:55:19 +0530 | [diff] [blame] | 18 | homepage.hero_section_doc = frappe.get_cached_doc("Homepage Section", homepage.hero_section) |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 19 | |
| 20 | if homepage.slideshow: |
Ankush Menat | 2576235 | 2022-04-01 11:55:19 +0530 | [diff] [blame] | 21 | doc = frappe.get_cached_doc("Website Slideshow", homepage.slideshow) |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 22 | context.slideshow = homepage.slideshow |
| 23 | context.slideshow_header = doc.header |
| 24 | context.slides = doc.slideshow_items |
| 25 | |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 26 | context.blogs = frappe.get_all( |
| 27 | "Blog Post", |
| 28 | fields=["title", "blogger", "blog_intro", "route"], |
| 29 | filters={"published": 1}, |
| 30 | order_by="modified desc", |
| 31 | limit=3, |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 32 | ) |
| 33 | |
| 34 | # filter out homepage section which is used as hero section |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 35 | homepage_hero_section = ( |
| 36 | homepage.hero_section_based_on == "Homepage Section" and homepage.hero_section |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 37 | ) |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 38 | homepage_sections = frappe.get_all( |
| 39 | "Homepage Section", |
| 40 | filters=[["name", "!=", homepage_hero_section]] if homepage_hero_section else None, |
| 41 | order_by="section_order asc", |
| 42 | ) |
| 43 | context.homepage_sections = [ |
Ankush Menat | 2576235 | 2022-04-01 11:55:19 +0530 | [diff] [blame] | 44 | frappe.get_cached_doc("Homepage Section", name) for name in homepage_sections |
Ankush Menat | 494bd9e | 2022-03-28 18:52:46 +0530 | [diff] [blame] | 45 | ] |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 46 | |
| 47 | context.metatags = context.metatags or frappe._dict({}) |
| 48 | context.metatags.image = homepage.hero_image or None |
| 49 | context.metatags.description = homepage.description or None |