Added youtube_api_key to settings

This commit is contained in:
Kieran Eglin 2024-06-04 15:27:54 -07:00
parent 9dbbf34db9
commit 147fb71a02
No known key found for this signature in database
GPG key ID: 193984967FCF432D
5 changed files with 18 additions and 2 deletions

View file

@ -16,7 +16,6 @@ defmodule Pinchflat.FastIndexing.YoutubeRss do
Returns true Returns true
""" """
# TODO: test
@impl YoutubeBehaviour @impl YoutubeBehaviour
def enabled?(), do: true def enabled?(), do: true

View file

@ -13,7 +13,8 @@ defmodule Pinchflat.Settings.Setting do
:apprise_version, :apprise_version,
:apprise_server, :apprise_server,
:video_codec_preference, :video_codec_preference,
:audio_codec_preference :audio_codec_preference,
:youtube_api_key
] ]
@required_fields ~w( @required_fields ~w(
@ -29,6 +30,7 @@ defmodule Pinchflat.Settings.Setting do
field :yt_dlp_version, :string field :yt_dlp_version, :string
field :apprise_version, :string field :apprise_version, :string
field :apprise_server, :string field :apprise_server, :string
field :youtube_api_key, :string
field :video_codec_preference, :string field :video_codec_preference, :string
field :audio_codec_preference, :string field :audio_codec_preference, :string

Binary file not shown.

Before

Width:  |  Height:  |  Size: 471 KiB

After

Width:  |  Height:  |  Size: 468 KiB

View file

@ -0,0 +1,9 @@
defmodule Pinchflat.Repo.Migrations.AddYoutubeApiKeySetting do
use Ecto.Migration
def change do
alter table(:settings) do
add :youtube_api_key, :string
end
end
end

View file

@ -11,6 +11,12 @@ defmodule Pinchflat.FastIndexing.YoutubeRssTest do
{:ok, source: source} {:ok, source: source}
end end
describe "enabled?/0" do
test "returns true" do
assert YoutubeRss.enabled?()
end
end
describe "get_recent_media_ids/1" do describe "get_recent_media_ids/1" do
test "calls the expected URL for channel sources" do test "calls the expected URL for channel sources" do
source = source_fixture(collection_type: :channel, collection_id: "channel_id") source = source_fixture(collection_type: :channel, collection_id: "channel_id")