aboutsummaryrefslogtreecommitdiffstats
path: root/util/service_class
diff options
context:
space:
mode:
authorHabeas Codice <habeascodice@federated.social>2015-05-25 22:40:04 -0700
committerHabeas Codice <habeascodice@federated.social>2015-05-25 22:40:04 -0700
commitf7731d7e8f08c30f85d1a8c22730638e7ef00445 (patch)
tree047f0bb9ed30b0e8b9a34a5adaf8c7d0aa417f2c /util/service_class
parent9a0264f5d23f08d8dc9b4484c93f630dd91738b8 (diff)
downloadvolse-hubzilla-f7731d7e8f08c30f85d1a8c22730638e7ef00445.tar.gz
volse-hubzilla-f7731d7e8f08c30f85d1a8c22730638e7ef00445.tar.bz2
volse-hubzilla-f7731d7e8f08c30f85d1a8c22730638e7ef00445.zip
Add docs about current service class system, tiny util to make updates a
little easier than the standard config util
Diffstat (limited to 'util/service_class')
-rwxr-xr-xutil/service_class34
1 files changed, 34 insertions, 0 deletions
diff --git a/util/service_class b/util/service_class
new file mode 100755
index 000000000..e762d8ad6
--- /dev/null
+++ b/util/service_class
@@ -0,0 +1,34 @@
+#!/usr/bin/env php
+<?php
+
+// Temporary service class utility - see baseurl/help/service_classes
+
+require_once('include/cli_startup.php');
+
+cli_startup();
+
+if($argc > 3) {
+ $d = get_config('service_class', $argv[1]);
+ $d[$argv[2]] = $argv[3];
+ set_config('service_class', $argv[1], $d);
+ echo 'Updated service class "' . $argv[1] . '" service "' . $argv[2] . '" to ' . $argv[3] . "\n";
+}
+
+if($argc == 2) {
+ $d = get_config('service_class', $argv[1]);
+ echo $argv[1] . ":\n";
+ foreach($d as $k => $v) {
+ echo "$k = $v\n";
+ }
+}
+
+if($argc == 1) {
+ load_config('service_class');
+ foreach($a->config['service_class'] as $class=>$props) {
+ echo "$class:\n";
+ $d = unserialize($props);
+ foreach($d as $k => $v) {
+ echo "\t$k = $v\n";
+ }
+ }
+} \ No newline at end of file