Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90960184
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
Wed, Nov 6, 10:18
Size
3 KB
Mime Type
text/x-php
Expires
Fri, Nov 8, 10:18 (2 d)
Engine
blob
Format
Raw Data
Handle
22166349
Attached To
rPH Phabricator
LegalpadDocumentSignatureQuery.php
View Options
<?php
final
class
LegalpadDocumentSignatureQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$documentPHIDs
;
private
$signerPHIDs
;
private
$documentVersions
;
private
$secretKeys
;
private
$nameContains
;
private
$emailContains
;
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
;
}
public
function
withNameContains
(
$text
)
{
$this
->
nameContains
=
$text
;
return
$this
;
}
public
function
withEmailContains
(
$text
)
{
$this
->
emailContains
=
$text
;
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
);
}
if
(
$this
->
nameContains
!==
null
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'signerName LIKE %~'
,
$this
->
nameContains
);
}
if
(
$this
->
emailContains
!==
null
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'signerEmail LIKE %~'
,
$this
->
emailContains
);
}
return
$this
->
formatWhereClause
(
$where
);
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorApplicationLegalpad'
;
}
}
Event Timeline
Log In to Comment