liquid_feedback_frontend

view config/init.lua @ 1160:65904de98d5e

Fixed basepath for image delivery with WebMCP 1.2.6
author bsw
date Tue Mar 24 12:36:19 2015 +0100 (2015-03-24)
parents e9f6ae14bc72
children 385a1e369faf
line source
1 -- ========================================================================
2 -- DO NOT CHANGE ANYTHING IN THIS FILE
3 -- (except when you really know what you are doing!)
4 -- ========================================================================
6 config.app_version = "3.0.4"
8 if not config.password_hash_algorithm then
9 config.password_hash_algorithm = "crypt_sha512"
10 end
12 if not config.password_hash_min_rounds then
13 config.password_hash_min_rounds = 10000
14 end
16 if not config.password_hash_max_rounds then
17 config.password_hash_max_rounds = 20000
18 end
20 if config.enabled_languages == nil then
21 config.enabled_languages = { 'en', 'de', 'ka' } --, 'eo', 'el', 'hu', 'it', 'nl', 'zh-Hans', 'zh-TW' }
22 end
24 if config.default_lang == nil then
25 config.default_lang = "en"
26 end
28 if config.mail_subject_prefix == nil then
29 config.mail_subject_prefix = "[LiquidFeedback] "
30 end
32 if config.member_image_content_type == nil then
33 config.member_image_content_type = "image/jpeg"
34 end
36 if config.member_image_convert_func == nil then
37 config.member_image_convert_func = {
38 avatar = function(data) return extos.pfilter(data, "convert", "jpeg:-", "-thumbnail", "48x48", "jpeg:-") end,
39 photo = function(data) return extos.pfilter(data, "convert", "jpeg:-", "-thumbnail", "240x240", "jpeg:-") end
40 }
41 end
43 if config.locked_profile_fields == nil then
44 config.locked_profile_fields = {}
45 end
47 if config.check_delegations_default == nil then
48 config.check_delegations_default = "confirm"
49 end
51 if config.ldap == nil then
52 config.ldap = {}
53 end
55 if not config.database then
56 config.database = { engine='postgresql', dbname='liquid_feedback' }
57 end
59 request.set_404_route{ module = 'index', view = '404' }
61 request.set_absolute_baseurl(config.absolute_base_url)
63 -- TODO abstraction
64 -- get record by id
65 function mondelefant.class_prototype:by_id(id)
66 local selector = self:new_selector()
67 selector:add_where{ 'id = ?', id }
68 selector:optional_object_mode()
69 return selector:exec()
70 end
72 -- compatibility for WebMCP 1.2.6
73 if not listen then
75 WEBMCP_BASE_PATH = request.get_app_basepath()
77 -- open and set default database handle
78 _G.db = assert(mondelefant.connect(config.database))
80 function mondelefant.class_prototype:get_db_conn() return db end
82 -- close the database at exit
83 at_exit(function()
84 db:close()
85 end)
87 function request.get_cookie(args)
88 return cgi.cookies[args.name]
89 end
91 function request.get_param(args)
92 return request.get_param_strings()[args.name]
93 end
95 function request.add_header(key, value)
96 print(key .. ": " .. value)
97 end
99 local request_redirect = request.redirect
100 function request.redirect(args)
101 if args.static then
102 print('Location: ' .. encode.url{ static = args.static } .. '\n\n')
103 exit()
104 else
105 request_redirect(args)
106 end
107 end
109 function request.allow_caching()
110 request.add_header("Cache-Control", "max-age=3600");
111 end
113 end

Impressum / About Us