2019-01-17 16:26:03 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Provides helper methods for public calendar of Availability
|
|
|
|
class Availabilities::PublicAvailabilitiesService
|
|
|
|
def initialize(current_user)
|
|
|
|
@current_user = current_user
|
2020-05-25 16:47:06 +02:00
|
|
|
@service = Availabilities::StatusService.new('public')
|
2019-01-17 16:26:03 +01:00
|
|
|
end
|
|
|
|
|
2022-07-18 17:17:21 +02:00
|
|
|
def public_availabilities(window, ids, events = false)
|
|
|
|
level = in_same_day(window[:start], window[:end]) ? 'slot' : 'availability'
|
|
|
|
service = Availabilities::AvailabilitiesService.new(@current_user, level)
|
2019-01-17 16:26:03 +01:00
|
|
|
|
2022-07-19 11:32:12 +02:00
|
|
|
machines_slots = service.machines(Machine.where(id: ids[:machines]), @current_user, window)
|
|
|
|
spaces_slots = service.spaces(Space.where(id:ids[:spaces]), @current_user, window)
|
2022-07-18 17:17:21 +02:00
|
|
|
trainings_slots = service.trainings(Training.where(id: ids[:trainings]), @current_user, window)
|
|
|
|
events_slots = events ? service.events(Event.all, @current_user, window) : []
|
2019-01-17 16:26:03 +01:00
|
|
|
|
2022-07-18 17:17:21 +02:00
|
|
|
[].concat(trainings_slots).concat(events_slots).concat(machines_slots).concat(spaces_slots)
|
2019-01-17 16:26:03 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def in_same_day(start_date, end_date)
|
|
|
|
(end_date.to_date - start_date.to_date).to_i == 1
|
|
|
|
end
|
|
|
|
end
|