Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F972262
DifferentialRevision.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
4 KB
Referenced Files
None
Subscribers
None
DifferentialRevision.php
View Options
<?php
/*
* Copyright 2011 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
class
DifferentialRevision
extends
DifferentialDAO
{
protected
$title
;
protected
$status
;
protected
$summary
;
protected
$testPlan
;
protected
$revertPlan
;
protected
$blameRevision
;
protected
$phid
;
protected
$authorPHID
;
protected
$dateCommitted
;
protected
$lineCount
;
protected
$attached
=
array
();
protected
$unsubscribed
=
array
();
protected
$mailKey
;
private
$relationships
;
private
$commits
;
const
RELATIONSHIP_TABLE
=
'differential_relationship'
;
const
TABLE_VIEW_TIME
=
'differential_viewtime'
;
const
TABLE_COMMIT
=
'differential_commit'
;
const
RELATION_REVIEWER
=
'revw'
;
const
RELATION_SUBSCRIBED
=
'subd'
;
public
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_AUX_PHID
=>
true
,
self
::
CONFIG_SERIALIZATION
=>
array
(
'attached'
=>
self
::
SERIALIZATION_JSON
,
'unsubscribed'
=>
self
::
SERIALIZATION_JSON
,
),
)
+
parent
::
getConfiguration
();
}
public
function
loadCommitPHIDs
()
{
if
(!
$this
->
getID
())
{
return
(
$this
->
commits
=
array
());
}
$commits
=
queryfx_all
(
$this
->
establishConnection
(
'r'
),
'SELECT commitPHID FROM %T WHERE revisionID = %d'
,
self
::
TABLE_COMMIT
,
$this
->
getID
());
$commits
=
ipull
(
$commits
,
'commitPHID'
);
return
(
$this
->
commits
=
$commits
);
}
public
function
getCommitPHIDs
()
{
if
(
$this
->
commits
===
null
)
{
throw
new
Exception
(
"Must load commits!"
);
}
return
$this
->
commits
;
}
public
function
getAttachedPHIDs
(
$type
)
{
return
array_keys
(
idx
(
$this
->
attached
,
$type
,
array
()));
}
public
function
setAttachedPHIDs
(
$type
,
array
$phids
)
{
$this
->
attached
[
$type
]
=
array_fill_keys
(
$phids
,
array
());
return
$this
;
}
public
function
generatePHID
()
{
return
PhabricatorPHID
::
generateNewPHID
(
PhabricatorPHIDConstants
::
PHID_TYPE_DREV
);
}
public
function
loadDiffs
()
{
if
(!
$this
->
getID
())
{
return
array
();
}
return
id
(
new
DifferentialDiff
())->
loadAllWhere
(
'revisionID = %d'
,
$this
->
getID
());
}
public
function
loadComments
()
{
if
(!
$this
->
getID
())
{
return
array
();
}
return
id
(
new
DifferentialComment
())->
loadAllWhere
(
'revisionID = %d'
,
$this
->
getID
());
}
public
function
loadActiveDiff
()
{
return
id
(
new
DifferentialDiff
())->
loadOneWhere
(
'revisionID = %d ORDER BY id DESC LIMIT 1'
,
$this
->
getID
());
}
public
function
save
()
{
if
(!
$this
->
getMailKey
())
{
$this
->
mailKey
=
sha1
(
Filesystem
::
readRandomBytes
(
20
));
}
return
parent
::
save
();
}
public
function
loadRelationships
()
{
if
(!
$this
->
getID
())
{
$this
->
relationships
=
array
();
return
;
}
$data
=
queryfx_all
(
$this
->
establishConnection
(
'r'
),
'SELECT * FROM %T WHERE revisionID = %d ORDER BY sequence'
,
self
::
RELATIONSHIP_TABLE
,
$this
->
getID
());
$this
->
relationships
=
igroup
(
$data
,
'relation'
);
return
$this
;
}
public
function
getReviewers
()
{
return
$this
->
getRelatedPHIDs
(
self
::
RELATION_REVIEWER
);
}
public
function
getCCPHIDs
()
{
return
$this
->
getRelatedPHIDs
(
self
::
RELATION_SUBSCRIBED
);
}
private
function
getRelatedPHIDs
(
$relation
)
{
if
(
$this
->
relationships
===
null
)
{
throw
new
Exception
(
"Must load relationships!"
);
}
return
ipull
(
$this
->
getRawRelations
(
$relation
),
'objectPHID'
);
}
public
function
getRawRelations
(
$relation
)
{
return
idx
(
$this
->
relationships
,
$relation
,
array
());
}
public
function
getUnsubscribedPHIDs
()
{
return
array_keys
(
$this
->
getUnsubscribed
());
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Wed, Jun 18, 6:07 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
230139
Default Alt Text
DifferentialRevision.php (4 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment