Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F545675
PhabricatorSubscriptionsEditController.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
PhabricatorSubscriptionsEditController.php
View Options
<?php
final
class
PhabricatorSubscriptionsEditController
extends
PhabricatorController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$phid
=
$request
->
getURIData
(
'phid'
);
$action
=
$request
->
getURIData
(
'action'
);
if
(!
$request
->
isFormOrHisecPost
())
{
return
new
Aphront400Response
();
}
switch
(
$action
)
{
case
'add'
:
$is_add
=
true
;
break
;
case
'delete'
:
$is_add
=
false
;
break
;
default
:
return
new
Aphront400Response
();
}
$handle
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$phid
))
->
executeOne
();
$object
=
id
(
new
PhabricatorObjectQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$phid
))
->
executeOne
();
if
(!(
$object
instanceof
PhabricatorSubscribableInterface
))
{
return
$this
->
buildErrorResponse
(
pht
(
'Bad Object'
),
pht
(
'This object is not subscribable.'
),
$handle
->
getURI
());
}
if
(
$object
->
isAutomaticallySubscribed
(
$viewer
->
getPHID
()))
{
return
$this
->
buildErrorResponse
(
pht
(
'Automatically Subscribed'
),
pht
(
'You are automatically subscribed to this object.'
),
$handle
->
getURI
());
}
if
(
$object
instanceof
PhabricatorApplicationTransactionInterface
)
{
if
(
$is_add
)
{
$xaction_value
=
array
(
'+'
=>
array
(
$viewer
->
getPHID
()),
);
}
else
{
$xaction_value
=
array
(
'-'
=>
array
(
$viewer
->
getPHID
()),
);
}
$xaction
=
id
(
$object
->
getApplicationTransactionTemplate
())
->
setTransactionType
(
PhabricatorTransactions
::
TYPE_SUBSCRIBERS
)
->
setNewValue
(
$xaction_value
);
$editor
=
id
(
$object
->
getApplicationTransactionEditor
())
->
setActor
(
$viewer
)
->
setCancelURI
(
$handle
->
getURI
())
->
setContinueOnNoEffect
(
true
)
->
setContinueOnMissingFields
(
true
)
->
setContentSourceFromRequest
(
$request
);
$editor
->
applyTransactions
(
$object
,
array
(
$xaction
));
}
else
{
// TODO: Eventually, get rid of this once everything implements
// PhabricatorApplicationTransactionInterface.
$editor
=
id
(
new
PhabricatorSubscriptionsEditor
())
->
setActor
(
$viewer
)
->
setObject
(
$object
);
if
(
$is_add
)
{
$editor
->
subscribeExplicit
(
array
(
$viewer
->
getPHID
()),
$explicit
=
true
);
}
else
{
$editor
->
unsubscribe
(
array
(
$viewer
->
getPHID
()));
}
$editor
->
save
();
}
// TODO: We should just render the "Unsubscribe" action and swap it out
// in the document for Ajax requests.
return
id
(
new
AphrontReloadResponse
())->
setURI
(
$handle
->
getURI
());
}
private
function
buildErrorResponse
(
$title
,
$message
,
$uri
)
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$dialog
=
id
(
new
AphrontDialogView
())
->
setUser
(
$viewer
)
->
setTitle
(
$title
)
->
appendChild
(
$message
)
->
addCancelButton
(
$uri
);
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 12:57 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
112568
Default Alt Text
PhabricatorSubscriptionsEditController.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment