biovision 0.0.200518.1 → 0.12.211124.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (345) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +105 -52
  3. data/app/assets/images/biovision/icons/back.svg +19 -0
  4. data/app/assets/images/biovision/icons/create.svg +19 -0
  5. data/app/assets/images/biovision/icons/destroy.svg +12 -0
  6. data/app/assets/images/biovision/icons/dropdown.svg +3 -0
  7. data/app/assets/images/biovision/icons/edit.svg +22 -0
  8. data/app/assets/images/biovision/icons/gear.svg +11 -0
  9. data/app/assets/images/biovision/icons/return.svg +25 -0
  10. data/app/assets/images/biovision/icons/world.svg +11 -0
  11. data/app/assets/stylesheets/biovision/admin/components/users.scss +20 -0
  12. data/app/assets/stylesheets/biovision/admin/components.scss +13 -1
  13. data/app/assets/stylesheets/biovision/admin/layout.scss +27 -12
  14. data/app/assets/stylesheets/biovision/biovision.scss +105 -26
  15. data/app/assets/stylesheets/biovision/components/breadcrumbs.scss +13 -0
  16. data/app/assets/stylesheets/biovision/components/buttons.scss +130 -0
  17. data/app/assets/stylesheets/biovision/components/filters.scss +39 -0
  18. data/app/assets/stylesheets/biovision/components/forms.scss +208 -1
  19. data/app/assets/stylesheets/biovision/components/lists.scss +6 -7
  20. data/app/assets/stylesheets/biovision/{biovision → components}/messages.scss +9 -0
  21. data/app/assets/stylesheets/biovision/components/pagination.scss +34 -0
  22. data/app/assets/stylesheets/biovision/components/quick_search.scss +24 -0
  23. data/app/assets/stylesheets/biovision/components/simple_image.scss +112 -0
  24. data/app/assets/stylesheets/biovision/components/toggleable.scss +71 -0
  25. data/app/assets/stylesheets/biovision/components.scss +7 -0
  26. data/app/assets/stylesheets/biovision/default.scss +4 -4
  27. data/app/assets/stylesheets/biovision/themes/default_theme/components/users/dashboard.scss +4 -0
  28. data/app/assets/stylesheets/biovision/themes/default_theme/components/users/form_tabs.scss +101 -0
  29. data/app/assets/stylesheets/biovision/themes/default_theme/components/users/profile.scss +77 -0
  30. data/app/assets/stylesheets/biovision/themes/default_theme/components/users.scss +3 -0
  31. data/app/assets/stylesheets/biovision/themes/default_theme/components.scss +2 -3
  32. data/app/assets/stylesheets/biovision/themes/default_theme/layout/footer.scss +3 -0
  33. data/app/assets/stylesheets/biovision/themes/default_theme/layout/header.scss +12 -0
  34. data/app/assets/stylesheets/biovision/themes/default_theme/layout.scss +8 -19
  35. data/app/assets/stylesheets/biovision/themes/default_theme.scss +0 -1
  36. data/app/assets/stylesheets/biovision/vars.scss +5 -0
  37. data/app/controllers/admin/biovision_components_controller.rb +10 -0
  38. data/app/controllers/admin/components_controller.rb +37 -97
  39. data/app/controllers/admin/dynamic_blocks_controller.rb +15 -0
  40. data/app/controllers/admin/dynamic_pages_controller.rb +15 -0
  41. data/app/controllers/admin/index_controller.rb +8 -2
  42. data/app/controllers/admin/navigation_groups_controller.rb +45 -0
  43. data/app/controllers/admin/tokens_controller.rb +15 -0
  44. data/app/controllers/admin/users_controller.rb +101 -0
  45. data/app/controllers/admin_controller.rb +2 -8
  46. data/app/controllers/authentication_controller.rb +6 -34
  47. data/app/controllers/concerns/authentication.rb +12 -12
  48. data/app/controllers/concerns/component_stories.rb +22 -0
  49. data/app/controllers/concerns/crud_entities.rb +140 -0
  50. data/app/controllers/concerns/entity_priority.rb +10 -0
  51. data/app/controllers/concerns/my_crud_entities.rb +146 -0
  52. data/app/controllers/concerns/processed_forms.rb +28 -0
  53. data/app/controllers/concerns/restricted_access.rb +37 -0
  54. data/app/controllers/concerns/toggleable_entity.rb +31 -0
  55. data/app/controllers/contact_controller.rb +49 -0
  56. data/app/controllers/errors_controller.rb +37 -0
  57. data/app/controllers/fallback_controller.rb +12 -0
  58. data/app/controllers/index_controller.rb +1 -0
  59. data/app/controllers/legal_controller.rb +14 -0
  60. data/app/controllers/my/components_controller.rb +26 -0
  61. data/app/controllers/my/confirmations_controller.rb +44 -0
  62. data/app/controllers/my/index_controller.rb +7 -1
  63. data/app/controllers/my/profiles_controller.rb +33 -16
  64. data/app/controllers/oembed_controller.rb +12 -0
  65. data/app/controllers/profile_controller.rb +14 -0
  66. data/app/controllers/users_controller.rb +63 -0
  67. data/app/helpers/biovision_components_helper.rb +7 -3
  68. data/app/helpers/biovision_helper.rb +170 -0
  69. data/app/helpers/entity_helper.rb +77 -0
  70. data/app/helpers/my_helper.rb +34 -0
  71. data/app/helpers/simple_image_helper.rb +125 -0
  72. data/app/jobs/application_job.rb +7 -0
  73. data/app/jobs/send_phone_confirmation_job.rb +16 -0
  74. data/app/lib/biovision/components/base/component_parameters.rb +55 -0
  75. data/app/lib/biovision/components/base/component_privileges.rb +75 -0
  76. data/app/lib/biovision/components/base/component_settings.rb +40 -0
  77. data/app/lib/biovision/components/base/component_stories.rb +30 -0
  78. data/app/lib/biovision/components/base/entity_links.rb +38 -0
  79. data/app/lib/biovision/components/base/image_handling.rb +33 -0
  80. data/app/lib/biovision/components/base_component.rb +63 -95
  81. data/app/lib/biovision/components/contact_component.rb +26 -0
  82. data/app/lib/biovision/components/content/oembed/receiver.rb +98 -0
  83. data/app/lib/biovision/components/content/oembed/twitter_receiver.rb +20 -0
  84. data/app/lib/biovision/components/content/oembed/vimeo_receiver.rb +20 -0
  85. data/app/lib/biovision/components/content/oembed/youtube_receiver.rb +20 -0
  86. data/app/lib/biovision/components/content_component.rb +65 -0
  87. data/app/lib/biovision/components/track_component.rb +3 -0
  88. data/app/lib/biovision/components/users/authentication.rb +15 -7
  89. data/app/lib/biovision/components/users/codes.rb +104 -0
  90. data/app/lib/biovision/components/users/flag_helpers.rb +72 -0
  91. data/app/lib/biovision/components/users/profile_handler.rb +111 -1
  92. data/app/lib/biovision/components/users/registration_handler.rb +40 -52
  93. data/app/lib/biovision/components/users/validation.rb +83 -0
  94. data/app/lib/biovision/components/users_component.rb +114 -19
  95. data/app/lib/biovision/helpers/data_helper.rb +70 -0
  96. data/app/lib/biovision/helpers/export_helper.rb +97 -0
  97. data/app/lib/biovision/migrations/component_migration.rb +56 -0
  98. data/app/lib/biovision/notifiers/base_notifier.rb +2 -2
  99. data/app/lib/biovision/notifiers/contact_notifier.rb +15 -0
  100. data/app/lib/biovision/stories/component_story.rb +55 -0
  101. data/app/lib/canonizer.rb +38 -0
  102. data/app/lib/carrier_wave/image_optim.rb +32 -0
  103. data/app/mailers/code_sender.rb +29 -0
  104. data/app/mailers/feedback_mailer.rb +14 -0
  105. data/app/models/agent.rb +4 -0
  106. data/app/models/biovision_component.rb +39 -3
  107. data/app/models/code.rb +31 -8
  108. data/app/models/concerns/checkable.rb +2 -1
  109. data/app/models/concerns/has_simple_image.rb +9 -0
  110. data/app/models/concerns/has_uploaded_file.rb +26 -0
  111. data/app/models/concerns/meta_texts.rb +25 -5
  112. data/app/models/concerns/simple_tag.rb +30 -0
  113. data/app/models/concerns/toggleable.rb +2 -1
  114. data/app/models/concerns/tree_structure.rb +75 -0
  115. data/app/models/contact_method.rb +47 -0
  116. data/app/models/contact_type.rb +27 -0
  117. data/app/models/dynamic_block.rb +43 -0
  118. data/app/models/dynamic_page.rb +73 -0
  119. data/app/models/feedback_message.rb +65 -0
  120. data/app/models/feedback_response.rb +50 -0
  121. data/app/models/group.rb +48 -0
  122. data/app/models/language.rb +4 -0
  123. data/app/models/metric.rb +4 -0
  124. data/app/models/navigation_group.rb +43 -0
  125. data/app/models/navigation_group_page.rb +23 -0
  126. data/app/models/oembed_domain.rb +25 -0
  127. data/app/models/oembed_link.rb +19 -0
  128. data/app/models/oembed_receiver.rb +15 -0
  129. data/app/models/role.rb +86 -0
  130. data/app/models/role_group.rb +13 -0
  131. data/app/models/simple_image.rb +49 -8
  132. data/app/models/simple_image_tag.rb +1 -16
  133. data/app/models/token.rb +6 -2
  134. data/app/models/uploaded_file.rb +62 -0
  135. data/app/models/uploaded_file_tag.rb +15 -0
  136. data/app/models/uploaded_file_tag_file.rb +13 -0
  137. data/app/models/user.rb +122 -29
  138. data/app/models/user_group.rb +20 -0
  139. data/app/models/user_role.rb +18 -0
  140. data/app/uploaders/simple_file_uploader.rb +23 -0
  141. data/app/uploaders/simple_image_uploader.rb +29 -20
  142. data/app/uploaders/uploaders/path_slug.rb +22 -0
  143. data/app/views/admin/agents/index.html.erb +1 -3
  144. data/app/views/admin/biovision_components/_nav_item.html.erb +6 -0
  145. data/app/views/admin/biovision_components/entity/_in_list.html.erb +12 -0
  146. data/app/views/admin/biovision_components/index.html.erb +11 -0
  147. data/app/views/admin/components/_image.jbuilder +18 -0
  148. data/app/views/admin/components/_list.html.erb +1 -1
  149. data/app/views/admin/components/entity/_links.html.erb +31 -21
  150. data/app/views/admin/components/image.jbuilder +1 -0
  151. data/app/views/admin/components/images.jbuilder +4 -0
  152. data/app/views/admin/components/links/_base.html.erb +1 -0
  153. data/app/views/admin/components/settings/_new_parameter.html.erb +4 -2
  154. data/app/views/admin/components/settings/_parameters.html.erb +8 -2
  155. data/app/views/admin/components/settings/_settings.html.erb +4 -4
  156. data/app/views/admin/components/settings.html.erb +2 -1
  157. data/app/views/admin/components/update_privileges.jbuilder +21 -0
  158. data/app/views/admin/dynamic_blocks/_form.html.erb +16 -0
  159. data/app/views/admin/dynamic_blocks/_nav_item.html.erb +6 -0
  160. data/app/views/admin/dynamic_blocks/entity/_in_list.html.erb +12 -0
  161. data/app/views/admin/dynamic_blocks/index.html.erb +17 -0
  162. data/app/views/admin/dynamic_blocks/show.html.erb +25 -0
  163. data/app/views/admin/dynamic_pages/_dynamic_page.jbuilder +18 -0
  164. data/app/views/admin/dynamic_pages/_form.html.erb +21 -0
  165. data/app/views/admin/dynamic_pages/_nav_item.html.erb +6 -0
  166. data/app/views/admin/dynamic_pages/entity/_in_list.html.erb +17 -0
  167. data/app/views/admin/dynamic_pages/entity/_in_search.html.erb +7 -0
  168. data/app/views/admin/dynamic_pages/index.html.erb +17 -0
  169. data/app/views/admin/dynamic_pages/search.jbuilder +4 -0
  170. data/app/views/admin/dynamic_pages/show.html.erb +28 -0
  171. data/app/views/admin/index/index.html.erb +7 -5
  172. data/app/views/admin/ip_addresses/index.html.erb +2 -4
  173. data/app/views/admin/navigation_group_pages/entity/_in_list.html.erb +26 -0
  174. data/app/views/admin/navigation_groups/_form.html.erb +15 -0
  175. data/app/views/admin/navigation_groups/_nav_item.html.erb +6 -0
  176. data/app/views/admin/navigation_groups/entity/_dynamic_pages.html.erb +38 -0
  177. data/app/views/admin/navigation_groups/entity/_in_list.html.erb +14 -0
  178. data/app/views/admin/navigation_groups/index.html.erb +17 -0
  179. data/app/views/admin/navigation_groups/show.html.erb +33 -0
  180. data/app/views/admin/tokens/_form.html.erb +31 -0
  181. data/app/views/admin/tokens/_nav_item.html.erb +6 -0
  182. data/app/views/admin/tokens/entity/_in_list.html.erb +27 -0
  183. data/app/views/admin/tokens/index.html.erb +11 -0
  184. data/app/views/admin/tokens/show.html.erb +26 -0
  185. data/app/views/admin/unauthorized.html.erb +2 -5
  186. data/app/views/admin/users/_form.html.erb +81 -0
  187. data/app/views/admin/users/_nav_item.html.erb +6 -0
  188. data/app/views/admin/users/_user.jbuilder +18 -0
  189. data/app/views/admin/users/entity/_fields.html.erb +53 -0
  190. data/app/views/admin/users/entity/_in_list.html.erb +38 -0
  191. data/app/views/admin/users/entity/_in_search.html.erb +18 -0
  192. data/app/views/admin/users/entity/_profile.html.erb +26 -0
  193. data/app/views/admin/users/entity/in_list/_additional_data.html.erb +0 -0
  194. data/app/views/admin/users/index.html.erb +24 -0
  195. data/app/views/admin/users/roles/_component.html.erb +22 -0
  196. data/app/views/admin/users/roles.html.erb +23 -0
  197. data/app/views/admin/users/search.jbuilder +4 -0
  198. data/app/views/admin/users/show.html.erb +62 -0
  199. data/app/views/admin/widgets/_filters.html.erb +20 -0
  200. data/app/views/admin/widgets/_quick_search.html.erb +13 -0
  201. data/app/views/admin/widgets/filters/_flag.html.erb +15 -0
  202. data/app/views/admin/widgets/filters/_text.html.erb +7 -0
  203. data/app/views/application/forbidden.html.erb +9 -0
  204. data/app/views/application/forbidden.jbuilder +4 -0
  205. data/app/views/application/not_found.html.erb +9 -0
  206. data/app/views/application/not_found.jbuilder +4 -0
  207. data/app/views/application/unauthorized.html.erb +19 -0
  208. data/app/views/application/unauthorized.jbuilder +4 -0
  209. data/app/views/authentication/new.html.erb +2 -8
  210. data/app/views/components/content/_dynamic_page.html.erb +17 -0
  211. data/app/views/components/content/_dynamic_page_content.html.erb +14 -0
  212. data/app/views/components/users/_form_tabs.html.erb +31 -0
  213. data/app/views/components/users/_join_form.html.erb +192 -0
  214. data/app/views/components/users/_login_form.html.erb +46 -0
  215. data/app/views/components/users/form/_image.html.erb +17 -0
  216. data/app/views/components/users/form/_profile_data.html.erb +54 -0
  217. data/app/views/contact/_form.html.erb +108 -0
  218. data/app/views/contact/create_feedback_message.js.erb +1 -0
  219. data/app/views/contact/feedback.html.erb +13 -0
  220. data/app/views/contact/index.html.erb +16 -0
  221. data/app/views/errors/error.html.erb +1 -0
  222. data/app/views/fallback/show.html.erb +6 -0
  223. data/app/views/feedback_mailer/new_feedback_request.html.erb +11 -0
  224. data/app/views/feedback_mailer/new_feedback_request.text.erb +6 -0
  225. data/app/views/index/index.html.erb +14 -0
  226. data/app/views/layouts/admin/_footer.html.erb +1 -1
  227. data/app/views/layouts/admin/_header.html.erb +7 -2
  228. data/app/views/layouts/admin.html.erb +0 -1
  229. data/app/views/layouts/application/_footer.html.erb +1 -1
  230. data/app/views/layouts/application/header/_authentication.html.erb +4 -1
  231. data/app/views/legal/privacy.html.erb +5 -0
  232. data/app/views/legal/tos.html.erb +5 -0
  233. data/app/views/my/components/index.html.erb +25 -0
  234. data/app/views/my/components/show.html.erb +21 -0
  235. data/app/views/my/confirmations/show.html.erb +62 -0
  236. data/app/views/my/index/_cards.html.erb +15 -0
  237. data/app/views/my/index/_email.html.erb +14 -0
  238. data/app/views/my/index/_navigation.html.erb +33 -0
  239. data/app/views/my/index/index.html.erb +12 -0
  240. data/app/views/my/profiles/_form.html.erb +10 -0
  241. data/app/views/my/profiles/check.jbuilder +4 -0
  242. data/app/views/my/profiles/edit.html.erb +14 -0
  243. data/app/views/my/profiles/form/_basic_parameters.html.erb +9 -0
  244. data/app/views/my/profiles/form/_sensitive_parameters.html.erb +68 -0
  245. data/app/views/my/profiles/new.html.erb +6 -8
  246. data/app/views/my/profiles/show.html.erb +36 -0
  247. data/app/views/my/recoveries/show.html.erb +0 -0
  248. data/app/views/shared/_flash_messages.html.erb +1 -1
  249. data/app/views/shared/_list_of_errors.html.erb +7 -0
  250. data/app/views/shared/admin/_breadcrumbs.html.erb +8 -0
  251. data/app/views/shared/admin/_list.html.erb +10 -19
  252. data/app/views/shared/admin/_list_with_priority.html.erb +10 -19
  253. data/app/views/shared/admin/_priority.html.erb +6 -0
  254. data/app/views/shared/admin/_toggle.html.erb +6 -0
  255. data/app/views/shared/entity/_date_field.html.erb +6 -0
  256. data/app/views/shared/entity/_formatted_text_field.html.erb +10 -0
  257. data/app/views/shared/entity/_image.html.erb +31 -0
  258. data/app/views/shared/entity/_language.html.erb +6 -0
  259. data/app/views/shared/entity/_linked_entity.html.erb +6 -0
  260. data/app/views/shared/entity/_list.html.erb +22 -0
  261. data/app/views/shared/entity/_list_with_priority.html.erb +22 -0
  262. data/app/views/shared/entity/_meta_texts.html.erb +16 -0
  263. data/app/views/shared/entity/_metadata.html.erb +18 -0
  264. data/app/views/shared/entity/_parent.html.erb +6 -0
  265. data/app/views/shared/entity/_priority.html.erb +4 -0
  266. data/app/views/shared/entity/_priority_icons.html.erb +8 -0
  267. data/app/views/shared/entity/_raw_text_field.html.erb +10 -0
  268. data/app/views/shared/entity/_simple_image.html.erb +10 -0
  269. data/app/views/shared/entity/_slug.html.erb +6 -0
  270. data/app/views/shared/entity/_text_field.html.erb +6 -0
  271. data/app/views/shared/entity/_text_fields.html.erb +9 -0
  272. data/app/views/shared/entity/_time_field.html.erb +6 -0
  273. data/app/views/shared/entity/_timestamps.html.erb +13 -0
  274. data/app/views/shared/entity/_toggle.html.erb +12 -0
  275. data/app/views/shared/entity/_track.html.erb +12 -0
  276. data/app/views/shared/entity/_tree_caches.html.erb +19 -0
  277. data/app/views/shared/entity/_uuid.html.erb +4 -0
  278. data/app/views/shared/entity/edit.html.erb +23 -0
  279. data/app/views/shared/entity/new.html.erb +16 -0
  280. data/app/views/shared/forms/_entity_flags.html.erb +15 -0
  281. data/app/views/shared/forms/_field.html.erb +50 -0
  282. data/app/views/shared/forms/_field_with_search.html.erb +17 -0
  283. data/app/views/shared/forms/_fields.html.erb +3 -0
  284. data/app/views/shared/forms/_language.html.erb +40 -0
  285. data/app/views/shared/forms/_meta_texts.html.erb +27 -0
  286. data/app/views/shared/forms/_priority.html.erb +13 -0
  287. data/app/views/shared/forms/_simple_entity_link.html.erb +14 -0
  288. data/app/views/shared/forms/_simple_image.html.erb +47 -0
  289. data/app/views/shared/forms/_state_container.html.erb +7 -0
  290. data/app/views/shared/forms/_text_area.html.erb +25 -0
  291. data/app/views/shared/forms/_text_field.html.erb +24 -0
  292. data/app/views/shared/forms/_text_fields.html.erb +3 -0
  293. data/app/views/shared/forms/check.jbuilder +4 -0
  294. data/app/views/shared/forms/errors.jbuilder +3 -0
  295. data/app/views/shared/forms/simple_image/_browse.html.erb +14 -0
  296. data/app/views/shared/forms/simple_image/_load_image.html.erb +38 -0
  297. data/app/views/shared/my/_list.html.erb +10 -0
  298. data/app/views/shared/my/_list_with_priority.html.erb +10 -0
  299. data/app/views/shared/my/entity/edit.html.erb +25 -0
  300. data/app/views/shared/my/entity/new.html.erb +18 -0
  301. data/app/views/simple_images/_simple_image.jbuilder +13 -0
  302. data/app/views/users/_profile.html.erb +30 -0
  303. data/app/views/users/profile/_data.html.erb +20 -0
  304. data/app/views/users/show.html.erb +21 -0
  305. data/config/locales/biovision-ru.yml +76 -1
  306. data/config/locales/components-ru.yml +55 -4
  307. data/config/locales/contact-ru.yml +110 -0
  308. data/config/locales/content-ru.yml +115 -0
  309. data/config/locales/users-ru.yml +142 -3
  310. data/config/routes.rb +99 -48
  311. data/db/migrate/20191228000000_create_biovision_components.rb +6 -5
  312. data/db/migrate/20200224000000_create_track_component.rb +9 -14
  313. data/db/migrate/20200224000010_create_users_component.rb +14 -83
  314. data/db/migrate/20200404000000_create_simple_images.rb +4 -3
  315. data/db/migrate/20210405000000_create_acl.rb +88 -0
  316. data/db/migrate/20210421000000_create_content_component.rb +80 -0
  317. data/db/migrate/20210421000010_create_contact_component.rb +74 -0
  318. data/db/migrate/20210616000000_create_uploaded_files.rb +52 -0
  319. data/db/migrate/amends/20210816060606_create_oembed_receivers.rb +21 -0
  320. data/db/migrate/amends/20210907070707_add_checksum_to_simple_images.rb +13 -0
  321. data/lib/biovision/base_methods.rb +17 -29
  322. data/lib/biovision/engine.rb +8 -13
  323. data/lib/biovision/version.rb +1 -1
  324. data/lib/tasks/components.rake +51 -0
  325. metadata +266 -27
  326. data/app/assets/images/biovision/placeholders/user.svg +0 -15
  327. data/app/helpers/users_helper.rb +0 -11
  328. data/app/lib/biovision/components/component_settings.rb +0 -30
  329. data/app/lib/biovision/components/privilege_handler.rb +0 -77
  330. data/app/lib/biovision/components/users/code_handler.rb +0 -23
  331. data/app/models/biovision_component_user.rb +0 -21
  332. data/app/models/foreign_site.rb +0 -34
  333. data/app/models/foreign_user.rb +0 -21
  334. data/app/uploaders/user_image_uploader.rb +0 -58
  335. data/app/views/admin/components/links/_track.html.erb +0 -2
  336. data/app/views/admin/components/links/_users.html.erb +0 -11
  337. data/app/views/admin/components/privileges/_component_user.html.erb +0 -17
  338. data/app/views/admin/components/privileges/_links.html.erb +0 -35
  339. data/app/views/admin/components/privileges/_privilege_flag.html.erb +0 -28
  340. data/app/views/admin/components/privileges/_users.html.erb +0 -23
  341. data/app/views/admin/components/privileges.html.erb +0 -20
  342. data/app/views/authentication/_form.html.erb +0 -40
  343. data/app/views/authentication/failed.js.erb +0 -3
  344. data/app/views/my/profiles/new/_form.html.erb +0 -147
  345. data/app/views/shared/admin/_toggleable.html.erb +0 -8
