decidim-elections 0.23.5 → 0.24.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (326) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -0
  3. data/app/assets/config/admin/decidim_votings_manifest.css +0 -0
  4. data/app/assets/config/admin/decidim_votings_manifest.js +4 -0
  5. data/app/assets/config/decidim_elections_manifest.css +3 -0
  6. data/app/assets/config/decidim_elections_manifest.js +6 -0
  7. data/app/assets/config/decidim_votings_manifest.css +3 -0
  8. data/app/assets/config/decidim_votings_manifest.js +0 -0
  9. data/app/assets/images/decidim/votings/icon.svg +1 -0
  10. data/app/assets/javascripts/decidim/elections/admin/pending_action.js.es6 +16 -0
  11. data/app/assets/javascripts/decidim/elections/admin/vote_statistics.js.es6 +11 -0
  12. data/app/assets/javascripts/decidim/elections/trustee_zone.js.es6 +54 -0
  13. data/app/assets/javascripts/decidim/elections/trustee_zone/key_ceremony.js.es6 +126 -0
  14. data/app/assets/javascripts/decidim/elections/trustee_zone/tally.js.es6 +104 -0
  15. data/app/assets/javascripts/decidim/elections/vote.js.es6 +107 -160
  16. data/app/assets/javascripts/decidim/elections/vote_questions.component.js.es6 +129 -0
  17. data/app/assets/javascripts/decidim/elections/vote_verify.js.es6 +71 -0
  18. data/app/assets/javascripts/decidim/votings/admin/monitoring_committee_members_form.js.es6 +35 -0
  19. data/app/assets/javascripts/decidim/votings/admin/polling_officers_form.js.es6 +35 -0
  20. data/app/assets/javascripts/decidim/votings/admin/polling_officers_picker.js.es6 +35 -0
  21. data/app/assets/javascripts/decidim/votings/admin/polling_stations_form.js.es6 +5 -0
  22. data/app/assets/stylesheets/decidim/elections/elections.scss +0 -4
  23. data/app/assets/stylesheets/decidim/elections/focus/_accordion.scss +36 -0
  24. data/app/assets/stylesheets/decidim/elections/focus/_evote.scss +58 -0
  25. data/app/assets/stylesheets/decidim/elections/trustee_zone.scss +24 -0
  26. data/app/assets/stylesheets/decidim/votings/votings.scss +1 -0
  27. data/app/assets/stylesheets/decidim/votings/votings/_votings-header.scss +99 -0
  28. data/app/assets/stylesheets/decidim/votings/votings/_votings-home-banner.scss +11 -0
  29. data/app/cells/decidim/votings/content_block_cell.rb +17 -0
  30. data/app/cells/decidim/votings/content_blocks/highlighted_votings/show.erb +30 -0
  31. data/app/cells/decidim/votings/content_blocks/highlighted_votings_cell.rb +33 -0
  32. data/app/cells/decidim/votings/content_blocks/highlighted_votings_settings_form/show.erb +3 -0
  33. data/app/cells/decidim/votings/content_blocks/highlighted_votings_settings_form_cell.rb +19 -0
  34. data/app/cells/decidim/votings/content_blocks/landing_page/attachments_and_folders_cell.rb +15 -0
  35. data/app/cells/decidim/votings/content_blocks/landing_page/description_cell.rb +15 -0
  36. data/app/cells/decidim/votings/content_blocks/landing_page/elections_cell.rb +15 -0
  37. data/app/cells/decidim/votings/content_blocks/landing_page/header_cell.rb +15 -0
  38. data/app/cells/decidim/votings/content_blocks/landing_page/metrics_cell.rb +15 -0
  39. data/app/cells/decidim/votings/content_blocks/landing_page/polling_stations_cell.rb +15 -0
  40. data/app/cells/decidim/votings/content_blocks/landing_page/stats_cell.rb +15 -0
  41. data/app/cells/decidim/votings/content_blocks/landing_page/timeline_cell.rb +15 -0
  42. data/app/cells/decidim/votings/polling_officers/polling_officers_picker/polling_officers.erb +12 -0
  43. data/app/cells/decidim/votings/polling_officers/polling_officers_picker/show.erb +14 -0
  44. data/app/cells/decidim/votings/polling_officers/polling_officers_picker_cell.rb +73 -0
  45. data/app/cells/decidim/votings/voting_cell.rb +19 -0
  46. data/app/cells/decidim/votings/voting_m/data.erb +21 -0
  47. data/app/cells/decidim/votings/voting_m/footer.erb +5 -0
  48. data/app/cells/decidim/votings/voting_m_cell.rb +94 -0
  49. data/app/commands/decidim/elections/admin/add_user_as_trustee.rb +81 -0
  50. data/app/commands/decidim/elections/admin/create_election.rb +2 -1
  51. data/app/commands/decidim/elections/admin/end_vote.rb +63 -0
  52. data/app/commands/decidim/elections/admin/publish_results.rb +59 -0
  53. data/app/commands/decidim/elections/admin/remove_trustee_from_participatory_space.rb +37 -0
  54. data/app/commands/decidim/elections/admin/setup_election.rb +160 -0
  55. data/app/commands/decidim/elections/admin/start_key_ceremony.rb +63 -0
  56. data/app/commands/decidim/elections/admin/start_tally.rb +63 -0
  57. data/app/commands/decidim/elections/admin/start_vote.rb +63 -0
  58. data/app/commands/decidim/elections/admin/update_action_status.rb +47 -0
  59. data/app/commands/decidim/elections/admin/update_answer_selection.rb +41 -0
  60. data/app/commands/decidim/elections/admin/update_trustee_participatory_space.rb +40 -0
  61. data/app/commands/decidim/elections/trustee_zone/update_election_bulletin_board_status.rb +39 -0
  62. data/app/commands/decidim/elections/trustee_zone/update_trustee.rb +41 -0
  63. data/app/commands/decidim/elections/voter/cast_vote.rb +59 -0
  64. data/app/commands/decidim/elections/voter/update_vote_status.rb +70 -0
  65. data/app/commands/decidim/votings/admin/create_monitoring_committee_member.rb +99 -0
  66. data/app/commands/decidim/votings/admin/create_polling_officer.rb +99 -0
  67. data/app/commands/decidim/votings/admin/create_polling_station.rb +59 -0
  68. data/app/commands/decidim/votings/admin/create_voting.rb +59 -0
  69. data/app/commands/decidim/votings/admin/destroy_monitoring_committee_member.rb +51 -0
  70. data/app/commands/decidim/votings/admin/destroy_polling_officer.rb +52 -0
  71. data/app/commands/decidim/votings/admin/destroy_polling_station.rb +40 -0
  72. data/app/commands/decidim/votings/admin/manage_polling_station.rb +64 -0
  73. data/app/commands/decidim/votings/admin/publish_voting.rb +40 -0
  74. data/app/commands/decidim/votings/admin/unpublish_voting.rb +40 -0
  75. data/app/commands/decidim/votings/admin/update_polling_station.rb +50 -0
  76. data/app/commands/decidim/votings/admin/update_voting.rb +85 -0
  77. data/app/constraints/decidim/votings/current_component.rb +28 -0
  78. data/app/constraints/decidim/votings/current_voting.rb +43 -0
  79. data/app/controllers/concerns/decidim/elections/orderable.rb +2 -2
  80. data/app/controllers/concerns/decidim/polling_officers/admin/filterable.rb +58 -0
  81. data/app/controllers/concerns/decidim/polling_stations/admin/filterable.rb +57 -0
  82. data/app/controllers/concerns/decidim/votings/admin/filterable.rb +27 -0
  83. data/app/controllers/concerns/decidim/votings/admin/voting_admin.rb +48 -0
  84. data/app/controllers/concerns/decidim/votings/needs_voting.rb +44 -0
  85. data/app/controllers/concerns/decidim/votings/orderable.rb +32 -0
  86. data/app/controllers/decidim/elections/admin/answers_controller.rb +32 -0
  87. data/app/controllers/decidim/elections/admin/elections_controller.rb +2 -2
  88. data/app/controllers/decidim/elections/admin/feedback_forms_controller.rb +55 -0
  89. data/app/controllers/decidim/elections/admin/steps_controller.rb +96 -0
  90. data/app/controllers/decidim/elections/admin/trustees_participatory_spaces_controller.rb +89 -0
  91. data/app/controllers/decidim/elections/elections_controller.rb +5 -1
  92. data/app/controllers/decidim/elections/feedbacks_controller.rb +38 -0
  93. data/app/controllers/decidim/elections/trustee_zone/application_controller.rb +45 -0
  94. data/app/controllers/decidim/elections/trustee_zone/elections_controller.rb +35 -0
  95. data/app/controllers/decidim/elections/trustee_zone/trustees_controller.rb +36 -0
  96. data/app/controllers/decidim/elections/votes_controller.rb +54 -2
  97. data/app/controllers/decidim/votings/admin/application_controller.rb +26 -0
  98. data/app/controllers/decidim/votings/admin/component_permissions_controller.rb +13 -0
  99. data/app/controllers/decidim/votings/admin/components_controller.rb +15 -0
  100. data/app/controllers/decidim/votings/admin/monitoring_committee_members_controller.rb +62 -0
  101. data/app/controllers/decidim/votings/admin/polling_officers_controller.rb +66 -0
  102. data/app/controllers/decidim/votings/admin/polling_stations_controller.rb +92 -0
  103. data/app/controllers/decidim/votings/admin/voting_attachment_collections_controller.rb +22 -0
  104. data/app/controllers/decidim/votings/admin/voting_attachments_controller.rb +21 -0
  105. data/app/controllers/decidim/votings/admin/votings_controller.rb +124 -0
  106. data/app/controllers/decidim/votings/admin/votings_landing_page_content_blocks_controller.rb +44 -0
  107. data/app/controllers/decidim/votings/admin/votings_landing_page_controller.rb +46 -0
  108. data/app/controllers/decidim/votings/application_controller.rb +26 -0
  109. data/app/controllers/decidim/votings/polling_officer_zone/application_controller.rb +33 -0
  110. data/app/controllers/decidim/votings/polling_officer_zone/polling_officers_controller.rb +17 -0
  111. data/app/controllers/decidim/votings/polling_officer_zone/polling_stations_controller.rb +22 -0
  112. data/app/controllers/decidim/votings/votings_controller.rb +98 -0
  113. data/app/events/decidim/elections/trustees/notify_new_trustee_event.rb +28 -0
  114. data/app/events/decidim/elections/trustees/notify_trustee_new_election_event.rb +14 -0
  115. data/app/events/decidim/elections/votes/vote_accepted_event.rb +24 -0
  116. data/app/events/decidim/votings/polling_officers/polling_station_assigned_event.rb +44 -0
  117. data/app/forms/decidim/elections/admin/action_form.rb +34 -0
  118. data/app/forms/decidim/elections/admin/answer_form.rb +3 -2
  119. data/app/forms/decidim/elections/admin/election_form.rb +3 -2
  120. data/app/forms/decidim/elections/admin/setup_form.rb +79 -0
  121. data/app/forms/decidim/elections/admin/trustees_participatory_space_form.rb +22 -0
  122. data/app/forms/decidim/elections/admin/vote_period_form.rb +37 -0
  123. data/app/forms/decidim/elections/ballot/verify_vote_form.rb +29 -0
  124. data/app/forms/decidim/elections/trustee_zone/trustee_form.rb +26 -0
  125. data/app/forms/decidim/elections/voter/encrypted_vote_form.rb +49 -0
  126. data/app/forms/decidim/votings/admin/monitoring_committee_member_form.rb +27 -0
  127. data/app/forms/decidim/votings/admin/polling_officer_form.rb +27 -0
  128. data/app/forms/decidim/votings/admin/polling_station_form.rb +58 -0
  129. data/app/forms/decidim/votings/admin/voting_form.rb +71 -0
  130. data/app/helpers/decidim/elections/admin/answers_helper.rb +19 -0
  131. data/app/helpers/decidim/elections/admin/steps_helper.rb +23 -0
  132. data/app/helpers/decidim/elections/admin/trustees_participatory_spaces_helper.rb +31 -0
  133. data/app/helpers/decidim/elections/elections_helper.rb +29 -0
  134. data/app/helpers/decidim/votings/admin/polling_officers_picker_helper.rb +29 -0
  135. data/app/helpers/decidim/votings/votings_helper.rb +20 -0
  136. data/app/models/decidim/elections/action.rb +13 -0
  137. data/app/models/decidim/elections/election.rb +54 -3
  138. data/app/models/decidim/elections/elections_trustee.rb +11 -0
  139. data/app/models/decidim/elections/question.rb +19 -0
  140. data/app/models/decidim/elections/trustee.rb +26 -0
  141. data/app/models/decidim/elections/trustees_participatory_space.rb +13 -0
  142. data/app/models/decidim/elections/vote.rb +15 -0
  143. data/app/models/decidim/votings/monitoring_committee_member.rb +24 -0
  144. data/app/models/decidim/votings/polling_officer.rb +76 -0
  145. data/app/models/decidim/votings/polling_station.rb +64 -0
  146. data/app/models/decidim/votings/voting.rb +138 -0
  147. data/app/permissions/decidim/elections/admin/permissions.rb +50 -10
  148. data/app/permissions/decidim/elections/permissions.rb +20 -2
  149. data/app/permissions/decidim/elections/trustee_zone/permissions.rb +32 -0
  150. data/app/permissions/decidim/votings/admin/permissions.rb +127 -0
  151. data/app/permissions/decidim/votings/permissions.rb +40 -0
  152. data/app/permissions/decidim/votings/polling_officer_zone/permissions.rb +32 -0
  153. data/app/presenters/decidim/elections/admin_log/election_presenter.rb +1 -1
  154. data/app/presenters/decidim/elections/trustee_presenter.rb +24 -0
  155. data/app/presenters/decidim/votings/admin_log/voting_presenter.rb +45 -0
  156. data/app/presenters/decidim/votings/polling_station_presenter.rb +27 -0
  157. data/app/presenters/decidim/votings/voting_presenter.rb +36 -0
  158. data/app/queries/decidim/elections/admin/pending_actions.rb +20 -0
  159. data/app/queries/decidim/elections/admin/votes_for_statistics.rb +24 -0
  160. data/app/queries/decidim/elections/elections_finished_to_end.rb +19 -0
  161. data/app/queries/decidim/elections/elections_ready_to_start.rb +25 -0
  162. data/app/queries/decidim/elections/trustees/by_participatory_space.rb +24 -0
  163. data/app/queries/decidim/elections/trustees/by_participatory_space_trustee_ids.rb +24 -0
  164. data/app/queries/decidim/elections/votes/election_votes.rb +19 -0
  165. data/app/queries/decidim/elections/votes/pending_votes.rb +20 -0
  166. data/app/queries/decidim/elections/votes/user_election_last_vote.rb +26 -0
  167. data/app/queries/decidim/elections/votes/user_votes.rb +19 -0
  168. data/app/queries/decidim/votings/admin/admin_users.rb +39 -0
  169. data/app/queries/decidim/votings/admin/polling_officers_join_polling_stations.rb +33 -0
  170. data/app/queries/decidim/votings/admin/polling_officers_join_polling_stations_and_user.rb +34 -0
  171. data/app/queries/decidim/votings/admin/polling_officers_join_user.rb +32 -0
  172. data/app/queries/decidim/votings/organization_prioritized_votings.rb +21 -0
  173. data/app/queries/decidim/votings/organization_promoted_votings.rb +16 -0
  174. data/app/queries/decidim/votings/organization_published_votings.rb +19 -0
  175. data/app/queries/decidim/votings/organization_votings.rb +16 -0
  176. data/app/queries/decidim/votings/prioritized_votings.rb +13 -0
  177. data/app/queries/decidim/votings/published_votings.rb +12 -0
  178. data/app/services/decidim/votings/voting_search.rb +46 -0
  179. data/app/views/decidim/elections/admin/answers/index.html.erb +12 -0
  180. data/app/views/decidim/elections/admin/elections/index.html.erb +13 -1
  181. data/app/views/decidim/elections/admin/proposals_imports/new.html.erb +1 -1
  182. data/app/views/decidim/elections/admin/questions/index.html.erb +5 -1
  183. data/app/views/decidim/elections/admin/shared/_trustees_secondary_nav.html.erb +3 -0
  184. data/app/views/decidim/elections/admin/steps/_create_election.html.erb +38 -0
  185. data/app/views/decidim/elections/admin/steps/_created.html.erb +16 -0
  186. data/app/views/decidim/elections/admin/steps/_key_ceremony.html.erb +16 -0
  187. data/app/views/decidim/elections/admin/steps/_key_ceremony_ended.html.erb +15 -0
  188. data/app/views/decidim/elections/admin/steps/_tally.html.erb +17 -0
  189. data/app/views/decidim/elections/admin/steps/_tally_ended.html.erb +9 -0
  190. data/app/views/decidim/elections/admin/steps/_vote.html.erb +21 -0
  191. data/app/views/decidim/elections/admin/steps/_vote_ended.html.erb +15 -0
  192. data/app/views/decidim/elections/admin/steps/_vote_stats.html.erb +31 -0
  193. data/app/views/decidim/elections/admin/steps/index.html.erb +43 -0
  194. data/app/views/decidim/elections/admin/trustees_participatory_spaces/_form.html.erb +19 -0
  195. data/app/views/decidim/elections/admin/trustees_participatory_spaces/index.html.erb +64 -0
  196. data/app/views/decidim/elections/admin/trustees_participatory_spaces/new.html.erb +7 -0
  197. data/app/views/decidim/elections/elections/_filters_small_view.html.erb +1 -1
  198. data/app/views/decidim/elections/elections/_preview.html.erb +26 -0
  199. data/app/views/decidim/elections/elections/_results.html.erb +47 -0
  200. data/app/views/decidim/elections/elections/show.html.erb +43 -18
  201. data/app/views/decidim/elections/trustee_zone/elections/_backup_modal.html.erb +24 -0
  202. data/app/views/decidim/elections/trustee_zone/elections/_key_ceremony_steps.html.erb +44 -0
  203. data/app/views/decidim/elections/trustee_zone/elections/_restore_modal.html.erb +25 -0
  204. data/app/views/decidim/elections/trustee_zone/elections/_tally_steps.html.erb +43 -0
  205. data/app/views/decidim/elections/trustee_zone/elections/show.html.erb +38 -0
  206. data/app/views/decidim/elections/trustee_zone/elections/update.js.erb +5 -0
  207. data/app/views/decidim/elections/trustee_zone/trustees/show.html.erb +102 -0
  208. data/app/views/decidim/elections/votes/_election_votes_confirmed.html.erb +38 -17
  209. data/app/views/decidim/elections/votes/_election_votes_failed.html.erb +21 -0
  210. data/app/views/decidim/elections/votes/_election_votes_question.html.erb +4 -4
  211. data/app/views/decidim/elections/votes/cast_failed.js.erb +1 -0
  212. data/app/views/decidim/elections/votes/cast_success.js.erb +1 -0
  213. data/app/views/decidim/elections/votes/new.html.erb +41 -33
  214. data/app/views/decidim/elections/votes/verify.html.erb +78 -0
  215. data/app/views/decidim/votings/admin/monitoring_committee_members/_form.html.erb +27 -0
  216. data/app/views/decidim/votings/admin/monitoring_committee_members/index.html.erb +41 -0
  217. data/app/views/decidim/votings/admin/monitoring_committee_members/new.html.erb +7 -0
  218. data/app/views/decidim/votings/admin/polling_officers/_form.html.erb +27 -0
  219. data/app/views/decidim/votings/admin/polling_officers/index.html.erb +50 -0
  220. data/app/views/decidim/votings/admin/polling_officers/new.html.erb +7 -0
  221. data/app/views/decidim/votings/admin/polling_stations/_form.html.erb +40 -0
  222. data/app/views/decidim/votings/admin/polling_stations/edit.html.erb +7 -0
  223. data/app/views/decidim/votings/admin/polling_stations/index.html.erb +55 -0
  224. data/app/views/decidim/votings/admin/polling_stations/new.html.erb +7 -0
  225. data/app/views/decidim/votings/admin/votings/_form.html.erb +63 -0
  226. data/app/views/decidim/votings/admin/votings/edit.html.erb +31 -0
  227. data/app/views/decidim/votings/admin/votings/index.html.erb +87 -0
  228. data/app/views/decidim/votings/admin/votings/new.html.erb +13 -0
  229. data/app/views/decidim/votings/admin/votings/polling_officers_picker.html.erb +2 -0
  230. data/app/views/decidim/votings/polling_officer_zone/polling_officers/show.html.erb +42 -0
  231. data/app/views/decidim/votings/polling_officer_zone/polling_stations/show.html.erb +1 -0
  232. data/app/views/decidim/votings/votings/_count.html.erb +1 -0
  233. data/app/views/decidim/votings/votings/_filters.html.erb +25 -0
  234. data/app/views/decidim/votings/votings/_filters_small_view.html.erb +23 -0
  235. data/app/views/decidim/votings/votings/_promoted_voting.html.erb +27 -0
  236. data/app/views/decidim/votings/votings/_voting_details.html.erb +7 -0
  237. data/app/views/decidim/votings/votings/_votings.html.erb +25 -0
  238. data/app/views/decidim/votings/votings/index.html.erb +42 -0
  239. data/app/views/decidim/votings/votings/index.js.erb +10 -0
  240. data/app/views/decidim/votings/votings/show.html.erb +20 -0
  241. data/app/views/layouts/decidim/_voting_header.html.erb +16 -0
  242. data/app/views/layouts/decidim/admin/voting.html.erb +101 -0
  243. data/app/views/layouts/decidim/voting.html.erb +16 -0
  244. data/config/initializers/decidim_bulletin_board.rb +23 -0
  245. data/config/locales/ca.yml +650 -20
  246. data/config/locales/cs.yml +644 -6
  247. data/config/locales/de.yml +636 -6
  248. data/config/locales/el.yml +0 -2
  249. data/config/locales/en.yml +636 -6
  250. data/config/locales/es-MX.yml +636 -6
  251. data/config/locales/es-PY.yml +636 -6
  252. data/config/locales/es.yml +646 -16
  253. data/config/locales/fi-plain.yml +636 -6
  254. data/config/locales/fi.yml +636 -6
  255. data/config/locales/fr-CA.yml +423 -6
  256. data/config/locales/fr.yml +423 -6
  257. data/config/locales/gl.yml +85 -7
  258. data/config/locales/it.yml +94 -6
  259. data/config/locales/ja.yml +8 -6
  260. data/config/locales/lv.yml +0 -2
  261. data/config/locales/nl.yml +503 -6
  262. data/config/locales/no.yml +2 -5
  263. data/config/locales/pl.yml +644 -6
  264. data/config/locales/pt.yml +0 -6
  265. data/config/locales/ro-RO.yml +176 -6
  266. data/config/locales/sv.yml +257 -6
  267. data/config/locales/tr-TR.yml +111 -6
  268. data/config/locales/zh-CN.yml +0 -6
  269. data/db/migrate/20200915142713_add_questionnaire_to_existing_elections.rb +29 -0
  270. data/db/migrate/20200918153813_create_decidim_elections_trustees_participatory_spaces.rb +13 -0
  271. data/db/migrate/20200918153824_create_decidim_elections_elections_trustees.rb +10 -0
  272. data/db/migrate/20200918153835_create_decidim_elections_trustees.rb +12 -0
  273. data/db/migrate/20201026163334_add_blocked_at_and_bb_status_to_elections.rb +8 -0
  274. data/db/migrate/20201028090110_add_votes_to_decidim_elections_answers.rb +7 -0
  275. data/db/migrate/20201028135614_add_selected_to_decidim_elections_answers.rb +7 -0
  276. data/db/migrate/20201209110653_create_decidim_elections_votes.rb +14 -0
  277. data/db/migrate/20201216091123_add_name_to_trustees.rb +7 -0
  278. data/db/migrate/20210113113818_add_message_id_to_decidim_elections_votes.rb +7 -0
  279. data/db/migrate/20210113120115_create_decidim_elections_votings.rb +20 -0
  280. data/db/migrate/20210114100749_add_published_at_to_decidim_votings_votings.rb +7 -0
  281. data/db/migrate/20210114111850_add_user_to_decidim_elections_votes.rb +7 -0
  282. data/db/migrate/20210120164634_add_promoted_to_voting.rb +7 -0
  283. data/db/migrate/20210125124801_add_voting_type_to_voting_voting.rb +7 -0
  284. data/db/migrate/20210129124956_create_decidim_elections_actions.rb +14 -0
  285. data/db/migrate/20210204132111_add_votings_polling_stations.rb +19 -0
  286. data/db/migrate/20210208090441_add_polling_officers_to_votings.rb +12 -0
  287. data/db/migrate/20210210090738_add_votings_polling_station_references_to_votings_polling_officer.rb +8 -0
  288. data/db/migrate/20210216074707_add_monitoring_committee_member.rb +12 -0
  289. data/db/migrate/20210310120708_add_followable_counter_cache_to_votings.rb +16 -0
  290. data/db/seeds/city.jpeg +0 -0
  291. data/lib/decidim/api/election_answer_type.rb +23 -0
  292. data/lib/decidim/api/election_question_type.rb +22 -0
  293. data/lib/decidim/api/election_type.rb +27 -0
  294. data/lib/decidim/api/elections_type.rb +32 -0
  295. data/lib/decidim/api/trustee_type.rb +16 -0
  296. data/lib/decidim/api/voting_type.rb +20 -0
  297. data/lib/decidim/elections.rb +19 -2
  298. data/lib/decidim/elections/admin_engine.rb +42 -1
  299. data/lib/decidim/elections/answer_serializer.rb +48 -0
  300. data/lib/decidim/elections/api.rb +11 -0
  301. data/lib/decidim/elections/component.rb +367 -24
  302. data/lib/decidim/elections/engine.rb +8 -1
  303. data/lib/decidim/elections/test/factories.rb +201 -4
  304. data/lib/decidim/elections/trustee_zone.rb +10 -0
  305. data/lib/decidim/elections/trustee_zone_engine.rb +35 -0
  306. data/lib/decidim/elections/version.rb +1 -1
  307. data/lib/decidim/votings.rb +16 -0
  308. data/lib/decidim/votings/admin.rb +10 -0
  309. data/lib/decidim/votings/admin_engine.rb +71 -0
  310. data/lib/decidim/votings/api.rb +7 -0
  311. data/lib/decidim/votings/engine.rb +147 -0
  312. data/lib/decidim/votings/participatory_space.rb +92 -0
  313. data/lib/decidim/votings/polling_officer_zone.rb +10 -0
  314. data/lib/decidim/votings/polling_officer_zone_engine.rb +33 -0
  315. data/lib/decidim/votings/query_extensions.rb +43 -0
  316. data/lib/decidim/votings/test/capybara_polling_officers_picker.rb +49 -0
  317. data/lib/decidim/votings/test/factories.rb +83 -0
  318. data/lib/decidim/votings/voting_serializer.rb +54 -0
  319. data/lib/tasks/decidim_elections.rake +68 -5
  320. metadata +303 -19
  321. data/app/types/decidim/elections/election_answer_type.rb +0 -24
  322. data/app/types/decidim/elections/election_question_type.rb +0 -25
  323. data/app/types/decidim/elections/election_type.rb +0 -27
  324. data/app/types/decidim/elections/elections_type.rb +0 -32
  325. data/config/i18n-tasks.yml +0 -10
  326. data/lib/decidim/elections/bulletin_board_client.rb +0 -35
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Elections
5
+ module TrusteeZone
6
+ # This class holds a form to modify trustee information.
7
+ class TrusteeForm < Decidim::Form
8
+ mimic :trustee
9
+
10
+ attribute :name, String
11
+ attribute :public_key, String
12
+ validates :name, :public_key, presence: true
13
+ validate :dont_change_data
14
+
15
+ def dont_change_data
16
+ errors.add :name, :cant_be_changed if trustee.name.present?
17
+ errors.add :public_key, :cant_be_changed if trustee.public_key.present?
18
+ end
19
+
20
+ def trustee
21
+ @trustee ||= context[:trustee]
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,49 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Elections
5
+ module Voter
6
+ # This class holds the data to cast a vote.
7
+ class EncryptedVoteForm < Decidim::Form
8
+ attribute :encrypted_vote, String
9
+ attribute :encrypted_vote_hash, String
10
+
11
+ validates :encrypted_vote, :encrypted_vote_hash, :current_user, :election, presence: true
12
+ validate :hash_is_valid
13
+
14
+ delegate :id, to: :election, prefix: true
15
+
16
+ def election_unique_id
17
+ @election_unique_id ||= Decidim::BulletinBoard::MessageIdentifier.unique_election_id(bulletin_board.authority_slug, election_id)
18
+ end
19
+
20
+ # Public: computes a unique id for the voter/election pair.
21
+ def voter_id
22
+ @voter_id ||= Digest::SHA256.hexdigest([current_user.created_at, current_user.id, election.id, bulletin_board.authority_slug].join("."))
23
+ end
24
+
25
+ # Public: returns the associated election for the vote.
26
+ def election
27
+ @election ||= context.election
28
+ end
29
+
30
+ def bulletin_board
31
+ @bulletin_board ||= context[:bulletin_board] || Decidim::Elections.bulletin_board
32
+ end
33
+
34
+ def current_user
35
+ @current_user ||= context[:current_user]
36
+ end
37
+
38
+ private
39
+
40
+ # Private: check if the hash sent by the browser is correct.
41
+ def hash_is_valid
42
+ return if encrypted_vote.blank? || encrypted_vote_hash.blank?
43
+
44
+ errors.add(:encrypted_vote_hash, :invalid) if Digest::SHA256.hexdigest(encrypted_vote) != encrypted_vote_hash
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Votings
5
+ module Admin
6
+ class MonitoringCommitteeMemberForm < Decidim::Form
7
+ attribute :name, String
8
+ attribute :email, String
9
+ attribute :user_id, Integer
10
+ attribute :existing_user, Boolean, default: false
11
+
12
+ validates :email, presence: true, format: { with: ::Devise.email_regexp }, unless: ->(form) { form.existing_user }
13
+ validates :name, presence: true, format: { with: UserBaseEntity::REGEXP_NAME }, unless: ->(form) { form.existing_user }
14
+ validates :user, presence: true, if: ->(form) { form.existing_user }
15
+
16
+ def map_model(model)
17
+ self.user_id = model.decidim_user_id
18
+ self.existing_user = user_id.present?
19
+ end
20
+
21
+ def user
22
+ @user ||= current_organization.users.find_by(id: user_id)
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Votings
5
+ module Admin
6
+ class PollingOfficerForm < Decidim::Form
7
+ attribute :name, String
8
+ attribute :email, String
9
+ attribute :user_id, Integer
10
+ attribute :existing_user, Boolean, default: false
11
+
12
+ validates :email, presence: true, format: { with: ::Devise.email_regexp }, unless: ->(form) { form.existing_user }
13
+ validates :name, presence: true, format: { with: UserBaseEntity::REGEXP_NAME }, unless: ->(form) { form.existing_user }
14
+ validates :user, presence: true, if: ->(form) { form.existing_user }
15
+
16
+ def map_model(model)
17
+ self.user_id = model.decidim_user_id
18
+ self.existing_user = user_id.present?
19
+ end
20
+
21
+ def user
22
+ @user ||= current_organization.users.find_by(id: user_id)
23
+ end
24
+ end
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,58 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Votings
5
+ module Admin
6
+ # This class holds a Form to create/update votings from Decidim's admin panel.
7
+ class PollingStationForm < Decidim::Form
8
+ include TranslatableAttributes
9
+
10
+ def map_model(model)
11
+ self.polling_station_president_id = model.polling_station_president&.id
12
+ self.polling_station_manager_ids = model.polling_station_managers.pluck(:id)
13
+ end
14
+
15
+ def geocoding_enabled?
16
+ Decidim::Map.available?(:geocoding)
17
+ end
18
+
19
+ def has_address?
20
+ geocoding_enabled? && address.present?
21
+ end
22
+
23
+ def geocoded?
24
+ latitude.present? && longitude.present?
25
+ end
26
+
27
+ def polling_station_president
28
+ @polling_station_president ||= PollingOfficer.find_by(id: polling_station_president_id)
29
+ end
30
+
31
+ def polling_station_managers
32
+ @polling_station_managers ||= PollingOfficer.where(id: polling_station_manager_ids)
33
+ end
34
+
35
+ def voting
36
+ @voting ||= context[:voting]
37
+ end
38
+
39
+ translatable_attribute :title, String
40
+ translatable_attribute :location, String
41
+ translatable_attribute :location_hints, String
42
+ attribute :address, String
43
+ attribute :latitude, Float
44
+ attribute :longitude, Float
45
+ attribute :polling_station_president_id, Integer
46
+ attribute :polling_station_manager_ids, Array[Integer]
47
+
48
+ validates :title, translatable_presence: true
49
+ validates :location, translatable_presence: true
50
+ validates :location_hints, translatable_presence: true
51
+ validates :address, presence: true
52
+ validates :address, geocoding: true, if: ->(form) { form.has_address? && !form.geocoded? }
53
+
54
+ alias component voting
55
+ end
56
+ end
57
+ end
58
+ end
@@ -0,0 +1,71 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Votings
5
+ module Admin
6
+ # This class holds a Form to create/update votings from Decidim's admin panel.
7
+ class VotingForm < Decidim::Form
8
+ include TranslatableAttributes
9
+
10
+ translatable_attribute :title, String
11
+ translatable_attribute :description, String
12
+ attribute :slug, String
13
+ attribute :start_time, Decidim::Attributes::TimeWithZone
14
+ attribute :end_time, Decidim::Attributes::TimeWithZone
15
+ attribute :scope_id, Integer
16
+ attribute :promoted, Boolean
17
+ attribute :remove_banner_image
18
+ attribute :banner_image, String
19
+ attribute :remove_introductory_image
20
+ attribute :introductory_image, String
21
+ attribute :voting_type, String
22
+
23
+ validates :title, translatable_presence: true
24
+ validates :description, translatable_presence: true
25
+ validates :slug, presence: true, format: { with: Decidim::Votings::Voting.slug_format }
26
+ validate :slug_uniqueness
27
+ validates :start_time, presence: true, date: { before: :end_time }
28
+ validates :end_time, presence: true, date: { after: :start_time }
29
+ validates :banner_image, passthru: { to: Decidim::Votings::Voting }
30
+ validates :introductory_image, passthru: { to: Decidim::Votings::Voting }
31
+ validates :voting_type, presence: true, inclusion: { in: Votings::Voting.voting_types, message: "%{value} is not a valid voting type" }
32
+
33
+ validates :scope, presence: true, if: proc { |object| object.scope_id.present? }
34
+
35
+ alias organization current_organization
36
+
37
+ def map_model(model)
38
+ self.scope_id = model.decidim_scope_id
39
+ end
40
+
41
+ def scope
42
+ @scope ||= current_organization.scopes.find_by(id: scope_id)
43
+ end
44
+
45
+ def options_for_voting_type_select
46
+ Voting.voting_types.map do |key, value|
47
+ [
48
+ I18n.t("voting_type.#{key}", scope: "decidim.votings.admin.votings.form"),
49
+ value
50
+ ]
51
+ end
52
+ end
53
+
54
+ private
55
+
56
+ def organization_votings
57
+ Voting.where(organization: current_organization)
58
+ end
59
+
60
+ def slug_uniqueness
61
+ return unless organization_votings
62
+ .where(slug: slug)
63
+ .where.not(id: context[:voting_id])
64
+ .any?
65
+
66
+ errors.add(:slug, :taken)
67
+ end
68
+ end
69
+ end
70
+ end
71
+ end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Elections
5
+ module Admin
6
+ # Custom helpers for answers on admin dashboard.
7
+ #
8
+ module AnswersHelper
9
+ def selected_label_action_for(answer)
10
+ if answer.selected
11
+ t("answers.select.disable", scope: "decidim.elections.admin")
12
+ else
13
+ t("answers.select.enable", scope: "decidim.elections.admin")
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Elections
5
+ module Admin
6
+ # Custom helpers for election steps on admin dashboard.
7
+ #
8
+ module StepsHelper
9
+ def steps(current_step)
10
+ step_class = "text-success"
11
+ (["create_election"] + Decidim::Elections::Election.bb_statuses.keys).map do |step|
12
+ if step == current_step
13
+ step_class = "text-muted"
14
+ [step, "text-warning"]
15
+ else
16
+ [step, step_class]
17
+ end
18
+ end
19
+ end
20
+ end
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Elections
5
+ module Admin
6
+ # Custom helpers for trustees admin.
7
+ #
8
+ module TrusteesParticipatorySpacesHelper
9
+ def trustee_current_participatory_space(trustee)
10
+ trustee.trustees_participatory_spaces.find_by(participatory_space: current_participatory_space)
11
+ end
12
+
13
+ def considered_icon_action_for(trustee)
14
+ if trustee_current_participatory_space(trustee).considered
15
+ "x"
16
+ else
17
+ "check"
18
+ end
19
+ end
20
+
21
+ def considered_label_action_for(trustee)
22
+ if trustee_current_participatory_space(trustee).considered
23
+ t("trustees_participatory_spaces.actions.disable", scope: "decidim.elections.admin")
24
+ else
25
+ t("trustees_participatory_spaces.actions.enable", scope: "decidim.elections.admin")
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Elections
5
+ # Custom helpers for the elections views.
6
+ #
7
+ module ElectionsHelper
8
+ def vote_action_button
9
+ if already_voted?
10
+ last_vote_accepted? ? t("change-vote", scope: "decidim.elections.elections.show.action-button") : t("vote-again", scope: "decidim.elections.elections.show.action-button")
11
+ else
12
+ t("vote", scope: "decidim.elections.elections.show.action-button")
13
+ end
14
+ end
15
+
16
+ def callout_text
17
+ last_vote_accepted? ? t("already-voted", scope: "decidim.elections.elections.show.callout") : t("vote-rejected", scope: "decidim.elections.elections.show.callout")
18
+ end
19
+
20
+ def already_voted?
21
+ last_vote.present?
22
+ end
23
+
24
+ def last_vote_accepted?
25
+ !!last_vote&.accepted?
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,29 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Votings
5
+ module Admin
6
+ # This class contains helpers needed to show the polling officers picker.
7
+ module PollingOfficersPickerHelper
8
+ def polling_officers_picker(form, field, url)
9
+ picker_options = {
10
+ id: sanitize_to_id(field),
11
+ class: "picker-multiple",
12
+ name: "#{form.object_name}[#{field.to_s.sub(/s$/, "_ids")}]",
13
+ multiple: true,
14
+ autosort: true
15
+ }
16
+
17
+ prompt_params = {
18
+ url: url,
19
+ text: t("polling_officers_picker.choose_polling_officers", scope: "decidim.votings.admin.polling_officers")
20
+ }
21
+
22
+ form.data_picker(field, picker_options, prompt_params) do |item|
23
+ { url: url, text: item.name }
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Votings
5
+ module VotingsHelper
6
+ include Decidim::CheckBoxesTreeHelper
7
+
8
+ def filter_states_values
9
+ TreeNode.new(
10
+ TreePoint.new("", t("votings.filters.all", scope: "decidim.votings")),
11
+ [
12
+ TreePoint.new("active", t("votings.filters.active", scope: "decidim.votings")),
13
+ TreePoint.new("upcoming", t("votings.filters.upcoming", scope: "decidim.votings")),
14
+ TreePoint.new("finished", t("votings.filters.finished", scope: "decidim.votings"))
15
+ ]
16
+ )
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ module Elections
5
+ # The data store for tracking asynchronous Actions done in the Bulletin Board from the Decidim::Elections component.
6
+ class Action < ApplicationRecord
7
+ belongs_to :election, foreign_key: "decidim_elections_election_id", class_name: "Decidim::Elections::Election"
8
+
9
+ enum status: [:pending, :accepted, :rejected]
10
+ enum action: [:start_key_ceremony, :start_vote, :end_vote, :start_tally]
11
+ end
12
+ end
13
+ end
@@ -13,12 +13,19 @@ module Decidim
13
13
  include Decidim::TranslatableResource
