Youtube: Add support for adaptive video formats (split video/audio)
[videosite.git] / libvideosite.pm
index 3f05160..c39d9e5 100644 (file)
@@ -34,7 +34,7 @@ my $getter;
 my %builtin_config = ();
 my $builtin_config_path;
 my $builtin_config_default;
-my $config_cache = 0;
+my $config_cache = 1;
 my %config_cache = ();
 our $error;
 
@@ -127,8 +127,8 @@ my $videosite_commands = {
         _cmd_nodebug(@_);
     },
 
-    'cache' => sub {
-        _cmd_cache(@_);
+    'service' => sub {
+        _cmd_service(@_);
     },
 };
 
@@ -931,9 +931,24 @@ sub _cmd_nodebug {
 }
 
 #
+# Handle generic service commands
+#
+sub _cmd_service {
+    my $event = shift;
+    my $subcmd = shift || '';
+
+    $subcmd = lc($subcmd);
+
+    if ($subcmd eq 'cache') {
+        _cmd_service_cache($event, @_);
+    }
+}
+
+
+#
 # Display or clear the content of the config cache
 #
-sub _cmd_cache {
+sub _cmd_service_cache {
     my $event = shift;
     my $subcmd = shift;
 
@@ -944,14 +959,14 @@ sub _cmd_cache {
         _io("Content of config cache:");
         foreach (sort(keys(%config_cache))) {
             if (exists($config_cache{$_}->{value})) {
-                _io("%s => %s", $_, $config_cache{$_}->{value});
+                _io(" %s => %s", $_, $config_cache{$_}->{value});
             } else {
-                _io("%s present", $_);
+                _io(" %s present", $_);
             }
         }
     } elsif ($subcmd eq 'clear') {
-        _debug("Clearing config cache");
         %config_cache = ();
+        _io("Cache cleared");
     }
 }