* Added jobs for enqueuing/dequeuing media based on source's status * adds lifecycle columns to source and media_item tables
63 lines
2.2 KiB
Elixir
63 lines
2.2 KiB
Elixir
defmodule Pinchflat.Workers.MediaIndexingWorker do
|
|
@moduledoc false
|
|
|
|
use Oban.Worker,
|
|
queue: :media_indexing,
|
|
unique: [period: :infinity, states: [:available, :scheduled, :retryable]],
|
|
tags: ["media_source", "media_indexing"]
|
|
|
|
alias __MODULE__
|
|
alias Pinchflat.Tasks
|
|
alias Pinchflat.MediaSource
|
|
alias Pinchflat.Tasks.SourceTasks
|
|
|
|
@impl Oban.Worker
|
|
@doc """
|
|
The ID is that of a source _record_, not a YouTube channel/playlist ID. Indexes
|
|
the provided source, kicks off downloads for each new MediaItem, and
|
|
reschedules the job to run again in the future (as determined by the
|
|
souce's `index_frequency_minutes` field).
|
|
|
|
README: Re-scheduling here works a little different than you may expect.
|
|
The reschedule time is relative to the time the job has actually _completed_.
|
|
This has some benefits but also side effects to be aware of:
|
|
|
|
- Benefit: No chance for jobs to overlap if a job takes longer than the
|
|
scheduled interval. Less likely to hit API rate limits.
|
|
- Side effect: Intervals are "soft" and _always_ walk forward. This may cause
|
|
user confusion since a 30-minute job scheduled for every hour will
|
|
actually run every 1 hour and 30 minutes. The tradeoff of not inundating
|
|
the API with requests and also not overlapping jobs is worth it, IMO.
|
|
|
|
NOTE: Since indexing can take a LONG time, I should check what happens if an
|
|
application restart occurs while a job is running. Will the job be lost?
|
|
|
|
IDEA: Should I use paging and do indexing in chunks? Is that even faster?
|
|
|
|
Returns :ok | {:ok, %Task{}}
|
|
"""
|
|
def perform(%Oban.Job{args: %{"id" => source_id}}) do
|
|
source = MediaSource.get_source!(source_id)
|
|
|
|
if source.index_frequency_minutes <= 0 do
|
|
:ok
|
|
else
|
|
index_media_and_reschedule(source)
|
|
end
|
|
end
|
|
|
|
defp index_media_and_reschedule(source) do
|
|
SourceTasks.index_media_items(source)
|
|
# This method handles the case where a source is set to not download media
|
|
SourceTasks.enqueue_pending_media_tasks(source)
|
|
|
|
source
|
|
|> Map.take([:id])
|
|
|> MediaIndexingWorker.new(schedule_in: source.index_frequency_minutes * 60)
|
|
|> Tasks.create_job_with_task(source)
|
|
|> case do
|
|
{:ok, task} -> {:ok, task}
|
|
{:error, :duplicate_job} -> {:ok, :job_exists}
|
|
end
|
|
end
|
|
end
|