Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F117736524
ConpherenceNewRoomController.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
Sun, Jun 15, 15:12
Size
4 KB
Mime Type
text/x-php
Expires
Tue, Jun 17, 15:12 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26792162
Attached To
rPH Phabricator
ConpherenceNewRoomController.php
View Options
<?php
final
class
ConpherenceNewRoomController
extends
ConpherenceController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$user
=
$request
->
getUser
();
$title
=
pht
(
'New Room'
);
$e_title
=
true
;
$v_message
=
null
;
$validation_exception
=
null
;
$conpherence
=
ConpherenceThread
::
initializeNewRoom
(
$user
);
$participants
=
array
();
if
(
$request
->
isFormPost
())
{
$editor
=
new
ConpherenceEditor
();
$xactions
=
array
();
$participants
=
$request
->
getArr
(
'participants'
);
$participants
[]
=
$user
->
getPHID
();
$participants
=
array_unique
(
$participants
);
$xactions
[]
=
id
(
new
ConpherenceTransaction
())
->
setTransactionType
(
ConpherenceTransaction
::
TYPE_PARTICIPANTS
)
->
setNewValue
(
array
(
'+'
=>
$participants
));
$xactions
[]
=
id
(
new
ConpherenceTransaction
())
->
setTransactionType
(
ConpherenceTransaction
::
TYPE_TITLE
)
->
setNewValue
(
$request
->
getStr
(
'title'
));
$xactions
[]
=
id
(
new
ConpherenceTransaction
())
->
setTransactionType
(
PhabricatorTransactions
::
TYPE_VIEW_POLICY
)
->
setNewValue
(
$request
->
getStr
(
'viewPolicy'
));
$xactions
[]
=
id
(
new
ConpherenceTransaction
())
->
setTransactionType
(
PhabricatorTransactions
::
TYPE_EDIT_POLICY
)
->
setNewValue
(
$request
->
getStr
(
'editPolicy'
));
$xactions
[]
=
id
(
new
ConpherenceTransaction
())
->
setTransactionType
(
PhabricatorTransactions
::
TYPE_JOIN_POLICY
)
->
setNewValue
(
$request
->
getStr
(
'joinPolicy'
));
$v_message
=
$request
->
getStr
(
'message'
);
if
(
strlen
(
$v_message
))
{
$message_xactions
=
$editor
->
generateTransactionsFromText
(
$user
,
$conpherence
,
$v_message
);
$xactions
=
array_merge
(
$xactions
,
$message_xactions
);
}
try
{
$editor
->
setContentSourceFromRequest
(
$request
)
->
setContinueOnNoEffect
(
true
)
->
setActor
(
$user
)
->
applyTransactions
(
$conpherence
,
$xactions
);
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
'/'
.
$conpherence
->
getMonogram
());
}
catch
(
PhabricatorApplicationTransactionValidationException
$ex
)
{
$validation_exception
=
$ex
;
$e_title
=
$ex
->
getShortMessage
(
ConpherenceTransaction
::
TYPE_TITLE
);
$conpherence
->
setViewPolicy
(
$request
->
getStr
(
'viewPolicy'
));
$conpherence
->
setEditPolicy
(
$request
->
getStr
(
'editPolicy'
));
$conpherence
->
setJoinPolicy
(
$request
->
getStr
(
'joinPolicy'
));
}
}
else
{
if
(
$request
->
getStr
(
'participant'
))
{
$participants
[]
=
$request
->
getStr
(
'participant'
);
}
}
$policies
=
id
(
new
PhabricatorPolicyQuery
())
->
setViewer
(
$user
)
->
setObject
(
$conpherence
)
->
execute
();
$submit_uri
=
$this
->
getApplicationURI
(
'new/'
);
$cancel_uri
=
$this
->
getApplicationURI
(
'search/'
);
$dialog
=
$this
->
newDialog
()
->
setWidth
(
AphrontDialogView
::
WIDTH_FORM
)
->
setValidationException
(
$validation_exception
)
->
setUser
(
$user
)
->
setTitle
(
$title
)
->
addCancelButton
(
$cancel_uri
)
->
addSubmitButton
(
pht
(
'Create Room'
));
$form
=
id
(
new
PHUIFormLayoutView
())
->
setUser
(
$user
)
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setError
(
$e_title
)
->
setLabel
(
pht
(
'Name'
))
->
setName
(
'title'
)
->
setValue
(
$request
->
getStr
(
'title'
)))
->
appendChild
(
id
(
new
AphrontFormTokenizerControl
())
->
setName
(
'participants'
)
->
setUser
(
$user
)
->
setDatasource
(
new
PhabricatorPeopleDatasource
())
->
setValue
(
$participants
)
->
setLabel
(
pht
(
'Other Participants'
)))
->
appendChild
(
id
(
new
AphrontFormPolicyControl
())
->
setName
(
'viewPolicy'
)
->
setPolicyObject
(
$conpherence
)
->
setCapability
(
PhabricatorPolicyCapability
::
CAN_VIEW
)
->
setPolicies
(
$policies
))
->
appendChild
(
id
(
new
AphrontFormPolicyControl
())
->
setName
(
'editPolicy'
)
->
setPolicyObject
(
$conpherence
)
->
setCapability
(
PhabricatorPolicyCapability
::
CAN_EDIT
)
->
setPolicies
(
$policies
))
->
appendChild
(
id
(
new
AphrontFormPolicyControl
())
->
setName
(
'joinPolicy'
)
->
setPolicyObject
(
$conpherence
)
->
setCapability
(
PhabricatorPolicyCapability
::
CAN_JOIN
)
->
setPolicies
(
$policies
))
->
appendChild
(
id
(
new
PhabricatorRemarkupControl
())
->
setUser
(
$user
)
->
setName
(
'message'
)
->
setLabel
(
pht
(
'First Message'
))
->
setValue
(
$v_message
));
$dialog
->
appendChild
(
$form
);
return
id
(
new
AphrontDialogResponse
())->
setDialog
(
$dialog
);
}
}
Event Timeline
Log In to Comment