mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-11 09:41:40 -05:00
32 lines
663 B
Ruby
32 lines
663 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
module Visits
|
||
|
|
class FindInTime
|
||
|
|
def initialize(user, params)
|
||
|
|
@user = user
|
||
|
|
@start_at = parse_time(params[:start_at])
|
||
|
|
@end_at = parse_time(params[:end_at])
|
||
|
|
end
|
||
|
|
|
||
|
|
def call
|
||
|
|
Visit
|
||
|
|
.includes(:place)
|
||
|
|
.where(user:)
|
||
|
|
.where('started_at >= ? AND ended_at <= ?', start_at, end_at)
|
||
|
|
.order(started_at: :desc)
|
||
|
|
end
|
||
|
|
|
||
|
|
private
|
||
|
|
|
||
|
|
attr_reader :user, :start_at, :end_at
|
||
|
|
|
||
|
|
def parse_time(time_string)
|
||
|
|
parsed_time = Time.zone.parse(time_string)
|
||
|
|
|
||
|
|
raise ArgumentError, "Invalid time format: #{time_string}" if parsed_time.nil?
|
||
|
|
|
||
|
|
parsed_time
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|