rev |
line source |
bsw/jbe@5
|
1 local tmp = db:query({ "SELECT text_entries_left, initiatives_left FROM member_contingent_left WHERE member_id = ?", app.session.member.id }, "opt_object")
|
bsw/jbe@5
|
2 if tmp then
|
bsw/jbe@5
|
3 if tmp.initiatives_left and tmp.initiatives_left < 1 then
|
bsw/jbe@5
|
4 slot.put_into("error", _"Sorry, your contingent for creating initiatives has been used up. Please try again later.")
|
bsw/jbe@5
|
5 return false
|
bsw/jbe@5
|
6 end
|
bsw/jbe@5
|
7 if tmp.text_entries_left and tmp.text_entries_left < 1 then
|
bsw/jbe@5
|
8 slot.put_into("error", _"Sorry, you have reached your personal flood limit. Please be slower...")
|
bsw/jbe@5
|
9 return false
|
bsw/jbe@5
|
10 end
|
bsw/jbe@5
|
11 end
|
bsw/jbe@5
|
12
|
bsw/jbe@0
|
13 local issue
|
bsw/jbe@0
|
14 local area
|
bsw/jbe@0
|
15
|
bsw/jbe@0
|
16 local issue_id = param.get("issue_id", atom.integer)
|
bsw/jbe@0
|
17 if issue_id then
|
bsw/jbe@0
|
18 issue = Issue:new_selector():add_where{"id=?",issue_id}:single_object_mode():exec()
|
bsw/jbe@5
|
19 if issue.closed then
|
bsw/jbe@5
|
20 slot.put_into("error", _"This issue is already closed.")
|
bsw/jbe@5
|
21 return false
|
bsw/jbe@5
|
22 elseif issue.fully_frozen then
|
bsw/jbe@5
|
23 slot.put_into("error", _"Voting for this issue has already begun.")
|
bsw/jbe@5
|
24 return false
|
bsw/jbe@5
|
25 end
|
bsw/jbe@0
|
26 area = issue.area
|
bsw/jbe@0
|
27 else
|
bsw/jbe@0
|
28 local area_id = param.get("area_id", atom.integer)
|
bsw/jbe@0
|
29 area = Area:new_selector():add_where{"id=?",area_id}:single_object_mode():exec()
|
bsw/jbe@0
|
30 end
|
bsw/jbe@0
|
31
|
bsw@10
|
32 local policy_id = param.get("policy_id", atom.integer)
|
bsw@10
|
33
|
bsw@10
|
34 if policy_id == -1 then
|
bsw@10
|
35 slot.put_into("error", _"Please choose a policy")
|
bsw@10
|
36 return false
|
bsw@10
|
37 end
|
bsw@10
|
38
|
bsw/jbe@6
|
39 local name = param.get("name")
|
bsw/jbe@6
|
40
|
bsw/jbe@6
|
41 local name = util.trim(name)
|
bsw/jbe@6
|
42
|
bsw/jbe@6
|
43 if #name < 3 then
|
bsw/jbe@6
|
44 slot.put_into("error", _"This name is really too short!")
|
bsw/jbe@6
|
45 return false
|
bsw/jbe@6
|
46 end
|
bsw/jbe@6
|
47
|
bsw/jbe@0
|
48 local initiative = Initiative:new()
|
bsw/jbe@0
|
49
|
bsw/jbe@0
|
50 if not issue then
|
bsw@7
|
51 if not area:get_reference_selector("allowed_policies")
|
bsw@7
|
52 :add_where{ "policy.id = ?", policy_id }
|
bsw@7
|
53 :optional_object_mode()
|
bsw@7
|
54 :exec()
|
bsw@7
|
55 then
|
bsw@7
|
56 error("policy not allowed")
|
bsw@7
|
57 end
|
bsw/jbe@0
|
58 issue = Issue:new()
|
bsw/jbe@0
|
59 issue.area_id = area.id
|
bsw@7
|
60 issue.policy_id = policy_id
|
bsw/jbe@0
|
61 issue:save()
|
bsw/jbe@0
|
62 end
|
bsw/jbe@0
|
63
|
bsw/jbe@0
|
64 initiative.issue_id = issue.id
|
bsw/jbe@6
|
65 initiative.name = name
|
bsw/jbe@6
|
66 param.update(initiative, "discussion_url")
|
bsw/jbe@0
|
67 initiative:save()
|
bsw/jbe@0
|
68
|
bsw/jbe@0
|
69 local draft = Draft:new()
|
bsw/jbe@0
|
70 draft.initiative_id = initiative.id
|
bsw/jbe@4
|
71 local formatting_engine = param.get("formatting_engine")
|
bsw/jbe@4
|
72 local formatting_engine_valid = false
|
bsw/jbe@4
|
73 for fe, dummy in pairs(config.formatting_engine_executeables) do
|
bsw/jbe@4
|
74 if formatting_engine == fe then
|
bsw/jbe@4
|
75 formatting_engine_valid = true
|
bsw/jbe@4
|
76 end
|
bsw/jbe@4
|
77 end
|
bsw/jbe@4
|
78 if not formatting_engine_valid then
|
bsw/jbe@4
|
79 error("invalid formatting engine!")
|
bsw/jbe@4
|
80 end
|
bsw/jbe@4
|
81 draft.formatting_engine = formatting_engine
|
bsw/jbe@0
|
82 draft.content = param.get("draft")
|
bsw/jbe@0
|
83 draft.author_id = app.session.member.id
|
bsw/jbe@0
|
84 draft:save()
|
bsw/jbe@0
|
85
|
bsw/jbe@0
|
86 local initiator = Initiator:new()
|
bsw/jbe@0
|
87 initiator.initiative_id = initiative.id
|
bsw/jbe@0
|
88 initiator.member_id = app.session.member.id
|
bsw@10
|
89 initiator.accepted = true
|
bsw/jbe@0
|
90 initiator:save()
|
bsw/jbe@0
|
91
|
bsw/jbe@0
|
92 local supporter = Supporter:new()
|
bsw/jbe@0
|
93 supporter.initiative_id = initiative.id
|
bsw/jbe@0
|
94 supporter.member_id = app.session.member.id
|
bsw/jbe@0
|
95 supporter.draft_id = draft.id
|
bsw/jbe@0
|
96 supporter:save()
|
bsw/jbe@0
|
97
|
bsw/jbe@0
|
98 slot.put_into("notice", _"Initiative successfully created")
|
bsw/jbe@0
|
99
|
bsw/jbe@0
|
100 request.redirect{
|
bsw/jbe@0
|
101 module = "initiative",
|
bsw/jbe@0
|
102 view = "show",
|
bsw/jbe@0
|
103 id = initiative.id
|
bsw/jbe@0
|
104 } |