Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120342483
PhabricatorRepositoryCommitData.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
Thu, Jul 3, 16:10
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Jul 5, 16:10 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27175173
Attached To
rPH Phabricator
PhabricatorRepositoryCommitData.php
View Options
<?php
final
class
PhabricatorRepositoryCommitData
extends
PhabricatorRepositoryDAO
{
/**
* NOTE: We denormalize this into the commit table; make sure the sizes
* match up.
*/
const
SUMMARY_MAX_LENGTH
=
80
;
protected
$commitID
;
protected
$authorName
=
''
;
protected
$commitMessage
=
''
;
protected
$commitDetails
=
array
();
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_SERIALIZATION
=>
array
(
'commitDetails'
=>
self
::
SERIALIZATION_JSON
,
),
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'authorName'
=>
'text'
,
'commitMessage'
=>
'text'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'commitID'
=>
array
(
'columns'
=>
array
(
'commitID'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
public
function
getSummary
()
{
$message
=
$this
->
getCommitMessage
();
return
self
::
summarizeCommitMessage
(
$message
);
}
public
static
function
summarizeCommitMessage
(
$message
)
{
$summary
=
phutil_split_lines
(
$message
,
$retain_endings
=
false
);
$summary
=
head
(
$summary
);
$summary
=
id
(
new
PhutilUTF8StringTruncator
())
->
setMaximumBytes
(
self
::
SUMMARY_MAX_LENGTH
)
->
truncateString
(
$summary
);
return
$summary
;
}
public
function
getCommitDetail
(
$key
,
$default
=
null
)
{
return
idx
(
$this
->
commitDetails
,
$key
,
$default
);
}
public
function
setCommitDetail
(
$key
,
$value
)
{
$this
->
commitDetails
[
$key
]
=
$value
;
return
$this
;
}
public
function
toDictionary
()
{
return
array
(
'commitID'
=>
$this
->
commitID
,
'authorName'
=>
$this
->
authorName
,
'commitMessage'
=>
$this
->
commitMessage
,
'commitDetails'
=>
json_encode
(
$this
->
commitDetails
),
);
}
public
static
function
newFromDictionary
(
array
$dict
)
{
return
id
(
new
PhabricatorRepositoryCommitData
())
->
loadFromArray
(
$dict
);
}
}
Event Timeline
Log In to Comment