Rephrase toggl scraping in term of attendances
This commit is contained in:
@@ -12,7 +12,8 @@ class ScrapeTogglJob < ApplicationJob
|
||||
# @param [Course] course
|
||||
def scrape_course(course)
|
||||
toggl_project_id = course.toggl_project
|
||||
lectures = course.lectures.order(:start_time).where(associated_toggl_entry: nil)
|
||||
lectures = course.lectures.order(:start_time)
|
||||
|
||||
return if lectures.empty?
|
||||
|
||||
entries_data = Toggl::entries_for_project(
|
||||
@@ -24,13 +25,24 @@ class ScrapeTogglJob < ApplicationJob
|
||||
)
|
||||
|
||||
lectures.each do |lecture|
|
||||
entries_data.find do |entry|
|
||||
associated_entry = entry['time_entries'].find do |inner_entry|
|
||||
(Time.new(inner_entry['start']) - lecture.start_time) < 15.seconds
|
||||
entries_data.each do |entry|
|
||||
concurrent_time_entry = entry['time_entries'].find do |inner_entry|
|
||||
(Time.new(inner_entry['start']) - lecture.start_time) < 10.minutes
|
||||
end
|
||||
|
||||
if associated_entry.present?
|
||||
lecture.update!(associated_toggl_entry: associated_entry['id'])
|
||||
if concurrent_time_entry.present?
|
||||
Attendance.create!(
|
||||
lecture:,
|
||||
associated_toggl_entry: concurrent_time_entry['id'],
|
||||
kind: :concurrent
|
||||
)
|
||||
elsif entry['description'] == lecture.nice_title
|
||||
# If the title matches but it wasn't concurrent, then it was a catchup
|
||||
Attendance.create!(
|
||||
lecture:,
|
||||
associated_toggl_entry: entry['time_entries'][0]['id'],
|
||||
kind: :catchup
|
||||
)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user