Class: Decidim::Organization
Overview
Organizations are one of the main models of Decidim. In a single Decidim installation we can find many organizations and each of them can start their own participatory processes.
Constant Summary
collapse
- SOCIAL_HANDLERS =
[:twitter, :facebook, :instagram, :youtube, :github].freeze
- AVAILABLE_MACHINE_TRANSLATION_DISPLAY_PRIORITIES =
%w(original translation).freeze
Class Method Summary
collapse
Instance Method Summary
collapse
#attached_uploader, #maximum_avatar_size
empty_translatable, ensure_translatable, multi_translation, translated_in_current_locale?
#default_locale?
Class Method Details
.log_presenter_class_for(_log) ⇒ Object
Instance Method Details
#admin_terms_of_service_body ⇒ Object
138
139
140
141
|
# File 'app/models/decidim/organization.rb', line 138
def admin_terms_of_service_body
self[:admin_terms_of_service_body] ||
multi_translation("decidim.admin_terms_of_service.default_body", available_locales)
end
|
#available_authorization_handlers ⇒ Object
97
98
99
|
# File 'app/models/decidim/organization.rb', line 97
def available_authorization_handlers
available_authorizations & Decidim.authorization_handlers.map(&:name)
end
|
#customize_welcome_notification ⇒ Object
124
125
126
|
# File 'app/models/decidim/organization.rb', line 124
def customize_welcome_notification
self[:welcome_notification_subject].present? || self[:welcome_notification_body].present?
end
|
#enabled_omniauth_providers ⇒ Object
155
156
157
158
159
160
|
# File 'app/models/decidim/organization.rb', line 155
def enabled_omniauth_providers
return Decidim::OmniauthProvider.enabled || {} if omniauth_settings.nil?
default_except_disabled = Decidim::OmniauthProvider.enabled.except(*tenant_disabled_providers_keys)
default_except_disabled.merge(tenant_enabled_providers)
end
|
#favicon_ico ⇒ Object
180
181
182
183
184
185
186
187
|
# File 'app/models/decidim/organization.rb', line 180
def favicon_ico
return unless favicon.attached?
return favicon if favicon.content_type == "image/vnd.microsoft.icon"
uploader = attached_uploader(:favicon)
variant = uploader.variant(:favicon)
variant.processed.image
end
|
#machine_translation_prioritizes_original? ⇒ Boolean
162
163
164
|
# File 'app/models/decidim/organization.rb', line 162
def machine_translation_prioritizes_original?
machine_translation_display_priority == "original"
end
|
#machine_translation_prioritizes_translation? ⇒ Boolean
166
167
168
|
# File 'app/models/decidim/organization.rb', line 166
def machine_translation_prioritizes_translation?
machine_translation_display_priority == "translation"
end
|
#maximum_upload_size ⇒ Object
This is needed for the upload validations
93
94
95
|
# File 'app/models/decidim/organization.rb', line 93
def maximum_upload_size
settings.upload_maximum_file_size
end
|
#open_data_file_path ⇒ Object
151
152
153
|
# File 'app/models/decidim/organization.rb', line 151
def open_data_file_path
"#{host}-open-data.zip"
end
|
#participatory_spaces ⇒ Object
108
109
110
111
112
|
# File 'app/models/decidim/organization.rb', line 108
def participatory_spaces
@participatory_spaces ||= Decidim.participatory_space_manifests.flat_map do |manifest|
manifest.participatory_spaces.call(self)
end
end
|
#presenter ⇒ Object
Returns the presenter for this author, to be used in the views. Required by ActsAsAuthor.
#public_participatory_spaces ⇒ Object
114
115
116
117
118
|
# File 'app/models/decidim/organization.rb', line 114
def public_participatory_spaces
@public_participatory_spaces ||= Decidim.participatory_space_manifests.flat_map do |manifest|
manifest.participatory_spaces.call(self).public_spaces
end
end
|
#published_components ⇒ Object
120
121
122
|
# File 'app/models/decidim/organization.rb', line 120
def published_components
@published_components ||= Component.where(participatory_space: public_participatory_spaces).published
end
|
#sign_in_enabled? ⇒ Boolean
147
148
149
|
# File 'app/models/decidim/organization.rb', line 147
def sign_in_enabled?
!users_registration_mode_disabled?
end
|
#sign_up_enabled? ⇒ Boolean
143
144
145
|
# File 'app/models/decidim/organization.rb', line 143
def sign_up_enabled?
users_registration_mode_enabled?
end
|
#static_pages_accessible_for(user) ⇒ Object
176
177
178
|
# File 'app/models/decidim/organization.rb', line 176
def static_pages_accessible_for(user)
static_pages.accessible_for(self, user)
end
|
#top_scopes ⇒ Object
Returns top level scopes for this organization.
Returns an ActiveRecord::Relation.
104
105
106
|
# File 'app/models/decidim/organization.rb', line 104
def top_scopes
@top_scopes ||= scopes.top_level
end
|
#unique_name ⇒ Object
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# File 'app/models/decidim/organization.rb', line 65
def unique_name
base_query = new_record? ? Decidim::Organization.all : Decidim::Organization.where.not(id:).all
organization_names = []
base_query.pluck(:name).each do |value|
organization_names += value.except("machine_translations").values
organization_names += value.fetch("machine_translations", {}).values
end
organization_names = organization_names.map(&:downcase).compact_blank
name.each do |language, value|
next if value.is_a?(Hash)
errors.add("name_#{language}", :taken) if organization_names.include?(value.downcase)
end
end
|
#welcome_notification_body ⇒ Object
133
134
135
136
|
# File 'app/models/decidim/organization.rb', line 133
def welcome_notification_body
self[:welcome_notification_body] ||
multi_translation("decidim.welcome_notification.default_body", available_locales)
end
|
#welcome_notification_subject ⇒ Object
128
129
130
131
|
# File 'app/models/decidim/organization.rb', line 128
def welcome_notification_subject
self[:welcome_notification_subject] ||
multi_translation("decidim.welcome_notification.default_subject", available_locales)
end
|