diff options
author | Habeas Codice <habeascodice@federated.social> | 2015-05-26 00:21:08 -0700 |
---|---|---|
committer | Habeas Codice <habeascodice@federated.social> | 2015-05-26 00:21:08 -0700 |
commit | bd25f8577f812f02a054d7b9b2e3c7b28e6852b6 (patch) | |
tree | 40aafc52e18ce2cd3d968c49b432a92d168d2736 /util | |
parent | 06eae98e53e7ac781a64eff4a85e793969124ad7 (diff) | |
download | volse-hubzilla-bd25f8577f812f02a054d7b9b2e3c7b28e6852b6.tar.gz volse-hubzilla-bd25f8577f812f02a054d7b9b2e3c7b28e6852b6.tar.bz2 volse-hubzilla-bd25f8577f812f02a054d7b9b2e3c7b28e6852b6.zip |
add ability to change existing channel/account service class with
util/service_class
add link from main doc
Diffstat (limited to 'util')
-rwxr-xr-x | util/service_class | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/util/service_class b/util/service_class index e762d8ad6..a1a172518 100755 --- a/util/service_class +++ b/util/service_class @@ -14,6 +14,72 @@ if($argc > 3) { echo 'Updated service class "' . $argv[1] . '" service "' . $argv[2] . '" to ' . $argv[3] . "\n"; } +if($argc == 3) { + if(substr($argv[1], 0, 10) == '--account=') { + $acct = substr($argv[1], 10); + } else if(substr($argv[1], 0, 10) == '--channel=') { + $chan = substr($argv[1], 10); + $r = q("SELECT channel_account_id FROM channel WHERE channel_address='%s'", + dbesc($chan) + ); + if(!$r) + die('could not find channel'); + + $acct = intval($r[0]['channel_account_id']); + } else { + exit(); + } + $r = q('SELECT account_service_class FROM account WHERE account_id=%d', + intval($acct) + ); + if(!$r) + die('could not find account'); + + $c = q('SELECT channel_address FROM channel WHERE channel_account_id=%d', + intval($acct) + ); + + echo "Account $acct: "; + + foreach($c as $chan) + echo $chan['channel_address'] . ', '; + + echo "\n\033[1mProperty Old\t\tNew\033[0m\n"; + + if(empty($r[0]['account_service_class'])) { + $oclass = 'None'; + $old = false; + } else { + $oclass = $r[0]['account_service_class']; + $old = get_config('service_class', $oclass); + } + echo "service_class $oclass\t\t\033[1m" . $argv[2] . "\033[0m\n"; + + $new = get_config('service_class', $argv[2]); + foreach(array('photo_upload_limit','total_items','total_pages','total_identities','total_channels','total_feeds','attach_upload_limit','minimum_feedcheck_minutes','chatrooms','chatters_inroom') as $prop) { + echo $prop . str_repeat(' ',26 - strlen($prop)) . (($old && $old[$prop]) ? $old[$prop] : 'unlimited') . "\t\t\033[1m" . (($new && $new[$prop]) ? $new[$prop] : 'unlimited') . "\033[0m\n"; + } + $r = ''; + $k = fopen('php://stdin', 'r'); + while($r != 'y' && $r != 'n') { + echo "Are you sure? (y/n)"; + $r = substr(fgets($k), 0, 1); + } + if($r == 'n') + die('no update done'); + + $r = q("UPDATE account SET account_service_class='%s' WHERE account_id=%d", + dbesc($argv[2]), + intval($acct) + ); + if($r) { + echo "updated successfully\n"; + } else { + echo "failed\n"; + } +} + + if($argc == 2) { $d = get_config('service_class', $argv[1]); echo $argv[1] . ":\n"; |