Hanno Böck This code is published under a 0BSD license. Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code. */ require_once("inc/debug.php"); function customer_may_have_useraccounts() { $customerno = (int) $_SESSION['customerinfo']['customerno']; $result = db_query("SELECT COUNT(*) FROM system.useraccounts WHERE kunde=?", [$customerno]); return ($result->rowCount() > 0); } function customer_useraccount($uid) { $args = [":uid" => $uid, ":customerno" => $_SESSION['customerinfo']['customerno']]; $result = db_query("SELECT 1 FROM system.useraccounts WHERE kunde=:customerno AND uid=:uid AND kundenaccount=1", $args); return $result->rowCount() > 0; } function primary_useraccount() { if (!($_SESSION['role'] & ROLE_SYSTEMUSER)) { return null; } $customerno = (int) $_SESSION['customerinfo']['customerno']; $result = db_query("SELECT MIN(uid) AS uid FROM system.useraccounts WHERE kunde=?", [$customerno]); $uid = $result->fetch(PDO::FETCH_OBJ)->uid; DEBUG("primary useraccount: {$uid}"); return $uid; } function available_shells() { $result = db_query("SELECT path, name FROM system.shells WHERE usable=?", [1]); $ret = []; while ($s = $result->fetch()) { $ret[$s['path']] = $s['name']; } DEBUG($ret); return $ret; } function list_useraccounts() { $customerno = (int) $_SESSION['customerinfo']['customerno']; $result = db_query("SELECT uid,username,name,erstellungsdatum,quota,shell FROM system.useraccounts WHERE kunde=?", [$customerno]); $ret = []; while ($item = $result->fetch()) { array_push($ret, $item); } #DEBUG($ret); return $ret; } function get_account_details($uid, $customerno = 0) { $uid = (int) $uid; $customerno = (int) $customerno; if ($customerno == 0) { $customerno = $_SESSION['customerinfo']['customerno']; } $args = [":uid" => $uid, ":customerno" => $customerno]; $result = db_query("SELECT uid,username,name,shell,server,quota,erstellungsdatum,passwordlogin FROM system.useraccounts WHERE kunde=:customerno AND uid=:uid", $args); if ($result->rowCount() == 0) { system_failure("Cannot find the requested useraccount (for this customer)."); } return $result->fetch(); } function get_used_quota($uid) { $uid = (int) $uid; $result = db_query("SELECT s.hostname AS server, systemquota, systemquota_used, mailquota, mailquota_used FROM system.v_quota AS q LEFT JOIN system.servers AS s ON (s.id=q.server) WHERE uid=?", [$uid]); $ret = []; while ($line = $result->fetch()) { $ret[] = $line; } #DEBUG($ret); return $ret; } function set_account_details($account) { $customerno = null; if ($_SESSION['role'] & ROLE_CUSTOMER) { $customerno = (int) $_SESSION['customerinfo']['customerno']; } else { $customerno = (int) $_SESSION['userinfo']['customerno']; } if ($account['name'] == '') { $account['name'] = null; } $args = [":fullname" => filter_input_oneline($account['name']), ":shell" => filter_input_oneline($account['shell']), ":quota" => $account['quota'], ":uid" => $account['uid'], ":customerno" => $customerno, ":passwordlogin" => $account['passwordlogin'], ]; db_query("UPDATE system.useraccounts SET name=:fullname, quota=:quota, shell=:shell, passwordlogin=:passwordlogin WHERE kunde=:customerno AND uid=:uid", $args); logger(LOG_INFO, "modules/systemuser/include/useraccounts", "systemuser", "updated details for uid {$args[":uid"]}"); } function get_customer_quota() { $cid = (int) $_SESSION['customerinfo']['customerno']; $result = db_query("SELECT SUM(u.quota) AS assigned, cq.quota AS max FROM system.customerquota AS cq INNER JOIN system.useraccounts AS u ON (u.kunde=cq.cid) WHERE cq.cid=?", [$cid]); $ret = $result->fetch(); DEBUG($ret); return $ret; }