Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F554980
DifferentialReviewer.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
DifferentialReviewer.php
View Options
<?php
final
class
DifferentialReviewer
extends
DifferentialDAO
{
protected
$revisionPHID
;
protected
$reviewerPHID
;
protected
$reviewerStatus
;
protected
$lastActionDiffPHID
;
protected
$lastCommentDiffPHID
;
protected
$lastActorPHID
;
protected
$voidedPHID
;
protected
$options
=
array
();
private
$authority
=
array
();
private
$changesets
=
self
::
ATTACHABLE
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_SERIALIZATION
=>
array
(
'options'
=>
self
::
SERIALIZATION_JSON
,
),
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'reviewerStatus'
=>
'text64'
,
'lastActionDiffPHID'
=>
'phid?'
,
'lastCommentDiffPHID'
=>
'phid?'
,
'lastActorPHID'
=>
'phid?'
,
'voidedPHID'
=>
'phid?'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_revision'
=>
array
(
'columns'
=>
array
(
'revisionPHID'
,
'reviewerPHID'
),
'unique'
=>
true
,
),
'key_reviewer'
=>
array
(
'columns'
=>
array
(
'reviewerPHID'
,
'revisionPHID'
),
),
),
)
+
parent
::
getConfiguration
();
}
public
function
isUser
()
{
$user_type
=
PhabricatorPeopleUserPHIDType
::
TYPECONST
;
return
(
phid_get_type
(
$this
->
getReviewerPHID
())
==
$user_type
);
}
public
function
isPackage
()
{
$package_type
=
PhabricatorOwnersPackagePHIDType
::
TYPECONST
;
return
(
phid_get_type
(
$this
->
getReviewerPHID
())
==
$package_type
);
}
public
function
attachAuthority
(
PhabricatorUser
$user
,
$has_authority
)
{
$this
->
authority
[
$user
->
getCacheFragment
()]
=
$has_authority
;
return
$this
;
}
public
function
hasAuthority
(
PhabricatorUser
$viewer
)
{
$cache_fragment
=
$viewer
->
getCacheFragment
();
return
$this
->
assertAttachedKey
(
$this
->
authority
,
$cache_fragment
);
}
public
function
attachChangesets
(
array
$changesets
)
{
$this
->
changesets
=
$changesets
;
return
$this
;
}
public
function
getChangesets
()
{
return
$this
->
assertAttached
(
$this
->
changesets
);
}
public
function
setOption
(
$key
,
$value
)
{
$this
->
options
[
$key
]
=
$value
;
return
$this
;
}
public
function
getOption
(
$key
,
$default
=
null
)
{
return
idx
(
$this
->
options
,
$key
,
$default
);
}
public
function
isResigned
()
{
$status_resigned
=
DifferentialReviewerStatus
::
STATUS_RESIGNED
;
return
(
$this
->
getReviewerStatus
()
==
$status_resigned
);
}
public
function
isBlocking
()
{
$status_blocking
=
DifferentialReviewerStatus
::
STATUS_BLOCKING
;
return
(
$this
->
getReviewerStatus
()
==
$status_blocking
);
}
public
function
isRejected
(
$diff_phid
)
{
$status_rejected
=
DifferentialReviewerStatus
::
STATUS_REJECTED
;
if
(
$this
->
getReviewerStatus
()
!=
$status_rejected
)
{
return
false
;
}
if
(
$this
->
getVoidedPHID
())
{
return
false
;
}
if
(
$this
->
isCurrentAction
(
$diff_phid
))
{
return
true
;
}
return
false
;
}
public
function
isAccepted
(
$diff_phid
)
{
$status_accepted
=
DifferentialReviewerStatus
::
STATUS_ACCEPTED
;
if
(
$this
->
getReviewerStatus
()
!=
$status_accepted
)
{
return
false
;
}
// If this accept has been voided (for example, but a reviewer using
// "Request Review"), don't count it as a real "Accept" even if it is
// against the current diff PHID.
if
(
$this
->
getVoidedPHID
())
{
return
false
;
}
if
(
$this
->
isCurrentAction
(
$diff_phid
))
{
return
true
;
}
$sticky_key
=
'differential.sticky-accept'
;
$is_sticky
=
PhabricatorEnv
::
getEnvConfig
(
$sticky_key
);
if
(
$is_sticky
)
{
return
true
;
}
return
false
;
}
private
function
isCurrentAction
(
$diff_phid
)
{
if
(!
$diff_phid
)
{
return
true
;
}
$action_phid
=
$this
->
getLastActionDiffPHID
();
if
(!
$action_phid
)
{
return
true
;
}
if
(
$action_phid
==
$diff_phid
)
{
return
true
;
}
return
false
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 6:20 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
96654
Default Alt Text
DifferentialReviewer.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment