Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F951982
ReleephProjectQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
ReleephProjectQuery.php
View Options
<?php
final
class
ReleephProjectQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$active
;
private
$ids
;
private
$phids
;
private
$needRepositories
;
private
$order
=
'order-id'
;
const
ORDER_ID
=
'order-id'
;
const
ORDER_NAME
=
'order-name'
;
public
function
withActive
(
$active
)
{
$this
->
active
=
$active
;
return
$this
;
}
public
function
setOrder
(
$order
)
{
$this
->
order
=
$order
;
return
$this
;
}
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
loadPage
()
{
$table
=
new
ReleephProject
();
$conn_r
=
$table
->
establishConnection
(
'r'
);
$rows
=
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
(
$rows
);
}
public
function
willFilterPage
(
array
$projects
)
{
assert_instances_of
(
$projects
,
'ReleephProject'
);
$repository_phids
=
mpull
(
$projects
,
'getRepositoryPHID'
);
$repositories
=
id
(
new
PhabricatorRepositoryQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withPHIDs
(
$repository_phids
)
->
execute
();
$repositories
=
mpull
(
$repositories
,
null
,
'getPHID'
);
foreach
(
$projects
as
$key
=>
$project
)
{
$repo
=
idx
(
$repositories
,
$project
->
getRepositoryPHID
());
if
(!
$repo
)
{
unset
(
$projects
[
$key
]);
continue
;
}
$project
->
attachRepository
(
$repo
);
}
return
$projects
;
}
private
function
buildWhereClause
(
AphrontDatabaseConnection
$conn_r
)
{
$where
=
array
();
if
(
$this
->
active
!==
null
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'isActive = %d'
,
(
int
)
$this
->
active
);
}
if
(
$this
->
ids
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'id IN (%Ls)'
,
$this
->
ids
);
}
if
(
$this
->
phids
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'phid IN (%Ls)'
,
$this
->
phids
);
}
$where
[]
=
$this
->
buildPagingClause
(
$conn_r
);
return
$this
->
formatWhereClause
(
$where
);
}
protected
function
getReversePaging
()
{
switch
(
$this
->
order
)
{
case
self
::
ORDER_NAME
:
return
true
;
}
return
parent
::
getReversePaging
();
}
protected
function
getPagingValue
(
$result
)
{
switch
(
$this
->
order
)
{
case
self
::
ORDER_NAME
:
return
$result
->
getName
();
}
return
parent
::
getPagingValue
();
}
protected
function
getPagingColumn
()
{
switch
(
$this
->
order
)
{
case
self
::
ORDER_NAME
:
return
'name'
;
case
self
::
ORDER_ID
:
return
parent
::
getPagingColumn
();
default
:
throw
new
Exception
(
"Uknown order '{$this->order}'!"
);
}
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorApplicationReleeph'
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jun 17, 3:25 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
226172
Default Alt Text
ReleephProjectQuery.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment