Sha256: 01b40e1e7345431a03434f7abcb519c9297ad88336a5d1d90b17293d8eccb140

Contents?: true

Size: 1.62 KB

Versions: 2

Compression:

Stored size: 1.62 KB

Contents

# frozen_string_literal: true

class Tramway::Event::Event < ::Tramway::Event::ApplicationRecord
  mount_uploader :photo, PhotoUploader

  has_many :participants, class_name: 'Tramway::Event::Participant'
  has_many :participant_form_fields, class_name: 'Tramway::Event::ParticipantFormField'
  has_many :sections, class_name: 'Tramway::Event::Section'
  has_many :partakings, as: :part, class_name: 'Tramway::Event::Partaking'
  has_many :partnerships, class_name: 'Tramway::Partner::Partnership', as: :partner
  has_many :organizations, as: :partners, through: :partnerships, class_name: 'Tramway::Partner::Organization'
  has_many :actions, -> { order(id: :asc) }, class_name: 'Tramway::Event::Action'
  has_and_belongs_to_many :places

  enumerize :reach, default: :open, in: %i[open closed]

  scope :actual, -> { order(:begin_date).where('end_date > ?', DateTime.now) }
  scope :past, -> { where 'end_date < ?', DateTime.now }
  scope :open, -> { where reach: :open }
  scope :closed, -> { where reach: :closed }

  def request_collecting_state
    return :not_initialized unless request_collecting_begin_date.present? || request_collecting_end_date.present?
    return :will_begin_soon if request_collecting_begin_date > DateTime.now
    return :is_over if request_collecting_end_date.present? && request_collecting_end_date < DateTime.now
    return :are_being_right_now if request_collecting_begin_date&.past? && request_collecting_end_date&.future?
    return :are_being_right_now if request_collecting_begin_date < DateTime.now && !request_collecting_end_date.present?
  end

  include ::Tramway::Partner::Scopes if defined? ::Tramway::Partner
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tramway-event-1.11.0.1 app/models/tramway/event/event.rb
tramway-event-1.11 app/models/tramway/event/event.rb