This repository has been archived on 2025-05-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
qemudb/include/maintainer.php

74 lines
1.8 KiB
PHP

<?php
/*****************************/
/* functions for maintainers */
/*****************************/
/**
* get the applications and versions that this userId maintains
*/
function getAppsFromUserId($userId)
{
/* retrieve the list of application and order them by application name */
$result = query_appdb("SELECT appMaintainers.appId, versionId, superMaintainer, appName FROM ".
"appFamily, appMaintainers WHERE appFamily.appId = appMaintainers.appId ".
"AND userId = '$userId' ORDER BY appName");
if(!$result || mysql_num_rows($result) == 0)
return;
$retval = array();
$c = 0;
while($row = mysql_fetch_object($result))
{
$retval[$c] = array($row->appId, $row->versionId, $row->superMaintainer);
$c++;
}
return $retval;
}
/*
* get the userIds of maintainers for a versionId
*/
function getMaintainersUserIdsFromAppIdVersionId($versionId)
{
$retval = array();
/* early out if the versionId isn't valid */
if($versionId == 0)
return $retval;
$query = "SELECT userId FROM ".
"appMaintainers WHERE versionId = '$versionId';";
$result = query_appdb($query);
$c = 0;
while($row = mysql_fetch_object($result))
{
$retval[$c] = $row->userId;
$c++;
}
return $retval;
}
/*
* get the userIds of super maintainers for this appId
*/
function getSuperMaintainersUserIdsFromAppId($appId)
{
$query = "SELECT userId FROM ".
"appMaintainers WHERE appId = '$appId' " .
"AND superMaintainer = '1';";
$result = query_appdb($query);
$retval = array();
$c = 0;
while($row = mysql_fetch_object($result))
{
$retval[$c] = $row->userId;
$c++;
}
return $retval;
}
?>