diff options
author | zotlabs <mike@macgirvin.com> | 2017-12-10 16:41:03 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-12-10 16:41:03 -0800 |
commit | d4bb6c17d1a8d9d9179136790142a53f1898f12c (patch) | |
tree | 74dee928de417b26a18935858f4b137005293644 | |
parent | fca1a7506e2f60164ac885f60a6ce1ef03cfa865 (diff) | |
download | volse-hubzilla-d4bb6c17d1a8d9d9179136790142a53f1898f12c.tar.gz volse-hubzilla-d4bb6c17d1a8d9d9179136790142a53f1898f12c.tar.bz2 volse-hubzilla-d4bb6c17d1a8d9d9179136790142a53f1898f12c.zip |
auto promote beginner (techlevel 0) accounts to level 1 after they show signs of active participation.
-rw-r--r-- | Zotlabs/Module/Item.php | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index 2528645f3..37a3a3a85 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -1139,7 +1139,29 @@ class Item extends \Zotlabs\Web\Controller { $ret['message'] = t('Unable to obtain post information from database.'); return $ret; } - + + // auto-upgrade beginner (techlevel 0) accounts - if they have at least two friends and ten posts + // and have uploaded something (like a profile photo), promote them to level 1. + + $a = q("select account_id, account_level from account where account_id = (select channel_account_id from channel where channel_id = %d limit 1)", + intval($channel_id) + ); + if((! intval($a[0]['account_level'])) && intval($r[0]['total']) > 10) { + $x = q("select count(abook_id) as total from abook where abook_channel = %d", + intval($channel_id) + ); + if($x && intval($x[0]['total']) > 2) { + $y = q("select count(id) as total from attach where uid = %d", + intval($channel_id) + ); + if($y && intval($y[0]['total']) > 1) { + q("update account set account_level = 1 where account_id = %d limit 1", + intval($a[0]['account_id']) + ); + } + } + } + if (!$iswebpage) { $max = engr_units_to_bytes(service_class_fetch($channel_id,'total_items')); if(! service_class_allows($channel_id,'total_items',$r[0]['total'])) { |