decidim-core 0.22.0 → 0.23.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of decidim-core might be problematic. Click here for more details.

Files changed (334) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/config/decidim_core_manifest.js +5 -0
  3. data/app/assets/javascripts/decidim.js.es6 +2 -0
  4. data/app/assets/javascripts/decidim/ajax_modals.js.es6 +3 -3
  5. data/app/assets/javascripts/decidim/confirm.js.es6 +3 -2
  6. data/app/assets/javascripts/decidim/core/bundle.js +1 -1
  7. data/app/assets/javascripts/decidim/core/bundle.js.map +1 -1
  8. data/app/assets/javascripts/decidim/diff_mode_dropdown.js.es6 +18 -4
  9. data/app/assets/javascripts/decidim/editor.js.es6 +4 -4
  10. data/app/assets/javascripts/decidim/geocoding.js.es6 +60 -0
  11. data/app/assets/javascripts/decidim/geocoding/attach_input.js.es6 +106 -0
  12. data/app/assets/javascripts/decidim/geocoding/format_address.js.es6 +29 -0
  13. data/app/assets/javascripts/decidim/geocoding/provider/here.js.es6 +107 -0
  14. data/app/assets/javascripts/decidim/geocoding/provider/photon.js.es6 +77 -0
  15. data/app/assets/javascripts/decidim/map.js.es6 +34 -124
  16. data/app/assets/javascripts/decidim/map/controller.js.es6 +92 -0
  17. data/app/assets/javascripts/decidim/map/controller/markers.js.es6 +65 -0
  18. data/app/assets/javascripts/decidim/map/controller/static.es6 +48 -0
  19. data/app/assets/javascripts/decidim/map/factory.js.es6 +51 -0
  20. data/app/assets/javascripts/decidim/map/icon.js.es6 +31 -0
  21. data/app/assets/javascripts/decidim/map/legacy.js.es6 +87 -0
  22. data/app/assets/javascripts/decidim/map/provider/default.js.es6 +22 -0
  23. data/app/assets/javascripts/decidim/map/provider/here.js.es6 +22 -0
  24. data/app/assets/javascripts/decidim/security/selfxss_warning.js.es6 +19 -0
  25. data/app/assets/stylesheets/decidim/_decidim.scss +2 -0
  26. data/app/assets/stylesheets/decidim/layouts/_home.scss +5 -0
  27. data/app/assets/stylesheets/decidim/modules/_cards.scss +15 -0
  28. data/app/assets/stylesheets/decidim/modules/_forms.scss +14 -0
  29. data/app/assets/stylesheets/decidim/modules/_layout.scss +11 -3
  30. data/app/assets/stylesheets/decidim/modules/_map.scss +35 -0
  31. data/app/assets/stylesheets/decidim/modules/_progress-bar.scss +4 -0
  32. data/app/assets/stylesheets/decidim/modules/_reveal.scss +5 -0
  33. data/app/assets/stylesheets/decidim/modules/_status-labels.scss +2 -1
  34. data/app/cells/decidim/author/flag.erb +1 -1
  35. data/app/cells/decidim/author/profile_inline.erb +2 -2
  36. data/app/cells/decidim/author_cell.rb +5 -2
  37. data/app/cells/decidim/card_cell.rb +21 -7
  38. data/app/cells/decidim/card_m/show.erb +1 -1
  39. data/app/cells/decidim/card_m_cell.rb +6 -4
  40. data/app/cells/decidim/collapsible_authors_cell.rb +1 -1
  41. data/app/cells/decidim/content_blocks/sub_hero/show.erb +3 -1
  42. data/app/cells/decidim/diff/diff_mode_html.erb +5 -5
  43. data/app/cells/decidim/follow_button/show.erb +6 -6
  44. data/app/cells/decidim/follow_button_cell.rb +8 -0
  45. data/app/cells/decidim/progress_bar/show.erb +11 -4
  46. data/app/cells/decidim/progress_bar_cell.rb +20 -1
  47. data/app/cells/decidim/tos_page/announcement.erb +0 -1
  48. data/app/cells/decidim/tos_page/form.erb +17 -0
  49. data/app/cells/decidim/translation_bar/show.erb +6 -0
  50. data/app/cells/decidim/translation_bar_cell.rb +52 -0
  51. data/app/cells/decidim/version_cell.rb +1 -1
  52. data/app/cells/decidim/versions_list_cell.rb +1 -1
  53. data/app/commands/decidim/amendable/accept.rb +9 -3
  54. data/app/commands/decidim/amendable/create_draft.rb +2 -0
  55. data/app/commands/decidim/amendable/update_draft.rb +2 -0
  56. data/app/commands/decidim/attachment_methods.rb +20 -5
  57. data/app/commands/decidim/destroy_account.rb +1 -0
  58. data/app/commands/decidim/gallery_methods.rb +16 -9
  59. data/app/commands/decidim/messaging/reply_to_conversation.rb +1 -1
  60. data/app/commands/decidim/multiple_attachments_methods.rb +56 -0
  61. data/app/controllers/concerns/decidim/devise_controllers.rb +1 -0
  62. data/app/controllers/concerns/decidim/filter_resource.rb +24 -6
  63. data/app/controllers/concerns/decidim/flaggable.rb +20 -0
  64. data/app/controllers/concerns/decidim/force_authentication.rb +1 -0
  65. data/app/controllers/concerns/decidim/impersonate_users.rb +1 -1
  66. data/app/controllers/concerns/decidim/needs_snippets.rb +20 -0
  67. data/app/controllers/concerns/decidim/paginable.rb +5 -1
  68. data/app/controllers/concerns/decidim/withdrawable.rb +20 -0
  69. data/app/controllers/decidim/application_controller.rb +16 -0
  70. data/app/controllers/decidim/components/base_controller.rb +6 -1
  71. data/app/controllers/decidim/cookie_policy_controller.rb +6 -3
  72. data/app/controllers/decidim/messaging/conversations_controller.rb +5 -2
  73. data/app/forms/decidim/account_form.rb +5 -1
  74. data/app/forms/decidim/amendable/create_form.rb +1 -1
  75. data/app/forms/decidim/amendable/form.rb +44 -3
  76. data/app/forms/decidim/attachment_form.rb +6 -1
  77. data/app/forms/decidim/user_group_form.rb +5 -1
  78. data/app/helpers/decidim/cells_helper.rb +3 -15
  79. data/app/helpers/decidim/check_boxes_tree_helper.rb +21 -12
  80. data/app/helpers/decidim/cookies_helper.rb +1 -1
  81. data/app/helpers/decidim/decidim_form_helper.rb +1 -1
  82. data/app/helpers/decidim/filter_params_helper.rb +30 -0
  83. data/app/helpers/decidim/map_helper.rb +86 -23
  84. data/app/helpers/decidim/orders_helper.rb +6 -1
  85. data/app/helpers/decidim/paginate_helper.rb +1 -8
  86. data/app/helpers/decidim/sanitize_helper.rb +8 -0
  87. data/app/helpers/decidim/scopes_helper.rb +5 -5
  88. data/app/helpers/decidim/translations_helper.rb +7 -1
  89. data/app/jobs/decidim/data_portability_export_job.rb +3 -3
  90. data/app/jobs/decidim/machine_translation_fields_job.rb +30 -0
  91. data/app/jobs/decidim/machine_translation_resource_job.rb +113 -0
  92. data/app/jobs/decidim/machine_translation_save_job.rb +33 -0
  93. data/app/jobs/decidim/open_data_job.rb +1 -1
  94. data/app/mailers/decidim/application_mailer.rb +1 -0
  95. data/app/mailers/decidim/reported_mailer.rb +8 -1
  96. data/app/models/decidim/action_log.rb +1 -1
  97. data/app/models/decidim/area.rb +3 -0
  98. data/app/models/decidim/area_type.rb +4 -0
  99. data/app/models/decidim/attachment.rb +30 -2
  100. data/app/models/decidim/attachment_collection.rb +3 -0
  101. data/app/models/decidim/authorization.rb +3 -0
  102. data/app/models/decidim/category.rb +4 -0
  103. data/app/models/decidim/component.rb +7 -0
  104. data/app/models/decidim/content_block.rb +11 -1
  105. data/app/models/decidim/contextual_help_section.rb +4 -0
  106. data/app/models/decidim/follow.rb +3 -1
  107. data/app/models/decidim/messaging/message.rb +1 -1
  108. data/app/models/decidim/moderation.rb +1 -1
  109. data/app/models/decidim/newsletter.rb +3 -0
  110. data/app/models/decidim/oauth_application.rb +2 -0
  111. data/app/models/decidim/organization.rb +54 -10
  112. data/app/models/decidim/scope.rb +4 -1
  113. data/app/models/decidim/scope_type.rb +3 -0
  114. data/app/models/decidim/share_token.rb +49 -0
  115. data/app/models/decidim/static_page.rb +4 -1
  116. data/app/models/decidim/static_page_topic.rb +3 -0
  117. data/app/models/decidim/user.rb +11 -3
  118. data/app/models/decidim/user_base_entity.rb +6 -2
  119. data/app/permissions/decidim/permissions.rb +9 -0
  120. data/app/presenters/decidim/admin_log/component_presenter.rb +2 -2
  121. data/app/presenters/decidim/admin_log/moderation_presenter.rb +2 -2
  122. data/app/presenters/decidim/admin_log/organization_presenter.rb +2 -2
  123. data/app/presenters/decidim/admin_log/user_presenter.rb +2 -2
  124. data/app/presenters/decidim/log/base_presenter.rb +10 -2
  125. data/app/presenters/decidim/log/value_types/default_presenter.rb +1 -1
  126. data/app/presenters/decidim/official_author_presenter.rb +36 -0
  127. data/app/presenters/decidim/resource_locator_presenter.rb +63 -12
  128. data/app/queries/decidim/similar_emendations.rb +4 -4
  129. data/app/scrubbers/decidim/newsletter_scrubber.rb +31 -0
  130. data/app/scrubbers/decidim/user_input_scrubber.rb +1 -1
  131. data/app/serializers/decidim/importers/participatory_space_components_importer.rb +1 -1
  132. data/app/services/decidim/base_diff_renderer.rb +17 -0
  133. data/app/services/decidim/open_data_exporter.rb +2 -0
  134. data/app/services/decidim/resource_search.rb +95 -6
  135. data/app/services/decidim/static_map_generator.rb +10 -26
  136. data/app/services/decidim/tokenizer.rb +38 -0
  137. data/app/services/decidim/traceability.rb +3 -0
  138. data/app/uploaders/decidim/application_uploader.rb +19 -1
  139. data/app/uploaders/decidim/attachment_uploader.rb +23 -17
  140. data/app/uploaders/decidim/banner_image_uploader.rb +1 -1
  141. data/app/uploaders/decidim/hero_image_uploader.rb +1 -1
  142. data/app/uploaders/decidim/homepage_image_uploader.rb +1 -1
  143. data/app/uploaders/decidim/image_uploader.rb +6 -2
  144. data/app/uploaders/decidim/oauth_application_logo_uploader.rb +1 -1
  145. data/app/uploaders/decidim/official_image_footer_uploader.rb +1 -1
  146. data/app/uploaders/decidim/official_image_header_uploader.rb +1 -1
  147. data/app/uploaders/decidim/organization_logo_uploader.rb +1 -1
  148. data/app/uploaders/decidim/record_image_uploader.rb +15 -0
  149. data/app/validators/etiquette_validator.rb +0 -7
  150. data/app/validators/geocoding_validator.rb +9 -4
  151. data/app/validators/passthru_validator.rb +111 -0
  152. data/app/validators/scope_belongs_to_component_validator.rb +16 -0
  153. data/app/validators/uploader_content_type_validator.rb +44 -0
  154. data/app/views/decidim/authorization_modals/_content.html.erb +2 -2
  155. data/app/views/decidim/devise/registrations/new.html.erb +3 -1
  156. data/app/views/decidim/devise/sessions/new.html.erb +3 -1
  157. data/app/views/decidim/messaging/conversations/_error_modal.html.erb +21 -0
  158. data/app/views/decidim/messaging/conversations/error.js.erb +10 -0
  159. data/app/views/decidim/newsletter_mailer/newsletter.html.erb +1 -1
  160. data/app/views/decidim/notification_mailer/event_received.html.erb +2 -2
  161. data/app/views/decidim/pages/_standalone.html.erb +1 -1
  162. data/app/views/decidim/pages/_tabbed.html.erb +1 -1
  163. data/app/views/decidim/reported_mailer/report.html.erb +49 -3
  164. data/app/views/decidim/scopes/_scopes_picker_input.html.erb +15 -14
  165. data/app/views/decidim/searches/_filters.html.erb +1 -0
  166. data/app/views/decidim/shared/_login_modal.html.erb +14 -3
  167. data/app/views/decidim/shared/_static_map.html.erb +1 -1
  168. data/app/views/layouts/decidim/_head.html.erb +2 -0
  169. data/app/views/layouts/decidim/_js_configuration.html.erb +7 -1
  170. data/config/locales/am-ET.yml +1 -0
  171. data/config/locales/ar.yml +3 -4
  172. data/config/locales/bg.yml +1508 -0
  173. data/config/locales/ca.yml +36 -9
  174. data/config/locales/cs.yml +54 -27
  175. data/config/locales/da.yml +1 -0
  176. data/config/locales/de.yml +156 -128
  177. data/config/locales/el.yml +0 -4
  178. data/config/locales/en.yml +30 -3
  179. data/config/locales/eo.yml +92 -0
  180. data/config/locales/es-MX.yml +29 -2
  181. data/config/locales/es-PY.yml +28 -1
  182. data/config/locales/es.yml +44 -17
  183. data/config/locales/et.yml +1 -0
  184. data/config/locales/eu.yml +9 -4
  185. data/config/locales/fi-plain.yml +28 -1
  186. data/config/locales/fi.yml +34 -7
  187. data/config/locales/fr-CA.yml +32 -4
  188. data/config/locales/fr.yml +65 -37
  189. data/config/locales/ga-IE.yml +0 -8
  190. data/config/locales/gl.yml +10 -5
  191. data/config/locales/hr.yml +1 -0
  192. data/config/locales/hu.yml +7 -5
  193. data/config/locales/id-ID.yml +3 -4
  194. data/config/locales/is-IS.yml +3 -9
  195. data/config/locales/is.yml +463 -0
  196. data/config/locales/it.yml +37 -9
  197. data/config/locales/ja-JP.yml +25 -16
  198. data/config/locales/ja.yml +1605 -0
  199. data/config/locales/ko-KR.yml +1 -0
  200. data/config/locales/ko.yml +1 -0
  201. data/config/locales/lt.yml +1 -0
  202. data/config/locales/{lv-LV.yml → lv.yml} +2 -5
  203. data/config/locales/mt.yml +1 -0
  204. data/config/locales/nl.yml +34 -12
  205. data/config/locales/no.yml +150 -8
  206. data/config/locales/om-ET.yml +1 -0
  207. data/config/locales/pl.yml +89 -72
  208. data/config/locales/pt-BR.yml +4 -5
  209. data/config/locales/pt.yml +10 -4
  210. data/config/locales/ro-RO.yml +10 -4
  211. data/config/locales/ru.yml +3 -10
  212. data/config/locales/si-LK.yml +1 -0
  213. data/config/locales/sk.yml +3 -5
  214. data/config/locales/sl.yml +8 -7
  215. data/config/locales/so-SO.yml +1 -0
  216. data/config/locales/sr-CS.yml +0 -9
  217. data/config/locales/sv.yml +19 -8
  218. data/config/locales/sw-KE.yml +1 -0
  219. data/config/locales/ti-ER.yml +1 -0
  220. data/config/locales/tr-TR.yml +588 -247
  221. data/config/locales/uk.yml +3 -11
  222. data/config/locales/vi-VN.yml +1 -0
  223. data/config/locales/vi.yml +1 -0
  224. data/config/locales/zh-CN.yml +1584 -0
  225. data/config/locales/zh-TW.yml +1 -0
  226. data/db/migrate/20200525184143_add_enable_machine_translation_to_decidim_organizations.rb +7 -0
  227. data/db/migrate/20200702073419_create_decidim_share_tokens.rb +16 -0
  228. data/db/migrate/20200707132401_add_comments_max_length_to_decidim_organization.rb +7 -0
  229. data/db/migrate/20200730142511_add_file_upload_settings_to_decidim_organizations.rb +36 -0
  230. data/db/migrate/20200806092109_add_machine_translation_display_priority_to_organizations.rb +17 -0
  231. data/db/migrate/20201004160335_remove_notifications_with_continuity_badge.rb +9 -0
  232. data/db/seeds.rb +12 -6
  233. data/lib/decidim/authorable.rb +22 -1
  234. data/lib/decidim/authorization_form_builder.rb +7 -0
  235. data/lib/decidim/coauthorable.rb +22 -0
  236. data/lib/decidim/component_manifest.rb +1 -1
  237. data/lib/decidim/content_processor.rb +52 -29
  238. data/lib/decidim/content_renderers/base_renderer.rb +1 -1
  239. data/lib/decidim/content_renderers/hashtag_renderer.rb +2 -0
  240. data/lib/decidim/content_renderers/link_renderer.rb +4 -1
  241. data/lib/decidim/content_renderers/user_group_renderer.rb +3 -1
  242. data/lib/decidim/content_renderers/user_renderer.rb +3 -1
  243. data/lib/decidim/core.rb +67 -12
  244. data/lib/decidim/core/engine.rb +65 -21
  245. data/lib/decidim/core/test.rb +8 -0
  246. data/lib/decidim/core/test/factories.rb +34 -8
  247. data/lib/decidim/core/test/shared_examples/admin_log_presenter_examples.rb +34 -0
  248. data/lib/decidim/core/test/shared_examples/amendable/accept_amendment_examples.rb +4 -4
  249. data/lib/decidim/core/test/shared_examples/amendable_proposals_interface_examples.rb +8 -8
  250. data/lib/decidim/core/test/shared_examples/comments_examples.rb +52 -1
  251. data/lib/decidim/core/test/shared_examples/counts_commentators_as_newsletter_participants.rb +31 -0
  252. data/lib/decidim/core/test/shared_examples/embed_resource_examples.rb +49 -0
  253. data/lib/decidim/core/test/shared_examples/follows_examples.rb +3 -3
  254. data/lib/decidim/core/test/shared_examples/manage_component_share_tokens.rb +83 -0
  255. data/lib/decidim/core/test/shared_examples/map_examples.rb +186 -0
  256. data/lib/decidim/core/test/shared_examples/preview_component_with_share_token_examples.rb +55 -0
  257. data/lib/decidim/core/test/shared_examples/resource_search_examples.rb +200 -0
  258. data/lib/decidim/core/test/shared_examples/scopable_resource_examples.rb +43 -0
  259. data/lib/decidim/core/test/shared_examples/scope_helper_examples.rb +12 -1
  260. data/lib/decidim/core/test/shared_examples/searchable_participatory_space_examples.rb +2 -2
  261. data/lib/decidim/core/test/shared_examples/searchable_results_examples.rb +15 -2
  262. data/lib/decidim/core/test/shared_examples/simple_event.rb +7 -0
  263. data/lib/decidim/core/test/shared_examples/system_endorse_resource_examples.rb +1 -0
  264. data/lib/decidim/core/test/shared_examples/traceable_interface_examples.rb +1 -1
  265. data/lib/decidim/core/test/shared_examples/uncommentable_component_examples.rb +1 -1
  266. data/lib/decidim/core/version.rb +1 -1
  267. data/lib/decidim/diffy_extension.rb +21 -0
  268. data/lib/decidim/events/base_event.rb +29 -11
  269. data/lib/decidim/exporters.rb +7 -0
  270. data/lib/decidim/exporters/csv.rb +15 -1
  271. data/lib/decidim/exporters/excel.rb +1 -1
  272. data/lib/decidim/exporters/export_manifest.rb +29 -0
  273. data/lib/decidim/exporters/pdf.rb +56 -0
  274. data/lib/decidim/file_validator_humanizer.rb +98 -0
  275. data/lib/decidim/form_builder.rb +68 -56
  276. data/lib/decidim/geocodable.rb +79 -0
  277. data/lib/decidim/has_attachments.rb +10 -0
  278. data/lib/decidim/has_private_users.rb +1 -1
  279. data/lib/decidim/has_upload_validations.rb +36 -0
  280. data/lib/decidim/map.rb +214 -0
  281. data/lib/decidim/map/autocomplete.rb +67 -0
  282. data/lib/decidim/map/dynamic_map.rb +89 -0
  283. data/lib/decidim/map/frontend.rb +97 -0
  284. data/lib/decidim/map/geocoding.rb +115 -0
  285. data/lib/decidim/map/provider.rb +12 -0
  286. data/lib/decidim/map/provider/autocomplete/here.rb +20 -0
  287. data/lib/decidim/map/provider/autocomplete/osm.rb +20 -0
  288. data/lib/decidim/map/provider/dynamic_map/here.rb +51 -0
  289. data/lib/decidim/map/provider/dynamic_map/osm.rb +13 -0
  290. data/lib/decidim/map/provider/geocoding/here.rb +58 -0
  291. data/lib/decidim/map/provider/geocoding/osm.rb +30 -0
  292. data/lib/decidim/map/provider/here.rb +21 -0
  293. data/lib/decidim/map/provider/osm.rb +22 -0
  294. data/lib/decidim/map/provider/static_map/here.rb +35 -0
  295. data/lib/decidim/map/provider/static_map/osm.rb +29 -0
  296. data/lib/decidim/map/static_map.rb +133 -0
  297. data/lib/decidim/map/utility.rb +38 -0
  298. data/lib/decidim/newsletter_participant.rb +2 -4
  299. data/lib/decidim/organization_settings.rb +267 -0
  300. data/lib/decidim/paddable.rb +11 -4
  301. data/lib/decidim/resource_manifest.rb +1 -1
  302. data/lib/decidim/scopable.rb +9 -6
  303. data/lib/decidim/scopable_component.rb +29 -1
  304. data/lib/decidim/scopable_participatory_space.rb +19 -0
  305. data/lib/decidim/scopable_resource.rb +21 -0
  306. data/lib/decidim/search_resource_fields_mapper.rb +17 -4
  307. data/lib/decidim/searchable.rb +6 -0
  308. data/lib/decidim/settings_manifest.rb +2 -1
  309. data/lib/decidim/shareable_with_token.rb +27 -0
  310. data/lib/decidim/snippets.rb +30 -0
  311. data/lib/decidim/translatable_attributes.rb +42 -4
  312. data/lib/decidim/translatable_resource.rb +78 -0
  313. data/lib/decidim/view_model.rb +1 -0
  314. data/lib/premailer/adapter/decidim.rb +33 -0
  315. data/lib/tasks/decidim_locales_tasks.rake +35 -0
  316. data/lib/tasks/decidim_tasks.rake +1 -0
  317. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.bg.js +14 -0
  318. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.da.js +14 -0
  319. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.eo.js +17 -0
  320. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.et.js +18 -0
  321. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.fr-CA.js +16 -0
  322. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.ga.js +15 -0
  323. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.hr.js +13 -0
  324. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.is.js +14 -0
  325. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.ja.js +16 -0
  326. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.lt.js +16 -0
  327. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.lv.js +17 -0
  328. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.mt.js +15 -0
  329. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.sl.js +14 -0
  330. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.sr.js +16 -0
  331. metadata +149 -30
  332. data/app/cells/decidim/tos_page/sticky_form.erb +0 -29
  333. data/app/helpers/decidim/multi_translation_helper.rb +0 -0
  334. data/lib/decidim/hashtaggable.rb +0 -24
