Console entry point for spotdl. This is where the magic happens.
Source code in spotdl/console/entry_point.py
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140 | def console_entry_point():
"""
Console entry point for spotdl. This is where the magic happens.
"""
# Create config file if it doesn't exist
generate_initial_config()
# Check if sys.argv contains an action
# If it does, we run the action and exit
try:
action_to_run = next(
action for action_name, action in ACTIONS.items() if action_name in sys.argv
)
except StopIteration:
action_to_run = None
if action_to_run:
action_to_run()
return None
# Parse the arguments
arguments = parse_arguments()
# Create settings dicts
spotify_settings, downloader_settings, web_settings = create_settings(arguments)
init_logging(downloader_settings["log_level"])
# If the application is frozen, we check for ffmpeg
# if it's not present download it create config file
if is_executable():
if is_ffmpeg_installed() is False:
download_ffmpeg()
# Check if ffmpeg is installed
if is_ffmpeg_installed(downloader_settings["ffmpeg"]) is False:
raise FFmpegError(
"FFmpeg is not installed. Please run `spotdl --download-ffmpeg` to install it, "
"or `spotdl --ffmpeg /path/to/ffmpeg` to specify the path to ffmpeg."
)
# Initialize spotify client
SpotifyClient.init(**spotify_settings)
spotify_client = SpotifyClient()
# If the application is frozen start web ui
# or if the operation is `web`
if is_executable() or arguments.operation == "web":
# Start web ui
web(web_settings, downloader_settings)
return None
# Check if save file is present and if it's valid
if isinstance(downloader_settings["save_file"], str) and not downloader_settings[
"save_file"
].endswith(".spotdl"):
raise DownloaderError("Save file has to end with .spotdl")
# Check if the user is logged in
if (
arguments.query
and "saved" in arguments.query
and not spotify_settings["user_auth"]
):
raise SpotifyError(
"You must be logged in to use the saved query. "
"Log in by adding the --user-auth flag"
)
# Initialize the downloader
# for download, load and preload operations
downloader = Downloader(downloader_settings)
def graceful_exit(_signal, _frame):
if spotify_settings["use_cache_file"]:
save_spotify_cache(spotify_client.cache)
downloader.progress_handler.close()
sys.exit(0)
signal.signal(signal.SIGINT, graceful_exit)
signal.signal(signal.SIGTERM, graceful_exit)
try:
# Pick the operation to perform
# based on the name and run it!
OPERATIONS[arguments.operation](
query=arguments.query,
downloader=downloader,
)
except Exception:
downloader.progress_handler.close()
logger.exception("An error occurred")
sys.exit(1)
if spotify_settings["use_cache_file"]:
save_spotify_cache(spotify_client.cache)
downloader.progress_handler.close()
return None
|