Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98510081
LegalpadDocumentSignatureQuery.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
Mon, Jan 13, 21:01
Size
2 KB
Mime Type
text/x-php
Expires
Wed, Jan 15, 21:01 (2 d)
Engine
blob
Format
Raw Data
Handle
23597055
Attached To
rPH Phabricator
LegalpadDocumentSignatureQuery.php
View Options
<?php
final
class
LegalpadDocumentSignatureQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$documentPHIDs
;
private
$signerPHIDs
;
private
$documentVersions
;
private
$secretKeys
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withDocumentPHIDs
(
array
$phids
)
{
$this
->
documentPHIDs
=
$phids
;
return
$this
;
}
public
function
withSignerPHIDs
(
array
$phids
)
{
$this
->
signerPHIDs
=
$phids
;
return
$this
;
}
public
function
withDocumentVersions
(
array
$versions
)
{
$this
->
documentVersions
=
$versions
;
return
$this
;
}
public
function
withSecretKeys
(
array
$keys
)
{
$this
->
secretKeys
=
$keys
;
return
$this
;
}
protected
function
loadPage
()
{
$table
=
new
LegalpadDocumentSignature
();
$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
));
$signatures
=
$table
->
loadAllFromArray
(
$data
);
return
$signatures
;
}
protected
function
willFilterPage
(
array
$signatures
)
{
$document_phids
=
mpull
(
$signatures
,
'getDocumentPHID'
);
$documents
=
id
(
new
LegalpadDocumentQuery
())
->
setParentQuery
(
$this
)
->
setViewer
(
$this
->
getViewer
())
->
withPHIDs
(
$document_phids
)
->
execute
();
$documents
=
mpull
(
$documents
,
null
,
'getPHID'
);
foreach
(
$signatures
as
$key
=>
$signature
)
{
$document_phid
=
$signature
->
getDocumentPHID
();
$document
=
idx
(
$documents
,
$document_phid
);
if
(
$document
)
{
$signature
->
attachDocument
(
$document
);
}
else
{
unset
(
$signatures
[
$key
]);
}
}
return
$signatures
;
}
protected
function
buildWhereClause
(
$conn_r
)
{
$where
=
array
();
$where
[]
=
$this
->
buildPagingClause
(
$conn_r
);
if
(
$this
->
ids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'id IN (%Ld)'
,
$this
->
ids
);
}
if
(
$this
->
documentPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'documentPHID IN (%Ls)'
,
$this
->
documentPHIDs
);
}
if
(
$this
->
signerPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'signerPHID IN (%Ls)'
,
$this
->
signerPHIDs
);
}
if
(
$this
->
documentVersions
!==
null
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'documentVersion IN (%Ld)'
,
$this
->
documentVersions
);
}
if
(
$this
->
secretKeys
!==
null
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'secretKey IN (%Ls)'
,
$this
->
secretKeys
);
}
return
$this
->
formatWhereClause
(
$where
);
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorApplicationLegalpad'
;
}
}
Event Timeline
Log In to Comment