Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92692530
PhortuneAccountQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 22, 20:09
Size
2 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 20:09 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22487521
Attached To
rPH Phabricator
PhortuneAccountQuery.php
View Options
<?php
final
class
PhortuneAccountQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$phids
;
private
$memberPHIDs
;
public
static
function
loadAccountsForUser
(
PhabricatorUser
$user
,
PhabricatorContentSource
$content_source
)
{
$accounts
=
id
(
new
PhortuneAccountQuery
())
->
setViewer
(
$user
)
->
withMemberPHIDs
(
array
(
$user
->
getPHID
()))
->
execute
();
if
(!
$accounts
)
{
$accounts
=
array
(
PhortuneAccount
::
createNewAccount
(
$user
,
$content_source
),
);
}
$accounts
=
mpull
(
$accounts
,
null
,
'getPHID'
);
return
$accounts
;
}
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
withMemberPHIDs
(
array
$phids
)
{
$this
->
memberPHIDs
=
$phids
;
return
$this
;
}
protected
function
loadPage
()
{
$table
=
new
PhortuneAccount
();
$conn
=
$table
->
establishConnection
(
'r'
);
$rows
=
queryfx_all
(
$conn
,
'SELECT a.* FROM %T a %Q %Q %Q %Q'
,
$table
->
getTableName
(),
$this
->
buildJoinClause
(
$conn
),
$this
->
buildWhereClause
(
$conn
),
$this
->
buildOrderClause
(
$conn
),
$this
->
buildLimitClause
(
$conn
));
return
$table
->
loadAllFromArray
(
$rows
);
}
protected
function
willFilterPage
(
array
$accounts
)
{
$query
=
id
(
new
PhabricatorEdgeQuery
())
->
withSourcePHIDs
(
mpull
(
$accounts
,
'getPHID'
))
->
withEdgeTypes
(
array
(
PhortuneAccountHasMemberEdgeType
::
EDGECONST
));
$query
->
execute
();
foreach
(
$accounts
as
$account
)
{
$member_phids
=
$query
->
getDestinationPHIDs
(
array
(
$account
->
getPHID
()));
$member_phids
=
array_reverse
(
$member_phids
);
$account
->
attachMemberPHIDs
(
$member_phids
);
}
return
$accounts
;
}
protected
function
buildWhereClause
(
AphrontDatabaseConnection
$conn
)
{
$where
=
array
();
$where
[]
=
$this
->
buildPagingClause
(
$conn
);
if
(
$this
->
ids
)
{
$where
[]
=
qsprintf
(
$conn
,
'a.id IN (%Ld)'
,
$this
->
ids
);
}
if
(
$this
->
phids
)
{
$where
[]
=
qsprintf
(
$conn
,
'a.phid IN (%Ls)'
,
$this
->
phids
);
}
if
(
$this
->
memberPHIDs
)
{
$where
[]
=
qsprintf
(
$conn
,
'm.dst IN (%Ls)'
,
$this
->
memberPHIDs
);
}
return
$this
->
formatWhereClause
(
$where
);
}
private
function
buildJoinClause
(
AphrontDatabaseConnection
$conn
)
{
$joins
=
array
();
if
(
$this
->
memberPHIDs
)
{
$joins
[]
=
qsprintf
(
$conn
,
'LEFT JOIN %T m ON a.phid = m.src AND m.type = %d'
,
PhabricatorEdgeConfig
::
TABLE_NAME_EDGE
,
PhortuneAccountHasMemberEdgeType
::
EDGECONST
);
}
return
implode
(
' '
,
$joins
);
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorPhortuneApplication'
;
}
}
Event Timeline
Log In to Comment