14
14
  include Traceable
15
15
  include Loggable
16
+ include Decidim::Forms::HasQuestionnaire
16
17
 
17
18
  translatable_fields :title, :description
19
+ enum bb_status: [:created, :key_ceremony, :key_ceremony_ended, :vote, :vote_ended, :tally, :tally_ended, :results_published]
20
+ .map { |status| [status, status.to_s] }.to_h, _prefix: :bb
18
21
 
19
22
  component_manifest_name "elections"
20
23
 
21
24
  has_many :questions, foreign_key: "decidim_elections_election_id", class_name: "Decidim::Elections::Question", inverse_of: :election, dependent: :destroy
25
+ has_many :elections_trustees, foreign_key: "decidim_elections_election_id", dependent: :destroy
26
+ has_many :trustees, through: :elections_trustees
27
+ has_many :votes, foreign_key: "decidim_elections_election_id", class_name: "Decidim::Elections::Vote", dependent: :restrict_with_exception
28
+ has_many :actions, foreign_key: "decidim_elections_election_id", class_name: "Decidim::Elections::Action", dependent: :restrict_with_exception
22
29
 
23
30
  scope :active, lambda {
24
31
  where("start_time <= ?", Time.current)
@@ -60,13 +67,46 @@ module Decidim
60
67
  started? && !finished?
61
68
  end
62
69
 
70
+ # Public: Checks if the election start_time is minimum some hours later than the present time
71
+ #
72
+ # Returns a boolean.
73
+ def minimum_hours_before_start?
74
+ start_time > (Time.zone.at(Decidim::Elections.setup_minimum_hours_before_start.hours.from_now))
75
+ end
76
+
77
+ # Public: Checks if the election start_time is maximum some hours before than the present time
78
+ #
79
+ # Returns a boolean.
80
+ def maximum_hours_before_start?
81
+ start_time < (Time.zone.at(Decidim::Elections.start_vote_maximum_hours_before_start.hours.from_now))
82
+ end
83
+
84
+ # Public: Checks if the number of answers are minimum 2 for each question
85
+ #
86
+ # Returns a boolean.
87
+ def minimum_answers?
88
+ questions.all? { |question| question.answers.size > 1 }
89
+ end
90
+
91
+ # Public: Checks if the election results are published and election finished
92
+ #
93
+ # Returns a boolean.
94
+ def results_published?
95
+ bb_results_published?
96
+ end
97
+
98
+ # Public: Checks if the election results present
99
+ #
100
+ # Returns a boolean.
101
+ def results?
102
+ bb_tally_ended?
103
+ end
104
+
63
105
  # Public: Checks if the election questions are valid
64
106
  #
65
107
  # Returns a boolean.
66
108
  def valid_questions?
67
- questions.each do |question|
68
- return false unless question.valid_max_selection?
69
- end
109
+ questions.all?(&:valid_max_selection?)
70
110
  end
71
111
 
72
112
  # Public: Gets the voting period status of the election
@@ -82,6 +122,17 @@ module Decidim
82
122
  end
83
123
  end
84
124
 
125
+ def trustee_action_required?
126
+ bb_key_ceremony? || bb_tally?
127
+ end
128
+
129
+ # Public: Checks if the election has a blocked_at value
130
+ #
131
+ # Returns a boolean.
132
+ def blocked?
133
+ blocked_at.present?
134
+ end
135
+
85
136
  # Public: Overrides the Resourceable concern method to allow setting permissions at resource level
86
137
  def allow_resource_permissions?
87
138
  true