* Fix format code.

This commit is contained in:
lichengjun
2021-07-01 16:18:22 +08:00
parent c83c6a973c
commit 2341965ff4
3 changed files with 6 additions and 7 deletions
+4 -5
View File
@@ -209,7 +209,7 @@ class gitlabModel extends model
*/
public function getRelationByObject($objectType, $objectID)
{
return $this->dao->select('id,extra as gitlabID, BVersion as projectID, BID as issueID')->from(TABLE_RELATION)
return $this->dao->select('*, id, extra as gitlabID, BVersion as projectID, BID as issueID')->from(TABLE_RELATION)
->where('relation')->eq('gitlab')
->andWhere('Atype')->eq($objectType)
->andWhere('AID')->eq($objectID)
@@ -506,8 +506,7 @@ class gitlabModel extends model
*/
public function apiGetSingleIssue($gitlabID, $projectID, $issueID)
{
$apiRoot = $this->getApiRoot($gitlabID);
$url = sprintf($apiRoot, "/issues/{$issueID}");
$url = sprintf($this->getApiRoot($gitlabID), "/issues/{$issueID}");
return json_decode(commonModel::http($url));
}
@@ -838,7 +837,7 @@ class gitlabModel extends model
if(empty($object)) return false;
if(!$gitlabID or !$projectID)
{
$result = $this->getGitlabIDprojectID($objectType, $objectID);
$result = $this->getRelationByObject($objectType, $objectID);
$gitlabID = $result->gitlabID;
$projectID = $result->projectID;
}
@@ -871,7 +870,7 @@ class gitlabModel extends model
public function deleteIssue($gitlabID, $projectID, $objectType, $objectID, $issueID)
{
$object = $this->loadModel($objectType)->getByID($objectID);
$relationID = $this->getRelationID($objectType, $objectID);
$relationID = $this->getRelationByObject($objectType, $objectID);
if(!empty($relationID)) $this->dao->delete()->from(TABLE_RELATION)->where('id')->eq($relationID)->exec();
$this->apiDeleteIssue($gitlabID, $projectID, $issueID);
}