Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92686439
PhabricatorTokenGiveController.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
Fri, Nov 22, 18:41
Size
3 KB
Mime Type
text/x-php
Expires
Sun, Nov 24, 18:41 (2 d)
Engine
blob
Format
Raw Data
Handle
22487277
Attached To
rPH Phabricator
PhabricatorTokenGiveController.php
View Options
<?php
final
class
PhabricatorTokenGiveController
extends
PhabricatorTokenController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$phid
=
$request
->
getURIData
(
'phid'
);
$handle
=
id
(
new
PhabricatorHandleQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$phid
))
->
executeOne
();
if
(!
$handle
->
isComplete
())
{
return
new
Aphront404Response
();
}
$object
=
id
(
new
PhabricatorObjectQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
array
(
$phid
))
->
executeOne
();
if
(!(
$object
instanceof
PhabricatorTokenReceiverInterface
))
{
return
new
Aphront400Response
();
}
if
(!
PhabricatorPolicyFilter
::
canInteract
(
$viewer
,
$object
))
{
$lock
=
PhabricatorEditEngineLock
::
newForObject
(
$viewer
,
$object
);
$dialog
=
$this
->
newDialog
()
->
addCancelButton
(
$handle
->
getURI
());
return
$lock
->
willBlockUserInteractionWithDialog
(
$dialog
);
}
$current
=
id
(
new
PhabricatorTokenGivenQuery
())
->
setViewer
(
$viewer
)
->
withAuthorPHIDs
(
array
(
$viewer
->
getPHID
()))
->
withObjectPHIDs
(
array
(
$handle
->
getPHID
()))
->
execute
();
if
(
$current
)
{
$is_give
=
false
;
$title
=
pht
(
'Rescind Token'
);
}
else
{
$is_give
=
true
;
$title
=
pht
(
'Give Token'
);
}
$done_uri
=
$handle
->
getURI
();
if
(
$request
->
isFormOrHisecPost
())
{
$content_source
=
PhabricatorContentSource
::
newFromRequest
(
$request
);
$editor
=
id
(
new
PhabricatorTokenGivenEditor
())
->
setActor
(
$viewer
)
->
setRequest
(
$request
)
->
setCancelURI
(
$handle
->
getURI
())
->
setContentSource
(
$content_source
);
if
(
$is_give
)
{
$token_phid
=
$request
->
getStr
(
'tokenPHID'
);
$editor
->
addToken
(
$handle
->
getPHID
(),
$token_phid
);
}
else
{
$editor
->
deleteToken
(
$handle
->
getPHID
());
}
return
id
(
new
AphrontReloadResponse
())->
setURI
(
$done_uri
);
}
if
(
$is_give
)
{
$dialog
=
$this
->
buildGiveTokenDialog
();
}
else
{
$dialog
=
$this
->
buildRescindTokenDialog
(
head
(
$current
));
}
$dialog
->
setUser
(
$viewer
);
$dialog
->
addCancelButton
(
$done_uri
);
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
private
function
buildGiveTokenDialog
()
{
$viewer
=
$this
->
getViewer
();
$tokens
=
id
(
new
PhabricatorTokenQuery
())
->
setViewer
(
$viewer
)
->
execute
();
$buttons
=
array
();
$ii
=
0
;
foreach
(
$tokens
as
$token
)
{
$aural
=
javelin_tag
(
'span'
,
array
(
'aural'
=>
true
,
),
pht
(
'Award "%s" Token'
,
$token
->
getName
()));
$buttons
[]
=
javelin_tag
(
'button'
,
array
(
'class'
=>
'token-button'
,
'name'
=>
'tokenPHID'
,
'value'
=>
$token
->
getPHID
(),
'type'
=>
'submit'
,
'sigil'
=>
'has-tooltip'
,
'meta'
=>
array
(
'tip'
=>
$token
->
getName
(),
),
),
array
(
$aural
,
$token
->
renderIcon
(),
));
if
((++
$ii
%
6
)
==
0
)
{
$buttons
[]
=
phutil_tag
(
'br'
);
}
}
$buttons
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'token-grid'
,
),
$buttons
);
$dialog
=
new
AphrontDialogView
();
$dialog
->
setTitle
(
pht
(
'Give Token'
));
$dialog
->
appendChild
(
$buttons
);
return
$dialog
;
}
private
function
buildRescindTokenDialog
(
PhabricatorTokenGiven
$token_given
)
{
$dialog
=
new
AphrontDialogView
();
$dialog
->
setTitle
(
pht
(
'Rescind Token'
));
$dialog
->
appendChild
(
pht
(
'Really rescind this lovely token?'
));
$dialog
->
addSubmitButton
(
pht
(
'Rescind Token'
));
return
$dialog
;
}
}
Event Timeline
Log In to Comment