Sha256: 61f042354d6301253c09a8c80181d5927c7e55e5e3899bd1c0cfc19b81b31712

Contents?: true

Size: 1.56 KB

Versions: 7

Compression:

Stored size: 1.56 KB

Contents

# frozen_string_literal: true

module Decidim
  module Conferences
    class ConferenceProgramController < Decidim::Conferences::ApplicationController
      include ParticipatorySpaceContext

      helper Decidim::SanitizeHelper
      helper Decidim::Conferences::ConferenceProgramHelper

      helper_method :collection, :conference, :meeting_days, :meeting_component

      def show
        raise ActionController::RoutingError, "No meetings for this conference " if meetings.blank?

        enforce_permission_to :list, :program
      end

      private

      def meeting_component
        return if params[:id].blank?

        @meeting_component ||= current_participatory_space.components.where(manifest_name: "meetings").find_by(id: params[:id])
      end

      def meetings
        return unless meeting_component&.published? || !meeting_component.presence

        @meetings ||= Decidim::Meetings::Meeting.where(component: meeting_component).visible_for(current_user).order(:start_time)
      end

      def meeting_days
        @meeting_days ||= meetings.map { |m| [m.start_time.to_date] }.uniq.flatten
      end

      alias collection meetings

      def current_participatory_space
        return unless params[:conference_slug]

        @current_participatory_space ||= OrganizationConferences.new(current_organization).query.where(slug: params[:conference_slug]).or(
          OrganizationConferences.new(current_organization).query.where(id: params[:conference_slug])
        ).first!
      end

      def conference
        current_participatory_space
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
decidim-conferences-0.29.2 app/controllers/decidim/conferences/conference_program_controller.rb
decidim-conferences-0.29.1 app/controllers/decidim/conferences/conference_program_controller.rb
decidim-conferences-0.29.0 app/controllers/decidim/conferences/conference_program_controller.rb
decidim-conferences-0.29.0.rc4 app/controllers/decidim/conferences/conference_program_controller.rb
decidim-conferences-0.29.0.rc3 app/controllers/decidim/conferences/conference_program_controller.rb
decidim-conferences-0.29.0.rc2 app/controllers/decidim/conferences/conference_program_controller.rb
decidim-conferences-0.29.0.rc1 app/controllers/decidim/conferences/conference_program_controller.rb