Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F539815
PhabricatorProjectTransaction.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
PhabricatorProjectTransaction.php
View Options
<?php
final
class
PhabricatorProjectTransaction
extends
PhabricatorModularTransaction
{
// NOTE: This is deprecated, members are just a normal edge now.
const
TYPE_MEMBERS
=
'project:members'
;
const
MAILTAG_METADATA
=
'project-metadata'
;
const
MAILTAG_MEMBERS
=
'project-members'
;
const
MAILTAG_WATCHERS
=
'project-watchers'
;
const
MAILTAG_OTHER
=
'project-other'
;
public
function
getApplicationName
()
{
return
'project'
;
}
public
function
getApplicationTransactionType
()
{
return
PhabricatorProjectProjectPHIDType
::
TYPECONST
;
}
public
function
getBaseTransactionClass
()
{
return
'PhabricatorProjectTransactionType'
;
}
public
function
getRequiredHandlePHIDs
()
{
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
$req_phids
=
array
();
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_MEMBERS
:
$add
=
array_diff
(
$new
,
$old
);
$rem
=
array_diff
(
$old
,
$new
);
$req_phids
=
array_merge
(
$add
,
$rem
);
break
;
}
return
array_merge
(
$req_phids
,
parent
::
getRequiredHandlePHIDs
());
}
public
function
shouldHide
()
{
switch
(
$this
->
getTransactionType
())
{
case
PhabricatorTransactions
::
TYPE_EDGE
:
$edge_type
=
$this
->
getMetadataValue
(
'edge:type'
);
switch
(
$edge_type
)
{
case
PhabricatorProjectSilencedEdgeType
::
EDGECONST
:
return
true
;
default
:
break
;
}
}
return
parent
::
shouldHide
();
}
public
function
shouldHideForMail
(
array
$xactions
)
{
switch
(
$this
->
getTransactionType
())
{
case
PhabricatorProjectWorkboardTransaction
::
TRANSACTIONTYPE
:
case
PhabricatorProjectSortTransaction
::
TRANSACTIONTYPE
:
case
PhabricatorProjectFilterTransaction
::
TRANSACTIONTYPE
:
case
PhabricatorProjectWorkboardBackgroundTransaction
::
TRANSACTIONTYPE
:
return
true
;
}
return
parent
::
shouldHideForMail
(
$xactions
);
}
public
function
getIcon
()
{
switch
(
$this
->
getTransactionType
())
{
case
self
::
TYPE_MEMBERS
:
return
'fa-user'
;
}
return
parent
::
getIcon
();
}
public
function
getTitle
()
{
$old
=
$this
->
getOldValue
();
$new
=
$this
->
getNewValue
();
$author_phid
=
$this
->
getAuthorPHID
();
$author_handle
=
$this
->
renderHandleLink
(
$author_phid
);
switch
(
$this
->
getTransactionType
())
{
case
PhabricatorTransactions
::
TYPE_CREATE
:
return
pht
(
'%s created this project.'
,
$this
->
renderHandleLink
(
$author_phid
));
case
self
::
TYPE_MEMBERS
:
$add
=
array_diff
(
$new
,
$old
);
$rem
=
array_diff
(
$old
,
$new
);
if
(
$add
&&
$rem
)
{
return
pht
(
'%s changed project member(s), added %d: %s; removed %d: %s.'
,
$author_handle
,
count
(
$add
),
$this
->
renderHandleList
(
$add
),
count
(
$rem
),
$this
->
renderHandleList
(
$rem
));
}
else
if
(
$add
)
{
if
(
count
(
$add
)
==
1
&&
(
head
(
$add
)
==
$this
->
getAuthorPHID
()))
{
return
pht
(
'%s joined this project.'
,
$author_handle
);
}
else
{
return
pht
(
'%s added %d project member(s): %s.'
,
$author_handle
,
count
(
$add
),
$this
->
renderHandleList
(
$add
));
}
}
else
if
(
$rem
)
{
if
(
count
(
$rem
)
==
1
&&
(
head
(
$rem
)
==
$this
->
getAuthorPHID
()))
{
return
pht
(
'%s left this project.'
,
$author_handle
);
}
else
{
return
pht
(
'%s removed %d project member(s): %s.'
,
$author_handle
,
count
(
$rem
),
$this
->
renderHandleList
(
$rem
));
}
}
break
;
}
return
parent
::
getTitle
();
}
public
function
getMailTags
()
{
$tags
=
array
();
switch
(
$this
->
getTransactionType
())
{
case
PhabricatorProjectNameTransaction
::
TRANSACTIONTYPE
:
case
PhabricatorProjectSlugsTransaction
::
TRANSACTIONTYPE
:
case
PhabricatorProjectImageTransaction
::
TRANSACTIONTYPE
:
case
PhabricatorProjectIconTransaction
::
TRANSACTIONTYPE
:
case
PhabricatorProjectColorTransaction
::
TRANSACTIONTYPE
:
$tags
[]
=
self
::
MAILTAG_METADATA
;
break
;
case
PhabricatorTransactions
::
TYPE_EDGE
:
$type
=
$this
->
getMetadata
(
'edge:type'
);
$type
=
head
(
$type
);
$type_member
=
PhabricatorProjectProjectHasMemberEdgeType
::
EDGECONST
;
$type_watcher
=
PhabricatorObjectHasWatcherEdgeType
::
EDGECONST
;
if
(
$type
==
$type_member
)
{
$tags
[]
=
self
::
MAILTAG_MEMBERS
;
}
else
if
(
$type
==
$type_watcher
)
{
$tags
[]
=
self
::
MAILTAG_WATCHERS
;
}
else
{
$tags
[]
=
self
::
MAILTAG_OTHER
;
}
break
;
case
PhabricatorProjectStatusTransaction
::
TRANSACTIONTYPE
:
case
PhabricatorProjectLockTransaction
::
TRANSACTIONTYPE
:
default
:
$tags
[]
=
self
::
MAILTAG_OTHER
;
break
;
}
return
$tags
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 9:19 AM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
97943
Default Alt Text
PhabricatorProjectTransaction.php (4 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment