Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98800994
PhortuneMerchantQuery.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
Thu, Jan 16, 13:20
Size
3 KB
Mime Type
text/x-php
Expires
Sat, Jan 18, 13:20 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23647468
Attached To
rPH Phabricator
PhortuneMerchantQuery.php
View Options
<?php
final
class
PhortuneMerchantQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$phids
;
private
$memberPHIDs
;
private
$needProfileImage
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
withMemberPHIDs
(
array
$member_phids
)
{
$this
->
memberPHIDs
=
$member_phids
;
return
$this
;
}
public
function
needProfileImage
(
$need
)
{
$this
->
needProfileImage
=
$need
;
return
$this
;
}
public
function
newResultObject
()
{
return
new
PhortuneMerchant
();
}
protected
function
loadPage
()
{
return
$this
->
loadStandardPage
(
$this
->
newResultObject
());
}
protected
function
willFilterPage
(
array
$merchants
)
{
$query
=
id
(
new
PhabricatorEdgeQuery
())
->
withSourcePHIDs
(
mpull
(
$merchants
,
'getPHID'
))
->
withEdgeTypes
(
array
(
PhortuneMerchantHasMemberEdgeType
::
EDGECONST
));
$query
->
execute
();
foreach
(
$merchants
as
$merchant
)
{
$member_phids
=
$query
->
getDestinationPHIDs
(
array
(
$merchant
->
getPHID
()));
$member_phids
=
array_reverse
(
$member_phids
);
$merchant
->
attachMemberPHIDs
(
$member_phids
);
}
if
(
$this
->
needProfileImage
)
{
$default
=
null
;
$file_phids
=
mpull
(
$merchants
,
'getProfileImagePHID'
);
$file_phids
=
array_filter
(
$file_phids
);
if
(
$file_phids
)
{
$files
=
id
(
new
PhabricatorFileQuery
())
->
setParentQuery
(
$this
)
->
setViewer
(
$this
->
getViewer
())
->
withPHIDs
(
$file_phids
)
->
execute
();
$files
=
mpull
(
$files
,
null
,
'getPHID'
);
}
else
{
$files
=
array
();
}
foreach
(
$merchants
as
$merchant
)
{
$file
=
idx
(
$files
,
$merchant
->
getProfileImagePHID
());
if
(!
$file
)
{
if
(!
$default
)
{
$default
=
PhabricatorFile
::
loadBuiltin
(
$this
->
getViewer
(),
'merchant.png'
);
}
$file
=
$default
;
}
$merchant
->
attachProfileImageFile
(
$file
);
}
}
return
$merchants
;
}
protected
function
buildWhereClauseParts
(
AphrontDatabaseConnection
$conn
)
{
$where
=
parent
::
buildWhereClauseParts
(
$conn
);
if
(
$this
->
ids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'id IN (%Ld)'
,
$this
->
ids
);
}
if
(
$this
->
phids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'phid IN (%Ls)'
,
$this
->
phids
);
}
if
(
$this
->
memberPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'e.dst IN (%Ls)'
,
$this
->
memberPHIDs
);
}
return
$where
;
}
protected
function
buildJoinClauseParts
(
AphrontDatabaseConnection
$conn
)
{
$joins
=
parent
::
buildJoinClauseParts
(
$conn
);
if
(
$this
->
memberPHIDs
!==
null
)
{
$joins
[]
=
qsprintf
(
$conn
,
'LEFT JOIN %T e ON m.phid = e.src AND e.type = %d'
,
PhabricatorEdgeConfig
::
TABLE_NAME_EDGE
,
PhortuneMerchantHasMemberEdgeType
::
EDGECONST
);
}
return
$joins
;
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorPhortuneApplication'
;
}
protected
function
getPrimaryTableAlias
()
{
return
'm'
;
}
}
Event Timeline
Log In to Comment