* Started adding youtube API for fast indexing * Hooked youtube API into fast indexing * Added youtube_api_key to settings * Added youtube api key to settings UI * Added tests * Refactored the youtube api module * More refactor * Changed editing mode name from basic to standard * [WIP] started on copy changes * Updated copy
40 lines
1.4 KiB
Elixir
40 lines
1.4 KiB
Elixir
defmodule PinchflatWeb.Settings.SettingHTML do
|
|
use PinchflatWeb, :html
|
|
|
|
embed_templates "setting_html/*"
|
|
|
|
@doc """
|
|
Renders a setting form.
|
|
"""
|
|
attr :conn, Plug.Conn, required: true
|
|
attr :changeset, Ecto.Changeset, required: true
|
|
attr :action, :string, required: true
|
|
|
|
def setting_form(assigns)
|
|
|
|
def apprise_server_help do
|
|
url = "https://github.com/caronc/apprise/wiki/URLBasics"
|
|
|
|
~s(Server endpoint for Apprise notifications when new media is found. See <a href="#{url}" class="#{help_link_classes()}" target="_blank">Apprise docs</a> for more information)
|
|
end
|
|
|
|
def youtube_api_help do
|
|
url = "https://github.com/kieraneglin/pinchflat/wiki/Generating-a-YouTube-API-key"
|
|
|
|
~s(API key for YouTube Data API v3. Greatly improves the accuracy of Fast Indexing. See <a href="#{url}" class="#{help_link_classes()}" target="_blank">here</a> for details on generating an API key)
|
|
end
|
|
|
|
def diagnostic_info_string do
|
|
"""
|
|
- App Version: #{Application.spec(:pinchflat)[:vsn]}
|
|
- yt-dlp Version: #{Settings.get!(:yt_dlp_version)}
|
|
- Apprise Version: #{Settings.get!(:apprise_version)}
|
|
- System Architecture: #{to_string(:erlang.system_info(:system_architecture))}
|
|
- Timezone: #{Application.get_env(:pinchflat, :timezone)}
|
|
"""
|
|
end
|
|
|
|
defp help_link_classes do
|
|
"underline decoration-bodydark decoration-1 hover:decoration-white"
|
|
end
|
|
end
|