new remote API
This commit is contained in:
parent
749021a175
commit
e899bf8c82
|
@ -186,11 +186,14 @@ class quota extends baseModule {
|
||||||
$temp = explode(":", $lamdaemonServers[$s]);
|
$temp = explode(":", $lamdaemonServers[$s]);
|
||||||
$server = $temp[0];
|
$server = $temp[0];
|
||||||
// get quotas
|
// get quotas
|
||||||
$quotas = lamdaemon(implode(quota::$SPLIT_DELIMITER, array($userName, "quota", "get", $this->get_scope())), $server);
|
$remote = new \LAM\REMOTE\Remote();
|
||||||
|
$remote->connect($server);
|
||||||
|
$quotas = $remote->execute(implode(quota::$SPLIT_DELIMITER, array($userName, "quota", "get", $this->get_scope())));
|
||||||
|
$remote->disconnect();
|
||||||
if (sizeof($quotas) == 0) {
|
if (sizeof($quotas) == 0) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$allQuotas = explode(":", $quotas[0]);
|
$allQuotas = explode(":", $quotas);
|
||||||
array_pop($allQuotas); // remove empty element at the end
|
array_pop($allQuotas); // remove empty element at the end
|
||||||
for ($i = 0; $i < sizeof($allQuotas); $i++) {
|
for ($i = 0; $i < sizeof($allQuotas); $i++) {
|
||||||
if (strpos($allQuotas[$i], quota::$QUOTA_PREFIX) !== 0) continue;
|
if (strpos($allQuotas[$i], quota::$QUOTA_PREFIX) !== 0) continue;
|
||||||
|
@ -280,7 +283,10 @@ class quota extends baseModule {
|
||||||
$quotastring = $quotastring . $this->quota[$server][$i][0] . ',' . $this->quota[$server][$i][2] . ',' . $this->quota[$server][$i][3]
|
$quotastring = $quotastring . $this->quota[$server][$i][0] . ',' . $this->quota[$server][$i][2] . ',' . $this->quota[$server][$i][3]
|
||||||
. ',' . $this->quota[$server][$i][6] . ',' . $this->quota[$server][$i][7] . ':';
|
. ',' . $this->quota[$server][$i][6] . ',' . $this->quota[$server][$i][7] . ':';
|
||||||
}
|
}
|
||||||
lamdaemon(implode(quota::$SPLIT_DELIMITER, array($id, "quota", "set", $this->get_scope(), "$quotastring\n")), $server);
|
$remote = new \LAM\REMOTE\Remote();
|
||||||
|
$remote->connect($server);
|
||||||
|
$remote->execute(implode(quota::$SPLIT_DELIMITER, array($id, "quota", "set", $this->get_scope(), "$quotastring\n")));
|
||||||
|
$remote->disconnect();
|
||||||
}
|
}
|
||||||
return $messages;
|
return $messages;
|
||||||
}
|
}
|
||||||
|
@ -319,7 +325,10 @@ class quota extends baseModule {
|
||||||
$quotastring = $quotastring . $this->quota[$server][$i][0] . ',0,0,0,0:';
|
$quotastring = $quotastring . $this->quota[$server][$i][0] . ',0,0,0,0:';
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
lamdaemon(implode(quota::$SPLIT_DELIMITER, array($id, "quota", "set", $this->get_scope(), "$quotastring\n")), $server);
|
$remote = new \LAM\REMOTE\Remote();
|
||||||
|
$remote->connect($server);
|
||||||
|
$remote->execute(implode(quota::$SPLIT_DELIMITER, array($id, "quota", "set", $this->get_scope(), "$quotastring\n")));
|
||||||
|
$remote->disconnect();
|
||||||
}
|
}
|
||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
|
@ -483,11 +492,14 @@ class quota extends baseModule {
|
||||||
$description = $temp[1] . ' (' . $temp[0] . ')';
|
$description = $temp[1] . ' (' . $temp[0] . ')';
|
||||||
}
|
}
|
||||||
// Get quotas
|
// Get quotas
|
||||||
$quotas = lamdaemon(implode(quota::$SPLIT_DELIMITER, array("+", "quota", "get", $this->get_scope())), $server);
|
$remote = new \LAM\REMOTE\Remote();
|
||||||
if (sizeof($quotas) == 0) {
|
$remote->connect($server);
|
||||||
|
$quotas = $remote->execute(implode(quota::$SPLIT_DELIMITER, array("+", "quota", "get", $this->get_scope())));
|
||||||
|
$remote->disconnect();
|
||||||
|
if (empty($quotas)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$dirs = explode(":", $quotas[0]);
|
$dirs = explode(":", $quotas);
|
||||||
array_pop($dirs); // remove empty element at the end
|
array_pop($dirs); // remove empty element at the end
|
||||||
for ($i = 0; $i < sizeof($dirs); $i++) {
|
for ($i = 0; $i < sizeof($dirs); $i++) {
|
||||||
if (strpos($dirs[$i], quota::$QUOTA_PREFIX) !== 0) {
|
if (strpos($dirs[$i], quota::$QUOTA_PREFIX) !== 0) {
|
||||||
|
@ -556,8 +568,11 @@ class quota extends baseModule {
|
||||||
$server = $temp[0];
|
$server = $temp[0];
|
||||||
$id = $this->replaceSpecialChars($server);
|
$id = $this->replaceSpecialChars($server);
|
||||||
// Get quotas
|
// Get quotas
|
||||||
$quotas = lamdaemon(implode(quota::$SPLIT_DELIMITER, array("+", "quota", "get", $this->get_scope())), $server);
|
$remote = new \LAM\REMOTE\Remote();
|
||||||
$dirs = explode(":", $quotas[0]);
|
$remote->connect($server);
|
||||||
|
$quotas = $remote->execute(implode(quota::$SPLIT_DELIMITER, array("+", "quota", "get", $this->get_scope())));
|
||||||
|
$remote->disconnect();
|
||||||
|
$dirs = explode(":", $quotas);
|
||||||
array_pop($dirs); // remove empty element at the end
|
array_pop($dirs); // remove empty element at the end
|
||||||
for ($i = 0; $i < sizeof($dirs); $i++) {
|
for ($i = 0; $i < sizeof($dirs); $i++) {
|
||||||
if (strpos($dirs[$i], quota::$QUOTA_PREFIX) !== 0) {
|
if (strpos($dirs[$i], quota::$QUOTA_PREFIX) !== 0) {
|
||||||
|
@ -669,8 +684,11 @@ class quota extends baseModule {
|
||||||
$temp = explode(":", $lamdaemonServers[$s]);
|
$temp = explode(":", $lamdaemonServers[$s]);
|
||||||
$server = $temp[0];
|
$server = $temp[0];
|
||||||
// Get quotas
|
// Get quotas
|
||||||
$quotas = lamdaemon(implode(quota::$SPLIT_DELIMITER, array("+", "quota", "get", $this->get_scope())), $server);
|
$remote = new \LAM\REMOTE\Remote();
|
||||||
$dirs = explode(":", $quotas[0]);
|
$remote->connect($server);
|
||||||
|
$quotas = $remote->execute(implode(quota::$SPLIT_DELIMITER, array("+", "quota", "get", $this->get_scope())));
|
||||||
|
$remote->disconnect();
|
||||||
|
$dirs = explode(":", $quotas);
|
||||||
array_pop($dirs); // remove empty element at the end
|
array_pop($dirs); // remove empty element at the end
|
||||||
for ($i = 0; $i < sizeof($dirs); $i++) {
|
for ($i = 0; $i < sizeof($dirs); $i++) {
|
||||||
if (strpos($dirs[$i], quota::$QUOTA_PREFIX) !== 0) {
|
if (strpos($dirs[$i], quota::$QUOTA_PREFIX) !== 0) {
|
||||||
|
@ -786,16 +804,17 @@ class quota extends baseModule {
|
||||||
$dir = $mpParts[1];
|
$dir = $mpParts[1];
|
||||||
$quotaString = implode(quota::$SPLIT_DELIMITER, array($name, "quota", "set", $this->get_scope(), $dir . ',' .
|
$quotaString = implode(quota::$SPLIT_DELIMITER, array($name, "quota", "set", $this->get_scope(), $dir . ',' .
|
||||||
implode(',', $temp['accounts'][$name][$mountPoints[$m]]) . "\n"));
|
implode(',', $temp['accounts'][$name][$mountPoints[$m]]) . "\n"));
|
||||||
$result = lamdaemon($quotaString, $server);
|
$remote = new \LAM\REMOTE\Remote();
|
||||||
if (is_array($result)) {
|
$remote->connect($server);
|
||||||
for ($i = 0; $i < sizeof($result); $i++) {
|
$result = $remote->execute($quotaString);
|
||||||
|
$remote->disconnect();
|
||||||
|
if (!empty($result)) {
|
||||||
$parts = explode(",", $result);
|
$parts = explode(",", $result);
|
||||||
if ($parts[0] == 'ERROR') {
|
if ($parts[0] == 'ERROR') {
|
||||||
$errors[] = array('ERROR', $parts[1], $parts[2]);
|
$errors[] = array('ERROR', $parts[1], $parts[2]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
// set counters to next account/mount point
|
// set counters to next account/mount point
|
||||||
$temp['counter']++;
|
$temp['counter']++;
|
||||||
return array(
|
return array(
|
||||||
|
|
|
@ -95,7 +95,7 @@ class Ajax {
|
||||||
elseif ($function == 'upload') {
|
elseif ($function == 'upload') {
|
||||||
include_once('../../lib/upload.inc');
|
include_once('../../lib/upload.inc');
|
||||||
$typeManager = new \LAM\TYPES\TypeManager();
|
$typeManager = new \LAM\TYPES\TypeManager();
|
||||||
$uploader = new LAM\UPLOAD\Uploader($typeManager->getConfiguredType($_GET['typeId']));
|
$uploader = new \LAM\UPLOAD\Uploader($typeManager->getConfiguredType($_GET['typeId']));
|
||||||
ob_start();
|
ob_start();
|
||||||
$jsonOut = $uploader->doUpload();
|
$jsonOut = $uploader->doUpload();
|
||||||
ob_end_clean();
|
ob_end_clean();
|
||||||
|
|
|
@ -130,7 +130,7 @@ include '../main_footer.php';
|
||||||
* @param htmlTable $container container for HTML output
|
* @param htmlTable $container container for HTML output
|
||||||
* @return boolean true, if errors occured
|
* @return boolean true, if errors occured
|
||||||
*/
|
*/
|
||||||
function lamTestLamdaemon($command, $stopTest, $remote, $testText, $container) {
|
function testRemoteCommand($command, $stopTest, $remote, $testText, $container) {
|
||||||
$okImage = "../../graphics/pass.png";
|
$okImage = "../../graphics/pass.png";
|
||||||
$failImage = "../../graphics/fail.png";
|
$failImage = "../../graphics/fail.png";
|
||||||
$spacer = new htmlSpacer('10px', null);
|
$spacer = new htmlSpacer('10px', null);
|
||||||
|
@ -283,18 +283,18 @@ function lamRunTestSuite($serverName, $serverTitle, $testQuota, $container) {
|
||||||
flush();
|
flush();
|
||||||
|
|
||||||
if (!$stopTest) {
|
if (!$stopTest) {
|
||||||
$stopTest = lamTestLamdaemon("+" . $SPLIT_DELIMITER . "test" . $SPLIT_DELIMITER . "basic", $stopTest, $remote, _("Execute lamdaemon"), $container);
|
$stopTest = testRemoteCommand("+" . $SPLIT_DELIMITER . "test" . $SPLIT_DELIMITER . "basic", $stopTest, $remote, _("Execute lamdaemon"), $container);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$stopTest) {
|
if (!$stopTest) {
|
||||||
$stopTest = lamTestLamdaemon("+" . $SPLIT_DELIMITER . "test" . $SPLIT_DELIMITER . "version" . $SPLIT_DELIMITER . $LAMDAEMON_PROTOCOL_VERSION, $stopTest, $remote, _("Lamdaemon version"), $container);
|
$stopTest = testRemoteCommand("+" . $SPLIT_DELIMITER . "test" . $SPLIT_DELIMITER . "version" . $SPLIT_DELIMITER . $LAMDAEMON_PROTOCOL_VERSION, $stopTest, $remote, _("Lamdaemon version"), $container);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$stopTest) {
|
if (!$stopTest) {
|
||||||
$stopTest = lamTestLamdaemon("+" . $SPLIT_DELIMITER . "test" . $SPLIT_DELIMITER . "nss" . $SPLIT_DELIMITER . "$userName", $stopTest, $remote, _("Lamdaemon: check NSS LDAP"), $container);
|
$stopTest = testRemoteCommand("+" . $SPLIT_DELIMITER . "test" . $SPLIT_DELIMITER . "nss" . $SPLIT_DELIMITER . "$userName", $stopTest, $remote, _("Lamdaemon: check NSS LDAP"), $container);
|
||||||
if (!$stopTest && $testQuota) {
|
if (!$stopTest && $testQuota) {
|
||||||
$stopTest = lamTestLamdaemon("+" . $SPLIT_DELIMITER . "test" . $SPLIT_DELIMITER . "quota", $stopTest, $remote, _("Lamdaemon: Quota module installed"), $container);
|
$stopTest = testRemoteCommand("+" . $SPLIT_DELIMITER . "test" . $SPLIT_DELIMITER . "quota", $stopTest, $remote, _("Lamdaemon: Quota module installed"), $container);
|
||||||
$stopTest = lamTestLamdaemon("+" . $SPLIT_DELIMITER . "quota" . $SPLIT_DELIMITER . "get" . $SPLIT_DELIMITER . "user", $stopTest, $remote, _("Lamdaemon: read quotas"), $container);
|
$stopTest = testRemoteCommand("+" . $SPLIT_DELIMITER . "quota" . $SPLIT_DELIMITER . "get" . $SPLIT_DELIMITER . "user", $stopTest, $remote, _("Lamdaemon: read quotas"), $container);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$remote->disconnect();
|
$remote->disconnect();
|
||||||
|
|
Loading…
Reference in New Issue