Class: Decidim::Organization

Inherits:
ApplicationRecord show all
Includes:
ActsAsAuthor, HasUploadValidations, Loggable, Traceable, TranslatableResource, TranslationsHelper
Defined in:
decidim-core/app/models/decidim/organization.rb

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

Methods included from HasUploadValidations

#attached_uploader, #maximum_avatar_size

Methods included from TranslationsHelper

empty_translatable, ensure_translatable, multi_translation, translated_in_current_locale?

Methods included from TranslatableAttributes

#default_locale?

Class Method Details

.log_presenter_class_for(_log) ⇒ Object



66
67
68
# File 'decidim-core/app/models/decidim/organization.rb', line 66

def self.log_presenter_class_for(_log)
  Decidim::AdminLog::OrganizationPresenter
end

Instance Method Details

#admin_terms_of_service_bodyObject



120
121
122
123
# File 'decidim-core/app/models/decidim/organization.rb', line 120

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_handlersObject



79
80
81
# File 'decidim-core/app/models/decidim/organization.rb', line 79

def available_authorization_handlers
  available_authorizations & Decidim.authorization_handlers.map(&:name)
end

#customize_welcome_notificationObject



106
107
108
# File 'decidim-core/app/models/decidim/organization.rb', line 106

def customize_welcome_notification
  self[:welcome_notification_subject].present? || self[:welcome_notification_body].present?
end

#enabled_omniauth_providersObject



137
138
139
140
141
142
# File 'decidim-core/app/models/decidim/organization.rb', line 137

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_icoObject



162
163
164
165
166
167
168
169
# File 'decidim-core/app/models/decidim/organization.rb', line 162

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

Returns:

  • (Boolean)


144
145
146
# File 'decidim-core/app/models/decidim/organization.rb', line 144

def machine_translation_prioritizes_original?
  machine_translation_display_priority == "original"
end

#machine_translation_prioritizes_translation?Boolean

Returns:

  • (Boolean)


148
149
150
# File 'decidim-core/app/models/decidim/organization.rb', line 148

def machine_translation_prioritizes_translation?
  machine_translation_display_priority == "translation"
end

#maximum_upload_sizeObject

This is needed for the upload validations



75
76
77
# File 'decidim-core/app/models/decidim/organization.rb', line 75

def maximum_upload_size
  settings.upload_maximum_file_size
end

#open_data_file_pathObject



133
134
135
# File 'decidim-core/app/models/decidim/organization.rb', line 133

def open_data_file_path
  "#{host}-open-data.zip"
end

#participatory_spacesObject



90
91
92
93
94
# File 'decidim-core/app/models/decidim/organization.rb', line 90

def participatory_spaces
  @participatory_spaces ||= Decidim.participatory_space_manifests.flat_map do |manifest|
    manifest.participatory_spaces.call(self)
  end
end

#presenterObject

Returns the presenter for this author, to be used in the views. Required by ActsAsAuthor.



154
155
156
# File 'decidim-core/app/models/decidim/organization.rb', line 154

def presenter
  Decidim::OfficialAuthorPresenter.new
end

#public_participatory_spacesObject



96
97
98
99
100
# File 'decidim-core/app/models/decidim/organization.rb', line 96

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_componentsObject



102
103
104
# File 'decidim-core/app/models/decidim/organization.rb', line 102

def published_components
  @published_components ||= Component.where(participatory_space: public_participatory_spaces).published
end

#settingsObject



70
71
72
# File 'decidim-core/app/models/decidim/organization.rb', line 70

def settings
  Decidim::OrganizationSettings.for(self)
end

#sign_in_enabled?Boolean

Returns:

  • (Boolean)


129
130
131
# File 'decidim-core/app/models/decidim/organization.rb', line 129

def 
  !users_registration_mode_disabled?
end

#sign_up_enabled?Boolean

Returns:

  • (Boolean)


125
126
127
# File 'decidim-core/app/models/decidim/organization.rb', line 125

def 
  users_registration_mode_enabled?
end

#static_pages_accessible_for(user) ⇒ Object



158
159
160
# File 'decidim-core/app/models/decidim/organization.rb', line 158

def static_pages_accessible_for(user)
  static_pages.accessible_for(self, user)
end

#top_scopesObject

Returns top level scopes for this organization.

Returns an ActiveRecord::Relation.



86
87
88
# File 'decidim-core/app/models/decidim/organization.rb', line 86

def top_scopes
  @top_scopes ||= scopes.top_level
end

#welcome_notification_bodyObject



115
116
117
118
# File 'decidim-core/app/models/decidim/organization.rb', line 115

def welcome_notification_body
  self[:welcome_notification_body] ||
    multi_translation("decidim.welcome_notification.default_body", available_locales)
end

#welcome_notification_subjectObject



110
111
112
113
# File 'decidim-core/app/models/decidim/organization.rb', line 110

def welcome_notification_subject
  self[:welcome_notification_subject] ||
    multi_translation("decidim.welcome_notification.default_subject", available_locales)
end