rev |
line source |
bsw@734
|
1 -- ========================================================================
|
bsw@734
|
2 -- DO NOT CHANGE ANYTHING IN THIS FILE
|
bsw@734
|
3 -- (except when you really know what you are doing!)
|
bsw@734
|
4 -- ========================================================================
|
bsw@734
|
5
|
bsw@926
|
6 config.app_version = "2.1.1"
|
bsw@731
|
7
|
bsw@905
|
8 if not config.password_hash_algorithm then
|
bsw@905
|
9 config.password_hash_algorithm = "crypt_sha512"
|
bsw@905
|
10 end
|
bsw@905
|
11
|
bsw@905
|
12 if not config.password_hash_min_rounds then
|
bsw@905
|
13 config.password_hash_min_rounds = 10000
|
bsw@905
|
14 end
|
bsw@905
|
15
|
bsw@905
|
16 if not config.password_hash_max_rounds then
|
bsw@905
|
17 config.password_hash_max_rounds = 20000
|
bsw@905
|
18 end
|
bsw@905
|
19
|
bsw@731
|
20 if config.enabled_languages == nil then
|
bsw@876
|
21 config.enabled_languages = { 'en', 'de', 'eo', 'el', 'hu', 'it', 'nl', 'zh-Hans', 'zh-TW' }
|
bsw@731
|
22 end
|
bsw@731
|
23
|
bsw@731
|
24 if config.default_lang == nil then
|
bsw@731
|
25 config.default_lang = "en"
|
bsw@731
|
26 end
|
bsw@731
|
27
|
bsw@731
|
28 if config.mail_subject_prefix == nil then
|
bsw@731
|
29 config.mail_subject_prefix = "[LiquidFeedback] "
|
bsw@731
|
30 end
|
bsw@731
|
31
|
bsw@731
|
32 if config.member_image_content_type == nil then
|
bsw@731
|
33 config.member_image_content_type = "image/jpeg"
|
bsw@731
|
34 end
|
bsw@731
|
35
|
bsw@731
|
36 if config.member_image_convert_func == nil then
|
bsw@731
|
37 config.member_image_convert_func = {
|
bsw@731
|
38 avatar = function(data) return extos.pfilter(data, "convert", "jpeg:-", "-thumbnail", "48x48", "jpeg:-") end,
|
bsw@731
|
39 photo = function(data) return extos.pfilter(data, "convert", "jpeg:-", "-thumbnail", "240x240", "jpeg:-") end
|
bsw@731
|
40 }
|
bsw@731
|
41 end
|
bsw@731
|
42
|
bsw@736
|
43 if config.locked_profile_fields == nil then
|
bsw@736
|
44 config.locked_profile_fields = {}
|
bsw@736
|
45 end
|
bsw@736
|
46
|
bsw@732
|
47 if not config.database then
|
bsw@732
|
48 config.database = { engine='postgresql', dbname='liquid_feedback' }
|
bsw@732
|
49 end
|
bsw@732
|
50
|
bsw@868
|
51 if not config.enable_debug_trace then
|
bsw@868
|
52 trace.disable()
|
bsw@868
|
53 else
|
bsw@868
|
54 slot.put_into('trace_button', '<div id="trace_show" onclick="document.getElementById(\'trace_content\').style.display=\'block\';this.style.display=\'none\';">TRACE</div>')
|
bsw@868
|
55 end
|
bsw@868
|
56
|
bsw@868
|
57
|
bsw@729
|
58 request.set_404_route{ module = 'index', view = '404' }
|
bsw@729
|
59
|
bsw@729
|
60 -- open and set default database handle
|
bsw@734
|
61 db = assert(mondelefant.connect(config.database))
|
bsw@729
|
62 at_exit(function()
|
bsw@729
|
63 db:close()
|
bsw@729
|
64 end)
|
bsw@729
|
65 function mondelefant.class_prototype:get_db_conn() return db end
|
bsw@729
|
66
|
bsw@729
|
67 -- enable output of SQL commands in trace system
|
bsw@729
|
68 function db:sql_tracer(command)
|
bsw@729
|
69 return function(error_info)
|
bsw@729
|
70 local error_info = error_info or {}
|
bsw@729
|
71 trace.sql{ command = command, error_position = error_info.position }
|
bsw@729
|
72 end
|
bsw@729
|
73 end
|
bsw@729
|
74
|
bsw@729
|
75 request.set_absolute_baseurl(config.absolute_base_url)
|
bsw@729
|
76
|
bsw@729
|
77
|
bsw@729
|
78 -- TODO abstraction
|
bsw@729
|
79 -- get record by id
|
bsw@729
|
80 function mondelefant.class_prototype:by_id(id)
|
bsw@729
|
81 local selector = self:new_selector()
|
bsw@729
|
82 selector:add_where{ 'id = ?', id }
|
bsw@729
|
83 selector:optional_object_mode()
|
bsw@729
|
84 return selector:exec()
|
bsw@729
|
85 end
|
bsw@729
|
86
|