mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 20:52:43 +01:00
167 lines
4 KiB
PHP
167 lines
4 KiB
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorExternalAccountQuery
|
||
|
extends PhabricatorCursorPagedPolicyAwareQuery {
|
||
|
|
||
|
private $ids;
|
||
|
private $phids;
|
||
|
private $accountTypes;
|
||
|
private $accountDomains;
|
||
|
private $accountIDs;
|
||
|
private $userPHIDs;
|
||
|
private $needImages;
|
||
|
private $accountSecrets;
|
||
|
|
||
|
public function withUserPHIDs(array $user_phids) {
|
||
|
$this->userPHIDs = $user_phids;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function withAccountIDs(array $account_ids) {
|
||
|
$this->accountIDs = $account_ids;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function withAccountDomains(array $account_domains) {
|
||
|
$this->accountDomains = $account_domains;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function withAccountTypes(array $account_types) {
|
||
|
$this->accountTypes = $account_types;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function withPHIDs(array $phids) {
|
||
|
$this->phids = $phids;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function withIDs($ids) {
|
||
|
$this->ids = $ids;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function withAccountSecrets(array $secrets) {
|
||
|
$this->accountSecrets = $secrets;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function needImages($need) {
|
||
|
$this->needImages = $need;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function loadPage() {
|
||
|
$table = new PhabricatorExternalAccount();
|
||
|
$conn_r = $table->establishConnection('r');
|
||
|
|
||
|
$data = queryfx_all(
|
||
|
$conn_r,
|
||
|
'SELECT * FROM %T %Q %Q %Q',
|
||
|
$table->getTableName(),
|
||
|
$this->buildWhereClause($conn_r),
|
||
|
$this->buildOrderClause($conn_r),
|
||
|
$this->buildLimitClause($conn_r));
|
||
|
|
||
|
return $table->loadAllFromArray($data);
|
||
|
}
|
||
|
|
||
|
public function willFilterPage(array $accounts) {
|
||
|
if ($this->needImages) {
|
||
|
$file_phids = mpull($accounts, 'getProfileImagePHID');
|
||
|
$file_phids = array_filter($file_phids);
|
||
|
|
||
|
if ($file_phids) {
|
||
|
// NOTE: We use the omnipotent viewer here because these files are
|
||
|
// usually created during registration and can't be associated with
|
||
|
// the correct policies, since the relevant user account does not exist
|
||
|
// yet. In effect, if you can see an ExternalAccount, you can see its
|
||
|
// profile image.
|
||
|
$files = id(new PhabricatorFileQuery())
|
||
|
->setViewer(PhabricatorUser::getOmnipotentUser())
|
||
|
->withPHIDs($file_phids)
|
||
|
->execute();
|
||
|
$files = mpull($files, null, 'getPHID');
|
||
|
} else {
|
||
|
$files = array();
|
||
|
}
|
||
|
|
||
|
$default_file = null;
|
||
|
foreach ($accounts as $account) {
|
||
|
$image_phid = $account->getProfileImagePHID();
|
||
|
if ($image_phid && isset($files[$image_phid])) {
|
||
|
$account->attachProfileImageFile($files[$image_phid]);
|
||
|
} else {
|
||
|
if ($default_file === null) {
|
||
|
$default_file = PhabricatorFile::loadBuiltin(
|
||
|
$this->getViewer(),
|
||
|
'profile.png');
|
||
|
}
|
||
|
$account->attachProfileImageFile($default_file);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return $accounts;
|
||
|
}
|
||
|
|
||
|
protected function buildWhereClause(AphrontDatabaseConnection $conn_r) {
|
||
|
$where = array();
|
||
|
|
||
|
$where[] = $this->buildPagingClause($conn_r);
|
||
|
|
||
|
if ($this->ids) {
|
||
|
$where[] = qsprintf(
|
||
|
$conn_r,
|
||
|
'id IN (%Ld)',
|
||
|
$this->ids);
|
||
|
}
|
||
|
|
||
|
if ($this->phids) {
|
||
|
$where[] = qsprintf(
|
||
|
$conn_r,
|
||
|
'phid IN (%Ls)',
|
||
|
$this->phids);
|
||
|
}
|
||
|
|
||
|
if ($this->accountTypes) {
|
||
|
$where[] = qsprintf(
|
||
|
$conn_r,
|
||
|
'accountType IN (%Ls)',
|
||
|
$this->accountTypes);
|
||
|
}
|
||
|
|
||
|
if ($this->accountDomains) {
|
||
|
$where[] = qsprintf(
|
||
|
$conn_r,
|
||
|
'accountDomain IN (%Ls)',
|
||
|
$this->accountDomains);
|
||
|
}
|
||
|
|
||
|
if ($this->accountIDs) {
|
||
|
$where[] = qsprintf(
|
||
|
$conn_r,
|
||
|
'accountID IN (%Ls)',
|
||
|
$this->accountIDs);
|
||
|
}
|
||
|
|
||
|
if ($this->userPHIDs) {
|
||
|
$where[] = qsprintf(
|
||
|
$conn_r,
|
||
|
'userPHID IN (%Ls)',
|
||
|
$this->userPHIDs);
|
||
|
}
|
||
|
|
||
|
if ($this->accountSecrets) {
|
||
|
$where[] = qsprintf(
|
||
|
$conn_r,
|
||
|
'accountSecret IN (%Ls)',
|
||
|
$this->accountSecrets);
|
||
|
}
|
||
|
|
||
|
return $this->formatWhereClause($where);
|
||
|
}
|
||
|
|
||
|
}
|