@@ -1,34 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Foreign site for external authentication
4
- #
5
- # Attributes:
6
- # slug [string]
7
- # name [string]
8
- # foreign_users_count [integer]
9
- class ForeignSite < ApplicationRecord
10
- include RequiredUniqueName
11
- include RequiredUniqueSlug
12
-
13
- NAME_LIMIT = 50
14
- SLUG_LIMIT = 50
15
-
16
- has_many :foreign_users, dependent: :delete_all
17
-
18
- validates_length_of :name, maximum: NAME_LIMIT
19
- validates_length_of :slug, maximum: SLUG_LIMIT
20
-
21
- scope :list_for_administration, -> { ordered_by_name }
22
-
23
- # @param [String] slug
24
- def self.[](slug)
25
- find_by(slug: slug)
26
- end
27
-
28
- # @param [Hash] data
29
- # @param [Hash] tracking
30
- def authenticate(data, tracking)
31
- user = foreign_users.find_by(slug: data[:uid])&.user
32
- user || create_user(data, tracking)
33
- end
34
- end
@@ -1,21 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Foreign user
4
- #
5
- # Attributes:
6
- # agent_id [Agent], optional
7
- # created_at [DateTime]
8
- # data [jsonb]
9
- # foreign_site_id [ForeignSite]
10
- # ip_address_id [IpAddress], optional
11
- # updated_at [DateTime]
12
- # user_id [User]
13
- # slug [string]
14
- class ForeignUser < ApplicationRecord
15
- include HasOwner
16
-
17
- belongs_to :foreign_site
18
- belongs_to :user
19
- belongs_to :agent
20
- belongs_to :ip_address
21
- end
@@ -1,58 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- # Uploader for user images
4
- class UserImageUploader < CarrierWave::Uploader::Base
5
- include CarrierWave::MiniMagick
6
- include CarrierWave::BombShelter
7
-
8
- storage :file
9
-
10
- def max_pixel_dimensions
11
- [4000, 4000]
12
- end
13
-
14
- # Override the directory where uploaded files will be stored.
15
- # This is a sensible default for uploaders that are meant to be mounted:
16
- def store_dir
17
- uuid = model&.uuid.to_s
18
- slug = "#{uuid[0..2]}/#{uuid[3..5]}/#{uuid[6..7]}/#{uuid}"
19
-
20
- "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{slug}"
21
- end
22
-
23
- def default_url(*)
24
- ActionController::Base.helpers.asset_path('biovision/placeholders/user.svg')
25
- end
26
-
27
- process :auto_orient
28
-
29
- def auto_orient
30
- manipulate! do |image|
31
- image.tap(&:auto_orient)
32
- end
33
- end
34
-
35
- version :hd do
36
- resize_to_fit(1280, 1280)
37
- end
38
-
39
- version :large, from_version: :hd do
40
- resize_to_fit(640, 640)
41
- end
42
-
43
- version :profile, from_version: :large do
44
- resize_to_fit(320, 320)
45
- end
46
-
47
- version :preview, from_version: :profile do
48
- resize_to_fit(160, 160)
49
- end
50
-
51
- version :tiny, from_version: :preview do
52
- resize_to_fit(48, 48)
53
- end
54
-
55
- def extension_whitelist
56
- %w[jpg jpeg png]
57
- end
58
- end
@@ -1,2 +0,0 @@
1
- <li><%= render 'admin/agents/nav_item' %></li>
2
- <li><%= render 'admin/ip_addresses/nav_item' %></li>
@@ -1,11 +0,0 @@
1
- <% if handler.allow?('view', 'edit') %>
2
- <!-- <li><%#= render 'admin/users/nav_item' %></li>-->
3
- <!-- <li><%#= render 'admin/foreign_users/nav_item' %></li>-->
4
- <% end %>
5
- <% if handler.administrator? %>
6
- <!-- <li><%#= render 'admin/login_attempts/nav_item' %></li>-->
7
- <!-- <li><%#= render 'admin/tokens/nav_item' %></li>-->
8
- <% end %>
9
- <% if handler.allow?('manage_codes') %>
10
- <!-- <li><%#= render 'admin/codes/nav_item' %></li>-->
11
- <% end %>
@@ -1,17 +0,0 @@
1
- <figure class="image">
2
- <%= user_image_small(entity.user) %>
3
- </figure>
4
- <div class="data">
5
- <div><%= admin_user_link(entity.user) %></div>
6
- <div>
7
- <%=
8
- render(
9
- partial: 'admin/components/privileges/links',
10
- locals: {
11
- handler: handler,
12
- entity: entity
13
- }
14
- )
15
- %>
16
- </div>
17
- </div>
@@ -1,35 +0,0 @@
1
- <ul class="entity-links">
2
- <li>
3
- <% element_id = "component_administrator_#{handler.slug}_#{entity.user_id}" %>
4
- <%=
5
- check_box_tag(
6
- 'user_id',
7
- entity.user_id,
8
- entity.administrator?,
9
- data: {
10
- url: admin_component_administrators_path(slug: handler.slug, user_id: entity.user_id)
11
- },
12
- id: element_id
13
- )
14
- %>
15
- <%= label_tag(element_id, t('activerecord.attributes.biovision_component_user.administrator')) %>
16
- </li>
17
- <%
18
- privilege_names = handler.class.privilege_names
19
- privilege_names.unshift('settings') if handler.use_settings?
20
- %>
21
- <% privilege_names.each do |privilege_slug| %>
22
- <li>
23
- <%=
24
- render(
25
- partial: 'admin/components/privileges/privilege_flag',
26
- locals: {
27
- entity: entity,
28
- handler: handler,
29
- slug: privilege_slug
30
- }
31
- )
32
- %>
33
- </li>
34
- <% end %>
35
- </ul>
@@ -1,28 +0,0 @@
1
- <% element_id = "component_privilege_#{slug}_#{entity.user_id}" %>
2
- <%=
3
- check_box_tag(
4
- 'user_id',
5
- entity.user_id,
6
- Array(entity.data['privileges']).include?(slug),
7
- data: {
8
- url: admin_component_privilege_path(
9
- privilege_slug: slug,
10
- slug: handler.slug,
11
- user_id: entity.user_id
12
- )
13
- },
14
- id: element_id
15
- )
16
- %>
17
- <%=
18
- label_tag(
19
- element_id,
20
- t(
21
- "biovision.components.#{handler.slug}.privileges.#{slug}",
22
- default: [
23
- "biovision.components.common.privileges.#{slug}".to_sym,
24
- slug
25
- ]
26
- )
27
- )
28
- %>
@@ -1,23 +0,0 @@
1
- <section>
2
- <h2><%= t('.heading') %></h2>
3
-
4
- <% if collection.any? %>
5
- <ul class="list-of-entities">
6
- <% collection.each do |entity| %>
7
- <li data-id="<%= entity.id %>">
8
- <%=
9
- render(
10
- partial: 'admin/components/privileges/component_user',
11
- locals: {
12
- handler: handler,
13
- entity: entity
14
- }
15
- )
16
- %>
17
- </li>
18
- <% end %>
19
- </ul>
20
- <% else %>
21
- <%= render 'shared/nothing_found' %>
22
- <% end %>
23
- </section>
@@ -1,20 +0,0 @@
1
- <% content_for :meta_title, t('.title', slug: @handler.slug) %>
2
- <% content_for :breadcrumbs do %>
3
- <%= link_to(t('admin.components.index.nav_text'), admin_components_path) %>
4
- <%= admin_biovision_component_link(@handler.component, @handler.name) %>
5
- <span><%= t('.nav_text') %></span>
6
- <% end %>
7
-
8
- <article>
9
- <h1><%= @handler.name %></h1>
10
-
11
- <%=
12
- render(
13
- partial: 'admin/components/privileges/users',
14
- locals: {
15
- collection: @handler.component.privileges,
16
- handler: @handler
17
- }
18
- )
19
- %>
20
- </article>
@@ -1,40 +0,0 @@
1
- <%
2
- component = Biovision::Components::UsersComponent[current_user]
3
- form_id = local_assigns[:form_id]
4
- from = local_assigns[:from]
5
- %>
6
- <%=
7
- form_with(
8
- url: login_path,
9
- html: { class: 'authentication-form', id: form_id }
10
- ) do
11
- %>
12
- <dl class="fields">
13
- <div>
14
- <dt><%= label_tag :login, t('.login') %></dt>
15
- <dd>
16
- <%=
17
- text_field_tag(:login, '', class: 'input-text', required: true)
18
- %>
19
- </dd>
20
- </div>
21
- <div>
22
- <dt>
23
- <%= label_tag :password, t('activerecord.attributes.user.password') %>
24
- </dt>
25
- <dd>
26
- <%=
27
- password_field_tag(:password, '', class: 'input-text', required: true)
28
- %>
29
- </dd>
30
- </div>
31
- </dl>
32
- <div class="actions">
33
- <%= hidden_field_tag :from, from unless from.blank? %>
34
- <%= hidden_field_tag :form_id, form_id %>
35
- <%= button_tag t('.log_in'), class: 'button-primary' %>
36
- <% if component.settings['registration_open'] %>
37
- <%= link_to t('my.profiles.new.title'), new_my_profile_path, class: 'button-nav' %>
38
- <% end %>
39
- </div>
40
- <% end %>
@@ -1,3 +0,0 @@
1
- <% unless @form_id.blank? %>
2
- Biovision.components.forms.showError("<%= j(@form_id) %>", "<%= j(@error) %>")
3
- <% end %>
@@ -1,147 +0,0 @@
1
- <% model_name = entity.class.to_s.underscore %>
2
- <%=
3
- form_with(
4
- model: entity,
5
- scope: model_name,
6
- url: my_profile_path,
7
- class: 'users_registration-form',
8
- id: "#{model_name}-form",
9
- data: { check_url: check_my_profile_path }
10
- ) do |f|
11
- %>
12
- <%=
13
- render(
14
- partial: 'shared/entity/list_of_errors',
15
- locals: { entity: entity }
16
- )
17
- %>
18
- <dl class="fields">
19
- <% unless component_handler.settings['email_as_login'] %>
20
- <div>
21
- <dt>
22
- <%= f.label :screen_name, t('activerecord.attributes.user.screen_name') %>
23
- </dt>
24
- <dd>
25
- <%=
26
- f.text_field(
27
- :screen_name,
28
- class: 'input-text',
29
- data: { check: :screen_name },
30
- maxlength: 30,
31
- pattern: '^[-_a-z0-9A-Z]+$',
32
- required: true,
33
- title: t('.guidelines.screen_name'),
34
- )
35
- %>
36
- <div class="check-result-error" data-field="screen_name"></div>
37
- <div class="guideline"><%= t('.guidelines.screen_name') %></div>
38
- </dd>
39
- </div>
40
- <% end %>
41
-
42
- <div>
43
- <dt>
44
- <%= f.label :email, t('activerecord.attributes.user.email') %>
45
- </dt>
46
- <dd>
47
- <%=
48
- f.email_field(
49
- :email,
50
- class: 'input-text',
51
- data: { check: :email },
52
- maxlength: User::EMAIL_LIMIT,
53
- required: component_handler.settings['require_email'],
54
- size: nil
55
- )
56
- %>
57
- <div class="check-result-error" data-field="email"></div>
58
- <% unless component_handler.settings['email_as_login'] %>
59
- <div class="guideline"><%= t('.guidelines.email') %></div>
60
- <% end %>
61
- </dd>
62
- </div>
63
-
64
- <div>
65
- <dt>
66
- <%= f.label :password, t('activerecord.attributes.user.password') %>
67
- </dt>
68
- <dd>
69
- <%=
70
- f.password_field(
71
- :password,
72
- class: 'input-text',
73
- data: { check: :password },
74
- maxlength: 70,
75
- required: true,
76
- size: nil
77
- )
78
- %>
79
- <div class="check-result-error" data-field="password"></div>
80
- <div class="guideline"><%= t('.guidelines.password') %></div>
81
- </dd>
82
- </div>
83
-
84
- <div>
85
- <dt>
86
- <%= f.label :password_confirmation, t('activerecord.attributes.user.password_confirmation') %>
87
- </dt>
88
- <dd>
89
- <%=
90
- f.password_field(
91
- :password_confirmation,
92
- class: 'input-text',
93
- data: { check: :password_confirmation },
94
- maxlength: 70,
95
- required: true,
96
- size: nil
97
- )
98
- %>
99
- <div class="check-result-error" data-field="password_confirmation"></div>
100
- <div class="guideline"><%= t('.guidelines.password_confirmation') %></div>
101
- </dd>
102
- </div>
103
-
104
- <% if component_handler.settings['use_invites'] %>
105
- <div>
106
- <dt>
107
- <%= label_tag :code, t('.invitation_code') %>
108
- </dt>
109
- <dd>
110
- <%=
111
- text_field_tag(
112
- :code,
113
- param_from_request(:code),
114
- class: 'input-text',
115
- data: { check: :code },
116
- maxlength: Code::BODY_LIMIT,
117
- required: component_handler.settings['invite_only'],
118
- size: nil
119
- )
120
- %>
121
- <div class="check-result-error" data-field="code"></div>
122
- </dd>
123
- </div>
124
- <% end %>
125
- </dl>
126
-
127
- <ul class="flags">
128
- <li>
129
- <%= f.check_box :consent, id: "#{model_name}_consent", required: true %>
130
- <%= f.label :consent, t('.consent') %>
131
- </li>
132
- <li>
133
- <%= f.check_box :allow_mail, id: :user_allow_mail %>
134
- <%= f.label :allow_mail, t('activerecord.attributes.user.allow_mail') %>
135
- </li>
136
- </ul>
137
-
138
- <div class="visually-hidden">
139
- <%= check_box_tag :agree, '1', false, tabindex: '-1' %>
140
- <%= label_tag :agree, t('.i_am_bot') %>
141
- </div>
142
-
143
- <div class="actions">
144
- <%= button_tag t('.join'), type: :submit, class: 'button-primary' %>
145
- <%#= link_to t('authentication.nav_item.log_in'), login_path, class: 'button-nav' %>
146
- </div>
147
- <% end %>
@@ -1,8 +0,0 @@
1
- <% prefix = "activerecord.attributes.#{entity.class.to_s.underscore}"%>
2
- <div class="toggleable" data-url="<%= url %>">
3
- <% entity.class.toggleable_attributes.each do |flag| %>
4
- <span class="<%= entity.attributes[flag.to_s] ? 'active' : 'inactive' %>" data-flag="<%= flag %>">
5
- <%= t("#{prefix}.#{flag}", default: ["attributes.#{flag}".to_sym, flag.to_s]) %>
6
- </span>
7
- <% end %>
8
- </div>