summaryrefslogtreecommitdiffstats
path: root/src/modules/player
diff options
context:
space:
mode:
authorsumuel <samuel@yakubos.org>2026-08-17 20:44:55 +0000
committersumuel <samuel@yakubos.org>2026-08-17 20:44:55 +0000
commit76424950e373d3b04ac3dd13019151bfba3e8423 (patch)
tree4c3cfdbda039e592b9186be3e28f8d7cfd439e8a /src/modules/player
Add the files
Diffstat (limited to 'src/modules/player')
-rw-r--r--src/modules/player/option.h9
-rw-r--r--src/modules/player/player.c126
-rw-r--r--src/modules/player/player.h12
3 files changed, 147 insertions, 0 deletions
diff --git a/src/modules/player/option.h b/src/modules/player/option.h
new file mode 100644
index 0000000..17aa9ba
--- /dev/null
+++ b/src/modules/player/option.h
@@ -0,0 +1,9 @@
+#pragma once
+
+#include "common/option.h"
+
+typedef struct FFPlayerOptions {
+ FFModuleArgs moduleArgs;
+} FFPlayerOptions;
+
+static_assert(sizeof(FFPlayerOptions) <= FF_OPTION_MAX_SIZE, "FFPlayerOptions size exceeds maximum allowed size");
diff --git a/src/modules/player/player.c b/src/modules/player/player.c
new file mode 100644
index 0000000..58d1b3b
--- /dev/null
+++ b/src/modules/player/player.c
@@ -0,0 +1,126 @@
+#include "common/printing.h"
+#include "common/jsonconfig.h"
+#include "common/strutil.h"
+#include "detection/media/media.h"
+#include "modules/player/player.h"
+
+#include <ctype.h>
+
+#define FF_PLAYER_DISPLAY_NAME "Media Player"
+
+bool ffPrintPlayer(FFPlayerOptions* options) {
+ const FFMediaResult* media = ffDetectMedia(false);
+
+ if (media->error.length > 0) {
+ ffPrintError(FF_PLAYER_DISPLAY_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, "%s", media->error.chars);
+ return false;
+ }
+
+ if (media->player.length == 0) {
+ ffPrintError(FF_PLAYER_DISPLAY_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, "No media player detected");
+ return false;
+ }
+
+ FF_STRBUF_AUTO_DESTROY playerPretty = ffStrbufCreate();
+
+ if (media->url.length > 0) {
+ // If we are on a website, prepend the website name
+ if (
+ ffStrbufIgnCaseEqualS(&media->playerId, "spotify") ||
+ ffStrbufIgnCaseEqualS(&media->playerId, "vlc")) {
+ } // do noting, surely not a website, even if the url is set
+ else if (ffStrbufStartsWithS(&media->url, "https://www.")) {
+ ffStrbufAppendS(&playerPretty, media->url.chars + 12);
+ } else if (ffStrbufStartsWithS(&media->url, "http://www.")) {
+ ffStrbufAppendS(&playerPretty, media->url.chars + 11);
+ } else if (ffStrbufStartsWithS(&media->url, "https://")) {
+ ffStrbufAppendS(&playerPretty, media->url.chars + 8);
+ } else if (ffStrbufStartsWithS(&media->url, "http://")) {
+ ffStrbufAppendS(&playerPretty, media->url.chars + 7);
+ }
+ }
+
+ // If we found a website name, make it more pretty
+ if (playerPretty.length > 0) {
+ ffStrbufSubstrBeforeFirstC(&playerPretty, '/'); // Remove the path
+ ffStrbufSubstrBeforeLastC(&playerPretty, '.'); // Remove the TLD
+ }
+
+ // Check again for length, as we may have removed everything.
+ bool playerPrettyIsCustom = playerPretty.length > 0;
+
+ // If we don't have subdomains, it is usually more pretty to capitalize the first letter.
+ if (playerPrettyIsCustom && ffStrbufFirstIndexC(&playerPretty, '.') == playerPretty.length) {
+ playerPretty.chars[0] = (char) toupper(playerPretty.chars[0]);
+ }
+
+ if (playerPrettyIsCustom) {
+ ffStrbufAppendS(&playerPretty, " (");
+ }
+
+ ffStrbufAppend(&playerPretty, &media->player);
+
+ if (playerPrettyIsCustom) {
+ ffStrbufAppendC(&playerPretty, ')');
+ }
+
+ if (options->moduleArgs.outputFormat.length == 0) {
+ ffPrintLogoAndKey(FF_PLAYER_DISPLAY_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT);
+ ffStrbufPutTo(&playerPretty, stdout);
+ } else {
+ FF_PRINT_FORMAT_CHECKED(FF_PLAYER_DISPLAY_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, ((FFformatarg[]) {
+ FF_ARG(playerPretty, "player"),
+ FF_ARG(media->player, "name"),
+ FF_ARG(media->playerId, "id"),
+ FF_ARG(media->url, "url"),
+ }));
+ }
+
+ return true;
+}
+
+void ffParsePlayerJsonObject(FFPlayerOptions* options, yyjson_val* module) {
+ yyjson_val *key, *val;
+ size_t idx, max;
+ yyjson_obj_foreach (module, idx, max, key, val) {
+ if (ffJsonConfigParseModuleArgs(key, val, &options->moduleArgs)) {
+ continue;
+ }
+
+ ffPrintError(FF_PLAYER_MODULE_NAME, 0, &options->moduleArgs, FF_PRINT_TYPE_DEFAULT, "Unknown JSON key %s", unsafe_yyjson_get_str(key));
+ }
+}
+
+void ffGeneratePlayerJsonConfig(FFPlayerOptions* options, yyjson_mut_doc* doc, yyjson_mut_val* module) {
+ ffJsonConfigGenerateModuleArgsConfig(doc, module, &options->moduleArgs);
+}
+
+bool ffGeneratePlayerJsonResult(FF_A_UNUSED FFMediaOptions* options, yyjson_mut_doc* doc, yyjson_mut_val* module) {
+ yyjson_mut_obj_add_str(doc, module, "error", "Player module is an alias of Media module");
+ return false;
+}
+
+void ffInitPlayerOptions(FFPlayerOptions* options) {
+ ffOptionInitModuleArg(&options->moduleArgs, "󰥠");
+}
+
+void ffDestroyPlayerOptions(FFPlayerOptions* options) {
+ ffOptionDestroyModuleArg(&options->moduleArgs);
+}
+
+FFModuleBaseInfo ffPlayerModuleInfo = {
+ .name = FF_PLAYER_MODULE_NAME,
+ .description = "Print the music player name that is currently active",
+ .initOptions = (void*) ffInitPlayerOptions,
+ .destroyOptions = (void*) ffDestroyPlayerOptions,
+ .parseJsonObject = (void*) ffParsePlayerJsonObject,
+ .printModule = (void*) ffPrintPlayer,
+ .generateJsonResult = (void*) ffGeneratePlayerJsonResult,
+ .generateJsonConfig = (void*) ffGeneratePlayerJsonConfig,
+ .formatArgs = FF_FORMAT_ARG_LIST(((FFModuleFormatArg[]) {
+ { "Pretty player name", "player" },
+ { "Player name", "name" },
+ { "Player Identifier", "id" },
+ { "URL name", "url" },
+ }))
+};
diff --git a/src/modules/player/player.h b/src/modules/player/player.h
new file mode 100644
index 0000000..8b18d29
--- /dev/null
+++ b/src/modules/player/player.h
@@ -0,0 +1,12 @@
+
+#pragma once
+
+#include "option.h"
+
+#define FF_PLAYER_MODULE_NAME "Player"
+
+bool ffPrintPlayer(FFPlayerOptions* options);
+void ffInitPlayerOptions(FFPlayerOptions* options);
+void ffDestroyPlayerOptions(FFPlayerOptions* options);
+
+extern FFModuleBaseInfo ffPlayerModuleInfo;