@@ -30,8 +30,8 @@ module Decidim
30
30
  .not_hidden
31
31
  .where(
32
32
  "GREATEST(#{title_similarity}, #{body_similarity}) >= ?",
33
- emendation.title,
34
- emendation.body,
33
+ translated_attribute(emendation.title),
34
+ translated_attribute(emendation.body),
35
35
  amendable_module.similarity_threshold
36
36
  )
37
37
  .limit(amendable_module.similarity_limit)
@@ -46,11 +46,11 @@ module Decidim
46
46
  end
47
47
 
48
48
  def title_similarity
49
- "similarity(title, ?)"
49
+ "similarity(title::text, ?)"
50
50
  end
51
51
 
52
52
  def body_similarity
53
- "similarity(body, ?)"
53
+ "similarity(body::text, ?)"
54
54
  end
55
55
  end
56
56
  end
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Decidim
4
+ # Use this class as a scrubber to sanitize user input. The default
5
+ # scrubbed provided by Rails does not allow `iframe`s, and we're using
6
+ # them to embed videos, so we need to provide a whole new scrubber.
7
+ #
8
+ # Example:
9
+ #
10
+ # sanitize(@page.body, scrubber: Decidim::UserInputScrubber.new)
11
+ #
12
+ # Lists of default tags and attributes are extracted from
13
+ # https://stackoverflow.com/a/35073814/2110884.
14
+ class NewsletterScrubber < Rails::Html::PermitScrubber
15
+ def initialize
16
+ super
17
+ self.tags = custom_allowed_tags
18
+ self.attributes = custom_allowed_attributes
19
+ end
20
+
21
+ private
22
+
23
+ def custom_allowed_attributes
24
+ Loofah::HTML5::SafeList::ALLOWED_ATTRIBUTES + %w(frameborder allowfullscreen) - %w(onerror)
25
+ end
26
+
27
+ def custom_allowed_tags
28
+ Loofah::HTML5::SafeList::ALLOWED_ELEMENTS_WITH_LIBXML2 + %w(iframe style)
29
+ end
30
+ end
31
+ end
@@ -21,7 +21,7 @@ module Decidim
21
21
  private
