Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101356933
DifferentialDraft.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
Sat, Feb 8, 16:25
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Feb 10, 16:25 (2 d)
Engine
blob
Format
Raw Data
Handle
24143252
Attached To
rPH Phabricator
DifferentialDraft.php
View Options
<?php
final
class
DifferentialDraft
extends
DifferentialDAO
{
protected
$objectPHID
;
protected
$authorPHID
;
protected
$draftKey
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'draftKey'
=>
'text64'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_unique'
=>
array
(
'columns'
=>
array
(
'objectPHID'
,
'authorPHID'
,
'draftKey'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
public
static
function
markHasDraft
(
$author_phid
,
$object_phid
,
$draft_key
)
{
try
{
id
(
new
DifferentialDraft
())
->
setObjectPHID
(
$object_phid
)
->
setAuthorPHID
(
$author_phid
)
->
setDraftKey
(
$draft_key
)
->
save
();
}
catch
(
AphrontDuplicateKeyQueryException
$ex
)
{
// no worries
}
}
public
static
function
deleteHasDraft
(
$author_phid
,
$object_phid
,
$draft_key
)
{
$draft
=
id
(
new
DifferentialDraft
())->
loadOneWhere
(
'objectPHID = %s AND authorPHID = %s AND draftKey = %s'
,
$object_phid
,
$author_phid
,
$draft_key
);
if
(
$draft
)
{
$draft
->
delete
();
}
}
public
static
function
deleteAllDrafts
(
$author_phid
,
$object_phid
)
{
$drafts
=
id
(
new
DifferentialDraft
())->
loadAllWhere
(
'objectPHID = %s AND authorPHID = %s'
,
$object_phid
,
$author_phid
);
foreach
(
$drafts
as
$draft
)
{
$draft
->
delete
();
}
}
}
Event Timeline
Log In to Comment