22
22
 
23
23
  def custom_allowed_attributes
24
- Loofah::HTML5::SafeList::ALLOWED_ATTRIBUTES + %w(frameborder allowfullscreen)
24
+ Loofah::HTML5::SafeList::ALLOWED_ATTRIBUTES + %w(frameborder allowfullscreen) - %w(onerror)
25
25
  end
26
26
 
27
27
  def custom_allowed_tags
@@ -64,7 +64,7 @@ module Decidim
64
64
  end
65
65
 
66
66
  def override_step_settings_ids(attributes, step_settings)
67
- return if step_settings.nil?
67
+ return unless @participatory_space.has_steps? && step_settings.present?
68
68
 
69
69
  @participatory_space.steps.each do |step|
70
70
  old_id = attributes["settings"]["steps"].keys.first
@@ -59,6 +59,22 @@ module Decidim
59
59
  diff
60
60
  end
61
61
 
62
+ def parse_user_group_changeset(attribute, values, type, diff)
63
+ return unless diff
64
+
65
+ old_user_group = Decidim::UserGroup.find_by(id: values[0])
66
+ new_user_group = Decidim::UserGroup.find_by(id: values[1])
67
+
68
+ diff.update(
69
+ attribute => {
70
+ type: type,
71
+ label: I18n.t(attribute, scope: i18n_scope),
72
+ old_value: old_user_group ? translated_attribute(old_user_group.name) : "",
73
+ new_value: new_user_group ? translated_attribute(new_user_group.name) : ""
74
+ }
75
+ )
76
+ end
77
+
62
78
  def parse_scope_changeset(attribute, values, type, diff)
63
79
  return unless diff
64
80
 
@@ -79,6 +95,7 @@ module Decidim
79
95
  return parse_i18n_changeset(attribute, values, type, diff) if [:i18n, :i18n_html].include?(type)
80
96
 
81
97
  return parse_scope_changeset(attribute, values, type, diff) if type == :scope
98
+ return parse_user_group_changeset(attribute, values, type, diff) if type == :user_group
82
99
 
83
100
  diff.update(
84
101
  attribute => {
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "zip"
4
+
3
5
  module Decidim
4
6
  # Public: It generates a ZIP file with Open Data CSV files ready
5
7
  # to be uploaded somewhere so users can download an organization
@@ -4,6 +4,8 @@ module Decidim
4
4
  # This is the base class to be used by other search services.
5
5
  # Searchlight documentation: https://github.com/nathanl/searchlight
6
6
  class ResourceSearch < Searchlight::Search
7
+ attr_reader :user, :organization, :component
8
+
7
9
  # Initialize the Searchlight::Search base class with the options provided.
8
10
  #
9
11
  # scope - The scope used to create the base query
@@ -13,6 +15,31 @@ module Decidim
13
15
  def initialize(scope, options = {})
14
16
  super(options)
15
17
  @scope = scope
18
+ @user = options[:current_user] || options[:user]
19
+ @component = options[:component]
20
+ @organization = options[:organization] || component&.organization
21
+ end
22
+
23
+ # Public: Companion method to `search_search_text` which defines the
24
+ # attributes where we should search for text values in a model.
25
+ def self.text_search_fields(*fields)
26
+ @text_search_fields = fields if fields.any?
27
+ @text_search_fields
28
+ end
29
+
30
+ # Handle the search_text filter. We have to cast the JSONB columns
31
+ # into a `text` type so that we can search.
32
+ def search_search_text
33
+ return query unless self.class.text_search_fields.any?
34
+
35
+ fields = self.class.text_search_fields.dup
36
+
37
+ text_query = query.where(localized_search_text_in("#{query.model_name.plural}.#{fields.shift}"), text: "%#{search_text}%")
38
+
39
+ fields.each do |field|
40
+ text_query = text_query.or(query.where(localized_search_text_in("#{query.model_name.plural}.#{field}"), text: "%#{search_text}%"))
41
+ end
42
+ text_query
16
43
  end
17
44
 
18
45
  # Creates the SearchLight base query.
@@ -51,8 +78,65 @@ module Decidim
51
78
  query.includes(:scope).references(:decidim_scopes).where(conditions.join(" OR "), *clean_scope_ids.map(&:to_i))
52
79
  end
53
80
 
81
+ # Handle the origin filter.
82
+ def search_origin
83
+ renamed_origin = Array(origin).map do |search_value|
84
+ "#{search_value}_origin"
85
+ end
86
+ apply_scopes(%w(official_origin citizens_origin user_group_origin meeting_origin), renamed_origin)
87
+ end
88
+
89
+ # We overwrite the `results` method to ensure we only return unique
90
+ # results. We can't use `#uniq` because it returns an Array and we're
91
+ # adding scopes in the controller, and `#distinct` doesn't work here
92
+ # because in the later scopes we're ordering by `RANDOM()` in a DB level,
93
+ # and `SELECT DISTINCT` doesn't work with `RANDOM()` sorting, so we need
94
+ # to perform two queries.
95
+ #
96
+ # The correct behaviour is backed by tests.
97
+ def results
98
+ base_query.model.where(id: super.pluck(:id))
99
+ end
100
+
54
101
  private
55
102
 
103
+ # Private: To be used by classes that inherit from ResourceSearch.
104
+ #
105
+ # This method is useful when the values of the filters match the names of
106
+ # defined scopes in a model, it applies those scopes that are included in
107
+ # the search values.
108
+ #
109
+ # Example:
110
+ # Consider you want to filter by state, and your model has an `open` and
111
+ # a `closed` ActiveRecord scope.
112
+ #
113
+ # def search_state
114
+ # apply_scopes(%w(open closed), state)
115
+ # end
116
+ #
117
+ # In this scenario, the `state` variable has the input by the use, who
118
+ # has selected which states they want to see. `states` here is an array
119
+ # of strings.
120
+ #
121
+ # Returns an ActiveRecord::Relation.
122
+ def apply_scopes(scopes, search_values)
123
+ search_values = Array(search_values)
124
+
125
+ conditions = scopes.map do |scope|
126
+ search_values.member?(scope.to_s) ? query.try(scope) : nil
127
+ end.compact
128
+
129
+ return query unless conditions.any?
130
+
131
+ scoped_query = query.where(id: conditions.shift)
132
+
133
+ conditions.each do |condition|
134
+ scoped_query = scoped_query.or(query.where(id: condition))
135
+ end
136
+
137
+ scoped_query
138
+ end
139
+
56
140
  # Private: Creates an array of category ids.
57
141
  # It contains categories' subcategories ids as well.
58
142
  def all_category_ids
@@ -67,7 +151,7 @@ module Decidim
67
151
 
68
152
  # Private: Returns an array with checked category ids.
69
153
  def category_ids
70
- [category_id].flatten
154
+ Array(category_id)
71
155
  end
72
156
 
73
157
  # Private: Returns an array with checked scope ids.
@@ -75,14 +159,19 @@ module Decidim
75
159
  if scope_id.is_a?(Hash)
76
160
  scope_id.values
77
161
  else
78
- [scope_id].flatten
162
+ Array(scope_id)
79
163
  end
80
164
  end
81
165
 
82
- # Private: Since component is not used by a search method we need
83
- # to define the method manually.
84
- def component
85
- options[:component]
166
+ # Internal: builds the needed query to search for a text in the organization's
167
+ # available locales. Note that it is intended to be used as follows:
168
+ #
169
+ # Example:
170
+ # Resource.where(localized_search_text_for(:title, text: "my_query"))
171
+ #
172
+ # The Hash with the `:text` key is required or it won't work.
173
+ def localized_search_text_in(field)
174
+ organization.available_locales.map { |l| "#{field} ->> '#{l}' ILIKE :text" }.join(" OR ")
86
175
  end
87
176
  end
88
177
  end
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "httparty"
4
-
5
3
  module Decidim
6
4
  # This class generates a url to create a static map image for a geocoded resource
7
5
  class StaticMapGenerator
@@ -15,39 +13,25 @@ module Decidim
15
13
  end
16
14
 
17
15
  def data
18
- return if Decidim.geocoder.nil? || @resource.blank?
16
+ return if @resource.blank? || map_utility.nil?
19
17
 
20
18
  Rails.cache.fetch(@resource.cache_key) do
21
- request = HTTParty.get(uri, headers: { "Referer" => organization.host })
22
- request.body
19
+ map_utility.image_data(
20
+ latitude: @resource.latitude,
21
+ longitude: @resource.longitude,
22
+ options: @options
23
+ )
23
24
  end
24
25
  end
25
26
 
26
27
  private
27
28
 
28
- def uri
29
- params = {
30
- c: "#{@resource.latitude}, #{@resource.longitude}",
31
- z: @options[:zoom],
32
- w: @options[:width],
33
- h: @options[:height],
34
- f: "1"
35
- }
36
-
37
- if Decidim.geocoder[:here_api_key].present?
38
- params[:apiKey] = Decidim.geocoder.fetch(:here_api_key)
39
- else
40
- params[:app_id] = Decidim.geocoder.fetch(:here_app_id)
41
- params[:app_code] = Decidim.geocoder.fetch(:here_app_code)
42
- end
43
-
44
- URI.parse(Decidim.geocoder.fetch(:static_map_url)).tap do |uri|
45
- uri.query = URI.encode_www_form params
46
- end
47
- end
48
-
49
29
  def organization
50
30
  @organization ||= @resource.component.organization
51
31
  end
32
+
33
+ def map_utility
34
+ @map_utility ||= Decidim::Map.static(organization: organization)
35
+ end
52
36
  end
53
37
  end
@@ -0,0 +1,38 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "openssl"
4
+
5
+ module Decidim
6
+ # This class is used to generate secure tokens
7
+ class Tokenizer
8
+ #
9
+ # Initializes the Tokenizer.
10
+ #
11
+ # salt - The salt fr the encryption (it should be at leas 30 chars long)
12
+ # length - How long the key generated should be (in bytes)
13
+ #
14
+ def initialize(salt: nil, length: 32)
15
+ @salt = salt.presence || Tokenizer.random_salt
16
+ @length = length
17
+ end
18
+
19
+ def self.random_salt
20
+ SecureRandom.hex(32)
21
+ end
22
+
23
+ attr_reader :salt, :length
24
+
25
+ # returns a securely generated string of bytes
26
+ def digest(string)
27
+ OpenSSL::PKCS5.pbkdf2_hmac(string.to_s, salt, 20_000, length, "sha256")
28
+ end
29
+
30
+ def int_digest(string)
31
+ digest(string.to_s).bytes.inject { |a, b| (a << 8) + b }
32
+ end
33
+
34
+ def hex_digest(string)
35
+ digest(string.to_s).bytes.map { |c| c.ord.to_s(16) }.join
36
+ end
37
+ end
38
+ end
@@ -115,6 +115,9 @@ module Decidim
115
115
 
116
116
  def log(action, user, resource, extra_log_info = {})
117
117
  return unless user.is_a?(Decidim::User)
118
+ # If the record is not valid, it may not yet have an ID causing an
119
+ # exception when trying to save the log record.
120
+ return unless resource.valid?
118
121
 
119
122
  Decidim::ActionLogger.log(
120
123
  action,
@@ -1,10 +1,12 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Decidim
4
- # This class deals with uploading images to Decidim It is intended to just
4
+ # This class deals with uploading files to Decidim. It is intended to just
5
5
  # hold the uploads configuration, so you should inherit from this class and
6
6
  # then tweak any configuration you need.
7
7
  class ApplicationUploader < CarrierWave::Uploader::Base
8
+ process :validate_inside_organization
9
+
8
10
  # Override the directory where uploaded files will be stored.
9
11
  # This is a sensible default for uploaders that are meant to be mounted:
10
12
  def store_dir
@@ -14,5 +16,21 @@ module Decidim
14
16
 
15
17
  default_path
16
18
  end
19
+
20
+ def skip_ssrf_protection?(_uri)
21
+ true
22
+ end
23
+
24
+ protected
25
+
26
+ # Validates that the associated model is always within an organization in
27
+ # order to pass the organization specific settings for the file upload
28
+ # checks (e.g. file extension, mime type, etc.).
29
+ def validate_inside_organization
30
+ return if model.is_a?(Decidim::Organization)
31
+ return if model.respond_to?(:organization) && model.organization.is_a?(Decidim::Organization)
32
+
33
+ raise CarrierWave::IntegrityError, I18n.t("carrierwave.errors.not_inside_organization")
34
+ end
17
35
  end
18
36
  end
@@ -17,12 +17,28 @@ module Decidim
17
17
  process resize_to_limit: [nil, 1000]
18
18
  end
19
19
 
20
- protected
21
-
22
20
  def extension_whitelist
23
- %w(jpg jpeg gif png bmp pdf doc docx xls xlsx ppt ppx rtf txt odt ott odf otg ods ots)
21
+ case upload_context
22
+ when :admin
23
+ Decidim.organization_settings(model).upload_allowed_file_extensions_admin
24
+ else
25
+ Decidim.organization_settings(model).upload_allowed_file_extensions
26
+ end
24
27
  end
25
28
 
29
+ # CarrierWave automatically calls this method and validates the content
30
+ # type fo the temp file to match against any of these options.
31
+ def content_type_whitelist
32
+ case upload_context
33
+ when :admin
34
+ Decidim.organization_settings(model).upload_allowed_content_types_admin
35
+ else
36
+ Decidim.organization_settings(model).upload_allowed_content_types
37
+ end
38
+ end
39
+
40
+ protected
41
+
26
42
  # Strips out all embedded information from the image
27
43
  def strip
28
44
  return unless image?(self)
@@ -33,20 +49,10 @@ module Decidim
33
49
  end
34
50
  end
35
51
 
36
- # CarrierWave automatically calls this method and validates the content
37
- # type fo the temp file to match against any of these options.
38
- def content_type_whitelist
39
- [
40
- %r{image\/},
41
- %r{application\/vnd.oasis.opendocument},
42
- %r{application\/vnd.ms-},
43
- %r{application\/msword},
44
- %r{application\/vnd.ms-word},
45
- %r{application\/vnd.openxmlformats-officedocument},
46
- %r{application\/vnd.oasis.opendocument},
47
- %r{application\/pdf},
48
- %r{application\/rtf}
49
- ]
52
+ def upload_context
53
+ return :participant unless model.respond_to?(:context)
54
+
55
+ model.context
50
56
  end
51
57
 
52
58
  # Checks if the file is an image based on the content type. We need this so